<?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 fill bapi parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043496#M966540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to fill bapi structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how we know which parameters are available in a bapi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2008 14:38:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-24T14:38:53Z</dc:date>
    <item>
      <title>how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043496#M966540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to fill bapi structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how we know which parameters are available in a bapi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 14:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043496#M966540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T14:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043497#M966541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go and put your BAPI in se37 and see what parameters it requires.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 14:40:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043497#M966541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T14:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043498#M966542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am not having sap in my system &lt;/P&gt;&lt;P&gt;can you explain with an easy example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also when i see a program what is header data and client data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 14:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043498#M966542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T14:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043499#M966543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vip,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think its too difficult without SAP you can learn BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but your wishing toward learning really appriciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see i used one bapi like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*-Packaging 50 objects at the same time is not possible due to the
*-processing of the commitment interface with Budgetary ledger.
*-The commitment interface cannot handle the updation of multiple
*-documents at the same time.The process will result in a dump if the
*-PO's are updated in packages.
*-Change the PO
  LOOP AT U_T_EKKO.

*-Suppress the PBET pop-up window by passing the date in advance
    CALL FUNCTION 'FM_UPDATE_DATE_VALUES'
      EXPORTING
        I_FM_UPDATE_DATE = U_T_EKKO-BEDAT.

    CALL FUNCTION 'BAPI_PO_CHANGE'
      EXPORTING
        PURCHASEORDER = U_T_EKKO-EBELN
        POHEADERX     = C_T_HEADERX
      TABLES
        RETURN        = C_T_MESG.

*-Collect the messages
    IF NOT C_T_MESG[] IS INITIAL.
      LOOP AT C_T_MESG WHERE
           NOT TYPE   IS INITIAL AND
           NOT ID     IS INITIAL AND
           NOT NUMBER IS INITIAL.
        C_T_LOG-EBELN = U_T_EKKO-EBELN.
        MOVE-CORRESPONDING C_T_MESG TO C_T_LOG.
        APPEND C_T_LOG.
      ENDLOOP.
      REFRESH C_T_MESG.
    ELSE.
      IF P_TEST IS INITIAL.
        C_T_LOG-EBELN   = U_T_EKKO-EBELN.
        C_T_LOG-TYPE    = 'I'.
        C_T_LOG-NUMBER  = '167'.
        C_T_LOG-ID      = 'FMFG'.
        APPEND C_T_LOG.
      ELSE.
        C_T_LOG-EBELN   = U_T_EKKO-EBELN.
        C_T_LOG-TYPE    = 'S'.
        C_T_LOG-NUMBER  = '168'.
        C_T_LOG-ID      = 'FMFG'.
        APPEND C_T_LOG.
      ENDIF.
    ENDIF.

    REFRESH C_T_MESG.

    IF P_TEST IS INITIAL.
      COMMIT WORK.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 14:48:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043499#M966543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T14:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043500#M966544</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 need to know only one thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how we will create a internal table for corresponding bapi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 14:54:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043500#M966544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T14:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043501#M966545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Define your itab as same type as tables define in BAPI in tables tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 14:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043501#M966545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T14:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043502#M966546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be the best for you to learn the fundamental basics of ABAP before you try to call a BAPI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 15:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043502#M966546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T15:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to fill bapi parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043503#M966547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok i have a bapi BAPI_BANK_GETLIST in abap trail version&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to use this bapi  to uplaod data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 16:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-bapi-parameters/m-p/4043503#M966547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T16:24:38Z</dc:date>
    </item>
  </channel>
</rss>

