User exit or BADI after save UD in QA11

Experts,
Is there any BADI or User exit available to update UD details after saving UD?
I need this for my project very badly.
Regards
VRMP

You can try the folllowing BAPI's
Also, tray SAP transaction SE80, check out all the programs related to Function group: "2045"   You should find all the information you need and then some - related to inspection lots and inspection characterisics here.
For post processing - try SAP Transaction SE80 - Package: "QV"  you will fine all the enhancements, enhancement spots, function modules and programs related to SAP transaction QA11.
Thanks
Edited by: Ed Bunn on Aug 30, 2010 10:16 PM

Similar Messages

  • User exit  or badi after 'SAVE' of VA41 OR VA42

    Hi,
      What is the user exit or BADI that going to be triggered after clicking the 'SAVE'  button of create service order ( VA41)  and after clicking the 'SAVE' button of 'VA42'.
    I am searching, but not able to find.
    Regards
    Badari

    Hi Badari,
    Try USEREXIT_SAVE_DOCUMENT_PREPARE or USEREXIT_SAVE_DOCUMENT found in MV45AFZZ, one of them should do it.
    U also might find other exits to handle items there, if needed.
    Pls reward if helps.
    All the best
    Igal

  • User exit or BADI after saving in ML81N

    Hi,
    I have created a Custom tab at header level in ML81N. In this tab the user enters the data which is to be stored in Ztables once the entry sheet is successfully saved. I am searching for BADI or user exits for saving the data. Can anyone tell me user exit or BADI which is triggered after saving the data?
    Thanks in advance.

    Hi Poorvi,
    Please get your results from the search.
    http://www.sdn.sap.com/irj/scn/advancedsearch?query=userExitBadiML81N

  • Badi or user-exit for QA32 after save

    I need a badi or user exit to execute exactly after save in QA32 ..I tried belows but they are not that i want
    QPL1_SUBSCREEN_ADDON
    INSPECTIONLOT_UPDATE
    Check these Exits:
    QEVA0004 Exit for changing information line in usage decision he
    QEVA0005 User subscreen for displaying add. data for usage decis
    QEVA0006 Entry to usage decision transactions
    QEVA0007 UD: Control of compulsory comment or long text presetti
    QEVA0008 Usage decision: Customer function key (e.g. to cancel U
    QEVA0009 UD: Predefinition of quantity to be posted to sample st
    QEVA0010 UD: Usage decision check
    QLCO0001 QM: Call alternative costs report from UD
    QSS10001 Possibility of calling a different print report

    Hello Tuncer,
    have you checked the BADI QE_SAVE? This is the last possible chance of changing data on saving a QM transaction and should be active in QA32.
    The only other solution I can come up with is a follow-up action i.e. for the UD-code
    Hope this information proves usefull.
    Regards
    Isabelle

  • User Exit for MIGO after save

    Hi
    I want to print a label for the items in MIGO once the document is posted but I am unable to find a user exit after save of the MIGO transaction.
    Please guide me in this aspect
    regards
    Grame Smith

    Use this Badi.
    MB_DOCUMENT_BADI
    Read the documentation in Se18.

  • User exit for ML81N after SAVE

    I need a User exit for Service Entry Sheet change after the user has Saved the release. I need to update a customized "Z" table when a Service Entry is released from ML81N. I need to ensure the Service Entry is saved with release status. The user-exits such as SRVESSR are triggered during creation of the Service Entry but not after Save. For e.g. if I used that exit to update my Z table, the Service Entry release may not have actually saved (say due to some error), but my Z table would have been updated. Is there a solution for such a requirement?? I saw some previous threads similar in request, asking for a User exit after SAVE, but it seemed to relate to WorkFlow.

    hi ...
    try to use MB_CF001 exit ....                                                                               
    The enhancement MB_CF001 includes a function module that is called up    
    immediately before the COMMIT WORK when a goods movement is posted.                                                                               
    All the material document data is passed on to this function module from 
    the following tables:                                                                               
    o   MKPF    (Material document header)                                                                               
    o   MSEG    (Material document items)                                                                               
    o   VM07M   (Update data)                                                                               
    This data can be passed on to other programs.                                                                               
    Note                                                                               
    The enhancement does not write any data to the material document, that   
    is, it is not possible to change material document data before the       
    update posting takes place.

  • User Exit or BADI for MIRO after save

    Hi
    I want to show a message in MIRO once the invoice document is create but I am unable to find a user exit or BADI after save of the MIRO transaction.
    Please guide me in this aspect.
    Regards

    try to run the below codes in a new program,it can help you to find all user exits of a t-code:
    TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    TABLES : tstct.
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir WHERE funcname =
    tfdir-funcname.
    SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name EQ enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    SELECT * FROM tadir INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu AND
    tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.

  • User Exit OR Badi for MK01 transaction (used for saving vendor amster data)

    Hi All,
    I have a requirement where I have to call my workflow, when we create the Vendor using my custom transaction (ZMK01, which is a copy of standard transaction MK01).
    For Workflow triggering I am using FM 'SAP_WAPI_CREATE_EVENT' in the user exit  'EXIT_SAPMF02K_001' but this is only for checking the data on saving Vendor Master.
    So I want to use FM 'SAP_WAPI_CREATE_EVENT' at right place. For that , I need User-Exit or BADI which is used for saving vendor master data.
    Could anyone please help me to find out the user exit or BADI for save event of vendor master data using transaction MK01.
    Looking forward to your advise and thanks in advance.
    Best Regards,
    Mamta

    Hi ,
    I forgot to activiate the project linked with User exit 'EXIT_SAPMF02K_001' .
    so problem is solved now
    Thanks,
    Mamta

  • VA02 (SO) exit or badi after saving SO data - urgent

    Hi experts,
    Please let me know the user exit or BADI after SO data saved and commited, but before all internal tables refreshed.
    Advices will be rewarded.
    Thanks,
    Shaik Bhasha

    Hi,
    Check all these userexits.
                                                                                    Exit Name           Description                                                                               
    SDTRM001            Reschedule schedule lines without a new ATP check              
    V45A0001            Determine alternative materials for product selection          
    V45A0002            Predefine sold-to party in sales document                      
    V45A0003            Collector for customer function modulpool MV45A                
    V45A0004            Copy packing proposal                                          
    V45E0001            Update the purchase order from the sales order                 
    V45E0002            Data transfer in procurement elements (PRreq., assembly)       
    V45L0001            SD component supplier processing (customer enhancements)       
    V45P0001            SD customer function for cross-company code sales              
    V45S0001            Update sales document from configuration                       
    V45S0003            MRP-relevance for incomplete configuration                     
    V45S0004            Effectivity type in sales order                                
    V45W0001            SD Service Management: Forward Contract Data to Item           
    V46H0001            SD Customer functions for resource-related billing             
    V60F0001            SD Billing plan (customer enhancement) diff. to billing plan   
    Regards,
    Sonika

  • Is there any User Exit or BADI- Where LTAP-WDATU is as change parameter ,So during or after Transfer order creation GR date would be as per given logic not as current date

    Dear All,
    There is a requirement in which when the material (Not batch managed) is getting return from Non WM managed storage location to WM managed storage location than at the time of creating transfer order or after creation of transfer order would like to change LTAP-WDATU (GR date) automatically , So here i am unable to find the right user exit or BADI in which i can write the logic for same. Below is full description of the requirement.
    Here we are following Removal strategy "FIFO" while picking the material (Not batch managed) from WM managed storage location (WMS1) & transferring to Non WM managed storage location (ODS) ( than from there it use to go to Production) , at certain times partial quantity use to come back from Non WM managed storage location (ODS) to WM managed storage location (WMS1) and while doing putaway of the same "GR date" use to change which was not the actual when the material 1st time comes to WM managed storage location (WMS1) (before getting transfer to Non WM managed storage location). So here i want the user exit or BADI in which i can write my logic so that GR date ( LTAP-WDATU) would automatically change while creating transfer order or after creation of transfer order as per the "GR date" of same material which last moved from WM managed Storage location (WMS1) to Non WM managed storage location(ODS) because as per FIFO material dated before that would not be exist in the warehouse.
    Below is the flow of the material while transferring to production & returning from production.
    WMS1 ( WM managed warehouse ) --> ODS ( Non WM managed warehouse) --> Production  At the time of issue to production
    Production --> ODS ( Non WM managed warehouse) --> WMS1 ( WM managed warehouse ) At the time of return from production
    I hope i m clear on my requirement.
    Thanks in advance.

    1. You have to get a key from SAP to modify the two includes in which the user exits are present.
    2. You have to enter statement 'INCLUDE z**. ' in both user exits in the MV45* includes. Then save and activate the MV45** includes.
    3. You have to figure out the code that carries out the functionality described in your specifications.
    3. Write the code in includes Z** .
    4. Now the code written by you will be executed when you run the relevant SD transaction
    Message was edited by: Sudhir Bhate

  • User Exit or BADI for catch the document number after saving the document

    Hi ,
    I am working on data conversion where Document number(BELNR),BKPF and BSEG  data should
    transfer to my Z table(Containes fileds of BKPF and BSEG) after SAVE the document related to
    Tcodes F-01 , F-22 , F-28 , F-43 , FB01 , FB02, FB60 ) . It need to go through by any user-exit or
    BADI.So Could you please suggest me any User exit or BADI ASAP.
    Waiting for reply.
    Thanks
    Lakshmi

    You should use BTE (Business transaction event). This concept is used especially for FI related enhancements...
    Study this document to know how to use BTE
    http://www.todoabap.com.ar/archives/FI%20Enhancement%20Technique%20-%20How-To-Guide%20on%20the%20Usage%20of%20Business%20Transaction%20Events%20(BTE).pdf
    Let me know if you face any specific issues..

  • User Exit which runs after pressing SAVE button at VF01 Screen.

    Dear all,
    I need user Exit which runs after pressing SAVE button at VF01 Screen.
    Kind Regards,

    If you search the forum, you can find plenty of threads on this, for example Re: Badi or user exit for VF01 while save Can you let the forum know what exactly you want to achieve using user exit during saving of a billing document?
    Regards,

  • BADI or User Exit that executes after BADI ORDER_SAVE

    Hi.  I am trying to find a BADI or user-exit that occurs after the BADI ORDER_SAVE has executed completely and saved the values to database.  This is because ORDER_SAVE only gives the item GUID not the header GUID and it appears the header data is only created when the save has taken place.  I am trying to use the function CRM_ORDER_MAINTAIN but I need the header data to manipulate it.
    Thanx in advance
    Martin

    I will tell you four methods to find a BADI,
    Method 1. If you think that it is a simple requirement then got SE18 and click on F4 and Iformation Systems. In the short description enter the short text and search.
    Method2. Another simple method is to search with Package.
    Method3. Put a break point in the FM SXV_GET_CLIF_BY_NAME and then run your transaction---> your requirement may satisfy here after when you press the SAVE Button. There are two more BADIs that will be triggered in general.
    a) Before Update
    b) In Update.
    Method4. Put a break point in the class CL_EXITHANDLER for METHOD get_instance. and then run your transaction.
    Hope this material helps.
    Bhargav.

  • User Exit or Badi for AS01 at save.

    Hello!
    I need a user exit or badi to validate fields from ANLA and ANLZ tables in AS01 trasaction. This validation is before save.
    I have already check this user exit with no success:
    AAPM0001       
    Integración contabilidad activos fijos/mantenimiento
    AFAR0003       
    Método externo de cambio
    AFAR0004       
    Determinar valores proporcionales en una baja
    AINT0004       
    Modificar importe de contabilización para determinadas áreas
    AINT0005       
    No utilizar dummy debido a verificación sintaxis ampliada
    AISA0001       
    Asignar número de inventario
    AIST0001       
    Intercambiar rango núm.actualiz.datos maestros
    AIST0002       
    Campos de usuario en el maestro de activos fijos
    AMSP0002       
    Determinar tipo de relación entre dos sociedades
    TRAN0001       
    Salida de usuario al transferir inmovilizados
    Thanks in advance!
    Sabrina.

    Hi Sabrina,
    i am not sure about it as you have not explained about your exact requirement for validation in AS01, but please see transaction GGB0 , if you are able to make your validation here, because i don't think it will be possible through any user exits.

  • User exit or BAdI for MIRO(before save)

    Hi all,
    My requirement is for tcode MIRO to change the table control data, 'amount' field in po reference tab for drseg as soon as the user hits 'enter' after putting the po number.
    plz suggest if there is any user exit or badi to achieve the same.
    Thanks n regards,
    Mukesh Yadav

    Hi,
    Check the following.
    <exit farm removed by moderator>
    Moderator message: please reply with specific information only.
    Edited by: Thomas Zloch on Jun 3, 2011 10:20 AM

Maybe you are looking for

  • How do I make the crop tool work?

    Okay, The image is in adjustment view. It has a white border around it. I checked the box that says crop on it. I hover the cursor over the corners. The cursor does not change to crop tool. When I press on the crop icon it beeps a reject sound. Not s

  • Show image with advanced action

    I want to show an image using using an advanced action from a question slide I have inserted the image on the master slide because its a tick. And the question slides are in a pool. Is there anyway to show this image? When I click show in advanced ac

  • [Solved] Problem with "alt" keys

    Hi, I've just installed arch and fluxbox on top of it. The problem is, that when in fluxbox, my alt and alt gr keys are treated like one so I cant write any symbol that is combination of altgr and some other key. How could I fix this? Thanks in advan

  • PXI 4472 DAQmx Start VI taking a long time.

    I have an issue with DAQmx Start taking up to a secoond to to execute and it's killing my cycle time. I have a PXI 8360 with 3 PXI 4462's and 3 PXI 4472's.  I configure DAQ Task and Commit at the begining of the sequence however every time i do a DAQ

  • Can you specify a missing template handler that lives under another site?

    I have configured a dedicated site, separate from my website, for my ColdFusion administrator (CFIDE).  So I have my website here: http://www.public-site.com/ and my ColdFusion admin here: http://www.cfadmin-site.com/ .  They both live on the same se