<?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: BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738688#M636173</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thangeswaran T.K  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u tell me some words about mass data transfer using BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Murugan Arumugam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Sep 2007 06:29:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-11T06:29:06Z</dc:date>
    <item>
      <title>BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738683#M636168</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;Can any tell me What is the use of BAPI and  where it can be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls give me a example code for BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Murugan Arumugam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738683#M636168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738684#M636169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi murugan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are using RFC for SAP TO SAP communication&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI for SAP TO NON SAP communication in short words&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI IS NOTHING BUT Remote Enabled Function Module.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create function module with remote enabled  put the export paramater as bapi return ........................................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Release the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;come to SWO1&lt;/P&gt;&lt;P&gt;create as business object repository&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add this method to BOR object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;built the all components&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and release all the components&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simple making of bapi.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:21:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738684#M636169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738685#M636170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murugan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI stands for Business API(Application Program Interface).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BAPI is remotely enabled function module ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..&lt;/P&gt;&lt;P&gt;You can make your function module remotely enabled in attributes of Function module but&lt;/P&gt;&lt;P&gt;A BAPI are standard SAP function modules provided by SAP for remote access. Also they are part of Businees Objest Repository(BOR).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects. &lt;/P&gt;&lt;P&gt;You create business objects and those are then registered in your BOR (Business Object Repository) which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA. &lt;/P&gt;&lt;P&gt;in this case u only specify the business object and its method from external system in BAPI there is no direct system call. while RFC are direct system call Some BAPIs provide basic functions and can be used for most SAP business object types. &lt;/P&gt;&lt;P&gt;These BAPIs should be implemented the same for all business object types. Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs. &lt;/P&gt;&lt;P&gt;Whenever possible, a standardized BAPI must be used in preference to an individual BAPI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following thread for more info on BAPIs &amp;amp; also for sample code:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="190266"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For BAPI programming Tcode - &amp;lt;b&amp;gt;BAPI&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI programming guide:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI user guide:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For creating a RFC - SE37&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is a remote-enabled Function Module.&lt;/P&gt;&lt;P&gt;Create a function module with attributes Remote-enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC programming in ABAP:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Thangesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738685#M636170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738686#M636171</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;SAP created the Business Framework to allow the technical integration and exchange of business data among SAP components and between SAP and non-SAP components. Important components of the Business Framework are the Business Application Programming Interfaces (BAPIs), which represent visible interfaces at the component boundaries and whose properties serve to integrate these components.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The integration can include both components within a local network and components that are connected with one another through the Internet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIs allow integration at the business level, not the technical level. This provides for greater stability in the link, and independence from the underlying communication technology. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get all the standard SAP BAPI functions with the transactions code 'BAPI'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information check the following link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap-img.com/bapi.htm" target="test_blank"&gt;http://sap-img.com/bapi.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/BAPI_tutorial.html" target="test_blank"&gt;http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/BAPI_tutorial.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sapmaterial.com/bapi.html" target="test_blank"&gt;http://sapmaterial.com/bapi.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:27:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738686#M636171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738687#M636172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Exapansion for BAPI is Business Application Programming Interface.&lt;/P&gt;&lt;P&gt;It is a Remote Enabled Fucntion module. There are standard BAPI's which u can use. Mainly for uploading data from legacy to SAP we use BAPI. For example,&lt;/P&gt;&lt;P&gt; Inquiry         - BAPI_INQUIRY_CREATEFROMDATA2 &lt;/P&gt;&lt;P&gt; Quotation    - BAPI_QUOTATION_CREATEFROMDATA2&lt;/P&gt;&lt;P&gt; Proposals    - &lt;/P&gt;&lt;P&gt; Sales Order  - BAPI_SALESORDER_CREATEFROMDAT2&lt;/P&gt;&lt;P&gt; Goods Issue - BAPI_GOODSMVT_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the following code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zsample_bapi_va01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF ty_so,&lt;/P&gt;&lt;P&gt;          ind,&lt;/P&gt;&lt;P&gt;          vkorg(4),      "VBAK - Sales Organization&lt;/P&gt;&lt;P&gt;          vtweg(2),      "VBAK - Distribution Channel&lt;/P&gt;&lt;P&gt;          spart(2),      "VBAK - Division&lt;/P&gt;&lt;P&gt;          vbeln(10),     "VBAK - Sales Document&lt;/P&gt;&lt;P&gt;          ketdat(8),     "Requested delivery date of the document - Sales Order Data&lt;/P&gt;&lt;P&gt;          vkbur(4),      "VBAK - Sales office&lt;/P&gt;&lt;P&gt;          kunnr1(10),    "VBPA - Sold-to party&lt;/P&gt;&lt;P&gt;          kunnr2(10),    "VBPA - Ship-To Party&lt;/P&gt;&lt;P&gt;          bstkd(35),     "VBKD - Customer purchase order number&lt;/P&gt;&lt;P&gt;          zterm(4),      "VBKD - Terms of payment key&lt;/P&gt;&lt;P&gt;          augru(3),      "VBAK - Order reason&lt;/P&gt;&lt;P&gt;          mabnr(18),     "Material Number&lt;/P&gt;&lt;P&gt;          kwmeng(15),    "Cumulative order quantity in sales units&lt;/P&gt;&lt;P&gt;          vrkme(3),      "VBAP - Sales unit&lt;/P&gt;&lt;P&gt;          werks(4),      "VBAP - Plant (Own or External)&lt;/P&gt;&lt;P&gt;          vstel(4),      "VBAP - Shipping Point/Receiving Point&lt;/P&gt;&lt;P&gt;          kbetr1(11),    "KONV - Rate (condition amount or percentage)&lt;/P&gt;&lt;P&gt;          kbetr2(11),    "KONV - Rate (condition amount or percentage)&lt;/P&gt;&lt;P&gt;          prctr(10),     "Profit Center&lt;/P&gt;&lt;P&gt;        END OF ty_so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : it_so  TYPE STANDARD TABLE OF ty_so,&lt;/P&gt;&lt;P&gt;       it_so1 TYPE STANDARD TABLE OF ty_so,&lt;/P&gt;&lt;P&gt;       v_order_header_in LIKE bapisdhd1,&lt;/P&gt;&lt;P&gt;       v_salesdocumentin LIKE bapivbeln-vbeln,&lt;/P&gt;&lt;P&gt;       v_order_partners LIKE bapiparnr OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       v_order_items_in LIKE bapisditm OCCURS 0,&lt;/P&gt;&lt;P&gt;       v_order_conditions_in LIKE bapicond OCCURS 0,&lt;/P&gt;&lt;P&gt;       v_order_schedules_in LIKE bapischdl OCCURS 0,&lt;/P&gt;&lt;P&gt;       order_header_inx LIKE bapisdhd1x,&lt;/P&gt;&lt;P&gt;       order_items_inx LIKE bapisditmx OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       order_schedules_inx LIKE bapischdlx OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       order_conditions_inx LIKE bapicondx OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       it_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS : &amp;lt;fs_so&amp;gt; TYPE ty_so, &amp;lt;fs_so1&amp;gt; LIKE LINE OF it_so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wa_bapisditm LIKE bapisditm,&lt;/P&gt;&lt;P&gt;       wa_bapicond LIKE bapicond,&lt;/P&gt;&lt;P&gt;       wa_bapischdl LIKE bapischdl,&lt;/P&gt;&lt;P&gt;       w_schditm LIKE bapischdl-sched_line,&lt;/P&gt;&lt;P&gt;       w_itemno(6) TYPE n,&lt;/P&gt;&lt;P&gt;       w_profit_ctr LIKE bapisditm-profit_ctr,&lt;/P&gt;&lt;P&gt;       mesid(2) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : testrun AS CHECKBOX DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'UPLOAD'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   filetype                      = 'DAT'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    data_tab                      = it_so&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   conversion_error              = 1&lt;/P&gt;&lt;P&gt;   invalid_table_width           = 2&lt;/P&gt;&lt;P&gt;   invalid_type                  = 3&lt;/P&gt;&lt;P&gt;   no_batch                      = 4&lt;/P&gt;&lt;P&gt;   unknown_error                 = 5&lt;/P&gt;&lt;P&gt;   gui_refuse_filetransfer       = 6&lt;/P&gt;&lt;P&gt;   OTHERS                        = 7&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;         WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   filename                = 'C:\Documents and Settings\Desktop\SO.TXT'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   filetype                = 'ASC'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   has_field_separator     = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   data_tab                = it_so&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   file_open_error         = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   file_read_error         = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   no_batch                = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   gui_refuse_filetransfer = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   invalid_type            = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   no_authority            = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   unknown_error           = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   bad_data_format         = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   header_not_allowed      = 9&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   separator_not_allowed   = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   header_too_long         = 11&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   unknown_dp_error        = 12&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   access_denied           = 13&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   dp_out_of_memory        = 14&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   disk_full               = 15&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   dp_timeout              = 16&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   OTHERS                  = 17.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_so1[] = it_so[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE it_so WHERE ind = 'D'.&lt;/P&gt;&lt;P&gt;DELETE it_so1 WHERE ind = 'H'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;order_header_inx-updateflag = 'I'.&lt;/P&gt;&lt;P&gt;order_header_inx-doc_type = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-sales_org = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-distr_chan = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-division = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-sales_off = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-pmnttrms = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-ord_reason = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-purch_no_c = 'X'.&lt;/P&gt;&lt;P&gt;order_header_inx-req_date_h ='X'.&lt;/P&gt;&lt;P&gt;order_header_inx-date_type = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_so ASSIGNING &amp;lt;fs_so&amp;gt;.&lt;/P&gt;&lt;P&gt;  CLEAR : v_order_header_in, v_salesdocumentin, v_order_partners[], v_order_items_in[], v_order_conditions_in[], v_order_conditions_in[],&lt;/P&gt;&lt;P&gt;          order_items_inx[], order_conditions_inx[], v_order_schedules_in[], order_schedules_inx[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_order_header_in-doc_type = 'ZDEP'.&lt;/P&gt;&lt;P&gt;  v_order_header_in-sales_org = &amp;lt;fs_so&amp;gt;-vkorg.&lt;/P&gt;&lt;P&gt;  v_order_header_in-distr_chan = &amp;lt;fs_so&amp;gt;-vtweg.&lt;/P&gt;&lt;P&gt;  v_order_header_in-division = &amp;lt;fs_so&amp;gt;-spart.&lt;/P&gt;&lt;P&gt;  v_order_header_in-sales_off = &amp;lt;fs_so&amp;gt;-vkbur.&lt;/P&gt;&lt;P&gt;  v_order_header_in-pmnttrms = &amp;lt;fs_so&amp;gt;-zterm.&lt;/P&gt;&lt;P&gt;  v_order_header_in-ord_reason = &amp;lt;fs_so&amp;gt;-augru.&lt;/P&gt;&lt;P&gt;  v_order_header_in-purch_no_c = &amp;lt;fs_so&amp;gt;-bstkd.&lt;/P&gt;&lt;P&gt;  v_order_header_in-req_date_h = &amp;lt;fs_so&amp;gt;-ketdat.&lt;/P&gt;&lt;P&gt;  v_order_header_in-date_type = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_salesdocumentin = &amp;lt;fs_so&amp;gt;-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  w_itemno = 10.&lt;/P&gt;&lt;P&gt;  CLEAR wa_bapisditm.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-material = &amp;lt;fs_so&amp;gt;-mabnr.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-sales_unit = &amp;lt;fs_so&amp;gt;-vrkme.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-net_weight = &amp;lt;fs_so&amp;gt;-kwmeng.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-untof_wght = &amp;lt;fs_so&amp;gt;-vrkme.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-plant = &amp;lt;fs_so&amp;gt;-werks.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-ship_point = &amp;lt;fs_so&amp;gt;-vstel.&lt;/P&gt;&lt;P&gt;  wa_bapisditm-profit_ctr = &amp;lt;fs_so&amp;gt;-prctr.&lt;/P&gt;&lt;P&gt;  APPEND wa_bapisditm TO v_order_items_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  order_items_inx-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;  order_items_inx-updateflag = 'I'.&lt;/P&gt;&lt;P&gt;  order_items_inx-material = 'X'.&lt;/P&gt;&lt;P&gt;  order_items_inx-sales_unit = 'X'.&lt;/P&gt;&lt;P&gt;  order_items_inx-net_weight = 'X'.&lt;/P&gt;&lt;P&gt;  order_items_inx-untof_wght = 'X'.&lt;/P&gt;&lt;P&gt;  order_items_inx-plant = 'X'.&lt;/P&gt;&lt;P&gt;  order_items_inx-ship_point = 'X'.&lt;/P&gt;&lt;P&gt;  order_items_inx-profit_ctr = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND order_items_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_order_partners-partn_role = 'AG'. "Sold-to-Party&lt;/P&gt;&lt;P&gt;  v_order_partners-partn_numb = &amp;lt;fs_so&amp;gt;-kunnr1.&lt;/P&gt;&lt;P&gt;  APPEND v_order_partners.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_order_partners-partn_role = 'WE'. "Ship-to-Party&lt;/P&gt;&lt;P&gt;  v_order_partners-partn_numb = &amp;lt;fs_so&amp;gt;-kunnr2.&lt;/P&gt;&lt;P&gt;  APPEND v_order_partners.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR wa_bapischdl.&lt;/P&gt;&lt;P&gt;  w_schditm = 1.&lt;/P&gt;&lt;P&gt;  wa_bapischdl-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;  wa_bapischdl-sched_line = w_schditm.&lt;/P&gt;&lt;P&gt;  wa_bapischdl-req_date = &amp;lt;fs_so&amp;gt;-ketdat.&lt;/P&gt;&lt;P&gt;  wa_bapischdl-date_type = '1'.&lt;/P&gt;&lt;P&gt;  wa_bapischdl-req_qty = &amp;lt;fs_so&amp;gt;-kwmeng.&lt;/P&gt;&lt;P&gt;  wa_bapischdl-sched_type = 'CP'.&lt;/P&gt;&lt;P&gt;  wa_bapischdl-dlv_date = &amp;lt;fs_so&amp;gt;-ketdat.&lt;/P&gt;&lt;P&gt;  APPEND wa_bapischdl TO v_order_schedules_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  order_schedules_inx-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;  order_schedules_inx-updateflag = 'I'.&lt;/P&gt;&lt;P&gt;  order_schedules_inx-sched_line = 'X'.&lt;/P&gt;&lt;P&gt;  order_schedules_inx-req_date = 'X'.&lt;/P&gt;&lt;P&gt;  order_schedules_inx-date_type = 'X'.&lt;/P&gt;&lt;P&gt;  order_schedules_inx-req_qty = 'X'.&lt;/P&gt;&lt;P&gt;  order_schedules_inx-sched_type = 'X'.&lt;/P&gt;&lt;P&gt;  order_schedules_inx-dlv_date = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND order_schedules_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR wa_bapicond.&lt;/P&gt;&lt;P&gt;  wa_bapicond-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;  wa_bapicond-cond_type = 'ZDPR'.&lt;/P&gt;&lt;P&gt;  wa_bapicond-cond_value = &amp;lt;fs_so&amp;gt;-kbetr1.&lt;/P&gt;&lt;P&gt;  wa_bapicond-currency = 'INR'.&lt;/P&gt;&lt;P&gt;  APPEND wa_bapicond TO v_order_conditions_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_bapicond-cond_type = 'ZDBV'.&lt;/P&gt;&lt;P&gt;  wa_bapicond-cond_value = &amp;lt;fs_so&amp;gt;-kbetr2.&lt;/P&gt;&lt;P&gt;  APPEND wa_bapicond TO v_order_conditions_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR order_conditions_inx.&lt;/P&gt;&lt;P&gt;  order_conditions_inx-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;  order_conditions_inx-cond_type = 'ZDPR'.&lt;/P&gt;&lt;P&gt;  order_conditions_inx-updateflag = 'I'.&lt;/P&gt;&lt;P&gt;  order_conditions_inx-cond_value = 'X'.&lt;/P&gt;&lt;P&gt;  order_conditions_inx-currency = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND order_conditions_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  order_conditions_inx-cond_type = 'ZDBV'.&lt;/P&gt;&lt;P&gt;  APPEND order_conditions_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_so1 ASSIGNING &amp;lt;fs_so1&amp;gt; WHERE vbeln = &amp;lt;fs_so&amp;gt;-vbeln.&lt;/P&gt;&lt;P&gt;    CLEAR wa_bapisditm.&lt;/P&gt;&lt;P&gt;    ADD 10 TO w_itemno.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-material = &amp;lt;fs_so1&amp;gt;-mabnr.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-sales_unit = &amp;lt;fs_so1&amp;gt;-vrkme.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-net_weight = &amp;lt;fs_so1&amp;gt;-kwmeng.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-untof_wght = &amp;lt;fs_so1&amp;gt;-vrkme.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-plant = &amp;lt;fs_so1&amp;gt;-werks.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-ship_point = &amp;lt;fs_so1&amp;gt;-vstel.&lt;/P&gt;&lt;P&gt;    wa_bapisditm-profit_ctr = &amp;lt;fs_so1&amp;gt;-prctr.&lt;/P&gt;&lt;P&gt;    APPEND wa_bapisditm TO v_order_items_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    order_items_inx-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;    order_items_inx-updateflag = 'I'.&lt;/P&gt;&lt;P&gt;    order_items_inx-material = 'X'.&lt;/P&gt;&lt;P&gt;    order_items_inx-sales_unit = 'X'.&lt;/P&gt;&lt;P&gt;    order_items_inx-net_weight = 'X'.&lt;/P&gt;&lt;P&gt;    order_items_inx-untof_wght = 'X'.&lt;/P&gt;&lt;P&gt;    order_items_inx-plant = 'X'.&lt;/P&gt;&lt;P&gt;    order_items_inx-ship_point = 'X'.&lt;/P&gt;&lt;P&gt;    order_items_inx-profit_ctr = 'X'.&lt;/P&gt;&lt;P&gt;    APPEND order_items_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLEAR wa_bapischdl.&lt;/P&gt;&lt;P&gt;    ADD 1 TO w_schditm.&lt;/P&gt;&lt;P&gt;    wa_bapischdl-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;    wa_bapischdl-sched_line = w_schditm.&lt;/P&gt;&lt;P&gt;    wa_bapischdl-req_date = &amp;lt;fs_so1&amp;gt;-ketdat.&lt;/P&gt;&lt;P&gt;    wa_bapischdl-date_type = '1'.&lt;/P&gt;&lt;P&gt;    wa_bapischdl-req_qty = &amp;lt;fs_so1&amp;gt;-kwmeng.&lt;/P&gt;&lt;P&gt;    wa_bapischdl-sched_type = 'CP'.&lt;/P&gt;&lt;P&gt;    wa_bapischdl-dlv_date = &amp;lt;fs_so1&amp;gt;-ketdat.&lt;/P&gt;&lt;P&gt;    APPEND wa_bapischdl TO v_order_schedules_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    order_schedules_inx-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;    order_schedules_inx-updateflag = 'I'.&lt;/P&gt;&lt;P&gt;    order_schedules_inx-sched_line = 'X'.&lt;/P&gt;&lt;P&gt;    order_schedules_inx-req_date = 'X'.&lt;/P&gt;&lt;P&gt;    order_schedules_inx-date_type = 'X'.&lt;/P&gt;&lt;P&gt;    order_schedules_inx-req_qty = 'X'.&lt;/P&gt;&lt;P&gt;    order_schedules_inx-sched_type = 'X'.&lt;/P&gt;&lt;P&gt;    order_schedules_inx-dlv_date = 'X'.&lt;/P&gt;&lt;P&gt;    APPEND order_schedules_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLEAR wa_bapicond.&lt;/P&gt;&lt;P&gt;    wa_bapicond-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;    wa_bapicond-cond_type = 'ZDPR'.&lt;/P&gt;&lt;P&gt;    wa_bapicond-cond_value = &amp;lt;fs_so1&amp;gt;-kbetr1.&lt;/P&gt;&lt;P&gt;    wa_bapicond-currency = 'INR'.&lt;/P&gt;&lt;P&gt;    APPEND wa_bapicond TO v_order_conditions_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wa_bapicond-cond_type = 'ZDBV'.&lt;/P&gt;&lt;P&gt;    wa_bapicond-cond_value = &amp;lt;fs_so1&amp;gt;-kbetr2.&lt;/P&gt;&lt;P&gt;    APPEND wa_bapicond TO v_order_conditions_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    order_conditions_inx-itm_number = w_itemno.&lt;/P&gt;&lt;P&gt;    order_conditions_inx-cond_type = 'ZDPR'.&lt;/P&gt;&lt;P&gt;    order_conditions_inx-updateflag = 'I'.&lt;/P&gt;&lt;P&gt;    order_conditions_inx-cond_value = 'X'.&lt;/P&gt;&lt;P&gt;    order_conditions_inx-currency = 'X'.&lt;/P&gt;&lt;P&gt;    APPEND order_conditions_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    order_conditions_inx-cond_type = 'ZDBV'.&lt;/P&gt;&lt;P&gt;    APPEND order_conditions_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      salesdocumentin      = v_salesdocumentin&lt;/P&gt;&lt;P&gt;      order_header_in      = v_order_header_in&lt;/P&gt;&lt;P&gt;      order_header_inx     = order_header_inx&lt;/P&gt;&lt;P&gt;      testrun              = testrun&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      return               = it_return&lt;/P&gt;&lt;P&gt;      order_items_in       = v_order_items_in&lt;/P&gt;&lt;P&gt;      order_items_inx      = order_items_inx&lt;/P&gt;&lt;P&gt;      order_partners       = v_order_partners&lt;/P&gt;&lt;P&gt;      order_conditions_in  = v_order_conditions_in&lt;/P&gt;&lt;P&gt;      order_conditions_inx = order_conditions_inx&lt;/P&gt;&lt;P&gt;      order_schedules_in   = v_order_schedules_in&lt;/P&gt;&lt;P&gt;      order_schedules_inx  = order_schedules_inx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CALL FUNCTION 'BAPI_SALESDOCU_CREATEWITHDIA'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       salesdocument        = v_salesdocumentin&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_header_in      = v_order_header_in&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_header_inx     = order_header_inx&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       return               = it_return&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_items_in       = v_order_items_in&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_items_inx      = order_items_inx&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_partners       = v_order_partners&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_schedules_in   = v_order_schedules_in&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_schedules_inx  = order_schedules_inx&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_conditions_in  = v_order_conditions_in&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       sales_conditions_inx = order_conditions_inx.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_return.&lt;/P&gt;&lt;P&gt;    mesid = it_return-id+0(2).&lt;/P&gt;&lt;P&gt;    CONDENSE mesid.&lt;/P&gt;&lt;P&gt;    WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; it_return-type, mesid, it_return-number, it_return-message+0(80).&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sathya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738687#M636172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738688#M636173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Thangeswaran T.K  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u tell me some words about mass data transfer using BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Murugan Arumugam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:29:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738688#M636173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738689#M636174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murugan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do mass data transfer using BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if you want to udate the Customer Master with bulk data, you can use the following BAPI:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;BAPI_CUSTOMER_CREATEFROMDATA1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the input from a txt file into an internal table &amp;amp; from the internal table you can pass the data to this BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto to transaction code &amp;lt;b&amp;gt;BAPI&amp;lt;/b&amp;gt; to find more about BAPIs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the list of BAPIs used for each application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are separate set of BAPIs to update Master data as well as Transaction data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for helpful answers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Thangesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2007 06:37:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi/m-p/2738689#M636174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-11T06:37:44Z</dc:date>
    </item>
  </channel>
</rss>

