BAPI for change documents like FB09

Hi
I need to change the Assignment Number (ZUONR) Field for several document positions just like FB09 ,
Does somebody knows a BAPI for change document positions (BSEG) ?
Regards
Frank

Hi,
Please see this link, It may help you.
Add documents to materials via BAPI
Regards,
Shamma

Similar Messages

  • BAPI for Change Customer

    Hi Experts,
    We have a requirement to change the details of a customer. We are using BAPI, "BAPI_CUSTOMER_CHANGEFROMDATA". Change is happening when we try to change details like name, But when we try to change 'country' field, we are getting error saying  "Personal address diffrent from comapany address; change not allowed"..... Can anybody help me with this,,, or can somebody suggest any other BAPI for change customer....
    Thanks and regards,
    Mahendra R

    Hi Mahendra,
    CHek the link below[using BAPI_CUSTOMER_CHANGEFROMDATA1;

  • FM or BAPI for resetting Documents

    Hi all,
    Is there any FM or BAPI available for resettign and reversing documents in FBRA. I have a FM for reversing document but i don't have a FM or BAPI for resetting documents. If any one knows answer for this, please suggest me.
    Thanks and Regards,
    Subbu.

    HOPE THIS WILL HELP
    Reset cleared items (FBRA)
    After executing the data in FBRA, the accounting document will be moved from BSAK table to BSIK, after executing the below function module one can check in these table. Never try to select accounting document from BSEG table, it's a cluster table. Try to use key fields when firing query on BASK table. *---Declaration for fun mod
    DATA:  d_bukrs       LIKE rf05r-bukrs,
           d_belnr       LIKE rf05r-augbl,
           d_gjahr       LIKE rf05r-gjahr,
           it_rf05r_acct LIKE rf05r_acct OCCURS 0 WITH HEADER LINE.
    LOOP AT it_bsak.
           CLEAR: d_bukrs, d_belnr, d_gjahr.
           d_bukrs  = it_bsak-bukrs.
           d_belnr  = it_bsak-augbl.
           d_gjahr  = it_bsak-gjahr.
    *---Fuction module to run FBRA
           CALL FUNCTION 'CALL_FBRA'
             EXPORTING
               i_bukrs      = d_bukrs
               i_augbl      = d_belnr
               i_gjahr      = d_gjahr
             TABLES
               t_accnt      = it_rf05r_acct
             EXCEPTIONS
               not_possible = 1
               OTHERS       = 2.
    Endloop.

  • Is there any BAPI for Upload Documents of WBS elements?

    Hi Guys,
                 Can anbody tell me is there any BAPI for Uploading Documents  of WBS elements ?
    Thanks,
    Gopi.

    hi
    check these BAPI
    Change WBS Elements Using BAPI                                                                               
    BAPI_BUS2054_CHANGE_MULTI           
    Create WBS Elements Using BAPI 
    BAPI_BUS2054_CREATE_MULTI                                                               
    Delete WBS Elements Using BAPI                                                                               
    BAPI_BUS2054_DELETE_MULTI                                                               
    Detail Data for WBS Elements                                                                               
    BAPI_BUS2054_GETDATA                                                                      
    Reading the GUIDs using the WBS Key
    BAPI_BUS2054_GET_GUID_FROM_KEY                                                     
    Reading the WBS Key using the GUIDs                                              
    BAPI_BUS2054_GET_KEY_FROM_GUID                                                                               
    Check Existence of a WBS Element                                                 
    BAPI_PROJECT_EXISTENCECHECK                                                                               
    Element                                                 
    thnks
    sitaram

  • Table to look for change documents for users

    Hi friends,
    Is there any standard table to look for change documents for a user?change document through SUIM does not give the correct log.
    Thanks for you support.

    Julius
    Looking at another of Tracy's other post (http://scn.sap.com/thread/3598947) she's trying to use ACL. Hence needing to know the tables to write joins/queries to hit tables within ACL
    I've seen ACL used and have had the fun experience of Auditors using Google to find tables to perform checks on without context of what has actually been implemented in their particular system.
    Regards
    Colleen

  • BAPI for changing delivery date and delivery time fields in LIKP table

    Hi All,
         Is there any BAPI or function module to change the delivery date and delivery time in LIKP table ?
    Please tell me experts if exists.
    Thank you,
    Raghu.

    try these:
    BAPI/FM to update LIKP and VTTK tables
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/bapi-for-changing-sales-headertable-likp-662800

  • Can u tell me any predefined BAPI for change and creation of Material

    Hi,
        Can anybody tell me  predefined BAPI for change and creation of Materialmasterand Pricing?
    Thanks & regards,
    Gopianne.

    you can use the BAPI to BAPI_MATERIAL_SAVEDATA create as well as to change material master.
    When changing material master data, you need enter only the material
    number.
    In the header data, you must select at least one view for which data is
    to be created. Depending on the view selected, you must maintain other
    required parameters. If you do not enter values for all of the required
    parameters, the method is ended with an error message.
    The corresponding fields in the tables (such as CLIENTDATA) must first
    be supplied with data by the calling program. An indicator must also be
    set for each of these fields so that the data is written to the database
    by the method. This requires the calling program to supply the
    corresponding field with the indicator in a checkbox table (for example,
    CLIENTDATAX). Checkbox tables exist for tables that do not contain any
    language-dependent texts (MAKT, MLTX), International Article Numbers
    (MEAN), or tax classifications (MLAN). Several data records for a
    material can be created in these tables.
    regards
    vivek
    reward points if it helps

  • What program can i get for my documents like exel or word, What program can i get for my documents like exel or word

    What program can i get for my documents like excel or word

    Microsoft makes an Office Suite for the Mac....It's Office 2011 at the moment

  • Suggest BAPI for change notification IW52

    Hi,
    Kindly suggest BAPI for change notification IW52.
    Regards,
    Tanaya

    How to find function module or Bapi for particular transaction in sap?
    If you mean that you need to know what BAPI's a particular tranx uses, which I can only assume that's what you mean, then you should access the code behind the transaction and search for 'CALL'. That normally is the standard method that think that most people use. 
    Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this. 
    1. Find out the package of the transaction. 
    Start Va01 go to system --> status. 
    Double click on transaction 
    Package is VA 
    Open this package in SE80 
    Open business engineering-->Business object types 
    Find the BO which sounds the most appropriate 
    I would suggest BUS2032 Sales Order 
    Double click. 
    Open methods. 
    Find the released method with from data or something similar in the name 
    , Createfromdat2 
    Position the cursor in it and click the program button 
    Scroll down to find the bapi used in this method 
    With this way you can also find out programs and FM's 
    2. Start va01 go to system-->status 
    Double click transaction VA01 
    Double click on package 
    Read the application component. (this is SD-SLS Sales) 
    Then open the transaction BAPI 
    Sales and distribution>Sales>sales order 
    createfromdat2 
    Answer: This is  the BAPI for your mentioned   transaction code BAPI_GOODSMVT_CREATE.
    thanks,
    Sankar M

  • BAPI for "Change Base Planning Object"

    Hi
    Is there any BAPI for "Change Base Planning Object" ( TC KKE2).
    I need to change the Price of a Resource in the Cost Items for a Base Planning Object.
    So if any one know the BAPI for this topic please let me know, and if possible send me your code also it will be really help full.
    Regards

    I didn't find a BAPI to do this. I had to do it by a Batch Input.

  • BAPI for  ""Change Cost Element / Activity Input Planning ""

    Hi
    Is there any BAPI for  ""Change Cost Element / Activity Input Planning "" ( TC KP06) as there is BDC for that but is goes through lot of steps . ( TC OKKS, KP04, KP06 )
    So if any one know the BAPI for the same please let me know,  and if possible send me your code also it will be really help full.
    Regards

    o   OBJECT_INDEX - Index uniquely identifying the row and thus the           
        object. The index must be greater than zero and may only appear once     
        in the table. If the index does not exist in INDEXSTRUCTURE, the row     
        is ignored.                                                                               
    o   COSTCENTER    - Cost center that includes the activity.                                                                               
    o   ACTTYPE       - Activity type that includes the activity. You must       
        fill this together with COSTCENTER. You only need it for an activity     
        input that is activity-dependent.                                                                               
    o   CO_BUSPROC - Business process that includes the activity.                                                                               
    o   ORDERID       - Order that includes the activity.                                                                               
    o   WBS_ELEMENT  - WBS element that includes the activity                                                                               
    You may fill one object only,for example COSTCENTER, CO_BUSPROC,             
    ORDERID, or WBS_ELEMENT.                                                     

  • Bapi for parking documents

    Hello!
    Does anyone know a BAPI for parking documents that works ok? (in spanish we call "documentos apartados")
    I have read about it on the internet and it seems that there is no bapi for it.
    I have found bapi for preliminars.... but nothing about parking.
    Thanks you in advance!
    Sabrina.

    Hi,
    If I understand your requirement correctly, you can use BAPI 'BAPI_ACC_GL_POSTING_POST' to park the FI documents. Fill the required interface parameters and call this BAPI.
    Let me know if the requirement is different.
    Regards
    Gangadhar

  • BAPI for Accounting Document Posting

    What is the name of BAPI for Accounting Document Posting and how can I run it?

    Hi ,
    Can you send me the code how to use the BAPI_ACC_DOCUMENT_POST.
    Regards,
    L Srikanthan.

  • BAPI for changing Appropriation request - IMA12

    Hi,
    What is the BAPI for changing the Appropriation request(IMA12).i found the BAPI    BAPI_APPREQUEST_CHANGE.But i want to change the plan values . In this BAPI there is no parameters for these fields.Is there any BAPI 's for this?
    Regards,
    Charumathi.B

    Hi,
    Try this BAPI BAPI_APPREQUEST_CHANGE_MPO.

  • QM Orders - Funktions/BAPI for Changing

    Dear all,
    I have to mass change the Profit Center and the Cost Center in the QM Orders.
    I can not find a function or BAPI to change the data. Can anybody give me a tip - please.
    Thanks for help.
    Best regards
    Roman

    Dear Roman
    Please check this link. I couldnt find anything to change
    Link: [Bapi for changing internal order master data]
    My recommendation will
    1) Write a program to change the costcenter and profit center  in the table
    2) You can replace the existing order by creating new QM order using the BAPI BAPI_INTERNALORDER_CREATE
    Regards
    Gajesh

Maybe you are looking for

  • Supported Graphics Card?

    I am considering upgrading from Final Cut Express HD to Final Cut Pro X. My MacBook pro is a few years old, and so I've been checking carefully to see about compatability. Can anyone tell me for sure whether or not this graphics card is supported: NV

  • How to suppress a group with a sum of $0

    Post Author: MarkO CA Forum: General Hi I am trying to develop a report with groups of account numbers and amounts.  The detail section is suppressed leaving only the group footer showing the account number and group total $.  I would like the report

  • HT201412 can i exchange my iphone 5c with iphone 5 by paying more or just exchange without paying?

    can i exchange my iphone 5c with iphone 5 by paying more or just exchange without paying?

  • Deleted text appears in playback

    Hi Using FCE HD 3.5, I generated a crawl text that I rendered then later deleted. There is no clip showing in the timeline however the text still appears during playback. I am unable to highlight the text in the canvas and am at a loss. thx g5 quad  

  • [SOLVED]Mumble server installation

    Followed the installation as per http://mumble.sourceforge.net/Installin … Arch_Linux pacman -S murmur resolving dependencies... looking for inter-conflicts... Targets (42): libdaemon-0.14-1 dbus-1.4.14-1 avahi-0.6.30-4 lsb-release-1.4-10 protobuf-2.