<?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: Passing internal table data with set parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244524#M774407</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;try to use submit command for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMT RFBIDE10 with UE_BUKRS IN rng_bukrs AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFBIDE10 is the program of FD15 transaction.&lt;/P&gt;&lt;P&gt;Bye.&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: nicolai marco on Jan 10, 2008 5:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jan 2008 16:34:12 GMT</pubDate>
    <dc:creator>mnicolai_77</dc:creator>
    <dc:date>2008-01-10T16:34:12Z</dc:date>
    <item>
      <title>Passing internal table data with set parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244523#M774406</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; I have a ALV report...from the report I am calling a standard transaction using a push button in the application tool bar. I am calling FD15 trasaction. FD15 has a selection screen. I have to populate the data which i am having to the selection screen before calling(Pre population) when I press the button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to populate a select option also which is company code with the data i am having in the internal table. How to pass the data to the standard transaction selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KIshore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 16:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244523#M774406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T16:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table data with set parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244524#M774407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;try to use submit command for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMT RFBIDE10 with UE_BUKRS IN rng_bukrs AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFBIDE10 is the program of FD15 transaction.&lt;/P&gt;&lt;P&gt;Bye.&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: nicolai marco on Jan 10, 2008 5:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 16:34:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244524#M774407</guid>
      <dc:creator>mnicolai_77</dc:creator>
      <dc:date>2008-01-10T16:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table data with set parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244525#M774408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: G_CALLBACK_USER_COMMAND TYPE  SLIS_FORMNAME,&lt;/P&gt;&lt;P&gt;  G_CALLBACK_USER_COMMAND = 'F_ALV_USER_COMMAND'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--- ALV List Display&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            I_CALLBACK_PROGRAM          = G_PROGNAME&lt;/P&gt;&lt;P&gt;            I_CALLBACK_USER_COMMAND     = G_CALLBACK_USER_COMMAND&lt;/P&gt;&lt;P&gt;            IT_FIELDCAT                 = G_T_FIELDCAT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_EVENTS                   = IT_EVENTS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            T_OUTTAB                    = G_T_OUTTAB&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            PROGRAM_ERROR               = 1&lt;/P&gt;&lt;P&gt;            OTHERS                      = 2.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM F_ALV_USER_COMMAND USING R_UCOMM     LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                              RS_SELFIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt; CASE R_UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;*--- Hotspot selektion&lt;/P&gt;&lt;P&gt;      CASE RS_SELFIELD-FIELDNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        WHEN 'BUKRS'.&lt;/P&gt;&lt;P&gt;          SET PARAMETER ID 'BUK' FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;P&gt;          CALL TRANSACTION 'FD15' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 16:35:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244525#M774408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T16:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table data with set parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244526#M774409</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;Try using this command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT DYNPRO h f e m ID id. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exports the screen specified in the field id. The screen information is taken from the structure h (screen header, structure D020S) and the internal tables f (field list, structure D021S), e (flow logic, structure D022S) and m (matchcode information, structure D023S). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 16:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-data-with-set-parameter/m-p/3244526#M774409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T16:41:57Z</dc:date>
    </item>
  </channel>
</rss>

