<?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 select option parameters from one program to another in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462928#M1848571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ashwin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can declare a range&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: carr_range type range of carrid,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; carr_line like line of carr_range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;carr_line-sign = 'I'.&lt;/P&gt;&lt;P&gt;carr_line-option = 'BT'.&lt;/P&gt;&lt;P&gt;carr_line-low = 'AA'.&lt;/P&gt;&lt;P&gt;carr_line-high = 'XX'.&lt;/P&gt;&lt;P&gt;append carr_line to carr_range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52" style="font-size: 12px; color: #333333; background: #ffffff;"&gt;submit &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&amp;lt;pgm_name&amp;gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-size: 12px; color: #333333; background: #ffffff;"&gt;WITH so_carr IN carr_range VIA &lt;SPAN style="color: #333333; font-size: 12px;"&gt;SELECTION-SCREEN&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jul 2014 09:57:35 GMT</pubDate>
    <dc:creator>SharathYaralkattimath</dc:creator>
    <dc:date>2014-07-21T09:57:35Z</dc:date>
    <item>
      <title>Passing select option parameters from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462926#M1848569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report program. From that i need to call another program.The second one have a select option SO_CARR. i need to pass the low and high values of the select option from 1st program. i can pass the select option values like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; submit &lt;/SPAN&gt;&amp;lt;pgm_name&amp;gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;so_carr&amp;nbsp; &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'AA' &lt;/SPAN&gt;VIA &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my requirement is to pass SO_CARR-HIGH and SO_CARR-LOW values from 1st program.&lt;/P&gt;&lt;P&gt;How can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Ashwin kv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2014 09:50:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462926#M1848569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-21T09:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Passing select option parameters from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462927#M1848570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="1432143" __jive_macro_name="thread" class="jive_macro_thread jive_macro" data-orig-content="submit statement and populating select options." href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2014 09:52:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462927#M1848570</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-07-21T09:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: Passing select option parameters from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462928#M1848571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ashwin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can declare a range&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: carr_range type range of carrid,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; carr_line like line of carr_range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;carr_line-sign = 'I'.&lt;/P&gt;&lt;P&gt;carr_line-option = 'BT'.&lt;/P&gt;&lt;P&gt;carr_line-low = 'AA'.&lt;/P&gt;&lt;P&gt;carr_line-high = 'XX'.&lt;/P&gt;&lt;P&gt;append carr_line to carr_range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52" style="font-size: 12px; color: #333333; background: #ffffff;"&gt;submit &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&amp;lt;pgm_name&amp;gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-size: 12px; color: #333333; background: #ffffff;"&gt;WITH so_carr IN carr_range VIA &lt;SPAN style="color: #333333; font-size: 12px;"&gt;SELECTION-SCREEN&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2014 09:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462928#M1848571</guid>
      <dc:creator>SharathYaralkattimath</dc:creator>
      <dc:date>2014-07-21T09:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Passing select option parameters from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462929#M1848572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi aswin,&lt;/P&gt;&lt;H1 style="margin: 13px 0 10px; font-size: 2em; color: #333333; background: #ffffff;"&gt;&lt;A __default_attr="1432143" __jive_macro_name="thread" class="jive_macro_thread jive_macro" data-orig-content="submit statement and populating select options." href="https://community.sap.com/" modifiedtitle="true" title="submit statement and populating select options."&gt;&lt;/A&gt;&lt;/H1&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Hi&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Just use IN&amp;nbsp; for select-options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;SUBMIT &amp;lt;PROGRAMNAME&amp;gt; WITH &amp;lt;b&amp;gt;S_VALUE&amp;nbsp; IN&amp;nbsp; P_DATA&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;WITH P_A= P_A&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;WITH P_B = P_B AND RETURN&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;Arun Vs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2014 10:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462929#M1848572</guid>
      <dc:creator>venuarun</dc:creator>
      <dc:date>2014-07-21T10:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Passing select option parameters from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462930#M1848573</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 this example,&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm" title="http://help.sap.com/saphelp_nw04s/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm"&gt;Filling the Selection Screen of a Called Program (SAP Library - ABAP Programming (BC-ABA))&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 16:14:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-select-option-parameters-from-one-program-to-another/m-p/10462930#M1848573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-22T16:14:31Z</dc:date>
    </item>
  </channel>
</rss>

