<?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 BAPI FUNCTIONS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503544#M2003387</link>
    <description>&lt;P&gt;Hi experts,&lt;/P&gt;
  &lt;P&gt;I want to learn how to use bapi functions. I searched bapi structures and I guess , I understand but if you will share example about bapi I can use easily in my programs.&lt;/P&gt;
  &lt;P&gt;Can you help on this point &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
  &lt;P&gt;Best Regardss&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jan 2022 10:54:44 GMT</pubDate>
    <dc:creator>former_member780881</dc:creator>
    <dc:date>2022-01-24T10:54:44Z</dc:date>
    <item>
      <title>BAPI FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503544#M2003387</link>
      <description>&lt;P&gt;Hi experts,&lt;/P&gt;
  &lt;P&gt;I want to learn how to use bapi functions. I searched bapi structures and I guess , I understand but if you will share example about bapi I can use easily in my programs.&lt;/P&gt;
  &lt;P&gt;Can you help on this point &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
  &lt;P&gt;Best Regardss&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 10:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503544#M2003387</guid>
      <dc:creator>former_member780881</dc:creator>
      <dc:date>2022-01-24T10:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503545#M2003388</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/questions/3470311/bapi-examples.html"&gt;Link&lt;/A&gt; please check this&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 11:45:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503545#M2003388</guid>
      <dc:creator>former_member688242</dc:creator>
      <dc:date>2022-01-24T11:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503546#M2003389</link>
      <description>&lt;P&gt;This question has already been asked, you can find existing answers there.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 12:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503546#M2003389</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-01-24T12:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503547#M2003390</link>
      <description>&lt;P&gt;Thanks for your comment. This link really help to me&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 09:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503547#M2003390</guid>
      <dc:creator>former_member780881</dc:creator>
      <dc:date>2022-01-25T09:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503548#M2003391</link>
      <description>&lt;P&gt;selection-screen: begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;select-options: p_mtrl for mara-matnr.&lt;/P&gt;parameters: p_werks like bapi_mrp_mat_param-plant.&lt;BR /&gt;selection-screen: end of block b1.&lt;BR /&gt;data: begin of itab occurs 0,&lt;BR /&gt;        matnr like mara-matnr,&lt;BR /&gt;      end of itab.&lt;BR /&gt;data: gs_itab like line of itab.&lt;BR /&gt;data: bapi_mtrl like bapi_mrp_mat_param-material.&lt;BR /&gt;data:ls_head like bapi_mrp_mat_param.&lt;BR /&gt;data:ls_mrp_list like bapi_mrp_list occurs 0 with header line.&lt;BR /&gt;data:wa_mrp_lists   like line of ls_mrp_list.&lt;BR /&gt;data:extensionout      like  bapiparex occurs 0 with header line.&lt;BR /&gt;data:wa_extensionout   like line of extensionout .&lt;BR /&gt;data: ld_mrp_statistic   type bapi_mrp_statistic ,&lt;BR /&gt;      ld_return   type bapiret2 .&lt;BR /&gt;start-of-selection.&lt;BR /&gt;  loop at p_mtrl .&lt;BR /&gt;    clear : itab[],itab,gs_itab.&lt;BR /&gt;    gs_itab-matnr = p_mtrl-low.&lt;BR /&gt;    bapi_mtrl = gs_itab-matnr.&lt;BR /&gt;    ls_head-material = bapi_mtrl.&lt;BR /&gt;    ls_head-plant = p_werks.&lt;BR /&gt;    call function 'BAPI_MATERIAL_PLANNING'&lt;BR /&gt;      exporting&lt;BR /&gt;        material     = ls_head-material&lt;BR /&gt;        plant        = ls_head-plant&lt;BR /&gt;      tables&lt;BR /&gt;        mrp_lists    = ls_mrp_list&lt;BR /&gt;        extensionout = extensionout.&lt;BR /&gt;    commit work and wait.&lt;BR /&gt;    check sy-subrc eq 0.&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Feb 2022 18:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503548#M2003391</guid>
      <dc:creator>former_member780881</dc:creator>
      <dc:date>2022-02-08T18:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503549#M2003392</link>
      <description>&lt;P&gt;For example; that code part is solution about Multiple MRP for material. &lt;/P&gt;&lt;P&gt;In selection-screen ; we import material number/numbers and plants, BAPI explore to MRP . &lt;/P&gt;</description>
      <pubDate>Tue, 08 Feb 2022 18:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-functions/m-p/12503549#M2003392</guid>
      <dc:creator>former_member780881</dc:creator>
      <dc:date>2022-02-08T18:29:13Z</dc:date>
    </item>
  </channel>
</rss>

