<?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: upload into table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-into-table/m-p/3388213#M813558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS : p_file TYPE rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    OPEN DATASET p_apspth IN TEXT MODE FOR INPUT ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;     message...............like unable to open file........&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;&lt;/P&gt;&lt;P&gt;      READ DATASET p_apspth INTO lv_string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;     split lv_string at ',' &lt;/P&gt;&lt;P&gt;     into gwa_data-field1 gwa_data-field2......etc.&lt;/P&gt;&lt;P&gt;        APPEND gwa_data TO gt_data.&lt;/P&gt;&lt;P&gt;        CLEAR gwa_data.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&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;    CLOSE DATASET p_apspth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the internal table gt_data contains the appl server data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 17:44:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-13T17:44:42Z</dc:date>
    <item>
      <title>upload into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-into-table/m-p/3388211#M813556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement for uploading data into a Z Table .&lt;/P&gt;&lt;P&gt;and my data is in Application server with .csv file.&lt;/P&gt;&lt;P&gt;I Want to write aprogram should pick the file , read the data and load into the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please send any referal program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Aruna Rathod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 14:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-into-table/m-p/3388211#M813556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T14:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: upload into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-into-table/m-p/3388212#M813557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi aruna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    No need to write a program. SAP provided many tools to upload data. One such is SCAT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All you need to do is goto transaction SCAT &amp;amp; record online for one entry. Then prepare download the txt file for the format in which the data to be given from SCAT. Prepare the file in the format and run it by giving the path of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have many tutorials available online for eloborate information on step by step guide. just search in Google.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please reward points if useful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;harikrishna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 14:39:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-into-table/m-p/3388212#M813557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T14:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: upload into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-into-table/m-p/3388213#M813558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS : p_file TYPE rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    OPEN DATASET p_apspth IN TEXT MODE FOR INPUT ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;     message...............like unable to open file........&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;&lt;/P&gt;&lt;P&gt;      READ DATASET p_apspth INTO lv_string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;     split lv_string at ',' &lt;/P&gt;&lt;P&gt;     into gwa_data-field1 gwa_data-field2......etc.&lt;/P&gt;&lt;P&gt;        APPEND gwa_data TO gt_data.&lt;/P&gt;&lt;P&gt;        CLEAR gwa_data.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&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;    CLOSE DATASET p_apspth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the internal table gt_data contains the appl server data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 17:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-into-table/m-p/3388213#M813558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T17:44:42Z</dc:date>
    </item>
  </channel>
</rss>

