<?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: Calling one program from another program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391677#M190252</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;you can do this way..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT rguslsep EXPORTING LIST TO MEMORY AND RETURN
                 WITH ledger  = p_rldnr
                 WITH satzart = p_rrcty
                 WITH version = p_rvers
                 WITH company = p_rcomp
                 WITH jahr    = p_ryear.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Jun 2006 15:41:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-13T15:41:35Z</dc:date>
    <item>
      <title>Calling one program from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391673#M190248</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 need to call RVKUSTA1 program into Function module &amp;amp; that FM to used in BDT. So I think I shouldn't use Select-options. So any of u could u please send me the sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Rani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:23:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391673#M190248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T15:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391674#M190249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While calling another program which having selection-screen, you can supress that selection screen in the SUBMIT program by using variaants and range fields to pass corresponding fields in the selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391674#M190249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T15:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391675#M190250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;Program&amp;gt; ... WITH SELECTION-TABLE seltab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Effect&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;seltab is an internal table with the structure RSPARAMS. &lt;/P&gt;&lt;P&gt;This variant allows you to set the names and contents of the parameters and selection options dynamically at runtime. &lt;/P&gt;&lt;P&gt;You can use the function module &amp;lt;b&amp;gt;RS_REFRESH_FROM_SELECTOPTIONS&amp;lt;/b&amp;gt; to read the contents of the parameters and selection options of the current program into an internal table seltab with the structure &amp;lt;b&amp;gt;RSPARAMS&amp;lt;/b&amp;gt;. By using &amp;lt;b&amp;gt;SUBMIT ... WITH SELECTION-TABLE seltab&amp;lt;/b&amp;gt;, you can then pass these values on directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391675#M190250</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-06-13T15:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391676#M190251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      SUBMIT Program_Name
        WITH p1  EQ value1
        WITH p2  EQ value2
        WIth p3  EQ vlaue3
      AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, p1, p2, p3 are the parameters and value1, value2, value3 are corresponding values of the selection screen parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if it helps.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Mishra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:32:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391676#M190251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T15:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391677#M190252</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;you can do this way..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT rguslsep EXPORTING LIST TO MEMORY AND RETURN
                 WITH ledger  = p_rldnr
                 WITH satzart = p_rrcty
                 WITH version = p_rvers
                 WITH company = p_rcomp
                 WITH jahr    = p_ryear.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391677#M190252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T15:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391678#M190253</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;SUBMIT REPORT_name&lt;/P&gt;&lt;P&gt;       VIA SELECTION-SCREEN &lt;/P&gt;&lt;P&gt;       USING SELECTION-SET 'VARIANT1' &lt;/P&gt;&lt;P&gt;       USING SELECTION-SETS OF PROGRAM 'REPORT' &lt;/P&gt;&lt;P&gt;       AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It uses variants of the program REPORT when executing the program REPORT_name.  &lt;/P&gt;&lt;P&gt;The programs REPORT_name and REPORT must have the same SELECT-OPTIONS and PARAMETERs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391678#M190253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T15:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391679#M190254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please look into the FM: CRM_CCKPT_EXPORTSUMMARY.&lt;/P&gt;&lt;P&gt;This FM is similar to what you are doing. It is internally calling the report RVKUSTA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also, look into these includes (Std. SAP) where this same report is being called via SUBMIT functionality:&lt;/P&gt;&lt;P&gt; - MV45AF0F_FCODE_KUST&lt;/P&gt;&lt;P&gt; - MV43AF0F_FCODE_KUST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sumant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 16:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/1391679#M190254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T16:03:02Z</dc:date>
    </item>
  </channel>
</rss>

