<?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: Function - dynamic export parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652531#M611528</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 try the following approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets assume your ODS structure which bring the data is XTH_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;Creating Dynamic internal table of type XTH_DATA.&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : LT_RESULT_D       TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;If the incoming table is hashed type&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS :    &amp;lt;LT_RESULT&amp;gt;  TYPE HASHED TABLE. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA: LT_RESULT_D  LIKE XTH_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Creating Dynamic work area&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:     L_REC_D  TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:  &amp;lt;L_REC&amp;gt;      TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA: L_REC_D  LIKE LINE OF XTH_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ASSIGN:&lt;/P&gt;&lt;P&gt;    LT_RESULT_D-&amp;gt;* TO &amp;lt;LT_RESULT&amp;gt;,&lt;/P&gt;&lt;P&gt;    L_REC_D-&amp;gt;*     TO &amp;lt;L_REC&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;In addition, we also should create field symbols for every***&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;field which will be used directly in the further code.*** &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS : &amp;lt;CALMONTH2&amp;gt;  TYPE  /BI0/OICALMONTH2  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT XTH_DATA ASSIGNING &amp;lt;L_REC&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT :&lt;/P&gt;&lt;P&gt;     		'S_CHAS-0CALMONTH2' OF STRUCTURE &amp;lt;L_REC&amp;gt; TO &amp;lt;CALMONTH2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;lt;CALMONTH2&amp;gt; = '02' .&lt;/P&gt;&lt;P&gt;INSERT &amp;lt;L_REC&amp;gt; INTO TABLE &amp;lt;LT_RESULT&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it solves ur query kindly close the thread and award points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Shafiq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Aug 2007 10:55:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-20T10:55:51Z</dc:date>
    <item>
      <title>Function - dynamic export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652529#M611526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have several similar ODSs objects, i would like to read their content (export paramater = structure of the ODS), but i don't want to create the function for every ODS. Is it possible set up export parameter as dynamic or do you have another solution ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for advice in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 09:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652529#M611526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T09:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function - dynamic export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652530#M611527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare the import parameter as type ref to DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the program calling the FM first fill this itab with data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type &amp;lt;ODSNAMETABLENAME&amp;gt; .&lt;/P&gt;&lt;P&gt;data: odstab type ref to data .&lt;/P&gt;&lt;P&gt;*fill data to itab &lt;/P&gt;&lt;P&gt; get reference of itab into odstab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now pass this odstab to the FM import parameter (which of type ref to data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this approach only the program which is calling the FM whould know the odstable name in design time. this can also be avoided by dynamically creating the itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;within the FM code you can have the following code to convert the type ref to DATA vairalbe to a itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;outtab&amp;gt; type any table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign var-&amp;gt;* to &amp;lt;outtab&amp;gt; . (where var is the import parameter name which is of type ref to DATA)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, didnt read the question carefully and missed that you want it as export parameter. you can use similar approach for export param as well&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Durairaj Athavan Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 10:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652530#M611527</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-08-20T10:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Function - dynamic export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652531#M611528</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 try the following approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets assume your ODS structure which bring the data is XTH_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;Creating Dynamic internal table of type XTH_DATA.&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : LT_RESULT_D       TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;If the incoming table is hashed type&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS :    &amp;lt;LT_RESULT&amp;gt;  TYPE HASHED TABLE. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA: LT_RESULT_D  LIKE XTH_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Creating Dynamic work area&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:     L_REC_D  TYPE REF TO DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:  &amp;lt;L_REC&amp;gt;      TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA: L_REC_D  LIKE LINE OF XTH_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ASSIGN:&lt;/P&gt;&lt;P&gt;    LT_RESULT_D-&amp;gt;* TO &amp;lt;LT_RESULT&amp;gt;,&lt;/P&gt;&lt;P&gt;    L_REC_D-&amp;gt;*     TO &amp;lt;L_REC&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;In addition, we also should create field symbols for every***&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;field which will be used directly in the further code.*** &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS : &amp;lt;CALMONTH2&amp;gt;  TYPE  /BI0/OICALMONTH2  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT XTH_DATA ASSIGNING &amp;lt;L_REC&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT :&lt;/P&gt;&lt;P&gt;     		'S_CHAS-0CALMONTH2' OF STRUCTURE &amp;lt;L_REC&amp;gt; TO &amp;lt;CALMONTH2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;lt;CALMONTH2&amp;gt; = '02' .&lt;/P&gt;&lt;P&gt;INSERT &amp;lt;L_REC&amp;gt; INTO TABLE &amp;lt;LT_RESULT&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it solves ur query kindly close the thread and award points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Shafiq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 10:55:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652531#M611528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T10:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function - dynamic export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652532#M611529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for help, but i am not sure if i understand that correctly.The structure of the ODSs tables are different, how could i set up export parameter. ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import parameter = typ_table&lt;/P&gt;&lt;P&gt;export parameter = e_result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program = if typ_table = 'A' - &amp;gt; table = 'AAA'&lt;/P&gt;&lt;P&gt;                else typ_table = 'B' - &amp;gt; table = 'BBB' .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from (table)  INTO CORRESPONDING FIELDS OF e_result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the structure of the table (e_result) is different&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to solve that by your solution ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 12:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652532#M611529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T12:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Function - dynamic export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652533#M611530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try this solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import parameter = typ_table type char30&lt;/P&gt;&lt;P&gt;export parameter = e_result type table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****&lt;STRONG&gt;Function module code&lt;/STRONG&gt;******&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZZZZZ.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(TYP_TABLE) TYPE  CHAR20&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(E_RESULT) TYPE  TABLE&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;  DATA : idetails TYPE abap_compdescr_tab,&lt;/P&gt;&lt;P&gt;         xdetails TYPE abap_compdescr,&lt;/P&gt;&lt;P&gt;         xfc TYPE lvc_s_fcat,&lt;/P&gt;&lt;P&gt;         ifc TYPE lvc_t_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : ref_table_des TYPE REF TO cl_abap_structdescr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : itab1 TYPE REF TO data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS : &amp;lt;lt_result&amp;gt; TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the structure of the table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ref_table_des ?=&lt;/P&gt;&lt;P&gt;      cl_abap_typedescr=&amp;gt;describe_by_name( typ_table ).&lt;/P&gt;&lt;P&gt;  idetails[] = ref_table_des-&amp;gt;components[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT idetails INTO xdetails.&lt;/P&gt;&lt;P&gt;    CLEAR xfc.&lt;/P&gt;&lt;P&gt;    xfc-fieldname = xdetails-name .&lt;/P&gt;&lt;P&gt;    xfc-datatype = xdetails-type_kind.&lt;/P&gt;&lt;P&gt;    xfc-inttype = xdetails-type_kind.&lt;/P&gt;&lt;P&gt;    xfc-intlen = xdetails-length.&lt;/P&gt;&lt;P&gt;    xfc-decimals = xdetails-decimals.&lt;/P&gt;&lt;P&gt;    APPEND xfc TO ifc.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table&lt;/P&gt;&lt;P&gt;             EXPORTING&lt;/P&gt;&lt;P&gt;                it_fieldcatalog = ifc&lt;/P&gt;&lt;P&gt;             IMPORTING&lt;/P&gt;&lt;P&gt;                ep_table        = itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN  itab1-&amp;gt;* TO &amp;lt;lt_result&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: l_rec_d TYPE REF TO data.&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS: &amp;lt;l_rec&amp;gt;.&lt;/P&gt;&lt;P&gt;  CREATE DATA: l_rec_d LIKE LINE OF &amp;lt;lt_result&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN l_rec_d-&amp;gt;* TO &amp;lt;l_rec&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM (itab) INTO corresponding fields of TABLE &amp;lt;lt_result&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT &amp;lt;lt_result&amp;gt; INTO &amp;lt;l_rec&amp;gt;.&lt;/P&gt;&lt;P&gt;    INSERT &amp;lt;l_rec&amp;gt; INTO TABLE e_result.&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;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your query is answered close the thread and reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Shafiq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652533#M611530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Function - dynamic export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652534#M611531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;thanks a lot, but I have one small problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I received an error if i use some Key Figure (e.g. 0ACC_QTY) in the table - error icompatible fields.&lt;/P&gt;&lt;P&gt;I can see in the table definition length(17) and decim. places 3 for KF, but in the line of program (debug) , i see &lt;/P&gt;&lt;P&gt; xfc-intlen    = xdetails-length.   - &amp;gt; 9&lt;/P&gt;&lt;P&gt; xfc-decimals  = xdetails-decimals.- &amp;gt; 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 13:03:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-dynamic-export-parameter/m-p/2652534#M611531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T13:03:50Z</dc:date>
    </item>
  </channel>
</rss>

