<?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: DIALOG PROGRAMS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218364#M135479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chetana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per form etiquette's&lt;/P&gt;&lt;P&gt;If satisfied , please close the thread by rewarding appropriate points to the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Mar 2006 11:09:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-20T11:09:09Z</dc:date>
    <item>
      <title>DIALOG PROGRAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218359#M135474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt; I want to know, How to pass field values from One screen to Other screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Chetana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 08:00:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218359#M135474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T08:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: DIALOG PROGRAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218360#M135475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can declare global variables at the program level / TOP INCLUDE level and assign values to it so that the variable values are reflected in all the screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 08:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218360#M135475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T08:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: DIALOG PROGRAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218361#M135476</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 should do anything, if the screens are defined in the same programs, they can see all global data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you transfer the input values to gloabal data, they can be used by both screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 08:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218361#M135476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T08:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: DIALOG PROGRAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218362#M135477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Chetana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*How to pass field values from One screen to Other screen.&lt;/P&gt;&lt;P&gt;there are two ways of passing data &lt;/P&gt;&lt;P&gt;  ABAP Memory and&lt;/P&gt;&lt;P&gt;  SAP Memory.&lt;/P&gt;&lt;P&gt;  It also depends on the context or the scenario , like if we have the same function group and want to pass data of a structure (say CAUFVD)from a standard transaction to a badi in which the we don't have CAUFVD as a signature , in that case we can pass the field value using Assign statement making use of global Memory for which the syntax s like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE caufvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN ('(SAPLCOIH)caufvd') TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt; Where SAPLCOIH is the Program name and caufvd is the structure whose value will be come in the Field symbol &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you may get some help from this or let me know if you still have some doubts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;P&gt;Rewrd points, if found helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 08:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218362#M135477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T08:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: DIALOG PROGRAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218363#M135478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SPA/GPA Parameter Technique is a general procedure for filling the initial screen when a program is called. To use this technique for parameters on selection screens, you must link the parameter to an SPA/GPA parameter from the SAP memory as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS &amp;lt;p&amp;gt; ...... MEMORY ID &amp;lt;pid&amp;gt;...... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use this addition, the current value of SPA/GPA parameter &amp;lt;pid&amp;gt; from the global user-related SAP memory is assigned to parameter &amp;lt;p&amp;gt; as a default value. Description &amp;lt;pid&amp;gt; can contain a maximum of twenty characters and must not be enclosed in quotation marks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;PARAMETERS TEST(16) MEMORY ID RID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 08:43:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218363#M135478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T08:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: DIALOG PROGRAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218364#M135479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chetana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per form etiquette's&lt;/P&gt;&lt;P&gt;If satisfied , please close the thread by rewarding appropriate points to the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 11:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programs/m-p/1218364#M135479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T11:09:09Z</dc:date>
    </item>
  </channel>
</rss>

