Exit or enhancment spot for custom checks to prevent delivery from VA02

Hi,
Requirement is -
When we click delivery from VA02 tcode.. After sales order is saved (commit ) , I need to check some conditions from XVBAP records and based on my checks I  need raise error message and prevent going into the delivery screen.(user should not be able to access delivery screen from VA02).
Can anyone tell me what is the best exit or enhancement spot I can use for this?
Thanks in advance,
Mohan.

Hi
Try to check the routine FCODE_FLI1 in SAPMV45A
Max

Similar Messages

  • Valuation price with user exit/BADI/Enhancement Spot (In valuation variant)

    Hi all,
    i am facing problem finding enhancement when creation of sales order of Valuation price with user exit/BADI/Enhancement Spot  (In valuation variant)
    For refferenece:
    When going to t.code VA03, select one item and go to extras in the menu bar and select costing then you find some amounts calculation i.e valuation price automatically.
    So when creation of sales order i am giving material and that material price automatically takes from material master and creating sales order.
    My customer requirement is to get the valuation price of the input material from Z-table during the sales order cost estimate.
    This Z-table contains the material code, plant , grade  of the material.
    Ex:
    Material         Plant   Grade Price
    A                1000    XYZ     25000
    A                1000    PQR     35000
    A                1000    BCD     45000
    Suppose it depends on sales document type and which grade price i have to take.
    So first of all i am unable to find enhancement where to change this code to get change the valuation price.
    Does anybody have any idea , is there any user exit/BADI/enhancement for this.
    So please help me in this issue.
    Thanks & Regards,
    lokeshgoud

    pls allow me to post the questions

  • Enhancement Spot for MM02 to validate a field

    Hi,
    I want to find a enhancement spot for MM02 to validate a field 'SerialNoProfile' in 'sales: General/Plant view'. can any one help me to find a enhnacement spot.
    Thanks in advance.
    Krishna

    hi
       Check these Exits
               MGA00001            Article Master (Industry): Checks and Enhancements
               MGA00002            Article Master (Industry): Number Assignment
               MGA00003            Article Master (Industry and Retail): Number Display
    thanks,
    nagaraj

  • Enhancement spot for PA Infotypes

    Hi,
    I am working in a object where i have to apply checks in infotype PA 759.
    Can anyone tell me the Enhancement spot for this.  I know there is a BADI - HRPAD00INFTY.  But as per project guideline, Enhancement spot should be a priority.  While saving Infotype 0759 Enhancespot spot should get triggered.

    Hi Patrick,
    Thank you very much for your reply.
    But in my project i only have to use Enhancement spot. 
    User exit and BADI are not in our project guideline.
    Kindly suggest any enhancement spot for PA Infotypes

  • Userexit or enhancement spot for md01

    Hi all,
              I had a requirement where , when I input a plant and background program is running in Transaction MD01it is displaying all the materials with MRP run. But my scenario is I need to display only those materials whose sale order numbers of order type is OR. Is there any userexit or enhancement spot for this?
    Please guide me.
    searched the forum before posting.
    Thanks & regards,
    Murali Krishna. T

    Hi,
    Try these exits:
    Enhancement     SAPMM61X     EXIT_SAPMM61X_001     M61X0001     User exits PP-MRP materials planning     
    Alternative Exits:
    BADI     MM61XF50     MD_INTERACT_PLANNING     MD_INTERACT_PLANNING     BAdI for Deactivating Changeability of MRP Elements
    Enhancement     SAPLATPC-LATPCU02     EXIT_SAPLATPC_002     ATP00001     User Exits in the Availability Check                    
    Thanks,
    AMS

  • Enhancement spots for ME59N

    Hi All,
    Can any one give an idea to find the suitable enhancement spots for any transaction.
    I am working in ECC 6.0.
    In my case i need to find for ME59N, the program name is RM06BB30, and the requirment is for automatic creation of PO for different Tax Classifications.
    There is an user exit ME590001 which is suitable for this application, but we are instructed to avoid user exits so we have to go for enhancement spots.
    Thanks,
    Rama

    Hi,
       refer
    https://forums.sdn.sap.com/click.jspa?searchID=7035836&messageID=3610819
    Regards

  • Exit or enhancement spot to update network component price

    Dear SAP expert,
    I have a problem with component in network pricing which will copy from material standard price. This lead to unrealistic price in PR creation since the standard price only updated per 6 months.
    I need to find an exit or enhancement spot to update the price in network to the last PO created.
    Anybody can help on this issue?
    Thanks in advance.

    thanks for the advice. May i ask another question which is:
    If i set the costing variant lets say to get the latest PO price, will it affect the material standard price in material master as well or only affect the network material component price. Since what i need is not to change the material standard price but only the material component price in network level..thanks

  • Enhancement Spot for MM02

    Hi,
    Enhancement Spot for MM02 for disable field in MENU -> MRP Profile -> RMMG1-DISPR .
    Thanks.

    I can't really understand what's your meaning. Maybe u need to deactive this field in MM01, if that's so, u can config from this path  "Logistics - General -> Material Master -> Field Selection".

  • Enhancement spot for shipping point in VL10G tcode

    Hi All,
    we have created enhancement spot for shipping point in VL10G tcode & tested its working fine in foreground(Dialog) but didn't worked in BACKGROUND, its showing error log. 
    when we opened this error message its not having any error message in log. its coming blank in error field.
    so pls let me know your thoughts, why its happening?
    Thanks & Regards
    Nagendra / Biswa

    hi yogendra,
    I have created an enhancement in RV_INVOICE_DOCUMENT_ADD but my code is not getting appeared in debugging mode and  nothing is working. can u please guide me on this.
    following the spot where i have written my code
    NHANCEMENT-POINT rv_invoice_document_add_14 SPOTS es_saplv60a.
    ENHANCEMENT 51  OIC_SAPLV60A.    "active version
    BREAK-POINT.
    WAIT UP TO 2 SECONDS.
    DATA: lv_name TYPE thead-tdname,
             lt_line TYPE STANDARD TABLE OF tline,
             lw_line TYPE tline.
         CLEAR: lv_name , lv_sgtxt.
           lv_name = bkpf-xblnr.
    CALL FUNCTION 'READ_TEXT'
         EXPORTING
           id                      = 'A002'
           language                = sy-langu
           name                    = lv_name
           object                  = 'VBBK'
         TABLES
           lines                   = lt_line[]
         EXCEPTIONS
           id                      = 1
           language                = 2
           name                    = 3
           not_found               = 4
           object                  = 5
           reference_check         = 6
           wrong_access_to_archive = 7
           OTHERS                  = 8.
       IF sy-subrc EQ 0.
         READ TABLE lt_line
           INTO lw_line
           INDEX 1.
          REPLACE ALL OCCURRENCES OF '<)>' IN lw_line-tdline WITH space.
         lv_sgtxt = lw_line-tdline.
       ENDIF.
    ENHANCEMENT 1  ZNARRATION_UPDATE.    "active version
    ENDENHANCEMENT.
    Regards
    satish

  • BADI/Enhancement spot for VL01N (Outbound Delivery)

    Hi guys,
    while creating outbound deliver it needs to be change the contents of XMKPF (BKTXT), is there any BADI/Enhancement spot for the VL01n.
    Kinldy provide some inputs for this one...which is very helpful to me.
    Regards,
    Vijay

    Hi guys,
    Thanks for your valuable replies.
    special thanks to Kiran Sure because my requirement is full filled by given enhancement spot/badi is LE_SHP_GOODSMOVEMENT
    regards,
    Vijay

  • Only BADi is used in enhancement spot when customer createion?

    Only BADi is used in enhancement spot when customer createion?

    Only BADi is used in enhancement spot when customer createion?

  • Enhancement spot for checking  XD03 CIN Details - LST and CST fields

    Hi experts,
    How to validate  LST & CST fileds in XD03 - CIN details these no are already in J_1IMOCUST table, there is any enhancement spot.
    please guide me.
    regards,
    Moon

    Answered.
    from the following link.
    /people/ramakrishna.sirasanagundla/blog/2009/11/06/abap-making-cin-tab-fields-obligatory

  • Enhancement spot for FB60 to edit withholding tax

    Hi,
    I'm looking for an enhancement spot or badi, exit, in order to check withholding taxes in FB60.
    Thinks

    Hi Vincent:
    Did you used it just to read the table or even to modify?

  • Exit or Enhancement needed for transaction MM06

    Hi all,
    Can anyone help me in finding any user exit or BADI when we save the transaction MM06?. I have tried using exit handler, checked the package, but there is no exit/BADI. There is one BADI BADI_MM_SPSTOCK but it is not getting triggered when i save MM06.
    Please help as soon as possible.
    Thanks in advance

    Hi,
    user exits are not there for MM06 transaction.
    go through the below links for BADI.
    /people/alwin.vandeput2/blog/2006/04/13/how-to-search-for-badis-trace-it
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/find%252bapplication%252bclass%252bwith%252bexits%252band%252bbadis%252bfor%252ba%252btransaction
    Regards,
    Madhu

  • Non-editable mode for customer master data in VA01 and VA02

    Hi all,
    User requirement is they don't want to give permission to change customer master data (payer & ship-to ). I didn't find any user exit to do screen non-editable.
    Can any one help me in this..
    Regards,
    Sudhakara

    Hi Sudhakar Reddy,
    For this transaction code user exits available :
    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
    For ur requirement whixh exit is suitable plz check it out. other wise put breakpoint for userexit and check it out.
    Rewards somr points.
    Rgds,
    P.Nag

Maybe you are looking for

  • AC 5.3 Release Note Inquiry - Is it included in an Support Pack for AC5.2??

    Hi Everyone, In release v.5.3 release notes, SAP noted that the logical validation of "not to allow approvers to approve their request" has been added.  Does anyone know if this functionality was included in a Support Pack for v.5.2 version?  Or woul

  • Debugging of service entry sheet

    Hi all, Can any one tell me how to debug the service entry sheet script from ml81n. Form name: ML_SERVICE_ENTRY Even though I activatetd the debugger from se71 it is not executing in debugmode. Can you please suggest how to debug. Thanks and Regards,

  • Is The Zen Touch Sensitive To Moti

    I notice that everytime I use the Zen Touch in my car, or when I'm walking the player either locks up, randomly selects tracks, or just don't act right. But when I have it placed in one place, it plays just fine. Is this common with the Zen Touch? If

  • Linkage and process flow for credit memo

    Hi Experts,    I am creating an outbound zfunction module for consignment settlement.Need to select frbnr,lifnr,budat,ebeln,werks,lgort,erfmg based on object key of nast table.Kindly please advise the flow and linkage of the fields for selection. Tha

  • Show/Hide buttons

    Hey everyone, Is there a way I can create a "Show" button that would be visible to users when they click "Hide" (or X) on the nav bar? The team I'm working with doesn't think that making users click the Contents, Search, or Index button to "Show" the