<?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 module pool programing - screen table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836027#M355802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have use this fm to change screen attributes dynamically like location of screen fields ,invisible ,active etc&lt;/P&gt;&lt;P&gt;                                  AND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also if i am displaying 10 fields one below each other on a screen and on click of a push button , fields 2 to 9 should become invisible and the 10th screen field should be shifted from its original location to a location below 1st screen field &lt;/P&gt;&lt;P&gt;how can i do this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jan 2007 08:45:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-09T08:45:54Z</dc:date>
    <item>
      <title>module pool programing - screen table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836027#M355802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have use this fm to change screen attributes dynamically like location of screen fields ,invisible ,active etc&lt;/P&gt;&lt;P&gt;                                  AND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also if i am displaying 10 fields one below each other on a screen and on click of a push button , fields 2 to 9 should become invisible and the 10th screen field should be shifted from its original location to a location below 1st screen field &lt;/P&gt;&lt;P&gt;how can i do this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 08:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836027#M355802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T08:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programing - screen table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836028#M355803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;case sy-ucomm.
  when 'PUSH'.
    loop at screen.
          if screen-name eq 'FIELD2' or
            screen-name eq 'FIELD9' or
            screen-invisible = 1.
            modify screen.
          endif.
    endloop.
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 08:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836028#M355803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T08:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programing - screen table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836029#M355804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS CHANDRASHEKHAR FOR YOUR REPLY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT...&lt;/P&gt;&lt;P&gt;my screen fields from number 2 to number 9 are getting invisible but the 10 th field remains in its original position &lt;/P&gt;&lt;P&gt;can you give me more details this time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836029#M355804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programing - screen table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836030#M355805</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;One easy way is desing 11 fields and make 2nd field invisible before display.Once the button is clicked,make the 2nd field visible and from 3rd to 11th invisible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836030#M355805</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-01-09T09:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programing - screen table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836031#M355806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your reqirement is to make 2nd and 9th invisible then you can do what Jayanthi had answered.&lt;/P&gt;&lt;P&gt;But if the fields  u want to make invisible are not constant then it will be a problem in adjusting them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:11:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836031#M355806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programing - screen table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836032#M355807</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;The probleam can be solved by creating double parameters.&lt;/P&gt;&lt;P&gt;For Example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; it has 5 parameters for me if i click radio button 2 the parameter 1 has to be disable and instead of that parameter 5 has to come.&lt;/P&gt;&lt;P&gt;in this the parameter names are different but you can give your selection name for output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK r1.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt; p_r1 RADIOBUTTON GROUP r1 USER-COMMAND change,&lt;/P&gt;&lt;P&gt; p_r2 RADIOBUTTON GROUP r1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK r1.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt; p_test1(10) TYPE c,&lt;/P&gt;&lt;P&gt; p_test2(10) TYPE c,&lt;/P&gt;&lt;P&gt; p_test3(10) TYPE c,&lt;/P&gt;&lt;P&gt; p_test4(10) TYPE c,&lt;/P&gt;&lt;P&gt; p_test5(10) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt; P_TEST52(10) TYPE C MODIF ID P2,&lt;/P&gt;&lt;P&gt; P_TEST22(10) TYPE C MODIF ID P2,&lt;/P&gt;&lt;P&gt; P_TEST32(10) TYPE C MODIF ID P2,&lt;/P&gt;&lt;P&gt; P_TEST42(10) TYPE C MODIF ID P2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF p_r2 EQ 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 EQ 'P2'.&lt;/P&gt;&lt;P&gt;        screen-invisible = 0.&lt;/P&gt;&lt;P&gt;        SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;        screen-invisible = 1.&lt;/P&gt;&lt;P&gt;        SCREEN-ACTIVE = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 EQ 'P2'.&lt;/P&gt;&lt;P&gt;        screen-invisible = 1.&lt;/P&gt;&lt;P&gt;        SCREEN-ACTIVE = 0.&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;        screen-invisible = 0.&lt;/P&gt;&lt;P&gt;        SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2007 09:27:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836032#M355807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-09T09:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: module pool programing - screen table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836033#M355808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-screen-table/m-p/1836033#M355808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:28:15Z</dc:date>
    </item>
  </channel>
</rss>

