<?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: How to create screen dynamically? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843683#M924117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="418790"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 May 2008 13:44:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-13T13:44:54Z</dc:date>
    <item>
      <title>How to create screen dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843681#M924115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a screen dynamically.&lt;/P&gt;&lt;P&gt;With out creating the screen in screen painter or in SE80.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to create it Dynamically?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 13:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843681#M924115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T13:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create screen dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843682#M924116</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;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;Example: how to create a dynamic selection screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title f1_ttl.&lt;/P&gt;&lt;P&gt;  parameters: p_rbcnt type i default 5.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;  f1_ttl = 'Number of radio buttons'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The dynamic program source table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data: begin of inctabl occurs 10,&lt;/P&gt;&lt;P&gt;line(72),&lt;/P&gt;&lt;P&gt;end of inctabl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_radiocount type string.&lt;/P&gt;&lt;P&gt;data: lv_currentcount type i.&lt;/P&gt;&lt;P&gt;data: lv_radioname type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create the dynamic internal table definition in the dyn. program&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;inctabl-line = 'program zdynpro.'. append inctabl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*inctabl-line = 'data: begin of dyntab occurs 10,'. append inctabl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do p_rbcnt times.&lt;/P&gt;&lt;P&gt;  lv_radiocount = lv_currentcount.&lt;/P&gt;&lt;P&gt;  concatenate 'rb_' lv_radiocount into lv_radioname.&lt;/P&gt;&lt;P&gt;  concatenate 'parameter:' lv_radioname 'radiobutton group rg01.'&lt;/P&gt;&lt;P&gt;    into inctabl-line separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append inctabl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lv_currentcount = lv_currentcount + 1.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inctabl-line = 'start-of-selection.'. append inctabl.&lt;/P&gt;&lt;P&gt;inctabl-line = 'write: rb_0.'. append inctabl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create and run the dynamic program&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;insert report 'ZDYNPRO' from inctabl.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  submit zdynpro VIA SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;  write : / 'error'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 13:40:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843682#M924116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T13:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to create screen dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843683#M924117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="418790"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 13:44:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843683#M924117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T13:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create screen dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843684#M924118</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;It's not easy to do it, try to see the statament:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GENERATE DYNPRO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 13:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843684#M924118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T13:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create screen dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843685#M924119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check FM's RS_SCREEN_CREATE/RS_DYNPRO_CREATE_INITIAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lakshman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 13:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-screen-dynamically/m-p/3843685#M924119</guid>
      <dc:creator>Lakshmant1</dc:creator>
      <dc:date>2008-05-13T13:54:35Z</dc:date>
    </item>
  </channel>
</rss>

