<?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 call a dialog program with return value in another dialog program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835684#M355688</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;If the above solutions doesn't fit your needs, another workaround would be to create a table where the called program fills with the data that the calling program will use to continue the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jan 2007 17:36:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-18T17:36:47Z</dc:date>
    <item>
      <title>How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835680#M355684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I call a dialog program with return value from another dialog program?&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;&lt;/P&gt;&lt;P&gt;Alok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 10:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835680#M355684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T10:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835681#M355685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use export to memory / import from memory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 11:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835681#M355685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T11:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835682#M355686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alok,&lt;/P&gt;&lt;P&gt;You can you SET/GET parameters to do this.&lt;/P&gt;&lt;P&gt;This is some information about this.&lt;/P&gt;&lt;P&gt;To fill the input fields of a called transaction with data from the calling program, you can use the SPA/GPA technique. SPA/GPA parameters are values that the system stores in the global, user-specific SAP memory. SAP memory allows you to pass values between programs. A user can access the values stored in the SAP memory during one terminal session for all parallel sessions. Each SPA/GPA parameter is identified by a 20-character code. You can maintain them in the Repository Browser in the ABAP Workbench. The values in SPA/GPA parameters are user-specific. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP programs can access the parameters using the SET PARAMETER and GET PARAMETERstatements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To fill one, use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID pid FIELD f.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement saves the contents of field f under the ID pid in the SAP memory. The ID pid can be up to 20 characters long. If there was already a value stored under pid, this statement overwrites it. If you double-click pid in the ABAP Editor, parameters that do not exist can be created as a Repository object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To read an SPA/GPA parameter, use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PARAMETER ID pid FIELD f.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement places the value stored under the pid ID into the variable f. If the system does not find any value for pid in the SAP memory, sy-subrc is set to 4. Otherwise, it sets the value to 0. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;SriRatna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 13:56:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835682#M355686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T13:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835683#M355687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 17:06:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835683#M355687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T17:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835684#M355688</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;If the above solutions doesn't fit your needs, another workaround would be to create a table where the called program fills with the data that the calling program will use to continue the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 17:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835684#M355688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T17:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835685#M355689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 19:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835685#M355689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T19:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835686#M355690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 19:01:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835686#M355690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T19:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835687#M355691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 19:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835687#M355691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T19:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to call a dialog program with return value in another dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835688#M355692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not a place to resolve your personal issues.  SAP has provided this domain for professionals to help find solutions for issues RELATED TO SAP that he/she is not able to resolve.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I request moderator to either lock this thread or ban the IP address of the people involved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sunil Achyut&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 19:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-a-dialog-program-with-return-value-in-another-dialog-program/m-p/1835688#M355692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T19:47:44Z</dc:date>
    </item>
  </channel>
</rss>

