Create PO using BAPI

i hve written foll code to crate PO using BAPI. but i get a runtime error:
"Type conflict when calling a function module (field length)."
the code is as follows:
REPORT  z_h_d_bapi_1                            .
DATA : bapiekko like bapiekko,
       po_header LIKE bapiekko OCCURS 0 WITH HEADER LINE,
       po_items LIKE bapiekpo OCCURS 0 WITH HEADER LINE,
       po_item_schedules like bapieket occurs 0 with header line,
       return LIKE bapireturn OCCURS 0 WITH HEADER LINE.
*POPULATE HEADER DATA FOR PO
CLEAR po_header.
REFRESH po_header.
po_header-po_number  = '4500000000'    .
po_header-created_on   = '06/05/2006'     .
po_header-purch_org = '1000'      .
po_header-pur_group = '026'     .
po_header-vendor  = '420'    .
po_header-sales_pers  = 'Mr. rahul'    .
APPEND po_header.
*POPULATE ITEM DATA.
CLEAR po_items.
REFRESH po_items.
po_items-po_item = '00030'.
po_items-material = 'T-M15D06'.
po_items-plant = '1000'.
po_items-store_loc = '0001'.
po_items-quantity = '1000'.
po_items-unit = '10'.
po_items-net_price = '1000000'.
po_items-price_unit = '67000'.
APPEND po_items.
*POPULATE SCHEDULES DATA
clear po_item_schedules.
refresh po_item_schedules.
po_item_schedules-po_item = '00030'.
po_item_schedules-deliv_date = sy-datum.
po_item_schedules-quantity = '1000'.
append po_item_schedules.
CALL FUNCTION 'BAPI_PO_CREATE'
  EXPORTING
    po_header                        = bapiekko
  PO_HEADER_ADD_DATA               = po_header
  HEADER_ADD_DATA_RELEVANT         = '1'
  PO_ADDRESS                       =
   SKIP_ITEMS_WITH_ERROR            = 'X'
  ITEM_ADD_DATA_RELEVANT           = '1'
  HEADER_TECH_FIELDS               =
IMPORTING
  PURCHASEORDER                    =
  tables
    po_items                         = po_items
  PO_ITEM_ADD_DATA                 =
    po_item_schedules                = po_item_schedules
   PO_ITEM_ACCOUNT_ASSIGNMENT       =
  PO_ITEM_TEXT                     =
   RETURN                            = return
  PO_LIMITS                        =
  PO_CONTRACT_LIMITS               =
  PO_SERVICES                      =
  PO_SRV_ACCASS_VALUES             =
  PO_SERVICES_TEXT                 =
  PO_BUSINESS_PARTNER              =
  EXTENSIONIN                      =
  POADDRDELIVERY                   =
LOOP AT return.
    WRITE / return-message.
ENDLOOP.

Hiral,
Check the below code for creating PO using the BAPI BAPI_PO_CREARE.
Check u have used conversion input (CONVERSION_EXIT_ALPHA_INPUT) for the vendor. Also check in table <b>lfa1</b> that the given vendor is present or not.
*& Report  YPRA_SAMPLE08                                               *
REPORT  ypra_sample08.
Create Service PO
DATA: wa_po_header TYPE bapiekkoc,
      wa_po_add_header TYPE bapiekkoa,
      ws_po_number TYPE bapiekkoc-po_number,
      ws_po_number1 TYPE bapimepoheader-po_number,
      ws_pack_no TYPE packno,
      i_poitems TYPE bapiekpoc OCCURS 0 WITH HEADER LINE,
      i_poitems_sch TYPE bapieket OCCURS 0 WITH HEADER LINE,
      i_acct_*** TYPE bapiekkn OCCURS 0 WITH HEADER LINE,
      i_return TYPE bapireturn OCCURS 0 WITH HEADER LINE,
      i_return1 TYPE bapiret2 OCCURS 0 WITH HEADER LINE,bapiret2,
      i_services TYPE bapiesllc OCCURS 0 WITH HEADER LINE,
      bapi_esll TYPE bapiesllc OCCURS 0 WITH HEADER LINE,
      i_srv_accass TYPE bapiesklc OCCURS 0 WITH HEADER LINE,
      i_po_limits TYPE bapiesuhc OCCURS 0 WITH HEADER LINE,
      i_po_contract_limits  TYPE bapiesucc OCCURS 0 WITH HEADER LINE.
DATA: serial_no LIKE bapiesknc-serial_no,
      line_no   LIKE bapiesllc-line_no,
      pack_no LIKE bapiesllc-line_no.
wa_po_header-doc_date = sy-datum.
wa_po_header-doc_type = 'ZES3'.
wa_po_header-co_code = 'SP01'.
wa_po_header-purch_org = 'SP01'.
wa_po_header-pur_group = 'ES1'.
wa_po_header-vendor = '0001000025'.
wa_po_header-created_by = sy-uname.
wa_po_header-langu    = sy-langu.
i_poitems-po_item = 10.
i_poitems-item_cat = '9'.
i_poitems-acctasscat = 'K'.
i_poitems-plant = 'SP01'.
i_poitems-short_text = '007002046'.
i_poitems-disp_quan = '1'.
*i_poitems-mat_grp = 'ZES1'.
*i_poitems-pckg_no  = '0000000265'.
*i_poitems-line_no  = 1.
i_poitems-pckg_no  = 10.
APPEND i_poitems.
i_poitems_sch-po_item = 10.
i_poitems_sch-deliv_date = sy-datum.
APPEND i_poitems_sch.
i_acct_***-po_item = 10.
i_acct_***-serial_no = 01.
*i_acct_***-g_l_acct = '0007910100'.
i_acct_***-co_area  = '1000'.
i_acct_***-cost_ctr = '0000012000'.
APPEND i_acct_***.
i_acct_***-po_item = 10.
i_acct_***-serial_no = 02.
i_acct_***-co_area  = '1000'.
i_acct_***-cost_ctr = '0000012000'.
APPEND i_acct_***.
i_acct_***-po_item = 10.
i_acct_***-serial_no = 03.
i_acct_***-co_area  = '1000'.
i_acct_***-cost_ctr = '0000012000'.
APPEND i_acct_***.
*i_acct_***-po_item = 10.
*i_acct_***-serial_no = 04.
*i_acct_***-co_area  = '1000'.
*i_acct_***-cost_ctr = '0000012000'.
*APPEND i_acct_***.
bapi_esll-pckg_no = 10.
bapi_esll-line_no = 1.
bapi_esll-outl_no = '0'.
bapi_esll-outl_ind = 'X'.
bapi_esll-subpckg_no = 20.
bapi_esll-from_line = 1.
bapi_esll-to_line = 3.
APPEND bapi_esll.
bapi_esll-pckg_no = 20.
bapi_esll-line_no = 2.
bapi_esll-service = '000000000003000018'.
bapi_esll-quantity = '317946.000'.
bapi_esll-gr_price = '21111.0000'.
bapi_esll-price_unit = '10000'.
APPEND bapi_esll.
*bapi_esll-pckg_no = 30.
*bapi_esll-line_no = 1.
*bapi_esll-outl_no = '0'.
*bapi_esll-outl_ind = 'X'.
*bapi_esll-subpckg_no = 40.
*APPEND bapi_esll.
bapi_esll-pckg_no = 20.
bapi_esll-line_no = 3.
bapi_esll-service = '000000000003000017'.
bapi_esll-quantity = '317946.000'.
bapi_esll-gr_price = '21111.0000'.
bapi_esll-price_unit = '10000'.
APPEND bapi_esll.
i_srv_accass-pckg_no = 10.
i_srv_accass-line_no = 1.
i_srv_accass-serno_line = 01.
i_srv_accass-serial_no = 01.
i_srv_accass-percentage = 100.
APPEND i_srv_accass.
i_srv_accass-pckg_no = 20.
i_srv_accass-line_no = 2.
i_srv_accass-serno_line = 02.
i_srv_accass-serial_no = 02.
i_srv_accass-percentage = 100.
i_srv_accass-quantity = '1'.
APPEND i_srv_accass.
i_srv_accass-pckg_no = 20.
i_srv_accass-line_no = 3.
i_srv_accass-serno_line = 03.
i_srv_accass-serial_no = 03.
i_srv_accass-percentage = 100.
i_srv_accass-quantity = '1'.
APPEND i_srv_accass.
*i_srv_accass-pckg_no = 40.
*i_srv_accass-line_no = 3.
*i_srv_accass-serno_line = 03.
*i_srv_accass-serial_no = 03.
*i_srv_accass-percentage = 100.
*i_srv_accass-quantity = '1'.
*APPEND i_srv_accass.
CALL FUNCTION 'BAPI_PO_CREATE'
  EXPORTING
    po_header                        = wa_po_header
    po_header_add_data               = wa_po_add_header
  HEADER_ADD_DATA_RELEVANT         =
  PO_ADDRESS                       =
    skip_items_with_error            = 'X'
  ITEM_ADD_DATA_RELEVANT           =
  HEADER_TECH_FIELDS               =
IMPORTING
   purchaseorder                    = ws_po_number
  TABLES
    po_items                         = i_poitems
  PO_ITEM_ADD_DATA                 =
    po_item_schedules                = i_poitems_sch
    po_item_account_assignment       = i_acct_***
  PO_ITEM_TEXT                     =
   return                           = i_return
   po_limits                        = i_po_limits
   po_contract_limits               = i_po_contract_limits
    po_services                      = bapi_esll
    po_srv_accass_values             = i_srv_accass
  PO_SERVICES_TEXT                 =
  PO_BUSINESS_PARTNER              =
  EXTENSIONIN                      =
  POADDRDELIVERY                   =
IF NOT ws_po_number  IS INITIAL.
  ws_po_number1 = ws_po_number.
  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      wait = '2'.
  WRITE: / ws_po_number.
ENDIF.
break gbpra8.
LOOP AT i_return.
ENDLOOP.
Regards,
Prakash.

Similar Messages

  • How to create invoice using bapi  base on delivery number with example

    hi,
    Pl give me one example to create invoice using bapi base on delivery number (PGI).

    Use this code
    * Pass the delivery no to the FM to create the invoice
          wa_vbsk-smart = u2018Fu2019.
            wa_komfk-vbeln = nast-objky. u201CuF0DF-----delivery number
            APPEND wa_komfk TO it_komfk.
            CLEAR wa_komfk.
    *    To fill the message structure
    *        l_wa_error-vbeln_vl = nast-objky. " Delivery No.
    *        l_wa_error-fkart = wa_ztab-bil_doc_type." Billing Doc type
            CALL FUNCTION 'RV_INVOICE_CREATE'
                    EXPORTING
    *                 delivery_date             = 0
                     invoice_date              = v_date  u201C<- date
    *                 invoice_type              = '    '
    *                 pricing_date              = 0
                     vbsk_i                    = wa_vbsk
                     with_posting              = u2018Du2019
    *                 select_date               = 0
                     i_no_vblog                = ' '
                     i_analyze_mode            = ' '
                     id_utasy                  = ' '
                     id_utswl                  = ' '
                     id_utsnl                  = ' '
                     id_no_enqueue             = ' '
                     id_new_cancellation       = ' '
    **             IMPORTING
    *               VBSK_E                    =
    *               OD_BAD_DATA               =
    *               DET_REBATE                =
                    TABLES
                      xkomfk                    = it_komfk
                      xkomv                     = it_komv
                      xthead                    = it_thead
                      xvbfs                     = it_vbfs
                      xvbpa                     = it_vbpa
                      xvbrk                     = it_xvbrk
                      xvbrp                     = it_vbrp
                      xvbss                     = it_vbss
    *               XKOMFKGN                  =
    *               XKOMFKKO                  =

  • Need code for sales order create report using bapi's

    need code for sales order create report using bapi's

    Hi,
    Go through below link
    http://www.saptechies.com/bapi_salesorder_createfromdat2/
    <b>Reward points if it helps,</b>
    Satish

  • ERROR IN CREATING PO USING BAPI

    Hi friends,
            My  requirement is to create po using BAPI but i am getting error message .i have entered all the fields but still i am getting This errors.
    E BAPI 001 No instance of object type Purchase Order has been created. External reference:
    E MEPO 000 Purchase order still contains faulty items
    E ME 645 Subcontracting as stock transfer within a company code not possible
    I ME 123 Supplying and receiving plants identical (Please check)
    please help.
    thanks in advance.
    Moderator message: please read message long texts, speak to a functional expert (these are not ABAP related errors), do more research before asking, do not use all capitals in the title.
    Edited by: Thomas Zloch on Nov 30, 2011 1:06 PM

    Hi
    It seems you're creating a transfer order and an item is set for subcontracting, that's not possible, so check the item type
    Max

  • Create material using bapi ' bapi_material_savedata'

    Hi Experts,
    i was tring to create material using bapi ' bapi_material_savedata' but the material is not updating in the table.
    please find the code and suggest me if any modification
    data: la_headdata type BAPIMATHEAD,
    la_clientdata type BAPI_MARA,
    la_CLIENTDATAX type BAPI_MARAX,
    la_return type BAPIRET2.
    data: i_materialdescription type table of BAPI_MAKT,
    wa_materialdescription like line of i_materialdescription.
    *la_headdata-MATERIAL = int_matnum-MATERIAL.
    *LOOP AT int_matnum.
    la_headdata-MATERIAL = int_matnum-MATERIAL.
    write : int_matnum-material.
    *ENDLOOP.
    la_headdata-MATERIAL = '100000518'."int_matnum-MATERIAL.
    la_headdata-IND_SECTOR = p_indsr.
    la_headdata-MATL_TYPE = p_matype.
    la_clientdata-BASE_UOM = 'FT3'.
    la_clientdata-pur_valkey = ' '.
    la_CLIENTDATAX-BASE_UOM = 'X'.
    la_clientdata-MATL_GROUP = '01'.
    la_CLIENTDATAX-MATL_GROUP = 'X'.
    wa_materialdescription = 'TEST'.
    append wa_materialdescription to i_materialdescription.
    clear: wa_materialdescription.
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
    EXPORTING
    headdata = la_headdata
    CLIENTDATA = la_clientdata
    CLIENTDATAX = la_CLIENTDATAX
    PLANTDATA =
    PLANTDATAX =
    FORECASTPARAMETERS =
    FORECASTPARAMETERSX =
    PLANNINGDATA =
    PLANNINGDATAX =
    STORAGELOCATIONDATA =
    STORAGELOCATIONDATAX =
    VALUATIONDATA =
    VALUATIONDATAX =
    WAREHOUSENUMBERDATA =
    WAREHOUSENUMBERDATAX =
    SALESDATA =
    SALESDATAX =
    STORAGETYPEDATA =
    STORAGETYPEDATAX =
    FLAG_ONLINE = ' '
    FLAG_CAD_CALL = ' '
    IMPORTING
    RETURN = la_return
    TABLES
    MATERIALDESCRIPTION = i_materialdescription
    UNITSOFMEASURE =
    UNITSOFMEASUREX =
    INTERNATIONALARTNOS =
    MATERIALLONGTEXT =
    TAXCLASSIFICATIONS =
    RETURNMESSAGES =
    PRTDATA =
    PRTDATAX =
    EXTENSIONIN =
    EXTENSIONINX =
    Please Help me
    Regards,
    Naresh

    Hi all,
    Now it is asking me for the other fields,
    E ,
    The field MARA-XCHPF/BAPI_MARA-BATCH_MGMT is defined as a required field; it does not contain an entry
    i have passed this val as
    la_clientdata-batch_mgmt = 'X'.
    even though i am getting the same error.
    can you help me to solve the issue.
    Tthanks
    Naresh
    Edited by: naresh.k.dasari on Jan 4, 2011 10:36 AM

  • Creating PDF using BAPI

    Hi,
    I am trying to create PDF using BAPI. I got one BAPI(Z_MM_EPSP_BAPI_GET_PO_PDF). That bapi returns bytecodes. How can I generate PDF file using this BAPI output in BLS. Give some example
    Thanks & Regards
    Art

    Art,
    Are you familiar with xMII at all? I would like to answer your question but it seems more like a tutoring lesson rather than a technical problem.
    Please post a problem and not how somone can help you do your work. Unless of course you are willing to paypal some money over. :-D

  • Account assignment while creating reservation using bapi

    Hi , I am creating reservation using BAPI  (BAPI_RESERVATION_CREATE1), but when I seeing the open reservation account assignment field is blank, could any on ehelp me on this, i.e what parameter I am missing in BAPI for account assignment.
    best regards
    pankaj

    Hi,
    there is not field to assign the account assignment in Bapi..
    you need to assignt he account manaually.
    Assign account assignment category.
        SELECT * FROM eban INTO TABLE lt_eban WHERE banfn = w_banfn .
        IF sy-subrc = 0.                                     
          LOOP AT lt_eban .                 
            lt_eban-knttp = 'J'.    "assign your own account categeory
            MODIFY eban FROM lt_eban.
            COMMIT WORK AND WAIT.                            
          ENDLOOP.
    endif.
    Regards,
    Prabhudas

  • Problem while creating assets using BAPI

    Use table enhancement BAPI_TE_ANLU
    Diagnosis :The BAPIs for creating and changing assets currently support only those customer enhancements that relate to the user fields created using SAP enhancement AIST0002.
    Can anybody give the appropriate solution why this error is coming while creating assets using BAPI.

    Looks like you are trying to transfer custom fields into the asset master data that were not added following the steps in enhancement AIST0002.
    Using EXTENSIONIN parameter, you can transfer user fields from the asset master record. However, it is not possible to transfer fields that are updated in user-defined tables. Only user fields that were defined using SAP enhancement AIST0002 and are automatically updated in table ANLU can be udpated in this way. This means you have to use table extension BAPI_TE_ANLU.
    Enhancement AIST0002 contains function module EXIT_SAPL1022_001 as a component in which user fields can be implemented.
    The documentation ( BAPIPAREX) of the structure that forms the basis for this parameter contains additional information about using this parameter.
    Please check how table ANLU has been enhanced and also go through the documentation of enhancement AIST0002.
    Regards,
    Shyam

  • Error while creating BOM using BAPI 'BAPI_BOM_UPLOAD_SAVE'

    Hi All,
    We are getting an error as 'Data is incomplete' while trying to create BoM using the bapi 'BAPI_BOM_UPLOAD_SAVE', if the item contains Item category as 'T'. But for other item category like 'L' or 'N', the bapi is sucessfull.
    The values that we pass to fill the item category 'T' are operation, item_cat, bom_itm_no, COMPON_QTY, FIXED_QTY as 'X', UNMEAS as 'ST', ITEM_TEXT1 and ITEM_TEXT2.
    Anyone who has faced same problem or has a solution to the problem, kindly provide a solution.
    Regards,
    Vijay

    The error you receive is because of different config for different Item Categories. Find out from the functional team what fields have they kept mandatory for the item category 'T'. You may not be passing one of those fields in the BAPI.
    Try creating a BOM manually for item category 'T' and you may figure our which field you are missing.

  • Error while creating Contracts using BAPI

    Hello,
    I am trying to use BAPI BUS2014 to create new Purchasing Contracts. Now everything works fine, except for some strange cases where Contracts are failing out with a message as:
    Reference document or master record has different language
    I don't understand it why. Language being set in Contracts is defined for those items in MM and it works for others but not for all. I think I am missing some basic point here. Can anyone please suggest?
    Any help is highly appreciated!
    Cheers
    EssKay

    OK - stupid question. I did figure it out myself. Sorry for my impatience. This is my first BAPI program, so a bit too shaky
    Cheers
    EssKay

  • Creating PO using BAPI

    Hi Folks,
    I want to create a PO using BAPI. Which BAPI we are suppose to use and what are the mandatory fields for the same?
    Sample code will be helpful.
    Thanks
    Siddarth

    Hi,
    *& Report ZBAPI_CREATE_PO *
    *& Program demonstrates the BAPI call to create Purchase Order *
    *& Minimum required parameters are used are as per the current *
    *& system configuration *
    REPORT ZBAPI_CREATE_PO .
    *DATA DECLARATION
    CONSTANTS : C_X VALUE 'X'.
    *Structures to hold PO header data
    DATA : HEADER LIKE BAPIMEPOHEADER ,
    HEADERX LIKE BAPIMEPOHEADERX .
    *Internal Tables to hold PO ITEM DATA
    DATA : ITEM LIKE BAPIMEPOITEM OCCURS 0 WITH HEADER LINE,
    ITEMX LIKE BAPIMEPOITEMX OCCURS 0 WITH HEADER LINE,
    *Internal table to hold messages from BAPI call
    RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    data : w_header(40) value 'PO Header'.
    data : ws_langu like sy-langu.
    *text-001 = 'PO Header' - define as text element
    selection-screen begin of block b1 with frame title text-001.
    parameters : company like header-comp_code default '2700' ,
    doctyp like HEADER-DOC_TYPE default 'NB' ,
    cdate like HEADER-CREAT_DATE default sy-datum ,
    vendor like HEADER-VENDOR default '0010000023',
    pur_org like HEADER-PURCH_ORG default '2700' ,
    pur_grp like HEADER-PUR_GROUP default '001' .
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-002.
    parameters : item_num like ITEM-PO_ITEM default '00001',
    material like ITEM-MATERIAL default 'CRANE' ,
    plant like ITEM-PLANT default '2700' ,
    quantity like ITEM-QUANTITY default 100.
    selection-screen end of block b2.
    START-OF-SELECTION.
    *DATA POPULATION
    ws_langu = sy-langu. "Language variable
    *POPULATE HEADER DATA FOR PO
    HEADER-COMP_CODE = company .
    HEADER-DOC_TYPE = doctyp .
    HEADER-CREAT_DATE = cdate .
    HEADER-VENDOR = vendor .
    HEADER-LANGU = ws_langu .
    HEADER-PURCH_ORG = pur_org .
    HEADER-PUR_GROUP = pur_grp .
    *POPULATE HEADER FLAG.
    HEADERX-comp_code = c_x.
    HEADERX-doc_type = c_x.
    HEADERX-creat_date = c_x.
    HEADERX-vendor = c_x.
    HEADERX-langu = c_x.
    HEADERX-purch_org = c_x.
    HEADERX-pur_group = c_x.
    HEADERX-doc_date = c_x.
    *POPULATE ITEM DATA.
    ITEM-PO_ITEM = item_num.
    ITEM-MATERIAL = material.
    ITEM-PLANT = plant.
    ITEM-QUANTITY = quantity.
    APPEND ITEM.
    *POPULATE ITEM FLAG TABLE
    ITEMX-PO_ITEM = item_num.
    ITEMX-MATERIAL = C_X.
    ITEMX-PLANT = C_X .
    ITEMX-STGE_LOC = C_X .
    ITEMX-QUANTITY = C_X .
    ITEMX-TAX_CODE = C_X .
    ITEMX-ITEM_CAT = C_X .
    ITEMX-ACCTASSCAT = C_X .
    APPEND ITEMX.
    *BAPI CALL
    CALL FUNCTION 'BAPI_PO_CREATE1'
    EXPORTING
    POHEADER = HEADER
    POHEADERX = HEADERX
    POADDRVENDOR =
    TESTRUN =
    IMPORTING
    EXPPURCHASEORDER =
    EXPHEADER =
    EXPPOEXPIMPHEADER =
    TABLES
    RETURN = RETURN
    POITEM = ITEM
    POITEMX = ITEMX.
    *Confirm the document creation by calling database COMMIT
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT = 'X'
    IMPORTING
    RETURN =
    end-of-selection.
    *Output the messages returned from BAPI call
    LOOP AT RETURN.
    WRITE / RETURN-MESSAGE.
    ENDLOOP.
    Create a purchase order with configuration using the BAPI
    This took some time to figure out how to setup. It may be useful.
    call function 'BAPI_CFG_CREATE'
    exporting
    object_id = 'MYMATCODE'
    root_type = 'MARA'
    root_name = 'MYMATCODE'
    plant = 'MYPLANT'
    importing
    cfg_handle = l_handle
    root_instance = l_instance
    exceptions
    error = 1
    others = 2.
    l_characts_vals-atnam = 'WIDTH'.
    l_characts_vals-atwtb = '500'.
    append l_characts_vals to it_characts_vals.
    call function 'BAPI_CFGINST_CHARCS_VALS_SET'
    exporting
    object_id = 'MYMATCODE'
    instance = l_instance
    tables
    characts_vals = it_characts_vals
    characts_vals_err = it_characts_vals_err.
    call function 'CE_C_SET_CBASE'.
    l_poitem-int_obj_no = l_handle.
    call function 'BAPI_PO_CREATE1'
    exporting
    poheader = l_poheader
    poheaderx = l_poheaderx
    importing
    expheader = l_expheader
    exppurchaseorder = l_exppurchaseorder
    tables
    poitem = lt_poitem
    poitemx = lt_poitemx
    poschedule = lt_poschedule
    poschedulex = lt_poschedulex
    return = lt_return.
    call function 'BAPI_TRANSACTION_COMMIT'.
    Regards
    Sudheer

  • How to Include House Number when Creating SO using BAPI

    Dear Experts,
    I am using BAPI BAPI_SALESORDER_CREATEFROMDAT2 to create a new Sales Order.  I can actually create the sales order with all other fields right except for the HOUSE NUMBER in the SHIP-TO PARTY.
    For the BAPI_SALESORDER_CREATEFROMDAT2, I have include the table ORDER_PARTNERS with structure BAPIPARNR.  But when I check in the structure BAPIPARNR, there is only the field STREET (char 35) but no individual field for HOUSE NUMBER.  May I ask how can I insert the HOUSE NUMBER to the Sales Order? 
    Points will be rewarded for helpful answers.
    Thanks in Advance.

    Hello,
    1) BAPI is not returning the sales order number to the program but when checked from SE37 it is returning the sales order
    number.
    - are you passing simulation parameter (TESTRUN) as 'X'
    2) It is not updating the VBFA (SD flow) table.
    - Please use BAPI_SALESDOCUMENT_COPY for copying and updating VBFA table
    Thanks
    Krish

  • Header data not coming from vendor master when creating SA using BAPI

    Hello,
    I am creating SA using BAPI_SA_CREATE. I am passing the vendor code and other header related data in the header table of the BAPI.
    SA is created successfully with all the data that is passed to the BAPI. Now if the payment term and inco terms data is passed initial to BAPI then this data is not taken from vendor master. This data appears blank in SA.
    Shouldn't this data be picked up from vendor master as they are maintained properly in vendor master?
    I just need confirmation whether BAPI picks or not from vendor master if the data (payment term and inco terms) passed is initial.
    Thanks and Regards,
    Saba

    Hi,
    Are u passing X to corresponding fields of HEADER structure what ever you have populated in HEADER structure .

  • Sales order creating by using bapi

    Hi,
    I am creating sales order by using bapi BAPI_SALESORDER_CREATEFROMDAT2
    for that i am run this bapy, that asking standard data, plz anybody can help me
    send the data as
    doc_type
    sales_org
    Distribution chanel
    Division
    sold to party
    Thanks
    Fazil

    Hi
    Refer link below
    Sales Order Creation Through BAPI

  • How to create material using BAPI  Methods?

    hi,
    how to create material master dat using BAPI?
    could u guide me
    i will be waiting for reply.
    REGARDS
    ESWAR.

    Hi eswar,
    Try this code to create gods mmovement...
    DATA: GOODSMVT_HEADER LIKE BAPI2017_GM_HEAD_01,
          " Material Document Header Data
          GOODSMVT_CODE LIKE BAPI2017_GM_CODE,
          " Assign code to transaction for BAPI goods movement
          MATERIALDOCUMENT LIKE BAPI2017_GM_HEAD_RET-MAT_DOC,
          " Number of Material Document
          GOODSMVT_ITEM LIKE BAPI2017_GM_ITEM_CREATE OCCURS 0 WITH HEADER
          LINE,
          " Create Material Document Item
          RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE
          " Return table for messages
    *Fill values in header
    GOODSMVT_HEADER-PSTNG_DATE = '20030825'.
    GOODSMVT_HEADER-DOC_DATE = '20030802'.
    *Fill GOODSMVT_CODE
    GOODSMVT_CODE-GM_CODE = '05' .
    *Fill Item Table
    GOODSMVT_ITEM-MATERIAL = '100-100'.
    GOODSMVT_ITEM-PLANT = '1000'.
    GOODSMVT_ITEM-STGE_LOC = '0001'.
    GOODSMVT_ITEM-MOVE_TYPE = '501'.
    GOODSMVT_ITEM-ENTRY_QNT = '50'.
    GOODSMVT_ITEM-ITEM_TEXT = 'Test Sanket'.
    *GOODSMVT_ITEM-COSTCENTER = '1000'.
    APPEND GOODSMVT_ITEM.
    *Create Good's movement
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
      EXPORTING
        GOODSMVT_HEADER  = GOODSMVT_HEADER
        GOODSMVT_CODE    = GOODSMVT_CODE
      IMPORTING
        MATERIALDOCUMENT = MATERIALDOCUMENT
      TABLES
        GOODSMVT_ITEM    = GOODSMVT_ITEM
        RETURN           = RETURN.
    *Commit BAPI
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        WAIT = 'X'.
    *Display Goods movement number
    FORMAT COLOR 6 INVERSE ON.
    READ TABLE RETURN WITH KEY TYPE = 'E'.
    IF SY-SUBRC = 0.
      WRITE: /,'ERROR! Goods movement not created'.
    ELSE.
      WRITE: /,'Goods movent number',MATERIALDOCUMENT COLOR 5,
               'posted for material',GOODSMVT_ITEM-MATERIAL.
    ENDIF.
    FORMAT COLOR OFF INVERSE OFF.
    try this on report program and create a goods movement.
    Sanket.

  • Need screen-shot  for create mm01 using BAPI(Through lsmw or ecording)

    hi,
    could u give screen-shot of the lsmw using bapi.for material master data create using t.code (mm01')
    i will be waiting for eply.
    regards
    eswar.

    Check this link dude.....
    http://www.****************/Tutorials/LSMW/LSMWMainPage.htm
    It has all different types of LSMW with the screen shots.... keep doin
    Regards,
    Pavan

Maybe you are looking for

  • Is it possible to create an RSS feed in Dreamweaver CC (Mac 10.8.5)?

    I'm a relative beginner in terms of HTML/CSS and Dreaweaver CC. I've created a site using the dynamic layout option in Dreamweaver CC and now want to explore sharing out my content via RSS feeds. I've tried to install the Dreamfeeder extension but it

  • Caching values between different executions of a message mapping

    Hi all Like global container object is used for caching values between different user defined functions within the same message mapping. Can v have some sort of cachingvalues between simultaneos exceutions of same message mapping? Thanks and Regards

  • Possible lsnrctl start problem?

    After a boot of SLES9, I startup the Oracle listener (for Oracle 10g). I get the following: Copyright (c) 1991, 2004, Oracle. All rights reserved. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC))) STATUS of the LISTENER Alias LISTENER

  • Capital One Luv or no Luv???

    I have two capital one regular platinum cards. The CL are $1400 and $2000. Utilization is 50% no missed payments.  I recv'd minor ($300) increases on both cards back in March 2015. I hit the love button last week (3 months out) and was denied. Althou

  • CLIENT point of view

    I am a SAP BW consultant just started and willing to learn from Other expereiences. I want to know certain things which might have occured to so many of you 1. In an ERP environment,  How SAP BW migration from other External Data Warehouses will bene