User Exit for tcode F-47

Hi,
Which userexit is triggered when the down payment request is created in tcode
F-47 ??
Can anyone tell me ??

Hi,
  you can check these transactions
F050S001            FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment
F050S002            FIDCC1: Change IDoc/do not send
F050S003            FIDCC2: Change IDoc/do not send
F050S004            FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send
F050S005            FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document
F050S006            FI Outgoing IDoc: Reset Clearing in FI Document
F050S007            FIDCCH Outbound: Influence on IDoc for Document Change
F180A001            Balance Sheet Adjustment
FARC0002            Additional Checks for Archiving MM Vendor Master Data
FEDI0001            Function Exits for EDI in FI
RFAVIS01            Customer Exit for Changing Payment Advice Segment Text
RFEPOS00            Line item display: Checking of selection conditions
RFKORIEX            Automatic correspondence
SAPLF051            Workflow for FI (pre-capture, release for payment)
Thanks
Yogesh

Similar Messages

  • User Exit for TCode CJ20N to populate Project system user fields

    Hi team,
    need one support from your side..
    I am looking for User Exit for TCode CJ20N to populate Project system user fields on SAVE.
    I have found
    Enhancement        CNEX0001
    Short text         PS: User field
    which is exactly suiting my req...as it has USER Fields (USR08/USR09 )in export paramters..
    BUT it is not triggering on SAVE,,
    Any hint or is any other user exit/badi which have USER Fields in export paramters.
    Warm Regards
    Krishan

    Hi Krishnan,
    If you want a custom tab that contains User defined fields at Project level then you have to use CNEX0006 user exit. Before this you must declare your fields using the CI include CI_PROJ in the PROJ table.
    If you want a custom tab that contains User defined fields at WBS level then you have to use CNEX0007 user exit. Before this you must declare your fields using the CI include CI_PRPS in the PROJ table.
    In the PBO function module exit of these exits you must use the following statements as the first statement.
    MOVE-CORRESPONDING sap_proj_imp TO proj.
    MOVE-CORRESPONDING sap_prps_imp TO prps.
    In the PAI function module exit of these exits you must use the following statement as the last statement.
    MOVE-CORRESPONDING proj TO cnci_proj_exp.
    MOVE-CORRESPONDING prps TO cnci_prps_exp.
    The remaining programming as in the case any Screen Exit.
    Regards,
    Abijith

  • User exits for Tcode FCH5

    May any one of you plz suggest me any userexits for tcode fch5.
    i want to restrict the field  of account id for validation.
    how can i do this.
    waiting for your reply.

    Hi Pawan,
    U can use this program to find user exit for Tcode FCH5
    Find User exit for Tcode
    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.
    Rgds,
    Prakash

  • User exit for tcode ME21N and ME22N

    Hi everyone
    Can anybody tell me the user exits found in the tcodes ME21N nad ME22N, when saving a PO?
    Regards
    Anjali

    AMPL0001            User subscreen for additional data on AMPL
    LMEDR001            Enhancements to print program
    LMELA002            Adopt batch no. from shipping notification when posting a GR
    LMELA010            Inbound shipping notification: Transfer item data from IDOC
    LMEQR001            User exit for source determination
    LMEXF001            Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001            Individual customer source determination in Retail
    M06B0001            Role determination for purchase requisition release
    M06B0002            Changes to comm. structure for purchase requisition release
    M06B0003            Number range and document number
    M06B0004            Number range and document number
    M06B0005            Changes to comm. structure for overall release of requisn.
    M06E0004            Changes to communication structure for release purch. doc.
    M06E0005            Role determination for release of purchasing documents
    ME590001            Grouping of requsitions for PO split in ME59
    MEETA001            Define schedule line type (backlog, immed. req., preview)
    MEFLD004            Determine earliest delivery date f. check w. GR (only PO)
    MELAB001            Gen. forecast delivery schedules: Transfer schedule implem.
    MEVME001            WE default quantity calc. and over/ underdelivery tolerance
    MM06E001            User exits for EDI inbound and outbound purchasing documents
    MM06E003            Number range and document number
    MM06E004            Control import data screens in purchase order
    MM06E005            Customer fields in purchasing document
    MM06E007            Change document for requisitions upon conversion into PO
    MM06E008            Monitoring of contr. target value in case of release orders
    MM06E009            Relevant texts for "Texts exist" indicator
    MM06E010            Field selection for vendor address
    MMAL0001            ALE source list distribution: Outbound processing
    MMAL0002            ALE source list distribution: Inbound processing
    MMAL0003            ALE purcasing info record distribution: Outbound processing
    MMAL0004            ALE purchasing info record distribution: Inbound processing
    MMDA0001            Default delivery addresses
    MMFAB001            User exit for generation of release order
    MRFLB001            Control Items for Contract Release Order
    MEQUERY1            Enhancement to Document Overview ME21N/ME51N
    MM06E011            Activate PReq Block
    LMEKO001            Extend communications structure KOMK for pricing
    LMEKO002            Extend communications structure KOMP for pricing
    If useful reward.
    Vasanth

  • User exit for Tcode F-22.

    Hi guys.
    is there any user exit fot T-code F-22 to avoid duplicate invoice?

    available use exits are
    F050S001            FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment
    F050S002            FIDCC1: Change IDoc/do not send                      
    F050S003            FIDCC2: Change IDoc/do not send                      
    F050S004            FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not se
    F050S005            FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI documen
    F050S006            FI Outgoing IDoc: Reset Clearing in FI Document      
    F050S007            FIDCCH Outbound: Influence on IDoc for Document Change
    F180A001            Balance Sheet Adjustment                             
    FARC0002            Additional Checks for Archiving MM Vendor Master Data
    RFAVIS01            Customer Exit for Changing Payment Advice Segment Text
    RFEPOS00            Line item display: Checking of selection conditions  
    RFKORIEX            Automatic correspondence                             
    SAPLF051            Workflow for FI (pre-capture, release for payment)   
    and you can find user exits for any transaction with the help of this 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.
    Message was edited by: Vijay Kumar Reddy

  • User exits for tcode FBV0

    Hi,
    My requirement is that the user who has parked the document should not be able to post the parked document through tcode FBV0.
    Is there any user exit where in I can validate the current system user and the user who has parked the document?
    I have tried the user-exit SAPLF040,but this does not suffice my requirement.
    Also is it possible to define our own exits in tcode OB28?
    Regards,
    Rajeev

    Info on user exits can be found here http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    Transaction Code - FBV0                     Post Parked Document
    |Exit Name          |Description                                                              |
    |F050S001           |FIDCMT, FIDCC1, FIDCC2: Edit user-defined IDoc segment                   |
    |F050S002           |FIDCC1: Change IDoc/do not send                                          |
    |F050S003           |FIDCC2: Change IDoc/do not send                                          |
    |F050S004           |FIDCMT, FIDCC1, FIDCC2: Change outbound IDoc/do not send                 |
    |F050S005           |FIDCMT, FIDCC1, FIDCC2 Inbound IDoc: Change FI document                  |
    |F050S006           |FI Outgoing IDoc: Reset Clearing in FI Document                          |
    |F050S007           |FIDCCH Outbound: Influence on IDoc for Document Change                   |
    |F180A001           |Balance Sheet Adjustment                                                 |
    |FARC0002           |Additional Checks for Archiving MM Vendor Master Data                    |
    |RFAVIS01           |Customer Exit for Changing Payment Advice Segment Text                   |
    |RFEPOS00           |Line item display: Checking of selection conditions                      |
    |RFKORIEX           |Automatic correspondence                                                 |
    |SAPLF051           |Workflow for FI (pre-capture, release for payment)                       |
    No of Exits:         13
    These are the user exits possible for FBV0
    <b>we can find user exit for any transaction, copy and run the following code in SE38</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,
            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.

  • Reg. User Exit for TCode FCH5

    Hi All,
               Is there any user exit for Manual Check Entry Program (Tcode FCH5) that will not allow user
    to make any modifications in existing check's.
    Thks
    Shailesh

    Hi,
    just mark your question as 'Answered' and give some comments.
    Thanks.

  • User exit for Tcode LI20

    Hi all,
    I need to find a user exit for T Code LI20, to update the Z tables.
    Thanks in advance
    Sree

    HI Sree,
    Check the list of Exits avaiable for Tcode - LI20
    Total - 104
    <b>Exit Name           Description</b>
    MWM2S001          Exit to Determine 2-Step Picking Characteristic
    MWMBAP01            Enhancement for BAPI WarehouseTransOrder.GetDetail
    MWMBAP02            Enhancement for BAPI WarehouseStock.GetDetail
    MWMD0001            Transfer order print via RLVSDR40
    MWMD0002            Transfer order print as multiple process with RLKOMM40
    MWMIDI07            Enhancement for Output WMPIHU (Create Pick-HU) Inbound
    MWMIDO11            Enhancement for message WMTORD: TO with several items
    MWMIDO12            Enhancement for Output WMPIHU (Pick-HUs) Outbound
    MWMIDO13            Extension for WMMBXY (subsequent tasks after goods movement)
    MWMPP001            Enhancement WM/PP Interface (automatic TR generation)
    MWMRF001            RF: Influence Display of material description
    MWMRF100            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0100)
    MWMRF101            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0101)
    MWMRF102            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0102)
    MWMRF104            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0104)
    MWMRF105            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0105)
    MWMRF106            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0106)
    MWMRF107            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0107)
    MWMRF108            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0108)
    MWMRF151            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0151)
    MWMRF152            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0152)
    MWMRF153            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0153)
    MWMRF170            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0170)
    MWMRF202            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0202)
    MWMRF203            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0203)
    MWMRF204            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0204)
    MWMRF205            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0205)
    MWMRF212            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0212)
    MWMRF213            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0213)
    MWMRF221            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0221)
    MWMRF302            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0302)
    MWMRF303            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0303)
    MWMRF304            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0304)
    MWMRF305            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0305)
    MWMRF312            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0312)
    MWMRF313            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0313)
    MWMRF321            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0321)
    MWMRF400            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0400)
    MWMRF402            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0402)
    MWMRF403            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0403)
    MWMRF404            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0404)
    MWMRF405            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0405)
    MWMRF406            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0406)
    MWMRF410            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0410)
    MWMRF411            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0411
    MWMRF412            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0412)
    MWMRF502            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0502)
    MWMRF503            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0503)
    MWMRF504            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0504)
    MWMRF505            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0505)
    MWMRF600            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0600)
    MWMRF601            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0601)
    MWMRF630            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0630)
    MWMRF631            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0631)
    MWMRF632            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0632)
    MWMRF633            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0633)
    MWMRF634            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0634)
    MWMRF650            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0650)
    MWMRF651            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0651)
    MWMRF700            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0700)
    MWMRF701            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0701)
    MWMRF702            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0700)
    MWMRF703            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0703)
    MWMRF704            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0704)
    MWMRF705            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0705)
    MWMRF760            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0760)
    MWMRF761            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0761)
    MWMRF762            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0762)
    MWMRF763            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0763)
    MWMRF764            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0764)
    MWMRF765            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0765)
    MWMRF766            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0766)
    MWMRF767            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0767)
    MWMRF768            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0768)
    MWMRF769            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0769)
    MWMRF777            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0777)
    MWMRF800            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0800)
    MWMRF801            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0801)
    MWMRF802            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0802)
    MWMRF803            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0803)
    MWMRF804            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0804)
    MWMRF805            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0805)
    MWMRF806            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0806)
    MWMRF807            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0807)
    MWMRF888            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0888)
    MWMRF889            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0202)
    MWMRF998            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0998)
    MWMRF999            ENHANCEMENT FOR USER SCREENS (LOGICAL SCREEN 0999)
    MWMRFCOD            Enhancement for function codedisabling
    MWMRFDLV            select delivery by user criteria
    MWMRFPRT            Enhancement for printing
    MWMRFSSG            user exit for sorting TOs in RF system-guided transaction
    MWMRFUP             Customer defined general purpose pushbutton called from scr.
    MWMRP001            Cust. Exit for Fixed Bin Replenish.: Delivery Item Selection
    MWMRP002            Cust. Exit for Fixed Bin Replenishment: TR Quantity Distr.
    MWMRP003            Customer Exit for Replenishment using RLLNACH1
    MWMRP004            User Exit for Replenishment using RLLNACH4
    MWMTO001            Enhancements for end of transfer order generation
    MWMTO010            Exit: Calculation of Total Planned TO Processing Time
    MWMTO011            Correction of Planned Processing Time for TO Item
    MWMTO012            Correction of Sorting and Split Transfer Order
    MWMTO013            Stock Removal for Sev. Storage Types as in Stringent FIFO
    MWMTOAU3            Separate selection of posting changes for autom.TO creation
    MWMTR001            Exits at the end of transfer rqmnt creation (IM,PP interf.)
    Reward points if this helps.
    Manish

  • USER EXIT for TCODE ME51N,ME52N

    Hi Expers,
    I have one requirement, If you go to TCODE ME51n, ME52N, ME53N,  we will get one ALV grid . So user will change the layout according to his intrests & will save that layout.
    While saving that layout we will get 2 checkboxes
    1>User specific
    2>Default setting.
    So here my requirement is to disable "default setting" check box, sice users are not allowed to set default setting because it affects other users.
    Please help me to solve this issue & provide me user exit for the same
    Regards,
    Santhosh

    Hi,
    AMPL0001  User subscreen for additional data on AMPL
    LMEDR001  Enhancements to print program
    LMELA002  Adopt batch no. from shipping notification when posting
    LMELA010  Inbound shipping notification: Transfer item data from
    LMEQR001  User exit for source determination
    LMEXF001  Conditions in Purchasing Documents Without Invoice Rece
    LWSUS001  Customer-Specific Source Determination in Retail
    M06B0001  Role determination for purchase requisition release
    M06B0002  Changes to comm. structure for purchase requisition rel
    M06B0003  Number range and document number
    M06B0004  Number range and document number
    M06B0005  Changes to comm. structure for overall release of requi
    M06E0004  Changes to communication structure for release purch. d
    M06E0005  Role determination for release of purchasing documents
    ME590001  Grouping of requsitions for PO split in ME59
    MEETA001  Define schedule line type (backlog, immed. req., previe
    MEFLD004  Determine earliest delivery date f. check w. GR (only P
    MELAB001  Gen. forecast delivery schedules: Transfer schedule imp
    MEQUERY1  Enhancement to Document Overview ME21N/ME51N
    MEVME001  WE default quantity calc. and over/ underdelivery toler
    MM06E001  User exits for EDI inbound and outbound purchasing docu
    MM06E003  Number range and document number
    MM06E004  Control import data screens in purchase order
    MM06E005  Customer fields in purchasing document
    MM06E007  Change document for requisitions upon conversion into PO
    MM06E008  Monitoring of contr. target value in case of release orders
    These are all the user exits you have in the ME Package. Identify the exit which is suitable to fulfill your requirement.

  • User exit for tcode ME9A

    Hi Guys,
    Im trying to add custom error message for tcode ME9A. Is there any user exits or badi available to do this? Thanks.

    hi,
    copy the below code and in the selection screen enter the T-code..
    it will help for you not only for htis t-code to find user exists it will help for all T-codes..
    *&  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
    &----Validate Transaction Code
    Find Repository Objects for transaction code
    Find SAP Modifactions
    Take the user to SMOD for the Exit that was selected.
    *& 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.
      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 = 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.
    and the user eixists are
    Transaction Code - ME9A                     Message Output: RFQs                                                                               
    Exit Name           Description                                                                               
    AMPL0001            User subscreen for additional data on AMPL                                 
    LMEDR001            Enhancements to print program                                              
    LMELA002            Adopt batch no. from shipping notification when posting a GR               
    LMELA010            Inbound shipping notification: Transfer item data from IDOC                
    LMEQR001            User exit for source determination                                         
    LMEXF001            Conditions in Purchasing Documents Without Invoice Receipt                 
    LWSUS001            Customer-Specific Source Determination in Retail                           
    M06B0001            Role determination for purchase requisition release                        
    M06B0002            Changes to comm. structure for purchase requisition release                
    M06B0003            Number range and document number                                           
    M06B0004            Number range and document number                                           
    M06B0005            Changes to comm. structure for overall release of requisn.                 
    M06E0004            Changes to communication structure for release purch. doc.                 
    M06E0005            Role determination for release of purchasing documents                     
    ME590001            Grouping of requsitions for PO split in ME59                               
    MEETA001            Define schedule line type (backlog, immed. req., preview)                  
    MEFLD004            Determine earliest delivery date f. check w. GR (only PO)                  
    MELAB001            Gen. forecast delivery schedules: Transfer schedule implem.                
    MEQUERY1            Enhancement to Document Overview ME21N/ME51N                               
    MEVME001            WE default quantity calc. and over/ underdelivery tolerance                
    MM06E001            User exits for EDI inbound and outbound purchasing documents               
    MM06E003            Number range and document number                                           
    MM06E004            Control import data screens in purchase order                              
    MM06E005            Customer fields in purchasing document                                     
    MM06E007            Change document for requisitions upon conversion into PO                   
    MM06E008            Monitoring of contr. target value in case of release orders                
    MM06E009            Relevant texts for "Texts exist" indicator                                 
    MM06E010            Field selection for vendor address                                         
    MM06E011            Activate PReq Block                                                        
    MMAL0001            ALE source list distribution: Outbound processing                                                                               
    MMAL0002            ALE source list distribution: Inbound processing                                 
    MMAL0003            ALE purcasing info record distribution: Outbound processing                      
    MMAL0004            ALE purchasing info record distribution: Inbound processing                      
    MMDA0001            Default delivery addresses                                                       
    MMFAB001            User exit for generation of release order                                        
    MRFLB001            Control Items for Contract Release Order                                                                               
    No of Exits:         36                                                                               
    Regards,
    Prabhudas

  • User exit for tcode vf03

    Hi,
         Please tell me something about user exits and the pertinent concepts. I have to effect a currency conversion from local currency to Hungarian Forint for the invoice generated by tcode VF03. Kindly tell me how to look for the related user exit for this Tcode. Reply soon as this is an urgent requirement.
    Alok Bhardwaj.

    Hi Alok,
    Try this functional module CONVERT_TO_LOCAL_CURRENCY.
    and user exit
    LMR1M001 User exits in Logistics Invoice Verification
    LMR1M002 Account grouping for GR/IR account maintenance
    LMR1M003 Number assignment in Logistics Invoice Verification
    LMR1M004 Logistics Invoice Verification: item text for follow-on docs
    MRMH0001 Logistics Invoice Verification: ERS procedure
    MRMH0002 Logistics Invoice Verification: EDI inbound
    MRMH0003 Logistics Invoice Verification: Revaluation/RAP
    MRMN0001 Message output and creation: Logistics Invoice Verification
    regards,
    Vishal

  • User exit for Tcode CS62

    Hi,
    What is the user exit that we can use for tcode CS62(Create order bom).
    The requirement is like when i give sales oder, item, material, bom usage in tcode cs62 and then enter->goto->header and update the bom status in header and save the data.

    hi,
    You can Refer to this link ..list of all user exits for this tcode are provided
    User Exit in CS61 / CS62 ?
    Edited by: avinash kodarapu on Jan 2, 2009 2:31 PM

  • BADI / user exit for Tcode IW32?

    Hi
    Are there any BADIs  / user exits for changing component data in Transaction IW32 for a maintainance order?
    regards
    cs

    Enhancement                                                                               
    IWO10012                                Maintenance order: Priority handling on central header                                                                               
    Business Add-in                                                                               
    IWO_UI_USEFLEX                          BAdI for Calling Up an Alternative UI                  
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • User Exit for tcode pp02

    Hi,
         I am searching for a user-exit for transaction pp02. Actually I want to enter data in ztable after creation/modification of data in infotype 1008. So please provide me some information regarding this.
    Thank You

    Hi
    You can find the user exits ..
    Open the transaction PP02 . Go to System-- >  Status -> doble click on the program name .. -->Go to Attributes --> Take the Package name from there.
    Now , go to transaction CMOD --> utilities --> enhancements --> Put the package name there and press F8.
    You will get the following two exits.
    RHGB0001  Function Group RHGB Customer-specific field (list)
    RHIV0001  OrgManagement: Customer-specific number assignment
    Reward points if helpful.

  • How to find  USER-EXIT  for tcode - F110

    I am new in  USER-EXIT  Please help   how to find  USER-EXIT for  F110
    ASAP

    Hi,
    Enhancement/ Business Add-in            Description
    Enhancement
    RFFOX074                                Frame for user exit RFFOX074 (in program RFFOCH_U)
    RFFOX075                                Frame for user exit RFFOX075 (in program RFFOCH_U)
    RFFOX081                                Frame for user exit RFFOX081 (in program RFFOF__T)
    RFFOX082                                Frame for user exit RFFOX082 (in program RFFOF__T)
    RFFOX100                                Frame for user exit RFFOX100 (in program RFFOUS_T)
    RFFOX101                                Frame for user exit RFFOX101 (in program RFFOUS_T)
    RFFOX102                                Frame for user exit RFFOX102 (in program RFFOUS_T)
    RFFOX103                                Frame for user exit RFFOX103 (in program RFFOUS_T)
    RFFOX104                                user exit
    RFFOX105                                Frame for user exit RFFOX105 (in program RFFOUS_T)
    RFFOX200                                Frame for user exit RFFOX200 (in program RFFONZ_T)
    RFFOX210                                Frame for user exit RFFOX210 (in program RFFOAU_T)
    RFFOX211                                Frame for user exit RFFOX211 (in program RFFONZ_T)
    RFFOX230                                General program for user exit RFFOX230 (in program RFFOJP_L)
    RFFOX240                                Enhancement for User Exit 240 (RFFOAT_P)
    RFFOX250                                Enhancement for User Exit 250 (RFFODK_E)
    RFFOX901                                Framework for user exit RFFOX901 (in program RFFOM100)
    RFFOX902                                Framework for user exit RFFOX902 (in program RFFOM100)
    FDTAX001                                Enhancement to Transaction FDTA (event after the download)
    FEDI0002                                Function exits for EDI DOCS in FI - Incoming pyt adv.notes
    FEDI0003                                Function exits for EDI docs in FI - Save PEXR segments
    FEDI0004                                Function exits for EDI docs in FI - particular events
    FEDI0006                                Function Exits for EDI-docs in FI: Save IDCR Segments
    RFFOX003                                Frame for user exit RFFOX003 (in program RFFOM100)
    RFFOX041                                Framework for user exit RFFOX041 (in program RFFOBE_I)
    RFFOX042                                Framework for user exit RFFOX042 (in program RFFOBE_E)
    RFFOX043                                Framework for user exit RFFOX043 (in program RFFOBE_D)
    RFFOX061                                Frame for user exit RFFOX061 (in program RFFOCH_P)
    RFFOX062                                Frame for user exit RFFOX062 (in program RFFOCH_P)
    RFFOX063                                Frame for user exit RFFOX063 (in program RFFOCH_P)
    RFFOX064                                Frame for user exit RFFOX064 (in program RFFOCH_P)
    RFFOX065                                Frame for user exit RFFOX065 (in program RFFOCH_P)
    RFFOX066                                Frame for user exit RFFOX066 (in program RFFOCH_P)
    RFFOX071                                Frame for user exit RFFOX071 (in program RFFOCH_U)
    RFFOX072                                Frame for user exit RFFOX072 (in program RFFOCH_U)
    RFFOX073                                Frame for user exit RFFOX073 (in program RFFOCH_U)
    Business Add-in
    FI_BSTM_MC_EXIT                         FI Account Statement: Exit from MultiCash Conversion
    FI_F110_SCHEDULE_JOB                    F110: Check before scheduling a proposal/update run
    No.of Exits:         36
    No.of BADis:          2
    Arunima

Maybe you are looking for

  • Interesting scenario- user facing error while deleting a sales order

    Hello All, I have one interesting scenario and want feedback from your side as soon as possible Scenario- One of my clients is facing a problem while deleting a sales order. the sales order he is trying to delete is the old order created in 2007. whe

  • Reset Form Submit State

    Is it possible to reset the form submit state? I have a page with many input components, some of which are set to "Auto-Submit on Change". When submitting, a new window is opened with the report results. I need the user to go back to the original inp

  • Set_block_property and Default_where

    Hi All, I'm trying to set the default clause at runtime,for that i'm using set_block_properties. Here is my cde: Set_block_property('RECIPIENT_VIEW',DEFAULT_WHERE,'RECIPIENT_NAME LIKE '||''''||:RECIPIENT_NAME ||'%'||''''); I'm NOT getting if i use th

  • Select multiple columns from tab with group by

    hi i have a table with many columns suppose in that i have 2 columns as date and time and in my table i am getting suppose data like columns -> date time a b c 22-may-2207 10 22-may-2207 17 23-may-2007 5 24-may-2007 12 24-may-2007 15 i want to select

  • Package objects and transport request

    Hi Gurus, How to find out the transport request which are generated by an object created? I have a package(ex:xyz) which has got an object (abc).Now i need to find the transport request which are related to this object abc? Please tell me the procdur