BAPI/FM to update VEKP-EXIDV field?

Hi Experts,
I am searching for a BAPI/Function Module to update the EXIDV field in VEKP table.
Please give me any BAPI/FM name to do this. Sample code is very helpful..
Thanks,
Suresh

Hi there,
Try to look for an FM by going to SE84 or SE80. Just get the package of that field. Go to SE93, key in the TCODE that uses this field, then search for the package. Once you know the package name, you can either go to SE80/SE84 or CMOD/SMOD tcode to look for available FM.

Similar Messages

  • Problem in updating VEKP-LTEXT field

    Hi,
    I need to update VEKP-LTEXT field for a vehicle(HU), i got a FM LXYRD_HU_UPDATE to update this, but the only problem is i am not able to clear that field(VEKP-LTEXT). Insert and modify is working fine except clearing the text field(VEKP-LTEXT).
    Please help me....

    in the function module you provided 'LXYRD_HU_UPDATE' in order to clear the field VEKP-LTEXT, <br />
    you do the declartion and pass this value LTEXT to the internal table and use the command 'REFRESH' to clear the text in the 'LTEXT' each time it passes in the loop
    REFRESH ITAB. " ITAB is the internal table which you have to declare with the field LTEXT'

  • Use BAPI: BAPI_MATERIAL_SAVEREPLICA to update customer field in MARC

    HI All,
    I will use the BAPI BAPI_MATERIAL_SAVEREPLICA to update a customer field in database table MARC. For that I have extended the structures BAPI_TE_E1MARC and BAPI_TE_E1MARCX with the customer field.
    Afterwards I have filled the tables EXTENSIONIN and EXTENSIONINX with the corresponding value for the update. Addtionally I have added the field in transaction OMSR (setting to display in the field selection, because the field should not maintenance over the standard transaction MM01 and MM02). 
    Processing of the BAPI give no error message, but the corresponding field in table MARC won't be updated. What's going wrong? Is there somebody, who could help me?
    Thanks and best regards
    Stefan

    Hi
    Try this BAPI function module:
    " BAPI_MATERIAL_MAINTAINDATA_RT "
    Data: LS_HEADDATA TYPE BAPIE1MATHEAD,
             LS_RETURN TYPE BAPIRETURN1,
              LT_PLANT TYPE TABLE OF BAPIE1MARCRT,          LS_PLANT TYPE BAPIE1MARCRT,
              LS_PLANTX TYPE BAPIE1MARCRTX,          LT_PLANTX TYPE TABLE OF BAPIE1MARCRTX.
            CALL FUNCTION 'BAPI_MATERIAL_MAINTAINDATA_RT'
                   EXPORTING
                       HEADDATA   = LS_HEADDATA
                   IMPORTING
                       RETURN     = LS_RETURN
                   TABLES
                       PLANTDATA  = LT_PLANT
                       PLANTDATAX = LT_PLANTX.
    Check the PLANTDATA in the above fm in which pass your ''STEUC'' to BAPIE1MARCRT-CTRL_CODE......
    Hope this works.....

  • Material Master: Update the Z fields using BAPI

    Hi to all,
    My requirement is simple. But I do not have much knowledge on BAPI. I have got some information that we can extend th BAPI and update the Z fields in material master. I have added the z fields in MARA. So when I call the bapi z fields has to get update.
    Which BAPI can i use? I have got one BAPI - BAPI_MATERIAL_SAVEDATA.   plz suggest me to do it.
    1. how do i enhance the BAPI or extend th BAPI.
    2. Is ther any approch to do it.
    thnks
    Yerukala Setty

    Hi,
    Append the z fields to BAPI_TE_MARA and BAPI_TE_MARAX structures using append structures.
    Populate two structures for the fields in BAPI_TE_MARA and BAPI_TE_MARAX.
    To BAPI_MATERIAL_SAVEDATA, under EXTENSIONIN parameters, pass structure name as BAPI_TE_MARA and Value Part1, 2, 3, 4 with the filled structure info.
    Similarly append X structure as well.
    Regards,
    Ganga

  • Bapi to update FB02 xref1 field

    Hi Experts,
    I need to update the xref1 field in FB02.
    Is there any BAPI to update?
    Thanks in advance.

    Hi AShvin
    You've also suggested fm FI_DOCUMENT_CHANGE in this post
    Update BSEG-SGTXT
    but have you used it in your program?
    Max

  • User exit or FM or BAPI to update bseg-augbl field

    hello,
    i'm looking for a solution to update bseg-augbl field.
    is there a user exit or fm to do it ?
    please help.

    hi,
    i think, there's no fm or bapi -
    so try batchinput for transaction FB09.
    P.S.
    why do you want to change this field ? I think it's -<b>without exception</b>- a field that should be changed only by SAP-standard programs ?????
    A.

  • How to update a custom field of MARC table using BAPI_MATERIAL_SAVEREPLICA

    Hi,
    I want to update a custom field (Appended field) of MARC table using  BAPI_MATERIAL_SAVEREPLICA. Please help me in this issue. I cannot use BAPI_MATERIAL_SAVEDATA as this updated the MARC table record by record. I have to update bulk records at a time.
    Thanks
    Rahul.

    Hi,
    Use the Documentation given for struture in BAPI docuemntation...
    For loading data into custom fields of MARC use the structure - BAPI_TE_MARC.
    First, structures BAPI_TE_<NAME> (<NAME> = MARA, MARC, MARD, MBEW, MLGN, MLGT, MVKE, MARM, MAKT) and the appropriate check structures BAPI_TE_<NAME> (<NAME> = MARAX, for example) have to be extended by the customer to include the required fields. The structures that are delivered as standard only contain the relevant key fields. When new fields are added to this structure, you should ensure that a field has the same name as the field in the database table. Furthermore, the fields in the structures BAPI_TE_<NAME> can only be CHARACTER fields. Data element BAPIUPDATE is to be used for the fields in the check structure (exception to this: key fields.)
    Parameters EXTENSIONIN and EXTENSIONINX are used for transferring data to the method. Field STRUCTURE contains the name of the structure (for example, BAPI_TE_MARA or BAPI_TE_MARAX). This names is used to identify the work area (for example,  WA_BAPI_TE_MARA or WA_BAPI_TE_MARAX) to which the data is transferred. The remaining fields in parameters EXTENSIONIN or EXTENSIONINX contain data for the key fields (for example, the material number) and the data for customer-specific fields. The number of characters reserved in both parameters for the contents of the customer-specific fields must match the number of characters for the relevant field in the work area. If the number of required characters is less, the remaining characters are left blank. Only when all characters have been filled can the contact for an additional field be transferred. Bear in mind that only data for which an appropriate indicator has been set in the work area can be updated to the database.
    Regards,
    Bhargava

  • Issue in Updating Customer specific fields in WBS using BAPI_BUS2054_CREATE_MULTI

    Hi Experts,
    I am able to create the WBS element using BAPI_BUS2054_CREATE_MULTI.But the issue is i am not able to update customer specific fields even after passing the fields as per specification in Function module documentation. I have also created an implementation of BADI  as per below specification in FM documentation:
    Procedure for Filling Standard Enhancements
    Before you call the BAPI for each object that is to be created or changed,
    for which you want to enter customer-specific table enhancement fields, add a
    data record to the container ExtensionIn:
    STRUCTURE:    Name of the corresponding help structure
    VALUEPART1:   Key of the object + start of the data part
    VALUEPART2-4: If required, the continuation of the data part
    VALUPART1 to VALUPART4 are therefore filled consecutively, first with the
    keys that identify the table rows and then with the values of the
    customer-specific fields. By structuring the container in this way, it is
    possible to transfer its content with one MOVE command to the structure of the
    BAPI table extension.
    Note that when objects are changed, all fields of the enhancements are
    overwritten (as opposed to the standard fields, where only those fields for
    which the respective update indicator is set are changed). Therefore, even if
    you only want to change one field, all the fields that you transfer in
    ExtensionIn must be filled.
    Checks and Further Processing
    Using the methods ...CREATE_EXIT1 or. ...CHANGE_EXIT1 of the BAdI
    BAPIEXT_BUS2001, BAPIEXT_BUS2002, and BAPIEXT_BUS2054, you can check the entered
    values (and/or carry out other checks).
    In the BAdI's second method, you can program that the data transferred to the
    BAPI is processed further (if you only want to transfer the fields of the CI
    includes, no more action is required here).
    But still i am unable to update fields though i am able to create WBS with rest of the fields except  custom fields.
    I am using attached code to achieve this.Do we need to code anything inside method create_exit1 or create_exit2 implementation for BADI or
    Please help on priority

    Hi Rahul,
    First observation from your code is that i could not find the assignment for the field
    GWA_WBS_EXTIN-STRUCTURE. I hope you are not filling this field, that could be one reason for failure. Try to do it and let us know if you still have the problem.
    Br..
    Dwaraka

  • Update of Z field in marc in ALE/IDOC

    Hi,
    I have an inbound IDOC in which I get the data for all the Z field which is appended in MARC table. When I am calling the FM 'IDOC_INPUT_MATMAS01' it is not updaiting the Z field and the IDOC is successfully created. Do I have to write the updaet code in some user exit of FM 'IDOC_INPUT_MATMAS01' or is there any other method to update the Z field??
    Thanks.......

    Hi J,
    If your custom fields are there on the screen (MM01/02/03) and they are appended in some structure in MARC table, the values should flow from screen-to-table and vice-versa.
    If you want these fields to be populated automatically, you may have to write some code in user-exit or BAPI extension while creating the materials.
    In the user-exit, you may have to write a code like this ..so that these fields remain uneditable while calling MM03 (display only)
    IF T180-TRTYP EQ 'A'.
    LOOP AT SCREEN.
    SCREEN-INPUT = '0'.
    MODIFY SCREEN.
    ENDLOOP.
    EXIT.
    ENDIF.
    Edited by: Rudresh Chand on Jan 26, 2011 9:03 PM
    Edited by: Rudresh Chand on Jan 26, 2011 9:25 PM

  • Handling Unit Link (VEKP-EXIDV) in inbound/outbound delivery

    Hello,
    I need to code the automation of logical pick and pack tasks in the trading company such that the following fields of the outbound delivery are automatically populated based on the corresponding fields from the inbound delivery:
    1.) Pick Quantity (LIPSD-PIKMG) comes from the pick quantity from inbound delivery to trading company
    2.) Batch Number (LIPS-CHARG) comes from the batch from inbound delivery to trading company
    3.) Handling Units (VEKP-EXIDV) comes from the handling units from the inbound delivery to trading company.
    I've found a way to link the outbound to it's corresponding inbound delivery through table EKES (link of stock transfer order number to the inbound delivery), however I could not find the link of the stock transfer order to the handling units (VEKP-EXIDV).
    Any idea on this?
    Thanks.
    Sincerely,
    Ice

    //What I found was that VBFA-VBELN = VEKP-VENUM, given that VBFA-VEBELV = inbound directory (LIKP-VBELN) and VBFA-VBTYP_N = 'X' (handling unit).
    From that link I was able to get the external handling units (VEKP-EXIDV) since the key VENUM has been identified.
    During the pick and pack i have to link the LIKP+LIPS  and VEKP  for handling unit and internal identification number.
    VBFA is for sales document flow which is helpful for forward and reverse navigation to itdentify the documents .
    Inputs for the Feed has to be from LIKP / LIPS and VEKP
    Please refer to tcode VL02N and in here check Packing options with all the subscreens of Packing Hu's and Single entry .
    regards,
    vijay

  • Lock when trying to update a Z-field in MARD

    Hi,
    I have a Z-field in an append to MARD. In MIGO we create an output idoc (a custom made Z-idoc) and in the function module processing the idoc I want to update my Z-field in MARD. The update in MARD are made with a bapi called BAPI_MATERIAL_SAVEDATA.
    Pseudocoding of the function module which are processing the idoc:
    Get material document into bapi structures
    loop items.
       perform get_some_more stuff
       perform update_mard.
    endloop.
    form update_mard.
        do some stuff
        call method class=>update_mard
        loop at error messages.
             Give a message
       endloop.
        call function BAPI_TRANSACTION_COMMIT.
    endform.
    in the update_mard-method I fill the structures needed to handle the append in mard and call the BAPI_MATERIAL_SAVEDATA
    I hope you are with me so far. From the update_mard I receive some error message handled in the loop that the material couldnt be saved. I assume I have a lock problem. But I cannot get the program to stop when I set a break-point. It simply doesnt stop.
    So two questions:
    1. Can I somehow force my break-points to come in effect?
    2. Can I "postpone" the actual update of MARD until the material document output is processed? If so how? If not, what can I do to avoid my lock problem?
    best regards,
    Glenn

    Hi,
    I have tried to put a break-point just before my error message are created but it still don´t stop. But since I get the error message I know that the flow passes my break-point. It just doesn´t stop. Does it matter if I use break-point or break ?
    I can see lock entries during the processing. I set a wait up to 30 seconds so I have plenty of time to check lock entries, and I see that there are entries.
    My concern is that I want to be able to postpone my processing until the system releases the lock, but preferrably from the function module where I handle my idoc.
    br,
    Glenn

  • Updation of 'Z' field in database table VBAP & AUFK

    Hi,
    In my report I wanted to update/modify value in a "Z" field in VBAP and a "Z" field in AUFK table.
    Could anyone please suggest me how to update/modify this field value using a BAPI or FM?
    Or any other method atleast..
    Thanks in Advance,
    Rohan.

    Hi,
    When you want to change the Zfield in VBAP we can go for the BAPI function module-
    BAPI_SALESORDER_CHANGE for the given Zfield get the header data and append it to BAPI header structure.
    I think we may use the same FM for updating the AUFK also.
    Reward points if useful.
    Regards
    Chandralekha

  • I want to update standard table field (EKES-EINDT)? Not using BDC using FM.

    Hi all,
    I would like to seek for you help, to resolve a problem.
    I need to know how can i update the EINDT(date) field in the EKES table.
    Is there any Function Module or BAPI available for update EKES-EINDT ? 
    And my requirement is don't use BDC.
    Currently I am doing in following way
    LOOP AT I_DATA.
      UPDATE EKES SET EINDT = P_NEWDAT
      WHERE EBELN = I_DATA-EBELN
      AND EBELP = I_DATA-EBELP
      AND ETENS = I_DATA-ETENS.
    ENDLOOP.
    I know we should not update standard table directly. This will only update EKES it will not update other tables related with EKES-EINDT.
    Got my point?
    Please help me it's on high priority.

    EKES can be updated with function module
    ME_CONFIRMATION_UPDATE

  • Update Equipment Custom fields

    Hi Experts,
    I have a custom fields ZZOUTDT(Start date) in table EQUI.
    I want to update this custom field for Equipment.
    Is there any Bapi where I can pass this field value to update in Equipment?
    Please suggets.
    Helpful answers will be rewarded.
    Thanks
    Anukool

    hi,
    generally any standard programa will not contain the custom fields.
    did u create tht field in any transaction.
    if not then u have to write a program to update tht table.
    or u identify the exits which trigger for that table and try to populate that fields using that exit.

  • BAPI require to update Batch charachteristics to AUSP table

    Hi SAP Gurus,
    I need a BAPI which can update my Batch Charachteristics data into AUSP table.
    Could any one please provide. Its very urgent for me.
    Thanks
    Satish Raju

    Hi Saish,
    As wolfgang told you can use BAPI_OBJCL_CHANGE. Read this documentation.
    This BAPI changes an existing classification, or creates the classification if it does not yet exist. The classification is defined by the required entry fields for the object key (ObjectKey), object table (ObjectTable), class name (AllocDetail-Class_Num), and class type (AllocDetail-Class_Type). The default value for the optional date field (KeyDate) is the system date, on which all classifications become valid. The new characteristics and/or values are transferred to different tables according to data type. Numeric, time, and date characteristics are transferred to table AllocValuesNumNew, character and boolean characteristics are transferred to table AllocValuesCharNew, and currency characteristics are transferred to AllocValuesCurrNew.
    Regards,
    Madhu.

Maybe you are looking for

  • Power Mac G5 Refuses to start with new RAM!

    I have a Power Mac G5 Dual 1.8GHz June 2004. I know I read somewhere online that it takes 1GB sticks of RAM, and that it has to be dual channel. I went to Best Buy today and got myself 2 sticks of 1GB DDR PC3200 "Compatible with 400/333/266MHz" Dimms

  • Display HTML stored in a table

    Hello, I want to display HTML Code which is stored in a table. Now I have a display as text item and there the HTML is not rendered properly... So what must i do to show the HTML Code properly? What kind of item should I use? Thank you, Tim

  • Calling one Report from another Report in oracle 10g(Urgent)

    Hi All, Can anyone let me know how to make hyperlink to call another report. I am trying SRW.SET_HYPERLINK('/reports/rwservlet?&report=rep059_v31.rdf&il&destype=cache&desformat=pdf'); But i am getting message 'make sure the path or internet address i

  • How do you make icalendar send email notifications?

    Since I "upgraded" my Mac OS I can't figure out how to get calendar to send email notifications. Is this feature gone, now?

  • Weblogic.utils.ParsingException: nested IOException

    I have a problem with creating a separate working directory for Weblogic Commerce Server where I can do development. These are the errors that I can when I try to access a particular portal, ======================================== creating new conte