<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: selection screen problem in module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675086#M617962</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi turbin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Even iam working on module pool programming...let me clear ur doubt...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of screen 0100.&lt;/P&gt;&lt;P&gt;  selection-screen : begin of block blk1 with frame title text-001.&lt;/P&gt;&lt;P&gt;  parameters : p_matnr like mara-matnr obligatory,&lt;/P&gt;&lt;P&gt;                     p_werks like marc-werks obligatory.&lt;/P&gt;&lt;P&gt;select-options : s_erdat like mara-erdat.&lt;/P&gt;&lt;P&gt;  selection-screen : end of block blk1.&lt;/P&gt;&lt;P&gt;  selection-screen : end of screen 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF USEFUL....!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Aug 2007 07:09:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-22T07:09:58Z</dc:date>
    <item>
      <title>selection screen problem in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675082#M617958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on module pool programming, I need to put select screen on the screen of the module pool porgramming. I used Input/Output field to do that and activated. But I am getting message invalid field format (screen error) can any one tell me why I am not able to run the seletion screen when I am using input/output field, also please let me know how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 06:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675082#M617958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-22T06:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen problem in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675083#M617959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;define selection screen like this in your program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK sel2&lt;/P&gt;&lt;P&gt;                          WITH FRAME TITLE tit2.&lt;/P&gt;&lt;P&gt;PARAMETERS: airpfr TYPE spfli-airpfrom,&lt;/P&gt;&lt;P&gt;            airpto TYPE spfli-airpto.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK sel2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and call it using this statement&lt;/P&gt;&lt;P&gt;CALL SELECTION-SCREEN 500 STARTING AT 10 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful, get back in case of query...&lt;/P&gt;&lt;P&gt;Cheers!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 06:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675083#M617959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-22T06:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen problem in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675084#M617960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Think that this is useful for u/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN - Defining selection screens &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants: &lt;/P&gt;&lt;P&gt;1a. SELECTION-SCREEN BEGIN OF SCREEN scr. &lt;/P&gt;&lt;P&gt;1b. SELECTION-SCREEN END   OF SCREEN scr. &lt;/P&gt;&lt;P&gt;2. SELECTION-SCREEN BEGIN OF SCREEN scr AS SUBSCREEN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Defines a selection screen with the number scr. scr may be up to 4 digits. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN scr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additions: &lt;/P&gt;&lt;P&gt;(zu SELECTION-SCREEN BEGIN OF SCREEN scr) 1. ... TITLE title &lt;/P&gt;&lt;P&gt;2. ... AS WINDOW &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;In reports (type 1 programs), a selection screen with number 1000 is created automatically when you use the SELECT-OPTIONS, PARAMETERS and SELECTION-SCREEN statments. This selection screen appears when you SUBMIT the report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In any type of program (apart from subroutine pools - type S), you can define further selection screens using SELECT-OPTIONS, PARAMETERS and SELECTION-SCREEN. You enclose these statements between the SELECTION-SCREEN BEGIN OF SCREEN and SELECTION-SCREEN END OF SCREEN statements. &lt;/P&gt;&lt;P&gt;You call these screens using the CALL SELECTION-SCREEN statement. &lt;/P&gt;&lt;P&gt;Screen number 1000 is not allowed (reserved for standard selection screen). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you generate the program, all user-defined selection screens are also generated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within a report (type 1 program), all SELECT-OPTIONS, PARAMETERS and SELECTION-SCREEN statements outside a SELECTION-SCREEN BEGIN/END OF SCREEN block form part of selection screen 100 (standard selection screen) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;LIJO JOHN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 07:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675084#M617960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-22T07:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen problem in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675085#M617961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field which you want display on screen how you have defined in top-include of program..?? or r u refering directly to Standard table. &lt;/P&gt;&lt;P&gt;If the field in say of type INT4 &amp;amp; in Layout Editor (Screen Painter) if you change the type of field, this error will appear. &lt;/P&gt;&lt;P&gt;Make sure that you have not changed the properties of field in screen layout.!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 07:01:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675085#M617961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-22T07:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen problem in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675086#M617962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi turbin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Even iam working on module pool programming...let me clear ur doubt...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of screen 0100.&lt;/P&gt;&lt;P&gt;  selection-screen : begin of block blk1 with frame title text-001.&lt;/P&gt;&lt;P&gt;  parameters : p_matnr like mara-matnr obligatory,&lt;/P&gt;&lt;P&gt;                     p_werks like marc-werks obligatory.&lt;/P&gt;&lt;P&gt;select-options : s_erdat like mara-erdat.&lt;/P&gt;&lt;P&gt;  selection-screen : end of block blk1.&lt;/P&gt;&lt;P&gt;  selection-screen : end of screen 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF USEFUL....!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2007 07:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem-in-module-pool/m-p/2675086#M617962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-22T07:09:58Z</dc:date>
    </item>
  </channel>
</rss>

