<?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: Call function 'Download' using different internal tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743546#M322826</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;Check this example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It download t_mara1 &amp;amp; t_mara2..Modify the code according to your requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_mara1  LIKE mara OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: t_mara2 LIKE mara OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_filename LIKE rlgrap-filename.&lt;/P&gt;&lt;P&gt;DATA: v_char5(5).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_variable(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 2 TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: v_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_char5 = sy-index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SHIFT v_char5 LEFT DELETING LEADING space.&lt;/P&gt;&lt;P&gt;  CONDENSE v_char5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'C:\TEST' v_char5 '.TXT' INTO v_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'T_MARA' v_char5 '[]' INTO v_variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN (v_variable) TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DOWNLOAD'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            filename                = v_filename&lt;/P&gt;&lt;P&gt;            filetype                = 'DAT'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            data_tab                = &amp;lt;fs&amp;gt;&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            invalid_filesize        = 1&lt;/P&gt;&lt;P&gt;            invalid_table_width     = 2&lt;/P&gt;&lt;P&gt;            invalid_type            = 3&lt;/P&gt;&lt;P&gt;            no_batch                = 4&lt;/P&gt;&lt;P&gt;            unknown_error           = 5&lt;/P&gt;&lt;P&gt;            gui_refuse_filetransfer = 6&lt;/P&gt;&lt;P&gt;            customer_error          = 7&lt;/P&gt;&lt;P&gt;            OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&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;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Dec 2006 23:36:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-18T23:36:32Z</dc:date>
    <item>
      <title>Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743543#M322823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i declare 10 different internal tables, with the same structure but different data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to create 10 different files (one from each internal table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont want to call 10 times the function download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there someway to put a variable name(that refeer to my internal table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM Create_file USING mytable.&lt;/P&gt;&lt;P&gt;PERFORM Create_file USING mytable2.&lt;/P&gt;&lt;P&gt;PERFORM Create_file USING mytable3.&lt;/P&gt;&lt;P&gt;PERFORM Create_file USING etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM create_file USING table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: file(128),&lt;/P&gt;&lt;P&gt;        zcancel(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  archivo = 'c:\loans.dat'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DOWNLOAD'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            bin_filesize        = ' '&lt;/P&gt;&lt;P&gt;            codepage            = ' '&lt;/P&gt;&lt;P&gt;            filemask_all        = ' '&lt;/P&gt;&lt;P&gt;            filemask_mask       = ' '&lt;/P&gt;&lt;P&gt;            filemask_text       = ' '&lt;/P&gt;&lt;P&gt;            filename            = file&lt;/P&gt;&lt;P&gt;            filetype            = 'dat'&lt;/P&gt;&lt;P&gt;            filetype_no_change  = ' '&lt;/P&gt;&lt;P&gt;            filetype_no_show    = ' '&lt;/P&gt;&lt;P&gt;            item                = ' '&lt;/P&gt;&lt;P&gt;            mode                = ' '&lt;/P&gt;&lt;P&gt;            wk1_n_format        = ' '&lt;/P&gt;&lt;P&gt;            wk1_n_size          = ' '&lt;/P&gt;&lt;P&gt;            wk1_t_format        = ' '&lt;/P&gt;&lt;P&gt;            wk1_t_size          = ' '&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            cancel              = zcancel&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;            data_tab            =  &amp;lt;b&amp;gt;TABLE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            invalid_filesize    = 01&lt;/P&gt;&lt;P&gt;            invalid_table_width = 02&lt;/P&gt;&lt;P&gt;            invalid_type        = 03&lt;/P&gt;&lt;P&gt;            no_batch            = 04&lt;/P&gt;&lt;P&gt;            unknown_error       = 05.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 23:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743543#M322823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T23:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743544#M322824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can pass generically using TABLES parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM Create_file TABLES mytable.
PERFORM Create_file TABLES mytable2.
PERFORM Create_file TABLES mytable3.

FORM create_file TABLES table.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 23:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743544#M322824</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-18T23:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743545#M322825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may also want to make sure that you change the file name everytime you call it, you can pass this value to the subroutine also using the USING keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 23:33:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743545#M322825</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-18T23:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743546#M322826</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;Check this example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It download t_mara1 &amp;amp; t_mara2..Modify the code according to your requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_mara1  LIKE mara OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: t_mara2 LIKE mara OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_filename LIKE rlgrap-filename.&lt;/P&gt;&lt;P&gt;DATA: v_char5(5).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_variable(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 2 TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: v_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_char5 = sy-index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SHIFT v_char5 LEFT DELETING LEADING space.&lt;/P&gt;&lt;P&gt;  CONDENSE v_char5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'C:\TEST' v_char5 '.TXT' INTO v_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'T_MARA' v_char5 '[]' INTO v_variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ASSIGN (v_variable) TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DOWNLOAD'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            filename                = v_filename&lt;/P&gt;&lt;P&gt;            filetype                = 'DAT'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            data_tab                = &amp;lt;fs&amp;gt;&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            invalid_filesize        = 1&lt;/P&gt;&lt;P&gt;            invalid_table_width     = 2&lt;/P&gt;&lt;P&gt;            invalid_type            = 3&lt;/P&gt;&lt;P&gt;            no_batch                = 4&lt;/P&gt;&lt;P&gt;            unknown_error           = 5&lt;/P&gt;&lt;P&gt;            gui_refuse_filetransfer = 6&lt;/P&gt;&lt;P&gt;            customer_error          = 7&lt;/P&gt;&lt;P&gt;            OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&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;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 23:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743546#M322826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T23:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743547#M322827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an example.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

types: begin of ttab,
       fld1 type c,
       fld2 type c,
       fld3 type c,
       end of ttab.

data: itab1 type table of ttab with header line.
data: itab2 type table of ttab with header line.
data: itab3 type table of ttab with header line.

itab1 = 'ABC'.  append itab1.
itab1 = 'DEF'.  append itab1.

itab2 = 'QRS'.  append itab2.
itab2 = 'TUV'.  append itab2.

itab3 = '123'.  append itab3.
itab3 = '456'.  append itab3.

perform download tables itab1
                 using 'C:itab1.txt'.

perform download tables itab2
                 using 'C:itab2.txt'.

perform download tables itab3
                 using 'C:itab3.txt'.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  download
*&amp;amp;---------------------------------------------------------------------*
form download tables   table  using file.

  data: file_str type string.

file_str = file.

 call function 'GUI_DOWNLOAD'
   exporting
     filename                      = file_str
   tables
     data_tab                      = table.




endform.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 23:43:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743547#M322827</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-18T23:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743548#M322828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tks for the help, now i have another problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PERFORM CREATE_FILE TABLES ti_semanal   using 'c:\semanal.dat'.&lt;/P&gt;&lt;P&gt; PERFORM CREATE_FILE TABLES ti_quincenal using 'c:\quincenal.dat'.&lt;/P&gt;&lt;P&gt; PERFORM CREATE_FILE TABLES ti_maestras  using 'c:\maestras.dat'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM CREATE_FILE using c_table.&lt;/P&gt;&lt;P&gt;c_table-loan = c_table-loan / months.&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;/P&gt;&lt;P&gt;Call function download&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;            data_tab            = c_table&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the following error is displayed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data object "c_table" has no structure and therefore no component	&lt;/P&gt;&lt;P&gt;called "loan".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can used for call the download function, but i cant access their structure components?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 16:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743548#M322828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T16:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743549#M322829</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 all the internal tables is of the same structure..Then check this example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;        MATNR TYPE MATNR,&lt;/P&gt;&lt;P&gt;      END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB-MATNR = '1212'.APPEND ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM FORM1 TABLES ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM FORM1 TABLES CT_TAB LIKE ITAB[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT CT_TAB WHERE NOT MATNR IS INITIAL.&lt;/P&gt;&lt;P&gt;  WRITE: / CT_TAB-MATNR.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&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;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 17:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743549#M322829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T17:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Call function 'Download' using different internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743550#M322830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's right, they are being passed gernerically to the FORM,  I would suggest making sure that everything is calculated in the internal tables prior to calling the DOWNLOAD subrontine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 17:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-download-using-different-internal-tables/m-p/1743550#M322830</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-19T17:02:02Z</dc:date>
    </item>
  </channel>
</rss>

