Bapi to update Ekpo table

Hi all,
I want to update field TXZ01 from table EKPO, Is there any bapi to do the same.
Please help its urgent.
Thanx in advance,
Amruta.

BAPI-step by step procedure
http://www.sapgenie.com/abap/bapi/example.htm
list of all BAPI's
http://www.planetsap.com/LIST_ALL_BAPIs.htm

Similar Messages

  • BAPI to update EKPO-LOEKZ

    Hello All,
    Is there a BAPI to update ekpo-loekz field.
    Thanks
    Aravind

    Hi Arvind
    Currenty you are passing only one line in the FM not internal table for the poitmes...
    Main thing is you have to pass internal table for line items inf BAPI BAPI_PO_CHANGE instead of work area or single line
    ** Fill purchase order from ekko
        l_purchaseorder = wa_ekko-ebeln. " Try to use EKKO-EBELN and change the logic accordingly..
    LOOP AT it_ekpo INTO wa_ekpo where ebeln = wa_ekko-ebeln. " B4 this write FOR ALL ENTRIES logic to fill EKPO
        CLEAR: l_purchaseorder,
               l_r_poheader,
               l_r_poheaderx.
        l_poitem-po_item = wa_ekpo-ebelp.
        l_poitem-delete_ind = C_X.
        APPEND l_poitem.
        l_poitemx-po_item = wa_ekpo-ebelp.
        l_poitemx-PO_ITEMX = C_X.
        l_poitemx-delete_ind = C_X.
        APPEND l_poitemx.
    ENDLOOP.
    CALL FUNCTION 'BAPI_PO_CHANGE'
             EXPORTING
                  purchaseorder = l_purchaseorder
             TABLES
                  return        = l_t_return
                  poitem        = l_poitem[] " Pass Internal Table instead of one row
                  poitemx       = l_poitemx[] . " Pass Internal Table instead of one row
        IF sy-subrc = 0.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
               EXPORTING
                    wait = C_X
       ENDIF.
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • BAPI to update MARC Table

    Hi Gurus,
    Please let me know a BAPI to update MARC table.
    Regards
    Avinash.

    Hi,
    You can use the BAPI_MATERIAL_SAVEDATA
    Please find the corresponding field names in the BAPI
    PLANTDATA-REORDER_PT - MINBE
    PLANTDATA-SAFETY_STK - EISBE
    PLANTDATA-MINLOTSIZE - bstmi
    PLANTDATA-MAXLOTSIZE - bstma
    PLANTDATA-FIXED_LOT - bstfe
    PLANTDATA-ROUND_VAL - bstrf
    PLANTDATA-MAX_STOCK - mabst
    PLANTDATA-MIN_SAFETY_STK - eislo
    Populate the following parameters..
    HEADDATA-MATERIAL = 'Material number'.
    HEADDATA-MRP_VIEW = 'X'.
    Populate the PLANTDATA as mentioned above..
    Populate the corresponding X in the PLANTDATAX structure.
    PLANTDATAX-REORDER_PT = 'X'
    PLANTDATAX-SAFETY_STK = 'X'
    PLANTDATAX-MINLOTSIZE = 'X'
    PLANTDATAX-MAXLOTSIZE = 'X'
    PLANTDATAX-FIXED_LOT = 'X'
    PLANTDATAX-ROUND_VAL = 'X'
    PLANTDATAX-MAX_STOCK = 'X'
    PLANTDATAX-MIN_SAFETY_STK = 'X'
    Call the BAPI.
    Give COMMIT WORK.
    Hope this works..
    Regards.

  • Need  F.M or BAPI to update the table IFLOT---URGENT

    HI ALL,
    i need  F.M or BAPI to update the table IFLOT
    its urgent ........................

    use the function module
    EXIT_SAPLITO0_001/2
    www.jt77.com/plant-maintenance/quality-management-11667.html - 11k -
    reward if useful

  • How to Update EKPO table with enhancement at header level-customer data tab

    Experts,
    I have a requirement where I had to create a new button in the 'customer data' tab(header) in the ME21N/ME22N Transaction and once it gets clicked a table control will appear and in that all the line items with item no, material and plant and an additional check box will display, and once any one checks the check box against the item/material in the table control the item data with additional z fields (already created the zfields in EKPO Table) should get updated.
    Displaying Table control and item data on the click of button was successful, but once you check the check box against the item and save the PO it is not updating the z-fields in the EKPO table.
    I have implemented all the user exits , badis but no results. 
    Once you check the box in the table control against each item in the header part (Table control is in header part (customer tab)) the line item EKPO table with z fields should get updated.
    Any Clues/ideas will be appreciated.
    Thanks in advance,
    Kalikonda.

    Hi,
    Can you please share the remedy for above issue, recently we have same issue in our system.
    or please send me any supportive doc. for the below mail
    Looking forward for your positive response.
    Thanks
    Mohan
    ([email protected])

  • BAPI to update payr table

    Hi
    I need to update PAYR database table
    Is there any BAPI to update this table

    If there is a BAPI function then you could use that - using some of the other direct update functions or methods suggested is likely to leave you with data integrity issues.
    If there is no BAPI, check what normal transaction codes are available to perform the update and use a BDC or CALL TRANSACTION using them.  There also might be a SAP supplied program which does the updates you need.  You may need to implement user exits in the transaction to get the functionality also.
    Updating the single table in isolation can cause problems - for example does this table have change history objects associated with it that SAP transactions would update?
    Andrew

  • BAPI to update KNVP Table---- removed_by_moderator .

    Hi all,
    i want to know the BAPI  to update PERNR(Personal number) field in KNVP Table.
    Thanks
    swaroop
    Edited by: Julius Bussche on Jul 11, 2008 12:53 PM

    Hi
    Go through the link given below :
    function module to update a database table
    Regards
    Nikunj Shah

  • FM/BAPI to update AFPO table

    Hello all,
    Please can any one provide me any FM or BAPI to update AFPO statndard table.
    Thank you,
    Shreekant

    Hi Shreekant,
    Check this function module.
    CO_BI_AFPO_UPD
    Regards,
    Lakshman.

  • BAPI to update KONP table (tcode: WYP2)

    Hi all,
    I am looking for a BAPI which can update UoM field through tranaction WYP3 (pricing condition). I found one BAPI ( BAPI_PRICES_CONDITIONS ) but as  it not released, cannot be used. Can you please suggest any BAPI's available
    for updating ( table KONP ) the transaction.
    Regards,
    John

    Hi,
    Check the following thread...
    BAPI for WYP1
    KR
    Veeranji Reddy P.

  • BAPi to update WLK2 table

    Hi,
    Does anyone know any BAPI or function module that may be used to update POS data ( SAP Retail ) in WLK2 table ?
    Thanks in advance,
    Paulo Sousa

    Hi,
    What's /POSDW/BW_UPDATE_SOURCES.
    About the function module you've referred it does not exists in my system. We'r working with ECC 600.
    Thanks,
    Paulo Sousa

  • BAPI to update RESB table

    Hi,
    Could anyone pls tell the BAPI name to update the RESB (Reservation) table?
    Thanks in advance.

    Did you tried this BAPi
    BAPI_RESERVATION_CHANGE
    You can change the following fields in a reservation item:
    Storage Location (field STGE_LOC)
    Batch Number (field BATCH)
    Quantity in Unit of Entry (field ENTRY_QNT)
    Requirements Date of Component (field REQ_DATE)
    Item Text (field ITEM_TEXT)
    Goods Recipient (field GR_RCPT)
    Unloading Point (field UNLOAD_PT)
    Set the 'Quantity is fixed' indicator (field FIXED_QUAN)
    Set the 'Goods movement for reservation allowed' indicator (field MOVEMENT)
    Set the 'Item is deleted' indicator (field DELETE_IND)
    Set the 'Final issue for this reservation' indicator (field WITHDRAWN)

  • Bapi for updation of table VBRP

    Hi,
    I have to Update the Field 'KONDM' in the table VBRP. Is there some BAPI available for updating VBRP or we can have to go with the direct Update to the table. I have to Update this field by a stand alone report program.
    Thanks and regards,
    Pankaj Bist.

    Might be use this Function module
      CALL FUNCTION 'RV_INVOICE_ITEM_MAINTAIN'
           EXPORTING
                VBRP_I = VBRP
           IMPORTING
                VBRP_E = VBRP
           TABLES
                XKOMFK = XKOMFK
                XTHEAD = XTHEAD
                XVBFS  = XVBFS
                XVBSS  = XVBSS
                XVBRK  = XVBRK
                XVBRP  = XVBRP
                XVBPA  = XVBPA
                XKOMV  = XKOMV.
    Matintain the value in the VBRP table & pass rest as is... u get the value using the FM RV_INVOICE_DOCUMENT_READ

  • BAPI for updating DB table AFVU

    Hi
    I need to update Operation short text (AFVU-USR01) .
    Is there any BAPI which can be used in doing this.
    Some one kindly provide details.
    Thanks n Regards
    Ramesh

    Hi Dinesh
    Thnks a lot for ur reply.
    But I have a doubt, here, the field which i want to update is not a standard SAP field. (AFVU-USR01).
    Will the BAPI's or User Exit work in this case.
    If not please, let me know if there is any other alternative.
    Thanks n Regards
    Ramesh

  • Bapi To Update Table VCNUM

    Hi Experts,
    I have to update the table VCNUM without using update statement.But I need to use Bapi. Is their any standard BAPI to update VCNUM table.
    Thanks & Regards,
    kranthi

    Frankly, I would not be the right perosn to guide you this. Still, kindly refer following hyperlinks:
    EXIT_SAPMF02D_001 VCKUN & VCNUM import parameters
    Re: Updating EBAN Fields without direct update statement
    Regards
    JP

  • BAPI or Function Module - Update VBBE Table

    Hi All,
    I am looking for any function module or BAPI which Updates VBBE Table.
    Regards,
    Debi

    Hi,
    Use FM  RV_SALES_DOCUMENT_UPDATE in update task mode and pass all the required fields and tables.
    Pass empty table values for remaining tables except VBBE and pass export parameters.
    BR,
    Lokeswari.

Maybe you are looking for

  • Error occurred during initialization of VM. Could not reserve enough space

    Dear All, I am trying to install SAP NetWeaver 7.0 SR2 SP9 on Oracle 10.2 and platform is Windows 2003 32 bits. While installing, in t he restarting the JAVA Instance step, server0 node is getting shutdown. When I further analyzed dev_server0 log, I

  • Oracle 11g - Is there a way to speed up hard parsing?

    Hi, I have used TKPROF to examine my slow SQL and it's pointed out it is because of the hard parsing process. Bind variables would not help in my case because the query conditions vary quite arbitrarily depending on what the user selects on the appli

  • Mail Crashes-Tiger & Panther-must I resort to Entourage (Microsoft-Blah)?!?

    I have been a Mac user for 6 years now. In my home we have 3 G4's (eMac, PowerBook & Power Mac) and a G5 on the way. I just bought my Mom, a diehard Windows user until now, a Mac Mini running Tiger 10.4.5. She has had problems with Mail crashing sinc

  • Are the search enhancements in Web UI 100 % reliable?

    Dear Gurus I have been thinking about this from long time. I have seen and followed several ways while enhancing Search components (Eg: BT111S_OPPT). I have a scenario. I am looking for the best possible solution so that it will be 100% reliable. My

  • Master/detail in different regions

    JDeveloper 11g Release 2 (11.2.4.0) Hi.  I have a very simply setup, with master/detail VO.  If I drag the data control onto a page and create a master table/detail table, then all works as expected, with the detail table updating when a different ro