User exit regarding Network activities

Hi,
I need an user exit checking the activites after press 'SAVE' in transaction CJ20N and CN22.
What I do: after setting technically complete on an avtivity I want to check for specific conditions before the user is allowed to save.
I have tried BADI WORKORDER_UPDATE method AT_SAVE, but this method is not importing the activies -> so I can't use this method.
Method IN_UPDATE is importing the activites, but this methos is not called when pressing 'SAVE'. I don't know when this methid is called..
I have also investigated substitition and validation (Project system - Network activity), but sub. and val. have to many limitations.
Someone who can help??
Best regards,
Anne Johannessen
StatoilHydro Norway

Hi,
Refer these.
CCOWB001  Customer exit for modifying menu entries
COIB0001  Customer Exit for As-Built Assignment Tool
COZF0001  Change purchase req. for externally processed operation
COZF0002  Change purchase req. for externally procured component
PPCO0001  Application development: PP orders
PPCO0002  Check exit for setting delete mark / deletion indicator
PPCO0003  Check exit for order changes from sales order
PPCO0004  Sort and processing exit: Mass processing orders
PPCO0005  Storage location/backflushing when order is created
PPCO0006  Enhancement to specify defaults for fields in order header
PPCO0007  Exit when saving production order
PPCO0008  Enhancement in the adding and changing of components
PPCO0009  Enhancement in goods movements for prod. process order
PPCO0010  Enhancement in make-to-order production - Unit of measure
PPCO0012  Production Order: Display/Change Order Header Data
PPCO0013  Change priorities of selection crit. for batch determinatio
PPCO0015  Additional check for document links from BOMs
PPCO0016  Additional check for document links from master data
PPCO0017  Additional check for online processing of document links
PPCO0018  Check for changes to production order header
PPCO0019  Checks for changes to order operations
PPCO0021  Release Control for Automatic Batch Determination
PPCO0022  Determination of Production Memo
PPCO0023  Checks Changes to Order Components
STATTEXT  Modification exit for formatting status text lines
Regards,
Prashant

Similar Messages

  • User Exit regarding SD billing Document

    Hi Experts,
    I want several user exits of SD billing document.  The one is used to update Item condition when Billing document created, and the second is used to save to my add-on table before document saved.   Could you have any suggestions?
    Thanks.

    [User exits in sales document processing|http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/frameset.htm]

  • User Exit regarding Sale Order

    Hi All,
    While creating a sale order, in the header details and in conditions tab. All the condition types are displayed. Customer requirment is i need to make some changes for some particular condition type in tht sale order like. Can any one pls tell me which user exit i can use for it? to be more clear they have condition type ZFRT for Freight charges. I need to make some calculation ther and display the freight price value ther in tht condition type when the sale order is created. Since its a standrad prog we can do it by user exit only. If anyone done such requirment can let me know which user exit can be used for this.
    Thanks
    Sathish

    Go to SE80 - choose program enter SAPMV45A - Double click on the program and go to include MV45AFZA - There are user exits related to price. Put break point and execute VA01. Change field content of XKOMV (i think) and see the result in sales order application.
    They are the user exits to modify the pricing conditions.
    If you want to do that in pricing routines - find out the routine or requirement or formula for the same and go to tcode VOFM - write your code. Contact SD pricing guy for the same.

  • User exits for F-02 GL account trading partner

    Hi All,
    I need to know in which user exit of f-02, can we give the condition for validating trading partner in moredata tab.
    regards
    PSNG

    Thank you jaganath,
    Could you please explain me how to do the field exit step by step as i am new to these user exits.
    regards
    PSNG

  • User exit call customer function 002 is not getting trigerred

    Hi
    I am using the user exit call customer function 002 in the function module idoc_input_proact to trigger and idoc.my problem is that the user exit is not geting triggered.
    please help me gurus as this the last day for finishing thw work.
    regards,
    Asish dash

    it means tthat, u are applying a wrong exit in the pgm.
    try to once again search for the suitable exits for your program.
    try this:
    how to find the customer exits for a particular transaction
    check out the pgm in this thread:
    Re: Find User Exits
    regards,
    padma

  • User Exit ..... how many line free

    Dear Experts ...
    I have learn that the number of line available to develop specific source code in a BW user exit is limited !
    Do you know how many line are available ???

    Hi,
    I am also not aware of any limitations to source codes in the routines in BW or user exits.
    regards
    Siggi

  • USER EXITS IN BILLING

    HI ALL,
    Scenario. Billing document created and the user wants to cancel the billing document after the closing period . but the system should not allow to do that what is the user exit to be used ?
    Please provide the user exit
    Regards
    Anil Mairpady

    Dear Anil,
    Instead, what i would suggest to discuss with FI-Personnels and resolve the same.
    Best Regards,
    Amit.
    Note: As far as, your exact requirement is concerned, Lemme check and If, I come-up with some alternate solution, I'll definitely update. meanwhile, you may check with BAPI_BILLINGDOC_CANCEL1 (haven't much knowledge about it as never encountered such requirement at my end).
    Also, you may look in to following threads, if you get some helpful information:
    [Thread1|Fixing Billing Date in vf11 (cancel billing Document)]
    [Thread2|User-Exit to cancel a  Billing Document]
    [Thread3|Cancel Billing document User Exit]
    Edited by: Amit Yadav on Dec 8, 2008 7:08 AM

  • User Exit For VA01 To Restrict From Entering The Same Material twice

    Hello All,
    I have a requirement that in sales order creation(VA01) i want to restrict From entering the same material
    more than once in a sales order  i.e more than one same material not allowed in sales order i have tried alot of user exists but of no use
    can u tell me the exact user exit
    Regard's,
    Mahesh Dasari

    Hi Mahesh Dasari,
    1.This user exit is used to add additional datat to VBAP struture like custom fields. And this user exit is called for every single line item when processed.Say you have 10 items then this user exit will be triggered before each entry is populated in the XVBAP.
    2.When the user enters item 10 with material 1 we allow him, then for the next line item say 20 we check if the material entered or processed ( this will be available in VBAP structure ) is available in XVBAP and  the line item 10 is not deleted.
    3. If the above check  true then it means that the material entered is already existing else its not so it will proceed to next line item
    e.g. in your question , item 10- Mat1 , item-20- Mat12, item-90-Mat1,
    Then as per the code I have given , item 90 will be deleted or removed.
    4. Now you can either delete the line item by clearing VBAP as I have done or give a error message  that will be as per your requirement.
    Use the logic I have provided in my earlier post , and see the behaviour.
    Hope you find this answer helpful and set this questions answerd
    Regards
    Arun Thiyagarajan

  • User exit for va01/va02 for std program

    Hi ,
    how are u all....
    here is my problem...
    i created a customized screen for va01.
    this screen gets called after user saves the order.
    in this screen i provided 4 options .
    1. accept the order
    2 change the order
    3.reject the order
    4 release unconfirmed.
    i am calling this screen in user exit userexit_refresh_document.
    before this am capturing the order number .
    once user clicks on first radion button i.e on accept.
    then i am passing the order number and removing the block using BAPI_salesorder_change.
    but here bapi is passing the error message as plese enter the order number ....
    my doubt is the userexit whr am calling the screen is correct ?
    can we do the same using BDC ..?
    if anybody working actions on user entry for va01 and va02..
    please let me know whr and how u r writing the code... sooon
    thx in advance...
    regards
    sanjay

    what are u doing ? , u cannt call BAPI in the same user exit.
    if user accepts the order --->then u have to unblock the order ?
    then u have to activate Credit Control User exits ->SPRO->SD->System Modifications>Credit Control User exits.
    regards
    Peram

  • How to Send  Values from  READ_TEXT   to   User exit

    Hi Friends.,
                       I need to Read Values from  READ_TEXT  FM  and send those values  to  User exit  ( Exit_SAPLRSAP_001  for   ZSALES_2LIS_11_VAITM )  Datasource,
    I'm Getting one Indicator value ( values are like   Y N  0 )  from  READ_TEXT  FM
    and i have to make use of this in Extraction Part
    can anyone help me out in ABAP coding to get these values from  READ_TEXT  FM  to  User exit
    Regards
    Sridhar.

    Hi,
    if you open the FM in se37,you will find the 'Function module documentation' button. click on it and try to see what this function module is about.
    i am attaching a sample code to read the text of a penalty inforamion field.
      DATA: T_LINE_T LIKE TLINE OCCURS 0 WITH HEADER LINE.
      DATA: S_THEAD LIKE THEAD.
      DATA: T_LINE_H LIKE T_LINE_T OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'READ_TEXT'
              EXPORTING
                CLIENT                        = SY-MANDT
                ID                            = 'K01'     "Valid values for the text ID are defined in table TTXID.
                LANGUAGE                      = SY-LANGU
                NAME                          = LV_SO     "here i am passing Sales order no
                OBJECT                        = 'EKPO'    "The text object is part of the text key and assigns the text module to a specific application object. Valid text objects are defined in table TTXOB.
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
             IMPORTING
               HEADER                         = S_THEAD
              TABLES
                LINES                         = T_LINE_T
             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 = 0.
              READ TABLE T_LINE_T INTO T_LINE_H INDEX 1.
    Storing the value in the structure.
              E_T_DATA-PENALTY = T_Line_H-TDLINE.
            ENDIF.
    Thanks.

  • User exit upon saving the customer

    Hi
    can any one tell me what user exit is triggered upon saving the customer in XD01,XD02,VD01 & VD02 Tcodes.
    Thanks
    Sonali

    Hi sonali
    Check these user exits which are used at partner determination level. May be this inputs  will help you
    EXIT_SAPLV09A_001
    You can use this user exit to control whether an address that was entered manually and has already been used in other documents (referenced), should be referenced again if it changes or whether a new address should be created (duplicated).
    EXIT_SAPLV09A_002
    Call up this user exit if a customer has not been maintained in the current sales area.
    EXIT_SAPLV09A_003
    Use this user exit to control the origin of partners in the partner determination procedure (origin X, Y or Z). If X, Y, or Z has been entered in the Origin field, this user exit is automatically called up during partner determination.
    EXIT_SAPLV09A_004
    Use this user exit to integrate your own check in a program that runs before the partner is saved in the document.
    For more detailed information, see the program documentation for each of the user exits
    Regards
    Srinath

  • Regarding User/exits

    Dear SAP guru's
    Our requirement is  VBFA-VBELN table need to bring the  invoice no  BKPF  accounting document no and  store in  Field -BKTXT
    Scenerio  Sales order ( order type OR) ( T#codeVa01)-Delivery note -LF type
    ( VL02 gets created automatically according to my company process) -invoicetype F2(VF01) Invoice than  with refernce to invoice type ( F2)  create Credit memo ( T,code VA01) and accounting document , in accounting Document Header ( BKPF-BKTXT) invoice number should come in BKPF-BKTXT
    please help me it urgent to me.....
    Thanks & Regards
    Nagaraju Chintam

    Dear Prashanth.
    Thanks for your reply. almost i understand whats userexit.
    I tried below and i found these are the userexits available in VT01N-shipment creation.
    Now i want to confirm which is most suitable userexits amoung them matching my requirement.
    do you have any idea on this.
    After shipment creation i want this sales data to be stored in addon table..which user exits can i use for writing this code.
    suggestion pls...
    transaction Code - VT01N                    Create Shipment
    Exit Name
    Description
    MV56AINI
    Initialization of transaction control for transportation
    V56AFCCH
    Shipment processing: Check function code allowed
    V56AGTAR
    User Exit for Filtering Shipping Unit Calculation
    V56ARCHV
    Customer-spec. checks for archiving shipments
    V56ATKTX
    Change the number of lines for text input in shipment
    V56BMOD
    Transportation processing: Field modification
    V56DISTZ
    Shipment Processing: Determine Distance
    V56FCOPY
    Shipment processing: Copy delivery data
    V56FSTAT
    Shipment processing: Activities when setting a status
    V56L0001
    Status of Shipments for a Delivery
    V56LDELI
    Read Delivery Data for Shipment Processing
    V56LOCID
    Shipment Processing: Determine Location Identification
    V56MVT04
    Extensions for Collective Processing of Shipments
    V56SLDET
    Shipment processing: Leg determination
    V56TDLIF
    Filter Delivery Items for Shipment
    V56UCHCH
    Shipment processing: Check whether changes were made
    V56UCHCO
    Check shipments are complete
    V56UDLUP
    Obsolete as of 4.6C: Delivery Update on Delivery Routines
    V56UNUMB
    Shipment number allocation
    V56USTAT
    User-individual definition of transportation planning status
    V56USVDO
    Update new objects for transport
    V56USVDP
    Preparation for updating new objects for transport?
    I will surely reward points. Thanks for your suggestion.
    ambichan

  • User exit to restrict WBS creating Network / PR

    Hi All,
        I want to know user Exit for WBS to restrict from creating Network or PR . Basically I want to restrict 1st & 2nd level of WBS from creating PR & my client not ready to use any manual method to restrict the same so I want to know any User Exit for the same .
      Thanks

    Hi,
    Let me again take your queries point wise.
    1. Is  there any User exit available to restrict the network for only 1st & 2nd level WBS  because my user are not ready for  User status or  for any manual process  .
    Answer:- Try
    CNEX0009 (Material Components in Network)
    CNEX0026
    PPC00008 (Enhancement in adding and change in Components)
    2. Is it possible to give only display  authorization  for only 1st & 2nd level WBS   to some user ( only for those who creates Network in project structure)
    Answer:-  Yes, try executing SHD0 and create a transaction variant and later on do the changes like which field to make display only and which one to not.
    OR
    Ask Basis guys if they can help you out in this case.
    3. Any way if I creates Network but not possible creates Activity or not possible to assign Material to that Activity ( to restricts Creates PR  or Reservation through CJ20n )
    Answer:- Try OPSG settings as I mentioned in my earlier post.
    OR
    Try in OPUA, OPUB and OPUC and search if you hide activity based on INFLUENCING FIELD on LEVELS of 1 or 2 only.
    OR
    Change Procurement Parameter Indicator of Res/Pur. req to NEVER
    OR search in OPUK (Not sure if this can help you)
    OR Try using user staus and set it to level 1 and 2 only. You need to use all Object Types of Network. There would be 3 object types related to network and then use the business transaction as Material Purchase Requisition. Set this to Forbidden and then set this user status to WBS/Network.
    Have a look at the following screen shot.
    I hope this may help you..!!
    Regards,
    Amit

  • Query regarding User Exit

    Hi exps
    Could you please tell me , which user exits get triggered when I save
    Invoice List (T code  : VF22) producing Idoc.
    Also tell me whether the exit EXIT_SAPLVEDF_002 get triggered during this
    process or not ?           
    Let  me know soon
    Regards
    Tulip

    J_3RSINV
    SDVFX001            User exit header line in delivery to accounting
    SDVFX002            User exit for A/R line in transfer to accounting
    SDVFX003            User exit cash clearing in transfer to accounting
    SDVFX004            User exit G/L line in transfer to accounting
    SDVFX005            User exit reserves in transfer to accounting
    SDVFX006            User exit tax line in transfer to accounting
    SDVFX007            User exit: Billing plan during transfer to Accounting
    SDVFX008            User exit: Processing of transfer structures SD-FI
    SDVFX009            Billing doc. processing KIDONO (payment reference number)
    SDVFX010            User exit item table for the customer lines
    SDVFX011            Userexit for the komkcv- and kompcv-structures
    V05I0001            User exits for billing index
    V05N0001            User Exits for Printing Billing Docs. using POR Procedure
    V60A0001            Customer functions in the billing document
    V60P0001            Data provision for additional fields for display in lists
    V61A0001            Customer enhancement: Pricing
    Check with these .

  • Regarding Purchase order User-exit

    Hello friends,
    Here is the situation.
    when we create purchase order ... I need to modify the planned delivery field value under delivery tab at item level.
    For this I found user exit. 'EXIT_SAPMM06E_016' and I have written the logic in the include program.
    when I tested in debbugmode... the cursor is not at all comming to that point. It was failing always at the function module 'MODX_FUNCTION_ACTIVE_CHECK'.
    I don't know alwys active field showing blank. I think we need to activate the user exit some where. how to do and where to do?
    plese help me ..
    extract the code --from include program MM06EF0C_CUSTSCR1_ITEM_SET_D03
    User-Exit für Positionsfelder versorgen (PBO)
    FORM custscr1_item_set_data_pbo USING im_no_screen LIKE fc_call.
      DATA: l_enj_call TYPE c.
      STATICS: first_call(1) TYPE c VALUE 'X',
               active        LIKE sy-calld.
      IF NOT first_call IS INITIAL.
        CLEAR first_call.
        CALL FUNCTION 'MODX_FUNCTION_ACTIVE_CHECK'
          EXPORTING
            cprogname  = 'SAPMM06E'
            funcnumber = '016'
          IMPORTING
            active     = active
          EXCEPTIONS
            not_found  = 1
            OTHERS     = 2.
        IF NOT sy-subrc IS INITIAL.
          CLEAR active.
        ENDIF.
      ENDIF.
      CHECK NOT active IS INITIAL.         ==========================> always active sowing blank
      IF fc_vorga EQ cva_en.
        l_enj_call = 'X'.
      ELSE.
        l_enj_call = space.
      ENDIF.
    *-Define Fields:
      DATA: l_ci_ekpo LIKE ekpo_ci,
            lt_usr_tekpo LIKE bekpo OCCURS 0,
            lt_usr_teket LIKE beket OCCURS 0,
            lt_usr_tekkn LIKE ekknu OCCURS 0,
            lt_usr_tkomv LIKE tkomv OCCURS 0.
    *-Copy Tables:
      MOVE-CORRESPONDING ekpo TO l_ci_ekpo.
      lt_usr_tekpo[] = pot[].
      lt_usr_teket[] = ett[].
      lt_usr_tekkn[] = knt[].
      lt_usr_tkomv[] = tkomv[].
    *-User Exit
      CALL FUNCTION 'EXIT_SAPMM06E_016'
        EXPORTING
          i_ekpo      = ekpo
    ===============
    thanks in advance
    Regards
    Raghu

    Hi Raghunath
    I hope you have included your enhancement in a project and activated the project.
    1-Needed help
    2-SMOD and CMOD
    Hope it is helpful.
    Regards
    Neha

Maybe you are looking for