Enhancement to PPSM tcode.

Hi All,
Is there any way to apply custom validation for PPSM transaction.
Regards,
sasidhar.

Hi,
IWO10012  Maintenance order: Priority handling on central header is the only exit I found for that. But you may try Transaction Variants(SHD0) also for this.
Regards,
Renjith Michael.

Similar Messages

  • Enhance screen for tcode FCH9

    I need to enhance the screen for tcode FCH9 to add more void reason. I do not want the check to be voided though. Is there is a user exit to enhance this screen or will have to create a custom transaction for this.

    Hi,
    there are no screen exits or BADIs which you can use to enhance SU01. So the only way how to do it is using enhancement framework and direct modifications of SAP programs.
    Cheers

  • Enhancement for SU01 tcode SAVE button

    Hi All,
    I want to know the enhancement (user exit, badi, customer exit) for the tcode SU01 while pressing the SAVE button.
    I found the exit "SUSR0001" but this is for SAP user login.
    I want the exit trigger when clicking SAVE icon.
    Please suggest me.
    Regards,
    Munu

    Hi Manu,
    As you say SUSR0001 is a user exit that triggers after every user logon and does not have anything to do with user creation/save.
    BADI ADDRESS_UPDATE is called during saving of SU01 newly created user. This is a general multiple use BADI that is called during any address saving.
    Hope this helps,
    James

  • Enhancement for PA30 tcode for 0167 Infotype

    Hi,
    I have arequirement as below,
    In PA30 tcode for Infotype 0167,under dependent tab we have check box for selecting the dependent for a benefit plan.my requirement is when ever we select a check box for a dependent system should check the record of that dependent from infotype 0021 and if the dependent will not fall under perticular age group it should throw an error message.
    Please suggest me regarding this.
    Thank you all for your understanding.
    Ravi

    Hi
       Here is a list of exits
    HRPBAS01  User Exit for HR Master Data
    HRPC0001  HR: PC download authorization
    HRRPAI01  User exit for FB HR_ENTRY_DATE and HR_LEAVING_DATE
    PARA0001  Enhancement for Determining the Number of Periods
    PARA0002  Enhancement for Calculating Annual Salary; IT0008,14
    PBAS0001  PA: Pers.Admin./Recruitment: Default values and chec
    PBAS0002  PA: Enhancements for Personnel Administration - Menu
    PBASRP01  PA: User exit distributed reporting

  • EXIT OR BADI OR ENHANCEMENT FOR CATS_APPR_LITE TCODE

    Hi All ,
       I want to put some validation for tcode CATS_APPR_LITE  . when you execute this tcode and after
    entering reporting period and F8 , it shows a report there you will click on first application toolbar button
    for Approve or Reset Approve for any row .
    When user click on Approve or Reset approve at that time i want to put some validations .
    For this validations i am not able to find any EXIT OR BADI OR ENHANCEMENT  .
    i found one Badi : CATSXT_EVENT . but my data is not visible which i want like Activity type .
    Can anyone please help me .
    Regards ,
    Nilesh K Jain .

    Hi Nilesh,
    Tcode : CAT2.
    /message/5260477#5260477 [original link is broken]
    Regards,
    Sravanthi

  • How to find enhancements for a TCode

    Hi,
    We are doing a study for upgrading from 4.7 to ECC 6.
    For this I would like to know the enhancements done in particular (critical transactions). I have searched on the forum and found 2 approaches.
    1) Go to the program of the transaction and in the program search for call customer.
    2) Go to the program of the transaction and then take the package of the program and then in SE80 enter package name and then we will get all the enhancements for the transaction.
    However for eg for TCode CJ01 when I search the program I am able to find a few customer exits. However when I take the package name in SE80 I do not get any enhancements. So how do I find out the enhancements for a Transaction code (User exits, BADIS, exit programs, etc).
    Thanks,
    Mick

    Hi,
    To find the user exits associated, execute following code in SE38
    *& Report  Y_USER_EXIT_SEARCH                                          *
    REPORT  Y_USER_EXIT_SEARCH      .
    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.
    WRITE: 'sy ucom=', SY-UCOMM.
    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.

  • Screen enhancement on PO tcode ME21, 22 and 23N w/o appending fields struct

    Hi Experts,
    I have a requirement to enhance the screen of PO ME21N, ME22N and ME23N adding a fields on Header and Line Item. I know how to do using append structure of additional fields in EKKO and EKPO. but this requirement should save on customize table. It was decided because it was more than 20 fields to be added. It might affect the performance of standard table if we would add this in standard table.
    PBO for ME22N and ME23N i am only populating the EBELN and EBELP then extracting the data to customize table to display in the screen.
    PAI for all transaction EXPORTING the data
    after PAI populating the data again and again.
    Is this effective or possible? any idea or solution?
    thanks in advance.
    Best regards,
    Etrafanob

    Use extension MM06E005 "Customer fields in purchasing document", you do not have to append more than one field to standard tables, but you will have to manage the update of customer database yourself. (use some PERFORM AT COMMIT in the PAI FM of the exits)
    The only field is required so that structure CI_EKPODB or CI_EKKODB can be activated and used as parameter of the exit(s) (e.g. put a single field 1 char like "customer data exists" or the fields that should be the most useful to select data from database, and put/get the other data from/to your specific database table(s)
    Regards,
    Raymond

  • Enhancement for FPP3  tcode

    Hi ,
    I need to add a field in the tcode FPP3 (business partner dispaly) , in the second screen , can any one tell me the Screen exit name .. which is used for this?
    Thanks in advance,
    Swetha.

    Solution pls
    Nabheet

  • Enhancement for the tcode FB02/FB03

    Hi All,
    We want to add a Push Button in the tcode FB02/FB03, .
    Could you please suggest any screen exist or a BAdI for the above transaction.
    Thanks,
    Kalyani.
    Edited by: Kalyani KVS on Oct 27, 2008 11:18 AM

    Hi,
    I couldnot find any screen exists in the program "SAPMF05L"
    Thanks in advance.........
    Kalyani.

  • *bold* Enhancement in Mi01 tcode for Physical Inventory *bold*

    hi,
       My issue is i need to maintain the physical inventory reference field in the header of tcode Mi01 by checking it against a text the current status of my program is i am able to check for the text however if the user doesnt click the header button and saves the tcode after entering the material its allowing him to do now i need to make sure that i put in a condition that the header is maintained and in that i need to check for the text before saving .
    Thanks in advance

    I hav resolved it by myself

  • Enhancement PPCO0012 (exit for TCode CO01)

    Hi,
    I'm using screen exit mentioned in enhancement PPCO0012 for TCode CO01.
    Since the screen-exit triggers at header level I am unable to do the required manupilations.
    I need to add some functionality at the header level for the component data, but being at the header level the system only displays the header data, however when we click on the component view button it takes us to the component data screen. In other words the component data is available at the header level such that the system determines what components are to be shown when the component view button is clicked.
    Thus can anyone please help me as to know how to get the data of components at the header level screen itself.
    Thanks,
    Sugandh

    Hi,
    I'm using screen exit mentioned in enhancement PPCO0012 for TCode CO01.
    Since the screen-exit triggers at header level I am unable to do the required manupilations.
    I need to add some functionality at the header level for the component data, but being at the header level the system only displays the header data, however when we click on the component view button it takes us to the component data screen. In other words the component data is available at the header level such that the system determines what components are to be shown when the component view button is clicked.
    Thus can anyone please help me as to know how to get the data of components at the header level screen itself.
    Thanks,
    Sugandh

  • How to find the exact user exit in enhancement.

    Hi All,
    I am in learning phase. I am working on TCODE VA01 and want to change the PO Date. But i am unable to find out the exact user exit.  If somebody could guide me that what is the procedure to find the exact user exit for a perticular field or like that.  I am know how to find all the enhancements in the TCODE.

    hi
    Run this program and give the tcode and it will list down all the user exits for that Tcode.
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    TABLES : tstc, tadir,            modsapt,            modact,            trdir,             tfdir,      enlfdir,     tstct.   
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    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-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.
    Regards
    Sajid
    Edited by: shaik sajid on Jun 26, 2009 12:06 PM
    Edited by: shaik sajid on Jun 26, 2009 12:10 PM

  • Enhancement

    Hi,
    How to enhance the standerd tcodes  by using user exits,
    i want brief explanation about user exits with exmple,
    how to find out the user exits and how we write our functionality code  in that.
    plz give some suggestions   links to learn  enhancements.
    Moderator Message : Not enough re-search before posting the question. Thread locked
    Edited by: Vinod Kumar on Apr 21, 2011 6:00 PM

    Hi sivaram_deepu3,
    [http://wiki.sdn.sap.com/wiki/display/ABAP/EnhancementsandModifications-BADI,EnhancementFramework,UserExits,BTE|http://wiki.sdn.sap.com/wiki/display/ABAP/EnhancementsandModifications-BADI,EnhancementFramework,UserExits,BTE]
    ever thought about using forum search or google?
    regards
    Rea

  • How to show my customer-subscreen for CV01N tcode?

    Hi.
    There is a line:
    CALL CUSTOMER-SUBSCREEN scrcust INCLUDING 'SAPLXCV110' '0100'.
    at '0200' screen's PBO.
    I create a project in CMOD for CV110001enhansment. Then I create a screen '0100' in XCV110 func. group and write some stuff there. Then I activate my project in CMOD but nothing happen with the main screen...
    What should I do to activate my customer-subscreen correctly?
    Thanks. Bye.

    Hi,
    Have you added the enhancement for the Tcode in you project created. and this enhancements should be the screen exit and fm exit for the new screen provided by SAP itself.
    Hope this might help you.
    Pooja

  • Screen exits for MM01 Tcode

    Hi Folks,
              I am doing some enhancements for MM01 Tcode.we need to add new screens to MM01. could any one tell me the available screen exits or BADI' s for tcode MM01. thnx in advance.
                    santosh.

    Hi,
    Check these:
    MGA00001 - Material Master (Industry): Checks
    and Enhancements
    MGA00002 - Material Master (Industry): Number
    Assignment
    MGA00003 - Material Master (Industry and
    Retail): Number Display
    Check with 'BADI_MATERIAL_REF'
        Refer
    http://www.****************/Tutorials/ExitsBADIs/MM/MM01.htm
    https://forums.sdn.sap.com/click.jspa?searchID=7217830&messageID=3313524
    Regards

Maybe you are looking for

  • Displaying previous page without running it's report region sql?

    Hi, I just created a button which is PREVIOUS and redirects to the previous URL. However I was hoping I could just display the previous pages report results again without re-running the report sql. The PREVIOUS button seems to re-run the sql ... is t

  • HT1688 i took my phone to get replaced under the warranty but i didnt get the charger or the headphones was i supposed to?

    My phone's power button was stuck and had to take it in to get it replaced under the warranty, but i didnt get a charger for it or the headphones that come with the new phone, was i supposed to get something?

  • Edit Favourite list

    After I saved the favourite list for the first time, I now want to edit it. How do I edit the favourite list after the first save? If possible I would like several favourite lists. Is this possible with the BT Visiion control.  I thought it was, as I

  • Mac book pro settings keep resetting

    Hi, I am in need of anyone that can help me with my situation. About two days ago, when I booted up my Macbook pro, all the settings would have been resetted (dock is full of apps that I removed, exposes resetted etc). Whenever I would set up all the

  • Invoking procedure from menu module

    How can I invoke procedure that is part of Form module from menu module which is attached to it. When I reference it with: procedure_name; I receive: Error 201 Identifier procedure_name must be declared. null