<?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: Branching problem using parameter ID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007275#M957302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rajnikanth, what does the selection table contain?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2008 07:58:41 GMT</pubDate>
    <dc:creator>dev_parbutteea</dc:creator>
    <dc:date>2008-06-24T07:58:41Z</dc:date>
    <item>
      <title>Branching problem using parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007271#M957298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello , i am branching from one program to another. the problem is that i have a select options on the second screen.I need to pass two values in each box , the low and the high.Any idea on how to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION rep002 AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 07:37:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007271#M957298</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2008-06-24T07:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Branching problem using parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007272#M957299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT report2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: text(10)   TYPE c, &lt;/P&gt;&lt;P&gt;      rspar_tab  TYPE TABLE OF rsparams, &lt;/P&gt;&lt;P&gt;      rspar_line LIKE LINE OF rspar_tab, &lt;/P&gt;&lt;P&gt;      range_tab  LIKE RANGE OF text, &lt;/P&gt;&lt;P&gt;      range_line LIKE LINE OF range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rspar_line-selname = 'SELCRIT1'. &lt;/P&gt;&lt;P&gt;rspar_line-kind    = 'S'. &lt;/P&gt;&lt;P&gt;rspar_line-sign    = 'I'. &lt;/P&gt;&lt;P&gt;rspar_line-option  = 'EQ'. &lt;/P&gt;&lt;P&gt;rspar_line-low     = 'ABAP'. &lt;/P&gt;&lt;P&gt;APPEND rspar_line TO rspar_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;range_line-sign   = 'E'. &lt;/P&gt;&lt;P&gt;range_line-option = 'EQ'. &lt;/P&gt;&lt;P&gt;range_line-low    = 'H'. &lt;/P&gt;&lt;P&gt;APPEND range_line TO range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;range_line-sign   = 'E'. &lt;/P&gt;&lt;P&gt;range_line-option = 'EQ'. &lt;/P&gt;&lt;P&gt;range_line-low    = 'K'. &lt;/P&gt;&lt;P&gt;APPEND range_line TO range_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report1 USING SELECTION-SCREEN '1100' &lt;/P&gt;&lt;P&gt;               WITH SELECTION-TABLE rspar_tab &lt;/P&gt;&lt;P&gt;               WITH selcrit2 BETWEEN 'H' AND 'K' &lt;/P&gt;&lt;P&gt;               WITH selcrit2 IN range_tab &lt;/P&gt;&lt;P&gt;               AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 07:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007272#M957299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T07:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Branching problem using parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007273#M957300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way is that you could SUBMIT the second program from the first using "Selection screen options".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, you have to assign parameter ids at the data element level with the fields of the transaction (if not assigned. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For creating a parameter id - execute function module "RS_PARAMETER_ADD".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will generate a parameter id and you can assign this to the data element. )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set those parameter ids and call the transaction skipping first screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 07:44:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007273#M957300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T07:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Branching problem using parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007274#M957301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are calling a transaction od an executable program.. make use of the submit statement , through this we can pass the select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT rm07docs   &lt;/P&gt;&lt;P&gt;  WITH SELECTION-TABLE i_seltab&lt;/P&gt;&lt;P&gt;  AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajinikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 07:45:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007274#M957301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T07:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Branching problem using parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007275#M957302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rajnikanth, what does the selection table contain?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 07:58:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/branching-problem-using-parameter-id/m-p/4007275#M957302</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2008-06-24T07:58:41Z</dc:date>
    </item>
  </channel>
</rss>

