<?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 processing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295508#M788628</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Loop at screen is to change the attributes of the screen elements (say making I/O field uneditable or making it invisible ...like dat )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;design a pushbutton in ur screen with func code say ENTER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI event of ur FLOW logic within a module write this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'ENTER'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT field AT '-' INTO itab-matnr itab-charg.&lt;/P&gt;&lt;P&gt;itab-erfmg = erfmg.&lt;/P&gt;&lt;P&gt;itab-lgort = lgort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR field.&lt;/P&gt;&lt;P&gt;clear erfmg.&lt;/P&gt;&lt;P&gt;clear lgort.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Jan 2008 04:46:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-16T04:46:35Z</dc:date>
    <item>
      <title>Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295502#M788622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have two questions for selection screen.&lt;/P&gt;&lt;P&gt;I have following case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 3 parameters. When the parameters all are filled, the data should be written in an internal table.&lt;/P&gt;&lt;P&gt;But the user has to fill all the parameters, before the data is written to the internal table  - and so long, the user should be able to see the other values in the parameters. How do I have to change my source code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;coding so far:&lt;/P&gt;&lt;P&gt;********************************************************************&lt;/P&gt;&lt;P&gt;Selection-Screen begin of BLock Block1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: &lt;/P&gt;&lt;P&gt;            field TYPE char29,&lt;/P&gt;&lt;P&gt;            erfmg TYPE CHAR6,&lt;/P&gt;&lt;P&gt;            lgort type char4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection-Screen end of Block Block1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON Block Block1.&lt;/P&gt;&lt;P&gt;  SPLIT field AT '-' INTO itab-matnr itab-charg.&lt;/P&gt;&lt;P&gt;  itab-erfmg = erfmg.&lt;/P&gt;&lt;P&gt;  itab-lgort = lgort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR field.&lt;/P&gt;&lt;P&gt;  clear erfmg.&lt;/P&gt;&lt;P&gt;  clear lgort.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The inserted data is used in this program afterwards. Before this processing starts (later in the source code), the users asked me for a possibility to check all the data the inserted over the parameters. So does there a possibilty exists to create something like a button, on which the users could click on and which is showing a list of the internal table? (after this the program should continue).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sure there should be solutions for these two problems, but I haven´t done it before and don´t know where to search for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your help,&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 03:46:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295502#M788622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T03:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295503#M788623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this your req.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) making all parameters mandatory if so.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: &lt;/P&gt;&lt;P&gt;field TYPE char29 obligatory,&lt;/P&gt;&lt;P&gt;erfmg TYPE CHAR6 obligatory,&lt;/P&gt;&lt;P&gt;lgort type char4 obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this ll do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) if u need input help ( when u press F4 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at-selection screen ON VALUE-REQUEST for field.&lt;/P&gt;&lt;P&gt;use this func module&lt;/P&gt;&lt;P&gt;'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;study the func modules documentation .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) u can also validate the inputs in at selection-screen event........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 04:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295503#M788623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T04:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295504#M788624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hej Will,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer, will start to read the docu now I know what I have to look for &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 04:03:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295504#M788624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T04:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295505#M788625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another question for this problem.&lt;/P&gt;&lt;P&gt;If I want to use the screen painter to modify my selection-screen following info message comes up:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Selection screen: Report generation makes screen changes ineffective'    -  this means that each time I generate my report, the selection screen is generated new out of the source code (and not out of the code of the screen painter).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does there a possibility exist to use the screen painter for my selection screen? Never worked with something like that before, please help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 06:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295505#M788625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T06:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295506#M788626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u want to use dialog screen instead of sttd selection-screen u can always do that in a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remove all parameters declaration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write.&lt;/P&gt;&lt;P&gt;call screen &amp;lt;screen no say 100&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on screen no....and create it using screen painter.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 07:11:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295506#M788626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T07:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295507#M788627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Will,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, I tried it and it is nearly working.&lt;/P&gt;&lt;P&gt;The only thing that is not working at the moment is following. &lt;/P&gt;&lt;P&gt;I want to have all this data in the internal table - it is working that the parameter input is written in the internal table, but it is not working that there is a kind of loop on the internal table, so that the parameter input is appended on after the next in the internal table (like it was working before).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my coding for that. I guess I need something like an OK_Code for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************************************************&lt;/P&gt;&lt;P&gt;  call screen 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at screen into wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SPLIT field AT '-' INTO itab-matnr itab-charg.&lt;/P&gt;&lt;P&gt;  itab-erfmg = erfmg.&lt;/P&gt;&lt;P&gt;  itab-lgort = lgort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR field.&lt;/P&gt;&lt;P&gt;  clear erfmg.&lt;/P&gt;&lt;P&gt;  clear lgort.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;*******************************************************&lt;/P&gt;&lt;P&gt;can you help me out with this please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for all your help.&lt;/P&gt;&lt;P&gt;christoph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 08:43:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295507#M788627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T08:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295508#M788628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Loop at screen is to change the attributes of the screen elements (say making I/O field uneditable or making it invisible ...like dat )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;design a pushbutton in ur screen with func code say ENTER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI event of ur FLOW logic within a module write this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'ENTER'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT field AT '-' INTO itab-matnr itab-charg.&lt;/P&gt;&lt;P&gt;itab-erfmg = erfmg.&lt;/P&gt;&lt;P&gt;itab-lgort = lgort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR field.&lt;/P&gt;&lt;P&gt;clear erfmg.&lt;/P&gt;&lt;P&gt;clear lgort.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 04:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295508#M788628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T04:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295509#M788629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Will,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once again thanks for your help.&lt;/P&gt;&lt;P&gt;I tried the thing you told me, not working at the moment, just want to be sure that I did all in the way you were thinking about.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The source code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST9999.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;  BEGIN OF itabstruk,&lt;/P&gt;&lt;P&gt;    matnrfield TYPE char16,&lt;/P&gt;&lt;P&gt;    matnr TYPE matnr,&lt;/P&gt;&lt;P&gt;    chargfield TYPE char16,&lt;/P&gt;&lt;P&gt;    charg TYPE charg_d,&lt;/P&gt;&lt;P&gt;    erfmgfield TYPE char16,&lt;/P&gt;&lt;P&gt;    erfmg TYPE CHAR6,&lt;/P&gt;&lt;P&gt;    lgortfield type char16,&lt;/P&gt;&lt;P&gt;    lgort type char4,&lt;/P&gt;&lt;P&gt;  END OF itabstruk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  itab TYPE TABLE OF itabstruk WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  bdc LIKE STANDARD TABLE OF bdcdata WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  count TYPE char3,&lt;/P&gt;&lt;P&gt;  n TYPE i,&lt;/P&gt;&lt;P&gt;  transaction type char4,&lt;/P&gt;&lt;P&gt;  wa type screen.&lt;/P&gt;&lt;P&gt;data  FIELD(29) type c.&lt;/P&gt;&lt;P&gt;data  ERFMG(6) type c.&lt;/P&gt;&lt;P&gt;data  lgort(4) type c.&lt;/P&gt;&lt;P&gt;TABLES sscrfields.&lt;/P&gt;&lt;P&gt;data ok_code type sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call selection-screen 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;**********************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a PAI-Module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module %_INPUTPROCESSING input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'ENTER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT field AT '-' INTO itab-matnr itab-charg.&lt;/P&gt;&lt;P&gt;itab-erfmg = erfmg.&lt;/P&gt;&lt;P&gt;itab-lgort = lgort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR field.&lt;/P&gt;&lt;P&gt;clear erfmg.&lt;/P&gt;&lt;P&gt;clear lgort.&lt;/P&gt;&lt;P&gt;APPEND itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                 " %_INPUTPROCESSING  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Flowlogic of my Dynpro:  (Including a table control I want to have in my dynpro, but it´s also not working because of no data in the table - it´s not filled...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: PBO FLOW LOGIC FOR TABLECONTROL 'ITABCONTROL'&lt;/P&gt;&lt;P&gt;  MODULE ITABCONTROL_CHANGE_TC_ATTR.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: MODULE ITABCONTROL_CHANGE_COL_ATTR.&lt;/P&gt;&lt;P&gt;  LOOP AT   ITAB&lt;/P&gt;&lt;P&gt;       WITH CONTROL ITABCONTROL&lt;/P&gt;&lt;P&gt;       CURSOR ITABCONTROL-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;    MODULE ITABCONTROL_GET_LINES.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD:   MODULE ITABCONTROL_CHANGE_FIELD_ATTR&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE %_INIT_PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE %_PBO_REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE %_PF_STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE %_END_OF_PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MODULE %_INPUTPROCESSING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'ITABCONTROL'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD ITAB-MATNR.&lt;/P&gt;&lt;P&gt;      FIELD ITAB-CHARG.&lt;/P&gt;&lt;P&gt;      FIELD ITAB-ERFMG.&lt;/P&gt;&lt;P&gt;      FIELD ITAB-LGORT.&lt;/P&gt;&lt;P&gt;    endchain.&lt;/P&gt;&lt;P&gt;    FIELD ITAB-MATNRFIELD&lt;/P&gt;&lt;P&gt;      MODULE ITABCONTROL_MARK ON REQUEST.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  MODULE ITABCONTROL_USER_COMMAND.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: MODULE ITABCONTROL_CHANGE_TC_ATTR.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: MODULE ITABCONTROL_CHANGE_COL_ATTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE %_BACK AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE %_INIT_PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAIN.&lt;/P&gt;&lt;P&gt;  FIELD MB1A    .&lt;/P&gt;&lt;P&gt;  FIELD MB1B    .&lt;/P&gt;&lt;P&gt;  FIELD MB1C    .&lt;/P&gt;&lt;P&gt;    MODULE %_RADIOBUTTON_GROUP_RAD1                          .&lt;/P&gt;&lt;P&gt;ENDCHAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD !FIELD MODULE %_FIELD .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD !ERFMG MODULE %_ERFMG .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD !LGORT MODULE %_LGORT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAIN.&lt;/P&gt;&lt;P&gt;  FIELD MB1A    .&lt;/P&gt;&lt;P&gt;  FIELD MB1B    .&lt;/P&gt;&lt;P&gt;  FIELD MB1C    .&lt;/P&gt;&lt;P&gt;  FIELD FIELD .&lt;/P&gt;&lt;P&gt;  FIELD ERFMG .&lt;/P&gt;&lt;P&gt;  FIELD LGORT .&lt;/P&gt;&lt;P&gt;    MODULE %_BLOCK_1000000.&lt;/P&gt;&lt;P&gt;ENDCHAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAIN.&lt;/P&gt;&lt;P&gt;  FIELD MB1A    .&lt;/P&gt;&lt;P&gt;  FIELD MB1B    .&lt;/P&gt;&lt;P&gt;  FIELD MB1C    .&lt;/P&gt;&lt;P&gt;  FIELD FIELD .&lt;/P&gt;&lt;P&gt;  FIELD ERFMG .&lt;/P&gt;&lt;P&gt;  FIELD LGORT .&lt;/P&gt;&lt;P&gt;  MODULE %_END_OF_SCREEN.&lt;/P&gt;&lt;P&gt;  MODULE %_OK_CODE_1000.&lt;/P&gt;&lt;P&gt;ENDCHAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would be great if you could help me out again.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 06:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295509#M788629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T06:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295510#M788630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make sure that the func code for ur push button is ENTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;place a break-point in case sy-ucomm statement and see when u press dat push button its commin der.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it comes check sy-ucomm value proceed by pressin F5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 06:38:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295510#M788630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T06:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295511#M788631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Will,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is working now, Don´t know why it wasn´t working before, but now it is &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christoph&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2008 06:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/3295511#M788631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-16T06:55:34Z</dc:date>
    </item>
  </channel>
</rss>

