<?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 application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290714#M787375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;gud morning,&lt;/P&gt;&lt;P&gt;I want to know ,how to place a file on application server  and also how to extract a file from application server.&lt;/P&gt;&lt;P&gt;can anybody help me out??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jan 2008 06:18:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-07T06:18:40Z</dc:date>
    <item>
      <title>application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290714#M787375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;gud morning,&lt;/P&gt;&lt;P&gt;I want to know ,how to place a file on application server  and also how to extract a file from application server.&lt;/P&gt;&lt;P&gt;can anybody help me out??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290714#M787375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290715#M787376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;welcome to SDN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;award points for useful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CG3Z / CG3Y transactions are used to upload and download from application serve AL11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;programatically &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET p_ufile FOR INPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;READ DATASET p_ufile INTO wa_file.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ASSIGN wa_file TO &amp;lt;wa_table&amp;gt;.&lt;/P&gt;&lt;P&gt;APPEND &amp;lt;wa_table&amp;gt; TO p_table.&lt;/P&gt;&lt;P&gt;CLEAR wa_file.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;OPEN DATASET p_ufile FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;LOOP AT p_output INTO wa_file.&lt;/P&gt;&lt;P&gt;TRANSFER wa_file TO p_ufile.&lt;/P&gt;&lt;P&gt;CLEAR wa_file.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CLOSE DATASET p_ufile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290715#M787376</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-01-07T06:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290716#M787377</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 you want to do through coding use below statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; OPEN DATASET &lt;/P&gt;&lt;P&gt; READ DATASET&lt;/P&gt;&lt;P&gt; TRANSFER&lt;/P&gt;&lt;P&gt; CLOSE DATASET&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290716#M787377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290717#M787378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Place a file on application server&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;1. Open dataset (using abap code)&lt;/P&gt;&lt;P&gt;2. Get OS access and copy paste the file (no coding reqd)&lt;/P&gt;&lt;P&gt;3. Use tcode CG3Z (no coding reqd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP provides transaction CG3Y &amp;amp; CG3Z for upload &amp;amp; download from presentation/application server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290717#M787378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290718#M787379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sample code to download the file on to appls server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZGILL_AS message-id rp .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: P_DSNI(75) TYPE C MODIF ID ABG DEFAULT&lt;/P&gt;&lt;P&gt;'/usr/local/sapdata/amit.dat' LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;pernr(8),&lt;/P&gt;&lt;P&gt;sp1(1) value ',',&lt;/P&gt;&lt;P&gt;werks(4),&lt;/P&gt;&lt;P&gt;sp2(1) value ',',&lt;/P&gt;&lt;P&gt;persg(1),&lt;/P&gt;&lt;P&gt;sp3(1) value ',',&lt;/P&gt;&lt;P&gt;persk(2),&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET P_DSNI FOR OUTPUT IN LEGACY TEXT MODE.&lt;/P&gt;&lt;P&gt;PERFORM FETCH_DATA.&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form FETCH_DATA&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;gt; p1 text &lt;/P&gt;&lt;P&gt;&amp;lt;-- p2 text &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;FORM FETCH_DATA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM PA0001 WHERE PERNR IN S_PERNR.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING PA0001 TO ITAB.&lt;/P&gt;&lt;P&gt;TRANSFER ITAB TO P_DSNI.&lt;/P&gt;&lt;P&gt;APPEND ITAB.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;CLOSE DATASET P_DSNI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. " FETCH_DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this sample code to read the data from application server...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;len TYPE i,&lt;/P&gt;&lt;P&gt;text(30) type c,&lt;/P&gt;&lt;P&gt;dir(30) TYPE c VALUE '/tmp/test.txt'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: begin of data OCCURS 0,&lt;/P&gt;&lt;P&gt;matnr type matnr,&lt;/P&gt;&lt;P&gt;werks type werks_d,&lt;/P&gt;&lt;P&gt;end of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET dir FOR INPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;READ DATASET dir INTO text.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT TEXT AT '|' INTO DATA-MATNR DATA-WERKS.&lt;/P&gt;&lt;P&gt;APPEND DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;WRITE: / text.&lt;/P&gt;&lt;P&gt;CLOSE DATASET dir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290718#M787379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290719#M787380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Using open datasets we can create a file in application server or we can read a file from application server.&lt;/P&gt;&lt;P&gt;if you want to create a file in application server please follow this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;open dataset &amp;lt;filename&amp;gt; for output.&lt;/STRONG&gt;with this statement a file with the given file name will be created in application server,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to check the file name in applicartion server &lt;/P&gt;&lt;P&gt;just execute the transaction code AL11-sap directories.&lt;/P&gt;&lt;P&gt;there you can find the local file existing in application server,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to read data from local file existing in application server then follow this code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;open dataset &amp;lt;filename&amp;gt; for input.&lt;/STRONG&gt;with this file is open and ready for reading.,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;read dataset file into internal table.&lt;/STRONG&gt;with this data can read from file into internal table.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;transfer file into internal table.&lt;/STRONG&gt;with this statement the data will keep into internal table according to the fields requirement.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;close dataset&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;NOTE : the key word which doesnot return SY-SUBRC  in ABAP is TRANSFER keyword.&lt;/STRONG&gt;&lt;/EM&gt;Regards,&lt;/U&gt;swami&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:38:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290719#M787380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290720#M787381</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;When u r using CG3y, CG3z some times u wll find some spaces with #symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better u use this transcation to upload and download the file to app or presentation sever SXDA_TOOLS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Options:&lt;/P&gt;&lt;P&gt;Project type should be - DXPROJECT&lt;/P&gt;&lt;P&gt;Program type -BAPI&lt;/P&gt;&lt;P&gt;Program should - CREATE&lt;/P&gt;&lt;P&gt;then press copy push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is help full regard points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 09:03:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290720#M787381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T09:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290721#M787382</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;I do not want to use open and close data sets to download/upload excels from/to application server , I would like to use transactions CG3Y/CG3Z .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody provide me the prerequistes or key points to be taken care of while using this transactions as i was not able to upload using CG3Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also can we place an excel with list of values enabled to few feilds on the apllication server .If yes , how can we do it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers regarding the same would be of great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sukumari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 13:03:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290721#M787382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T13:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290722#M787383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT  Y_RAJ_UTIL5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_LOGFIL LIKE FILETEXTCI-FILEINTERN. "Log input file&lt;/P&gt;&lt;P&gt;PARAMETERS: P_PHYFIL LIKE RFPDO-RFBIFILE  "Phy input file&lt;/P&gt;&lt;P&gt;                          LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: txt(5000).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF I_DATA_TAB OCCURS 0,&lt;/P&gt;&lt;P&gt;        ROW(5000) TYPE C,&lt;/P&gt;&lt;P&gt;       END OF I_DATA_TAB.&lt;/P&gt;&lt;P&gt;*-- Function to get Physical file path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if not P_LOGFIL is initial.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'FILE_GET_NAME'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        CLIENT                        = SY-MANDT&lt;/P&gt;&lt;P&gt;        LOGICAL_FILENAME              = P_LOGFIL&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    ELEMINATE_BLANKS              = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    EMERGENCY_FLAG                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    FILE_FORMAT                   =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        FILE_NAME                     = P_PHYFIL&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       FILE_NOT_FOUND                = 1&lt;/P&gt;&lt;P&gt;       OTHERS                        = 2 .&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      WRITE:/15 TEXT-001.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     STOP.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  concatenate p_phyfil txt into p_phyfil.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Open the Data File&lt;/P&gt;&lt;P&gt;  OPEN DATASET P_PHYFIL FOR INPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    WRITE: / 'ERROR IN OPENING OUTPUT FILE', P_PHYFIL.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    DO.&lt;/P&gt;&lt;P&gt;      READ DATASET P_PHYFIL INTO I_DATA_TAB.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;        APPEND I_DATA_TAB.&lt;/P&gt;&lt;P&gt;        CLEAR I_DATA_TAB.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   Fills the internal table for processing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; -- EXIT from the loop&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLOSE DATASET P_PHYFIL.&lt;/P&gt;&lt;P&gt;    IF NOT I_DATA_TAB[] IS INITIAL.&lt;/P&gt;&lt;P&gt;      call function 'DOWNLOAD' tables&lt;/P&gt;&lt;P&gt;         data_tab = i_DATA_TAB.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if help full&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 13:06:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server/m-p/3290722#M787383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T13:06:31Z</dc:date>
    </item>
  </channel>
</rss>

