<?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: Hi....SAP EXPORT statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617906#M1279816</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx.. but it does not work when call the report in background...... any other solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 May 2009 08:59:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-19T08:59:12Z</dc:date>
    <item>
      <title>Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617892#M1279802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;Please provide ur valuable solutions for the following &lt;/P&gt;&lt;P&gt;i am trying to call a report in background with Submitt Job FM ... To the called report i need to pass internal table so i am making use of "Export to shared Buffer " statement, this is working  only when internal table to be exported contains limited no of records.. when it exceeds certain limit , it gives me dump...... please provide the solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:13:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617892#M1279802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617893#M1279803</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/EXPORT to the memory area doesnot work in the background..so you need to use the  IMPROT/EXPORT using database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT i_tab
TO DATABASE INDX(LV) ID L_IKEY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617893#M1279803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617894#M1279804</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 internal table because of size limit execeeded, it is going to ABAP dump. Because, there is a limitation on the SAP ABAP memory for each and every user. So based on the number of columns, the number of rows will depend. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually this will be around 5 Lakh records. Please check in your scenario, whether this is the approximate number. If yes, either try reducing the selection criteria or else, ask the BASIS people to increase the ABAP memory, but usually they are not going to do. Since it affects the performance of the system.&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;Santhosh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:27:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617894#M1279804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617895#M1279805</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 export up to 30000 bytes only not more than that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an extract from SAP HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT_BUFFER_NO_MEMORY: The EXPORT data cluster is too large for the application buffer. This error should not often occur, since the buffer works with a displacement procedure working on the least recently used principle. If the error does occur, you can increase the profile parameter rsdb/obj/buffersize (see Profile parameter attributes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifies the objects to be exported in the internal table itab. You can use this variant instead of a static object list in each of the variants 1 to 4. All of the additions allowed in the static cases are also allowed in this 'dynamic' variant. The internal table itab may not be a HASHED TABLE or ANY TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first column of the table contains the object name in a data cluster. In other words, it corresponds to the static obj1 ... objn . The second column contains the different name in the program (if applicable), and corresponds to field f in the FROM f addition. If the table only has one column, or the second column only contaisn blanks, this corresponds to a static EXPORT without a FROM addition. In this case, the first column of the table (and second if applicable) should be of type Character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF OBJ_TAB OCCURS 5, &lt;/P&gt;&lt;P&gt;        CLUSTERNAME(30), &lt;/P&gt;&lt;P&gt;        PROGRAMNAME(10), &lt;/P&gt;&lt;P&gt;      END   OF OBJ_TAB. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: BEGIN OF B_PROG OCCURS 2, &lt;/P&gt;&lt;P&gt;        FIELD_1 TYPE I, &lt;/P&gt;&lt;P&gt;        FIELD_2 TYPE N, &lt;/P&gt;&lt;P&gt;      END    OF B_PROG. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: A(10), &lt;/P&gt;&lt;P&gt;      C_PROG LIKE SYST. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MOVE:  'A'      TO OBJ_TAB-CLUSTERNAME. &lt;/P&gt;&lt;P&gt;APPEND OBJ_TAB. CLEAR OBJ_TAB. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MOVE:  'B'      TO OBJ_TAB-CLUSTERNAME, &lt;/P&gt;&lt;P&gt;       'B_PROG' TO OBJ_TAB-PROGRAMNAME. &lt;/P&gt;&lt;P&gt;APPEND OBJ_TAB. CLEAR OBJ_TAB. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MOVE:  'C'      TO OBJ_TAB-CLUSTERNAME, &lt;/P&gt;&lt;P&gt;       'C_PROG' TO OBJ_TAB-PROGRAMNAME. &lt;/P&gt;&lt;P&gt;APPEND OBJ_TAB. CLEAR OBJ_TAB. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;EXPORT (OBJ_TAB) TO MEMORY ID 'ABCD'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dynamic EXPORT statement corresponds to a static EXPORT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT A  B FROM B_PROG  C FROM C_PROG TO MEMORY ID 'ABCD'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system exporst the field A with name A, the internal table B_PROG under the name B , and the structure C_PROG under the name C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime errors:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYN_IMEX_OBJ_NAME_EMPTY: The object name in the cluster (the contents of the first column of itab is empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYN_IMEX_OBJ_NAME_TWICE: An object name (in the cluster) occurs twice in the first column of the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYN_IMEX_OBJ_NOT_FOUND: The data object for export (the object whose name is entered in column 2 (or column 1 if column 2 is empty), does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Shankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617895#M1279805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617896#M1279806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In this link have good example of  IMPORT...EXPORT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/Helpdata/EN/fc/eb3bde358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/Helpdata/EN/fc/eb3bde358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617896#M1279806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617897#M1279807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope the following code will help you to solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ytest_report.

DATA : int_0000 TYPE TABLE OF pa0000,
       int_0001 TYPE TABLE OF pa0001.

SELECTION-SCREEN BEGIN OF BLOCK b1.
PARAMETERS: p_var(1) TYPE c NO-DISPLAY.
SELECTION-SCREEN END OF BLOCK b1.

IMPORT int_0000 TO int_0000 FROM MEMORY ID 'M_0000'.

SELECT * FROM pa0001 INTO TABLE int_0001 FOR ALL ENTRIES IN int_0000 WHERE
              pernr EQ int_0000-pernr.

IF p_var EQ 'X'.
  EXPORT int_0001 TO MEMORY ID 'M_0001'.
ENDIF.&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;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION ytest_fm.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  TABLES
*"      T_0001 STRUCTURE  PA0001 OPTIONAL
*"----------------------------------------------------------------------

  DATA : int_0000 TYPE TABLE OF pa0000.

  DATA: seltab TYPE STANDARD TABLE OF rsparams,
        wa_seltab LIKE LINE OF seltab.

  CLEAR seltab.

  wa_seltab-selname = 'P_VAR'.
  wa_seltab-kind = 'P'.
  wa_seltab-low = 'X'.
  APPEND wa_seltab TO seltab.
  CLEAR wa_seltab.

  SELECT * FROM pa0000 INTO TABLE int_0000.

  EXPORT int_0000 TO MEMORY ID 'M_int_0000'.

  SUBMIT ytest_report WITH SELECTION-TABLE seltab AND RETURN
             EXPORTING LIST TO MEMORY.

  IMPORT int_0001 TO t_0001 FROM MEMORY ID 'M_0001'.

ENDFUNCTION.&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;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:40:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617897#M1279807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617898#M1279808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankx.... but still problem is not solved.... with datadase addition import is not importing the data...... &lt;/P&gt;&lt;P&gt;any other solution ?&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617898#M1279808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617899#M1279809</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;Are you exporting the data database id from where you are trying to import ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617899#M1279809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617900#M1279810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx... but this does not work when we put the report in background execution.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617900#M1279810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617901#M1279811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx... but this does not work when we put the report in background execution.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617901#M1279811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617902#M1279812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx... but this does not work when we put the report in background execution.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617902#M1279812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617903#M1279813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes.... i have passed same ids to both import n export........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it seems working..plz wait ... i am transfering huge data so its taking time i guess..... will update u soon..... thanx ....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617903#M1279813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617904#M1279814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can we compare 30000  bytes in terms of records .. can u plz guess ...... i am passing 47000 records&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617904#M1279814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617905#M1279815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can we compare 30000  bytes in terms of records .. can u plz guess ...... i am passing 47000 records&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:57:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617905#M1279815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617906#M1279816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx.. but it does not work when call the report in background...... any other solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 08:59:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617906#M1279816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T08:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hi....SAP EXPORT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617907#M1279817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Avinash... it is working... ... Thanks again......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 09:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-sap-export-statement/m-p/5617907#M1279817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-19T09:16:13Z</dc:date>
    </item>
  </channel>
</rss>

