<?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: Reg: Import /Export  and Set/Get parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124563#M986167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this following link for set/get parameters with examples:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jul 2008 09:18:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-07T09:18:14Z</dc:date>
    <item>
      <title>Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124557#M986161</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;Can you help me with  specific scenarios/examples where we can use &lt;STRONG&gt;only&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;       1) import and export parameters&lt;/P&gt;&lt;P&gt;       2)  and another where we can use set and get &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:07:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124557#M986161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124558#M986162</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;go through this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we used get and set for SAP memory....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SAP Memory is a user-specific memory area of the current application server, which is accessed by all main sessions of a user session at once. ABAP programs have access to SPA/GPA parameters stored in the SAP Memory (also called SET/GET parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we make pur report to interactive one.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM zf_sublist USING ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                      sobj TYPE slis_selfield.              "#EC CALLED&lt;/P&gt;&lt;P&gt;  DATA : lv_vbeln   TYPE vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sobj-fieldname = 'VBELN'.&lt;/P&gt;&lt;P&gt;    lv_vbeln = sobj-value.&lt;/P&gt;&lt;P&gt;    IF lv_vbeln &amp;gt; 0.&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'VF'  FIELD lv_vbeln.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:13:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124558#M986162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124559#M986163</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 u want to use EXPORT and SUBMIT in the first report, ur internal table data will be first moved to Mem ID and after SUBMIT, it will go to the 2nd report and execution happens in report 2. There if u use IMPORT, the internal table data will be used there and the control will be back to ur report1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, the output of Report 2 will be written at first as a result of ur import in report 2. Then the content of report 1 will be wrtten in output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report zscr_navigate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: a type i value 10,&lt;/P&gt;&lt;P&gt;b type string,&lt;/P&gt;&lt;P&gt;c type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: int_tab type standard table of zprod with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from zprod into table int_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export int_tab to memory id 'TEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit zscr_navigate1 and return.&lt;/P&gt;&lt;P&gt;write / 'back to main'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report 2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSCR_NAVIGATE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : b TYPE string VALUE 'hello'.&lt;/P&gt;&lt;P&gt;DATA : int_tab TYPE STANDARD TABLE OF zprod,&lt;/P&gt;&lt;P&gt;fs TYPE zprod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE / b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT int_tab FROM MEMORY ID 'TEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR fs.&lt;/P&gt;&lt;P&gt;LOOP at int_tab INTO fs.&lt;/P&gt;&lt;P&gt;WRITE / fs.&lt;/P&gt;&lt;P&gt;clear fs.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps u..&lt;/P&gt;&lt;P&gt;&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;Ankur Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124559#M986163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124560#M986164</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;In EXPORT_PROGRAM1 porgarm p_num value is exported to memory id 'ABC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the IMPORT_PROGRAM1  program is importing p_num from memory id 'ABC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT   EXPORT_PROGRAM1                  .
parameters:
   p_num(3) type c  .

   export p_num to memory id 'ABC'.

  WRITE : / P_NUM.

  SUBMIT  IMPORT_PROGRAM1 AND RETURN.

  WRITE : 'EXPORT _PROGRAM',P_NUM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT   IMPORT_PROGRAM1                  .
data:
  P_NUM(3) type c.
 
  import P_NUM from memory  ID 'ABC'.

  WRITE : P_NUM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example for SET and GET.&lt;/P&gt;&lt;P&gt;  In SET_PROGRAM1 program  'XYZ' is the parameter id for p_num. &lt;/P&gt;&lt;P&gt;  In the gET_PROGRAM1 program p_num value  is retrieved from memory Id using GET .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  SET_PROGRAM1                    .

data:
  p_num type sy-datum.

  p_num = sy-datum.

  set parameter id 'XYZ' field p_num.

  submit get_program1 and return .

  write : p_num .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  GET_PROGRAM1                     .
data:
  p_num1   type sy-uzeit.


  get parameter id 'XYZ'    field p_num1.

  write : / p_num1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both examples from one programs, In one program  the value of p_num is exported to memory id and the second program is importing it from the memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   IMPORT, EXPORT are used to retrieve or pass data   within the ABAP memory. i.e within internal sessions.&lt;/P&gt;&lt;P&gt; Using SET , GET  are used to retrieve or pass data within  SAP Memory.I.e Within the external sessions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124560#M986164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124561#M986165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii!&lt;/P&gt;&lt;P&gt;  Check out this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm&lt;/A&gt;&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;Abhijeet Kulshreshtha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124561#M986165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124562#M986166</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;   Import and Export&lt;/P&gt;&lt;P&gt; IN short we use these statements to pass the data from one report to another by using ABAP memory and SAP memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to know more about his check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Under this goto RUNING ABBAP PROGRAMS---&amp;gt;CALLING PROGRAMS AND  here you can fine the full details about the import and export and even SET and GET statements usage with a good examples&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;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124562#M986166</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-07-07T09:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124563#M986167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this following link for set/get parameters with examples:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:18:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124563#M986167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124564#M986168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Please refer the following :&lt;/P&gt;&lt;P&gt;SAP Memory &lt;/P&gt;&lt;P&gt;SAP memory is a memory area to which all main sessions &lt;/P&gt;&lt;P&gt;within a SAPgui have access. You can use SAP memory either &lt;/P&gt;&lt;P&gt;to pass data from one program to another within a session, &lt;/P&gt;&lt;P&gt;or to pass data from one session to another.  Application &lt;/P&gt;&lt;P&gt;programs that use SAP memory must do so using SPA/GPA &lt;/P&gt;&lt;P&gt;parameters (also known as SET/GET parameters). These &lt;/P&gt;&lt;P&gt;parameters can be set either for a particular user or for a &lt;/P&gt;&lt;P&gt;particular program using the SET PARAMETER statement. Other &lt;/P&gt;&lt;P&gt;ABAP programs can then retrieve the set parameters using &lt;/P&gt;&lt;P&gt;the GET PARAMETER statement. The most frequent use of &lt;/P&gt;&lt;P&gt;SPA/GPA parameters is to fill input fields on screens &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP/4 Memory &lt;/P&gt;&lt;P&gt;ABAP memory is a memory area that all ABAP programs within &lt;/P&gt;&lt;P&gt;the same internal session can access using the EXPORT and &lt;/P&gt;&lt;P&gt;IMPORT statements. Data within this area remains intact &lt;/P&gt;&lt;P&gt;during a whole sequence of program calls. To pass data &lt;/P&gt;&lt;P&gt;to a program which you are calling, the data needs to be &lt;/P&gt;&lt;P&gt;placed in ABAP memory before the call is made. The internal &lt;/P&gt;&lt;P&gt;session of the called program then replaces that of the &lt;/P&gt;&lt;P&gt;calling program. The program called can then read from the &lt;/P&gt;&lt;P&gt;ABAP memory. If control is then returned to the program &lt;/P&gt;&lt;P&gt;which made the initial call, the same process operates in &lt;/P&gt;&lt;P&gt;reverse. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP memory  &lt;/P&gt;&lt;P&gt;The SAP memory, otherwise known as the global memory, is &lt;/P&gt;&lt;P&gt;available to a user during the entire duration of a &lt;/P&gt;&lt;P&gt;terminal session. Its contents are retained across &lt;/P&gt;&lt;P&gt;transaction boundaries as well as external and internal &lt;/P&gt;&lt;P&gt;sessions. The SET PARAMETER and GET PARAMETER statements &lt;/P&gt;&lt;P&gt;allow you to write to, or read from, the SAP memory.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP/4 memory  &lt;/P&gt;&lt;P&gt;The contents of the ABAP/4 memory are retained only during &lt;/P&gt;&lt;P&gt;the lifetime of an external session (see also Organization &lt;/P&gt;&lt;P&gt;of Modularization Units). You can retain or pass data &lt;/P&gt;&lt;P&gt;across internal sessions. The EXPORT TO MEMORY and IMPORT &lt;/P&gt;&lt;P&gt;FROM MEMORY statements allow you to write data to, or read &lt;/P&gt;&lt;P&gt;data from, the ABAP memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if use ful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;usha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124564#M986168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124565#M986169</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;We can use SET and GET parameters to put the values in the SAP memory. SAP memeory is a User specific memory, a user can access this memory as long as he logs on to the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT and EXPORT parameter are used to put the ABAP Memory values.&lt;/P&gt;&lt;P&gt;ABAP Memory is a session specific memeory and avaliable to only that period during which a session is active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will Help.&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124565#M986169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124566#M986170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we use SET GET parameter id to set values &amp;amp; to read values from particular parameter id..&lt;/P&gt;&lt;P&gt;refer following link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use in the program like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GET CURSOR FIELD fs_kna1-vbeln
      VALUE w_vbeln.

      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = w_vbeln
        IMPORTING
          output = w_vbeln.

      SELECT SINGLE vbeln
      FROM vbak
      INTO w_vbak
      WHERE vbeln = w_vbeln.

      IF sy-subrc &amp;lt;&amp;gt; 0.
       MESSAGE e015(zmsg9).
      ENDIF.

      SET PARAMETER ID 'AUN' FIELD w_vbeln.
      CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  for import &amp;amp; export statement refer to following link with example in it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-sap-and-abap-memory.htm&lt;/A&gt;&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;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 09:22:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124566#M986170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Import /Export  and Set/Get parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124567#M986171</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;Suppose you want to Pass value in Between two Internal Session The you should use ABAP Memory that is shared by the internal session of same  External Session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In That case you should use EXPORT AND IMPORT options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when you want to pass values between two program that are opened in Internal Session Of Two Different External Session.&lt;/P&gt;&lt;P&gt;Then you use SAP Memory Shared By Different External Session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In That case go for SET And GET PARAMETERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrainsonline.com/ARTICLES/TECHNICAL/ABAP/MEMORY/SAP_INTERNAL_MEMORY.html" target="test_blank"&gt;http://www.sapbrainsonline.com/ARTICLES/TECHNICAL/ABAP/MEMORY/SAP_INTERNAL_MEMORY.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9df735c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9df735c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope it will help you.&lt;/P&gt;&lt;P&gt;Revert back if any Confusion.&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>Mon, 07 Jul 2008 09:24:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-import-export-and-set-get-parameters/m-p/4124567#M986171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T09:24:26Z</dc:date>
    </item>
  </channel>
</rss>

