<?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: Retaining called program values in the calling program. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177912#M998675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dexter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. U want the value of some variable xyz&lt;/P&gt;&lt;P&gt;from program 1,&lt;/P&gt;&lt;P&gt;into program 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. We can use of EXPORT/IMPORT syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Just make sure of the following things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. a) the variable name should be same&lt;/P&gt;&lt;P&gt;(in prog1, prog2)&lt;/P&gt;&lt;P&gt;b) The Declaration should also match&lt;/P&gt;&lt;P&gt;c) use export / import with the same name as variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In prog1: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
eg. DATA : MYVAR TYPE I.
EXPORT MYVAR TO MEMORY ID 'MYVAR'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In prog2: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
eg. DATA : MYVAR TYPE I.
IMPORT MYVAR FROM MEMORY ID 'MYVAR'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Then it will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Moreover, u can check the value of &lt;/P&gt;&lt;P&gt;sy-subrc just after export/import&lt;/P&gt;&lt;P&gt;to know, whether it was successful or not.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jul 2008 09:26:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-17T09:26:28Z</dc:date>
    <item>
      <title>Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177902#M998665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;    Suppose im coding in progam A  and I call program B. Is there any way in which i can access the variables/values of program B in program A?.&lt;/P&gt;&lt;P&gt;   Also is there any way in which program B can access program A values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 08:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177902#M998665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T08:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177903#M998666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make use of import / export statements...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can export a variable in program B and then can import the same in Program A.The reverse can also be done...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 08:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177903#M998666</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2008-07-17T08:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177904#M998667</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;Welcome to SDN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Yes you can access one program variables into another by using IMPORT and EXPORT statements where your ABAP programs will access the memory to access those values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For further information about IMPORT and EXPORT statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/rmtiwari/Resources/Utilities/ABAPReference/ABAPReference.html" target="test_blank"&gt;http://www.geocities.com/rmtiwari/Resources/Utilities/ABAPReference/ABAPReference.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 08:38:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177904#M998667</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-07-17T08:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177905#M998668</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;For that you have use SAP Memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose In Program A You have Variable var1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you want to access the value of Var1 in Program B then,&lt;/P&gt;&lt;P&gt; Set the Parameter Id for Var1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like-&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'P001'  FIELD var1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you want the value of var1 into Program b the,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use - GET PARAMETER ID 'P001' field var2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Var2 is the variable of Program B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same comdition will there when you access the variable of Program B into Program A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use EXPORT And IMPORT statement if the Both Program are opened in same External Session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like &lt;/P&gt;&lt;P&gt;EXPORT var1 TO MEMORY ID 'P001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Getting value-&lt;/P&gt;&lt;P&gt;IMPORT var1 to Var2 FROM MEMORY ID 'P001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 08:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177905#M998668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T08:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177906#M998669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii!&lt;/P&gt;&lt;P&gt;  Use Import/ Export statements.&lt;/P&gt;&lt;P&gt;Check out this sample code, actually they are two programs.&lt;/P&gt;&lt;P&gt;In program1, I'm fetching the data from spfli table. In program2, I'm fetching the data from sflight corresponding to records from spfli.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  Z_abap_memory.
DATA:
  w_carrid TYPE spfli-carrid,
  BEGIN OF fs_spfli,
    carrid LIKE spfli-carrid,
    connid LIKE spfli-connid,
    fltime LIKE spfli-fltime,
  END OF fs_spfli.
DATA:
  t_spfli LIKE
    TABLE OF
          fs_spfli.

SELECT-OPTIONS:
  s_carrid FOR w_carrid.

START-OF-SELECTION.
  PERFORM get_spfli.
  PERFORM disp_spfli.
AT LINE-SELECTION.
  IF sy-lsind EQ 1.
    EXPORT t_spfli TO MEMORY ID 'ABC'.
    SUBMIT Z_ABAP_MEMORY1 AND RETURN.
  ENDIF.
END-OF-SELECTION.
    PERFORM disp_spfli.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  get_spfli
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM get_spfli .
  SELECT carrid
         connid
         fltime
    FROM spfli
    INTO TABLE t_spfli
   WHERE carrid IN s_carrid.

ENDFORM.                    " get_spfli
*&amp;amp;---------------------------------------------------------------------
*
*&amp;amp;      Form  disp_spfli
*&amp;amp;---------------------------------------------------------------------
*
*       text
*----------------------------------------------------------------------
*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------
*
FORM disp_spfli .
  LOOP AT t_spfli INTO fs_spfli.
    WRITE: / fs_spfli-carrid,
             fs_spfli-connid,
             fs_spfli-fltime.
  ENDLOOP.
  HIDE:
    fs_spfli-carrid,
    fs_spfli-connid.
ENDFORM.                    " disp_spfli
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  Z_abap_memory1.
DATA:
  BEGIN OF fs_spfli,
    carrid LIKE spfli-carrid,
    connid LIKE spfli-connid,
    fltime LIKE spfli-fltime,
  END OF fs_spfli,
  fs_fl LIKE fs_spfli.
DATA:
  BEGIN OF fs_flight,
    carrid LIKE sflight-carrid,
    connid LIKE sflight-connid,
    fldate LIKE sflight-fldate,
  END OF fs_flight.

DATA:
  t_spfli LIKE
    TABLE OF
          fs_spfli.

DATA:
  t_fl LIKE t_spfli.

DATA:
  t_flight LIKE
     TABLE OF
           fs_flight.

IMPORT t_spfli FROM MEMORY ID 'ABC'.
t_fl = t_spfli.

SELECT carrid
       connid
       fldate
  FROM sflight
  INTO TABLE t_flight
  FOR ALL ENTRIES IN t_spfli
 WHERE carrid = t_spfli-carrid
   AND connid = t_spfli-connid.


LOOP AT t_flight INTO fs_flight.
  WRITE: / fs_flight-carrid,
           fs_flight-connid,
           fs_flight-fldate.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 08:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177906#M998669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T08:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177907#M998670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not only variables but I would also want to have the same internal table in the 2 programs.&lt;/P&gt;&lt;P&gt;     Can you give me the exact syntax for this parameter ID?.&lt;/P&gt;&lt;P&gt;The thing is im Dynamically creating program B in program A and then calling that program B.&lt;/P&gt;&lt;P&gt;     If i don't have access to program B's variablesin program A and vice versa then I would have to have the remainder of my code in program B(ie in the internal table which contains my code for program B).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 08:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177907#M998670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T08:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177908#M998671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone.&lt;/P&gt;&lt;P&gt;Will try out this logic now. &lt;/P&gt;&lt;P&gt;Will definitely reward you'll if it works.&lt;/P&gt;&lt;P&gt;Once again thanks a ton.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 08:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177908#M998671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T08:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177909#M998672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijeet&lt;/P&gt;&lt;P&gt;   When i export a variable to another program and that program makes changes to the variable are the changes visible in the calling program?.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 09:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177909#M998672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T09:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177910#M998673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dexter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example given above with IMPORT and EXPORT are good. And don't use the SAP memory for your local programs. Not a good practice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One important thing from your post is that, you have given it as..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i export a &lt;STRONG&gt;variable to another program&lt;/STRONG&gt; and that program makes changes to the variable are the changes visible in the calling program?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While importing or exporting, please remember it that you are not importing to or exporting from any other program. It is the ABAP memory that you are using which is shared by your internal sessions. When you import to a memory location, that value is stored in the ABAP memory and when you call another program using SUBMIT, the other program is loaded into the internal session of your calling program. The memory used by both the programs is same thereby if you make any changes, they are also reflected into your calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Indu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 09:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177910#M998673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T09:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177911#M998674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii Dexter!&lt;/P&gt;&lt;P&gt;  If you pass a value from Program A to Program B and do some modifications then that modification will not be reflected back to calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made two other simple programs, you can check them out.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT z_sdn.

PARAMETERS:
  p_num TYPE i.

DATA: w_num TYPE i.


 w_num = p_num.

 EXPORT w_num TO MEMORY ID 'ABC'.

 SUBMIT z_sdn1 AND RETURN.

 WRITE: w_num.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  Z_SDN1                                                      .

DATA: w_num TYPE i.

IMPORT w_num FROM MEMORY ID 'ABC'.

w_num = w_num + 2.
WRITE: w_num.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After executing the progam you'll get output as 5 , but when you click 'back' you'll get 3. This means that changes are not reflected back.&lt;/P&gt;&lt;P&gt;   I hope this sample code will clear your doubt.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 09:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177911#M998674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T09:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Retaining called program values in the calling program.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177912#M998675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dexter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. U want the value of some variable xyz&lt;/P&gt;&lt;P&gt;from program 1,&lt;/P&gt;&lt;P&gt;into program 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. We can use of EXPORT/IMPORT syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Just make sure of the following things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. a) the variable name should be same&lt;/P&gt;&lt;P&gt;(in prog1, prog2)&lt;/P&gt;&lt;P&gt;b) The Declaration should also match&lt;/P&gt;&lt;P&gt;c) use export / import with the same name as variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In prog1: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
eg. DATA : MYVAR TYPE I.
EXPORT MYVAR TO MEMORY ID 'MYVAR'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In prog2: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
eg. DATA : MYVAR TYPE I.
IMPORT MYVAR FROM MEMORY ID 'MYVAR'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Then it will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Moreover, u can check the value of &lt;/P&gt;&lt;P&gt;sy-subrc just after export/import&lt;/P&gt;&lt;P&gt;to know, whether it was successful or not.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 09:26:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retaining-called-program-values-in-the-calling-program/m-p/4177912#M998675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T09:26:28Z</dc:date>
    </item>
  </channel>
</rss>

