VL02N user exit

Hi guys
I need to debug a workflow. When I hit PGI on VL02N on an outbound delivery, there is a certain Z Fm i need to go to in the debug mode, when I set the breakpoint there using the set breakpoint at facility of the new ecc6 debugger it shows me as breakpoint set, but wen I hit f8 to go there it dosent take me there. Can some one tell me the popular user exits includes used here?
Rgds
Sameer

Transaction Code - VL02N                    Change Outbound Delivery
Exit Name           Description
V02V0001            Sales area determination for stock transport order
V02V0002            User exit for storage location determination
V02V0003            User exit for gate + matl staging area determination (headr)
V02V0004            User Exit for Staging Area Determination (Item)
V50PSTAT            Delivery: Item Status Calculation
V50Q0001            Delivery Monitor: User Exits for Filling Display Fields
V50R0001            Collective processing for delivery creation
V50R0002            Collective processing for delivery creation
V50R0004            Calculation of Stock for POs for Shipping Due Date List
V50S0001            User Exits for Delivery Processing
V53C0001            Rough workload calculation in time per item
V53C0002            W&S: RWE enhancement - shipping material type/time slot
V53W0001            User exits for creating picking waves
VMDE0001            Shipping Interface: Error Handling - Inbound IDoc
VMDE0002            Shipping Interface: Message PICKSD (Picking, Outbound)
VMDE0003            Shipping Interface: Message SDPICK (Picking, Inbound)
VMDE0004            Shipping Interface: Message SDPACK (Packing, Inbound)
No of Exits:         17
Rewards if useful.............
Minal

Similar Messages

  • Vl02n user exit for shipment

    Hi all,
    In the vl02n screen i have to make the field route as screen-required = 1.
    please help me in locating the user exit where should the code be placed.
    Thanks
    Bhargava

    Program MV50AF0F_FELDAUSWAHL:
    * Call BAdI for influencing field attributes
      perform call_badi_change_field_attrib changing lt_field_attrib.
      if not lt_field_attrib[] is initial.
        lf_badi_active = charx.
      endif.
    Utilise the call to this BADI to influence SCREEN settings.
    This is BADI LE_SHP_DELIVERY_PROC / Method CHANGE_FIELD_ATTRIBUTES. You can check the documentation for this method in SE24 of class CL_EX_LE_SHP_DELIVERY_PROC. An extract from this documentation states: "Use this method if you want to change the attributes of fields in the delivery transaction so that they are different from the standard functions, or if you want to control the attributes of your own fields" which seems to fulfil your requirement.

  • Badi/user exit for tx vl02n

    Hi,
    I need to find a badi or a user exit thats triggered after pressing "save" in transaction vl02n.
    Help me please.
    Best regards,
    Roberto.

    hey
    .Code SE18 is used to Identify the BADI available.
    Look for the string 'CL_EXITHANDLER' in the standard program. This is a class which has a method 'GET_INSTANCE' which is used to trigger BADI's from the Standard Program. The interface parameter for this static method 'EXIT_NAME' is used to pass the BADI to the method.
    Open Standard Program and do a global search 'CL_EXITHANDLER'.
    SE18 > give the BADI name found through above search.
    CUSTOMER_ADD_DATA > which has a method SAVE_DATA.
    T.Code SE19 is used to Implement BADI.
    SE19 > give the implementation name > Give the Definition name as CUSTOMER_ADD_DATA and the Short Text.
    Intro.....
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    Check these links for info about badi..
    BADI's
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    BADI's
    http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://members.aol.com/_ht_a/skarkada/sap/
    http://www.ct-software.com/reportpool_frame.htm
    http://www.saphelp.com/SAP_Technical.htm
    http://www.kabai.com/abaps/q.htm
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.planetsap.com/download_abap_programs.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    http://www.esnips.com/web/BAdI
    http://www.allsaplinks.com/badi.html
    New to Badi
    check any fo the below links. this will def help u.
    http://www.allsaplinks.com/badi.html
    And also download this file....
    http://www.savefile.com/files.php?fid=8913854
    There are other tutorials on this site...
    http://sapbrain.com/Tutorials/tuto_download.html
    What are BAdIs?
    -> is an anticipated point of extension – these points act like sockets and exist in the original source code
    -> based on ABAP Objects. BAdI defines an interface that can be implemented by BAdI-implementations that are transport objects of their own
    ->Important! There are 2 roles: Enhancement Option-provider & Implementer.
    -> In the above context, Enhancement Implementation can be done only if option (hook) is provided by the Option-provider. In simple words there are no implicit BAdIs.
    Note: In the following slides, Definitions are created so as to understand the method of BAdI definition & for example purpose. As stated above this is the role of Enhancement Option-Provider.
    Classic BAdIs already exist since SAP Release 4.6
    BAdIs have been Re-implemented in ECC7.0 under the new Enhancement Framework & Switch Framework
    Classic BAdIs
    To understand what a powerful pattern a BAdI is, we will now define & then implement a BAdI
    BADI Class is created automatically.
    The various options are described below in detail:
    1. Enhanceable: Enhanceability of filter types can only be specified for filter-dependent BADI definitions under very special conditions. For example, the domain belonging to the filter type must be linked with a value table that is of the type E or G. A BADI implementation can then be created in one step by creating a new filter value that is automatically entered into the value table at save and also copied into the transport order of the BADI implementation. In addition, it is also possible to create a new filter value and, at the same time, a BADI implementation with the same name. Naturally, you can also specify existing filter values.
    You should select this feature if there is a prerequisite that a new filter value is created together with a new BADI implementation - that is, that BADI implementations are not created solely with existing filter values, although this, too, is possible.
    2. Multiple-Use
    3. Filter-Dependent
    Instance Methods can access all of the attributes of a class and can trigger all events of a class. Static Methods can only access static attributes and static events.
    Exceptions:
    Events:
    Events can be defined in classes or in interfaces. Corresponding methods can trigger these events with the RAISE EVENT statement. Each class (or interface) that is going to handle the corresponding event must implement a relevant handler method, and register it using the SET HANDLER statement. When an event occurs, the system calls all of the handler methods registered for that event.
    Like method definitions, events have a parameter interface. The only difference is that events may only have EXPORTING parameters.
    BADI : Businees Add IN's
    Business Add-Ins are SAP enhancement technique based on ABAP Objects.
    Where the SAP standard program is not going to fullfill the client requirement , we are going to add our own program to SAP standard program, without changing the standard prog.
    Each Business Add-In has
    – at least one Business Add-In definition
    – a Business Add-In interface
    – a Business Add-In class that implements the interface
    Each BADI has two different Views.
    1.Definition view
    2.Implementation view
    T.C for BADI Definition is SE18.
    T.C for BADI Implementation is SE19.
    There are multiple ways of searching for BADI.
    • Finding BADI Using CL_EXITHANDLER=>GET_INSTANCE
    • Finding BADI Using SQL Trace (TCODE-ST05).
    • Finding BADI Using Repository Information System (TCODE- SE84).
    1. Go to the Transaction, for which we want to find the BADI, take the example of Transaction VD02. Click on System->Status. Double click on the program name. Once inside the program search for ‘CL_EXITHANDLER=>GET_INSTANCE’.
    Make sure the radio button “In main program” is checked. A list of all the programs with call to the BADI’s will be listed.
    The export parameter ‘EXIT_NAME’ for the method GET_INSTANCE of class CL_EXITHANDLER will have the user exit assigned to it. The changing parameter ‘INSTANCE’ will have the interface assigned to it. Double click on the method to enter the source code.Definition of Instance would give you the Interface name.
    2. Start transaction ST05 (Performance Analysis).
    Set flag field "Buffer trace"
    Remark: We need to trace also the buffer calls, because BADI database tables are buffered. (Especially view V_EXT_IMP and V_EXT_ACT)
    Push the button "Activate Trace". Start transaction VA02 in a new GUI session. Go back to the Performance trace session.
    Push the button "Deactivate Trace".
    Push the button "Display Trace".
    The popup screen "Set Restrictions for Displaying Trace" appears.
    Now, filter the trace on Objects:
    • V_EXT_IMP
    • V_EXT_ACT
    Push button "Multiple selections" button behind field Objects
    Fill: V_EXT_IMP and V_EXT_ACT
    All the interface class names of view V_EXT_IMP start with IF_EX_. This is the standard SAP prefix for BADI class interfaces. The BADI name is after the IF_EX_.
    So the BADI name of IF_EX_CUSTOMER_ADD_DATA is CUSTOMER_ADD_DATA
    3. Go to “Maintain Transaction” (TCODE- SE93).
    Enter the Transaction VD02 for which you want to find BADI.
    Click on the Display push buttons.
    Get the Package Name. (Package VS in this case)
    Go to TCode: SE84->Enhancements->Business Add-inns->Definition
    Enter the Package Name and Execute.
    Here you get a list of all the Enhancement BADI’s for the given package MB.
    Have a look at http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://members.aol.com/_ht_a/skarkada/sap/
    http://www.ct-software.com/reportpool_frame.htm
    http://www.saphelp.com/SAP_Technical.htm
    http://www.kabai.com/abaps/q.htm
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.planetsap.com/download_abap_programs.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    How to develop BADI
    Rewards if useful.

  • User exit while VL02N , changing delievery date..reflects PO delivery date

    Hi,
    Can you please suggest EXIT which triggers while changing delivery date (LIKP-LFDAT) of outbound delivery through TCODE VL02N should reflect in its corresponding purchase order delivery date ( ME22N at item level field (EKET-EINDT)..
    I tried in USEREXIT_SAVE_DOCUMENT_PREPARE include MV50AFZ1. but changes are not reflected in PO.
    code:
    XEKET-EINDT= LIKP-LFDAT.
    but it is not working .there is no field as update indicator (updkz) in table xeket..Please let me know if I am doing something wrong.
    Thanks in advance

    Hi
    I think that you can do it calling the BAPI_PO_CHANGE from this userexit. For instance, manage data from YLIKP, XLIKP, YLIPS, XLIPS and encapsule this coding in a function module that you can call IN UPDATE TASK (see SAP Note 415716 - User exits in delivery processing). Think that you create the delivery with tcodes VL10*, the changes that you will do in delivery don't copy in PO.
    I hope this helps you
    Regards
    Eduardo

  • User exit triggered after clicking on PGI button in vl02n

    What is the user exit which gets triggered after clicking PGI booton in vl02n.
    i used 'MV50AFZ1' which interrupts the process of creating material document.
    so pls tell me any User exit which can be used before the process of creating material doc gets started

    Hey,
    Have you tried with this?
    MV45AFZZ
    MV45AIZZ
    MV45AOZZ
    MV45ATZZ
    or...
    VMDE0004
    VMDE0003
    VMDE0002
    VMDE0001
    V53W0001
    V53C0002
    V53C0001
    V50S0001
    V50R0004
    V50R0002
    V50R0001
    V50Q0001
    V50PSTAT
    V02V0004
    V02V0003
    V02V0002
    V02V0001
    Not sure if possible...buy maybe
    Bye,

  • User exit for PGI via delivery (Vl02N)

    Hi Folks
    Can you suggest me appropriate user exit which can be used during PGI for delivery in Vl02N. This should get triggered when POST PGI tab is hit in VL02N.
    Via USer exit I want to change the GL account in the accounting document for PGI ( GL account for Tr price difference which is posted via key AUM (Expense/revenue from stock transfer).
    Please reply ASAP.
    Thanks
    Vipin

    Hi Vipin
    I did a small check in our internal system.
    In VL02n choosing the PGI TAB it hits user exit MV50AFZ1 -> FORM USEREXIT_SAVE_DOCUMENT_PREPARE
    This is the call:
    Main Program     SAPMV50A
    Source code of   FV50XF0B_BELEG_SICHERN
    form BELEG_SICHERN_DET_CHECK
    * Userexit
        PERFORM userexit_save_document_prepare(sapmv50a).
    So you are good to go with MV50AFZ1 just use
    form USEREXIT_SAVE_DOCUMENT_PREPARE
    Kind regards
    Brian

  • User exit in VL02N saving

    Hi!
    Can anyone please tell me, which user exit is running during the
    VL02N delivery saving? 
    I can check the user exits, but I don't know which one is executed when I save the document.
    I'll reward only the useful answers, please read the thread carefully.
    Thank you
    Tamá

    try these include programs
           FORM-Routinen für Userexits
    include mv50afzz.
             include mv50afz1.
             include mv50afz2.
             include mv50afz3.          "Userexit neu zu Release 3.0A
             include mv50afzk.          "Userexit 4.6A (KOMKG/KOMPG)
             include mv50afzl.          "Userexit 4.6A Liefergruppen
    Regards
    Prabhu

  • VL02N/VL03N - user-exit

    Hi,
    I am looking for a user-exit or BADI that exists in transaction vl03n and vl02n.
    Thank you!

    <b>Copy this code and run it... enter the Transaction CODE u want in the parameter of selcton screen and u can find the user exit for whatever transaction u want..
    Please award points if found helpful</b>
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    *&  Enter the transaction code that you want to search through in order
    *&  to find which Standard SAP User Exits exists.
    *& Tables
    TABLES : tstc,     "SAP Transaction Codes
             tadir,    "Directory of Repository Objects
             modsapt,  "SAP Enhancements - Short Texts
             modact,   "Modifications
             trdir,    "System table TRDIR
             tfdir,    "Function Module
             enlfdir,  "Additional Attributes for Function Modules
             tstct.    "Transaction Code Texts
    *& Variables
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    *& Selection Screen Parameters
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    *& Start of main program
    START-OF-SELECTION.
    * Validate Transaction Code
      SELECT SINGLE * FROM tstc
        WHERE tcode EQ p_tcode.
    * Find Repository Objects for transaction code
      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 = enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
    * Find SAP Modifactions
        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.
    * Take the user to SMOD for the Exit that was selected.
    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.

  • VL02N Devivery User Exit

    Hi,VL02N
    I have a scenario where Pricing should be copied from STO PO to Delivery document and by which, the Excise values maintained in the delivery document should be posted upon PGI. In Standard, Excise values maintained in the STO PO is the ones which are getting posted upon PGI.
    In order to achieve my requirement, I have tried the below User exit which was very helpful but the Delivery pricing (KOMV) component was not available in the mentioned User exit.
    EXIT_SAPLFMR4_002 (Include ZXFMCU08)
    Can anyone please suggest an User exit, which has all the below 4 components?
    T_ACCHD
    T_ACCIT
    T_ACCCR
    KOMV

    Hi Lakshmi,
    Thank you for your reply.. Following is the business scenario,
    For the Factory to Depot STO PO, we have maintained excise values in the PO, excise value calculation is from Material retail price.
    Assuming the Material price is 100 Rs. and Excise value is 10.36 in STO PO.
    And during delivery, Material batch can be changed.
    Assume, Batch Prices are.
    Batch 0001 - 100 inr MRP
    Batch 0002 - 110 inr MRP
    In delivery, if "0002" batch is chosen, price should be redetermined to 110 and by which STO values will be changed accordingly.
    And upon PGI, system should post the excise value which is calculated based upon new Batch price and not on STO excise value.
    I have found the user exit to change the value upon posting Accounting document, i.e. I'm able to change the excise value to be posted. But in that exit. KOMV structure is not exist, due to which, excise value from new batch price is not being able to determined.
    Please let me know if you have any other alternative solution for this, thank you.
    Regards,
    Muthu.

  • User exit for VL02n

    I had applied a break-point in include ZXV50U07 at the time of post good issue in transaction VL02n.
    And it is properly triggered.Now I have to apply the logic for serial number check.But it is showing error when I write any internal table or field in it.
    Please tell me what should I do for that........what is the role of subroutine..
    please explain me...
    Regards,
    Amar

    Hi;
    V02V0001            Sales area determination for stock transport order
    V02V0002            User exit for storage location determination
    V02V0003            User exit for gate + matl staging area determination (head
    V02V0004            User Exit for Staging Area Determination (Item)
    V50PSTAT            Delivery: Item Status Calculation
    V50Q0001            Delivery Monitor: User Exits for Filling Display Fields
    V50R0001            Collective processing for delivery creation
    V50R0002            Collective processing for delivery creation
    V50R0004            Calculation of Stock for POs for Shipping Due Date List
    V50S0001            User Exits for Delivery Processing
    V53C0001            Rough workload calculation in time per item
    V53C0002            W&S: RWE enhancement - shipping material type/time slot
    V53W0001            User exits for creating picking waves
    VMDE0001            Shipping Interface: Error Handling - Inbound IDoc
    VMDE0002            Shipping Interface: Message PICKSD (Picking, Outbound)
    VMDE0003            Shipping Interface: Message SDPICK (Picking, Inbound)
    VMDE0004            Shipping Interface: Message SDPACK (Packing, Inbound)
    Regards
    Shashi

  • User exit for VL02N when we save in the Tcode

    HI Can any body tell me what's the exact user exit that will trigger when we save the transaction vl02n ?
    Thanks in Advance
    Mahesh

    Hi mahesh,
    the userexit which ihave given is a standard one ,this needs access keys to write the code.
    iam giving the path plz check it.
    goto ->SE80->Give prog name SAPMV50A->Then expand the subroutines node u will find the USEREXIT_SAVE_DOCUMENT.
    if u want to check whether its triggering or not put a breakpoint on USEREXIT_SAVE_DOCUMENT and change the existing sales order and press save button.It will be triggered.
    Regards,
    Nagaraj

  • User exit connecting VL02n and iq02 status

    Please suggest me User Exit or enhancement point.
    My requirement is: In delivery VL02n when I do Post Goods Issue then I want to change the serial number status in iq02 to ECUS based on the serial number of the line Item.
    Currently the status in iq02 comes as EDEL and we have to manually change it, my reqmt is to automate it.
    Also, if u could tell me in which program the status is getting assigned in iq02  when PGI in Vl02n would be great help.
    Edited by: mukesh mahajan on Jan 25, 2010 8:28 AM

    HI,
    The BADI MB_DOCUMENT_BADI .....triggers on PGI action....try to get the values there and check out...
    Like if sy-ucomm = 'WABU_T'.
    Thanks,
    Shailaja Ainala.

  • User Exit for "Serial Number" in VL02N before "Post Goods Issue".

    Hi Friends,
    Current Scenario:
    End User has to scan "Serial Number" for Main Unit (Item CAtegory - TAN) while doing "Outbound Delivery". But, sometimes he forget to do this activity of scanning "Serial Number". And do "Post Goods Issue" without "Serial Number".
    Requirement:
    When End user will click "Post Goods Issue", system should first check "Serial Number" for Main Unit (Item Category - TAN). If he will not find "Serial Number" then system should give warning message for "Serial Number".
    Please suggest the suitable "User Exit" that can be used for above purpose.
    Or if there is any other way then let us know.
    Regards
    Siva

    hi
    check is there any standard User Exit available for VL02N. apply your logic and activate

  • Output type in user exit USEREXIT_SAVE_DOCUMENT in VL02N

    Hello all, i am using the user exit USEREXIT_SAVE_DOCUMENT in include MV50AFZ1 to process some information when delivery is saved in VL02N.  The problem is i have to limit this to a certain output type.  There are 3 different ones that the user can choose from and i have to be able to know which one they did. 
    Does anyone know what table is used to store this information that i can read in the user exit?  Or is there a FM to get that information?
    Thanks in advance for your help.
    -- David

    Hi
    Check This table  T685B and this view VN_T685B for output ..
    Regards.

  • User exit for transactions: VL01, VL01N, VL02, VL02N on 'SAVE' button.

    Hi all,
    I have a new requirement for developing a user enhancement for transactions VL01, VL01N, VL02 & VL02N when a user clicks on the save button. 
    The following needs to happen when a user clicks the save button:
    1) The sales order number must be made available & hopefully other fields of structure VBKD so that further data processing may be carried out.
    2) The delivery order number that gets automatically generated by SAP after the delivery has been successfully posted must be retrieved and stored again in a custom table (i.e. Z - table).
    Therefore I need user exits and/or BADI' that are called on execution of the 'SAVE' user action event as well as user exits or BADI's that I can use in order to retrieve the automatically generated delivery note number and save it into a custom Z table.
    Thanks in advance!

    Hi,
    Follow the following steps to find Exits for a particular transaction
    1.Open transaction SE24.
    2.Now open the object CL_EXITHANDLER in display mode.
    3.Go to the method tab and double click on the method GET_INSTANCE.
    4.Put a break point on cl_exithandler=>get_class_name_by_interface.
    5.Now execute the transaction you want to find EXIT for, it will take you to the above method.
    6.Write EXIT_HANDLER in fieldnames and hit enter, it will tell you the EXIT used for your transaction.
    7.Hit F8 and it will tell you all the EXIT's for your transaction.
    Regards,
    Manish

Maybe you are looking for

  • GR/IR Account Determination

    Hi, I want to use different GR/IR Clearing Account for two diffrent service entry. There is no service master or material master created. In OBYC --WRX --According to note 301477 -- if the material master record does not exists "The determination of

  • Lightroom 5.7 Reports that catalog running out of space. Drive has 185GB free.

    I tend to leave Lightroom running in the background for days sometimes, allowing my Windows 7 Pro 64-bit system to sleep. The program is installed on a 240 GB SSD with 139GB free.  The catalog is kept on a HDD partition of 230GB, that also contains a

  • What is invoice correction request

    Hi gurus can any one explain me in which scenario we use invoice correction request. 2) can any one explain me about free of charge deliveries.  How we do in sap sd module.  what are steps involved into in that. Thanks in advance

  • Trying to fill in a reservation form-no scroll bar and can't see whole page

    Hi, I've had this problem before with Thai Airways website and am having it again with a hotel reservation site. When the form opens, there is no scroll bar on the right side of the window. I can't scroll down to the rest of the form (tab key doesn't

  • BAPI/FM to modify the FI posting period

    Hi All, Is there any BAPI/FM to Modify the FI posting period. I know we can use BDC on TCode OB52 for modifying the FI posting period. But i want to keep this as a last option. Thanks, Sridhar