<?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: Input file for BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518044#M1655499</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Usually the data processing through BAPI is done like this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have flat file of any type ( .txt, .xls, .csv etc). The you will upload the file to the program through FM or class methods. The you will do the pre-validations. once all these are done you will input the processed data to the BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus BAPI does not get input from the File and it gets input from the program. While program will prepare the input from file&lt;/P&gt;&lt;P&gt;The file format can be anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Praveenkumar T.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Feb 2012 03:00:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-02-22T03:00:34Z</dc:date>
    <item>
      <title>Input file for BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518042#M1655497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a general question about files that can be used for input with BAPI.  Is there a standard format for the input file?  Are there dufferent types of file formats that can be used as an iput file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2012 16:10:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518042#M1655497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-21T16:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Input file for BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518043#M1655498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Files don't provide input to BAPIs; programs do. Any file that can be uploaded and interpretted by ABAP can be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2012 16:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518043#M1655498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-21T16:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Input file for BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518044#M1655499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Usually the data processing through BAPI is done like this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have flat file of any type ( .txt, .xls, .csv etc). The you will upload the file to the program through FM or class methods. The you will do the pre-validations. once all these are done you will input the processed data to the BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus BAPI does not get input from the File and it gets input from the program. While program will prepare the input from file&lt;/P&gt;&lt;P&gt;The file format can be anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Praveenkumar T.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 03:00:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518044#M1655499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-22T03:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Input file for BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518045#M1655500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sean ,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;              Normally the data to BAPI is passed from internal table . So your work is simple just upload your flat file, it may be any format to internal table , usually we use &lt;STRONG&gt;GUI_UPLOAD&lt;/STRONG&gt; function module , and then pass to BAPI . &lt;/P&gt;&lt;P&gt;There are many discussions in SDN  regarding converting flat file data to internal table , just have a look and try with the best FM u need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Lakshmi Rajkumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 04:53:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-file-for-bapi/m-p/8518045#M1655500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-22T04:53:08Z</dc:date>
    </item>
  </channel>
</rss>

