<?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 how to create pr using bapi through file upload getting error / dump bulk upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pr-using-bapi-through-file-upload-getting-error-dump-bulk/m-p/12655915#M2015353</link>
    <description>&lt;P&gt;hi ,&lt;/P&gt;CALL FUNCTION 'ARCHIVFILE_CLIENT_TO_SERVER'
  &lt;BR /&gt;EXPORTING
  &lt;BR /&gt;path = P_FILE
  &lt;BR /&gt;TARGETPATH = 
  &lt;STRONG&gt;'.\SAAAM.CSV'&lt;/STRONG&gt;
  &lt;BR /&gt;EXCEPTIONS
  &lt;BR /&gt;ERROR_FILE = 1
  &lt;BR /&gt;OTHERS = 2
  &lt;BR /&gt;.
  &lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.
  &lt;BR /&gt;
  &lt;BR /&gt;* Implement suitable error handling here
  &lt;BR /&gt;
  &lt;BR /&gt;ENDIF.
  &lt;BR /&gt;
  &lt;BR /&gt;GV_FILE = 
  &lt;STRONG&gt;'SAAAM.CSV'.&lt;/STRONG&gt;
  &lt;BR /&gt;IF GV_FILE IS NOT INITIAL.
  &lt;BR /&gt;OPEN DATASET GV_FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.
  &lt;BR /&gt;IF SY-subrc NE 0.
  &lt;BR /&gt;MESSAGE 'UNABLE TO OPEN THE FILE ' TYPE 'I'.
  &lt;BR /&gt;ENDIF.
  &lt;BR /&gt;DO.
  &lt;BR /&gt;
  &lt;P&gt;&lt;STRONG&gt;READ DATASET GV_FILE INTO lv_data.&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;i am getting dump in read dataset or targetpath pleasse help me getting this .&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;thanks and regards&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Mohammed Mubashir&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Feb 2023 17:38:48 GMT</pubDate>
    <dc:creator>former_member831369</dc:creator>
    <dc:date>2023-02-10T17:38:48Z</dc:date>
    <item>
      <title>how to create pr using bapi through file upload getting error / dump bulk upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pr-using-bapi-through-file-upload-getting-error-dump-bulk/m-p/12655915#M2015353</link>
      <description>&lt;P&gt;hi ,&lt;/P&gt;CALL FUNCTION 'ARCHIVFILE_CLIENT_TO_SERVER'
  &lt;BR /&gt;EXPORTING
  &lt;BR /&gt;path = P_FILE
  &lt;BR /&gt;TARGETPATH = 
  &lt;STRONG&gt;'.\SAAAM.CSV'&lt;/STRONG&gt;
  &lt;BR /&gt;EXCEPTIONS
  &lt;BR /&gt;ERROR_FILE = 1
  &lt;BR /&gt;OTHERS = 2
  &lt;BR /&gt;.
  &lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.
  &lt;BR /&gt;
  &lt;BR /&gt;* Implement suitable error handling here
  &lt;BR /&gt;
  &lt;BR /&gt;ENDIF.
  &lt;BR /&gt;
  &lt;BR /&gt;GV_FILE = 
  &lt;STRONG&gt;'SAAAM.CSV'.&lt;/STRONG&gt;
  &lt;BR /&gt;IF GV_FILE IS NOT INITIAL.
  &lt;BR /&gt;OPEN DATASET GV_FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.
  &lt;BR /&gt;IF SY-subrc NE 0.
  &lt;BR /&gt;MESSAGE 'UNABLE TO OPEN THE FILE ' TYPE 'I'.
  &lt;BR /&gt;ENDIF.
  &lt;BR /&gt;DO.
  &lt;BR /&gt;
  &lt;P&gt;&lt;STRONG&gt;READ DATASET GV_FILE INTO lv_data.&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;i am getting dump in read dataset or targetpath pleasse help me getting this .&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;thanks and regards&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;Mohammed Mubashir&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2023 17:38:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pr-using-bapi-through-file-upload-getting-error-dump-bulk/m-p/12655915#M2015353</guid>
      <dc:creator>former_member831369</dc:creator>
      <dc:date>2023-02-10T17:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to create pr using bapi through file upload getting error / dump bulk upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pr-using-bapi-through-file-upload-getting-error-dump-bulk/m-p/12655916#M2015354</link>
      <description>&lt;P&gt;Are you sure you want to use the relative path? (i.e. do you know what is the default folder?)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Better indicate the absolute path.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If error during Open, don't do Read.&lt;/P&gt;&lt;P&gt;Attach the text file corresponding to the short dump if you want some assistance.&lt;/P&gt;&lt;P&gt;Catch the exceptions.&lt;/P&gt;&lt;P&gt;Use the debugger.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2023 17:51:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-pr-using-bapi-through-file-upload-getting-error-dump-bulk/m-p/12655916#M2015354</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-02-10T17:51:28Z</dc:date>
    </item>
  </channel>
</rss>

