1.SE37查看SXV_GET_CLIF_BY_NAME,设置断点,运行事务,DEBUG查看NAME的值。
2.SE24查看CL_EXITHANDLER类的GET_INSTANCE方法,在
“CALL METHOD
cl_exithandler=>get_class_name_by_interface”设置断点,运行事务,DEBUG查看EXIT_NAME的值。
3.SPRO查看Business
Add-Ins for xxxx子项。
4.SE80》Repository
Browser》Package》[开发类名]》Enhancements 》Classic BAdIs
(Def.)
5.查找事务码的程序代码,cl_exithandler=>get_instance的EXPORTING参数exit_name。
6.ST05跟踪事务码,显示Trace后查找“V_EXT_IMP”和“V_EXT_ACT”;查找以“IF_EX_”开头的字符串,该字符串为接口名,“IF_EX_”后即为BADi名。
Finding the user-exits of a SAP transaction code
*http://www.erpgreat.com/ab038.htm * Finding the user-exits of a SAP transaction code * * Enter the transaction code in which you are looking for the user-exit * and it will list you the list of user-exits in the transaction code. * Also a drill down is possible which will help you to branch to SMOD. * * Written by : SAP Basis, ABAP Programming and Other IMG Stuff * http://www.erpgreat.com * report zuserexit no standard page heading. 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. *---End of Program
Code To Find BAdi
The following program asks for a transaction code or a program name. If a transaction code is entered, its called program is used as the program name. With the program name, its package is retrieved, and all the Enhancements (Customer Exits) and classic BAdIs of this package are displayed.
It means this program is an help to find some Enhancements (customer exits) and BAdIs in the same package, but maybe they are not related to this transaction or program, and moreover, this transaction or program may call many Enhancements (customer exits) and BAdIs which will not be listed by this program. Instead, prefer Finding a BADI using Buffer trace - Transaction ST05 (Screenshots) or Find a BADI through SPRO.
REPORT Z_FIND_BADI . TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR, SXS_ATTRT, TSTCT. DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE. DATA : FIELD1(30). DATA : V_DEVCLASS LIKE TADIR-DEVCLASS. DATA WA_TADIR TYPE TADIR. PARAMETERS : P_TCODE LIKE TSTC-TCODE, P_PGMNA LIKE TSTC-PGMNA . START-OF-SELECTION. IF NOT P_TCODE IS INITIAL. SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE. ELSEIF NOT P_PGMNA IS INITIAL. TSTC-PGMNA = P_PGMNA. ENDIF. 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 IN (‘SMOD‘, ‘SXSD‘) 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:/(105) SY-ULINE. FORMAT COLOR COL_HEADING INTENSIFIED ON. * Sorting the internal Table SORT JTAB BY OBJECT. DATA : WF_TXT(60) TYPE C, WF_SMOD TYPE I , WF_BADI TYPE I , WF_OBJECT2(30) TYPE C. CLEAR : WF_SMOD, WF_BADI , WF_OBJECT2. * Get the total SMOD. LOOP AT JTAB INTO WA_TADIR. AT FIRST. FORMAT COLOR COL_HEADING INTENSIFIED ON. WRITE:/1 SY-VLINE, 2 ‘Enhancement/ Business Add-in‘, 41 SY-VLINE , 42 ‘Description‘, 105 SY-VLINE. WRITE:/(105) SY-ULINE. ENDAT. CLEAR WF_TXT. AT NEW OBJECT. IF WA_TADIR-OBJECT = ‘SMOD‘. WF_OBJECT2 = ‘Enhancement‘ . ELSEIF WA_TADIR-OBJECT = ‘SXSD‘. WF_OBJECT2 = ‘ Business Add-in‘. ENDIF. FORMAT COLOR COL_GROUP INTENSIFIED ON. WRITE:/1 SY-VLINE, 2 WF_OBJECT2, 105 SY-VLINE. ENDAT. CASE WA_TADIR-OBJECT. WHEN ‘SMOD‘. WF_SMOD = WF_SMOD + 1. SELECT SINGLE MODTEXT INTO WF_TXT FROM MODSAPT WHERE SPRSL = SY-LANGU AND NAME = WA_TADIR-OBJ_NAME. FORMAT COLOR COL_NORMAL INTENSIFIED OFF. WHEN ‘SXSD‘. * For BADis WF_BADI = WF_BADI + 1 . SELECT SINGLE TEXT INTO WF_TXT FROM SXS_ATTRT WHERE SPRSL = SY-LANGU AND EXIT_NAME = WA_TADIR-OBJ_NAME. FORMAT COLOR COL_NORMAL INTENSIFIED ON. ENDCASE. WRITE:/1 SY-VLINE, 2 WA_TADIR-OBJ_NAME HOTSPOT ON, 41 SY-VLINE , 42 WF_TXT, 105 SY-VLINE. AT END OF OBJECT. WRITE : /(105) SY-ULINE. ENDAT. ENDLOOP. WRITE:/(105) SY-ULINE. SKIP. FORMAT COLOR COL_TOTAL INTENSIFIED ON. WRITE:/ ‘No.of Exits:‘ , WF_SMOD. WRITE:/ ‘No.of BADis:‘ , WF_BADI. ELSE. FORMAT COLOR COL_NEGATIVE INTENSIFIED ON. WRITE:/(105) ‘No userexits or BADis exist‘. ENDIF. ELSE. FORMAT COLOR COL_NEGATIVE INTENSIFIED ON. WRITE:/(105) ‘Transaction does not exist‘. ENDIF. AT LINE-SELECTION. DATA : WF_OBJECT TYPE TADIR-OBJECT. CLEAR WF_OBJECT. GET CURSOR FIELD FIELD1. CHECK FIELD1(8) EQ ‘WA_TADIR‘. READ TABLE JTAB WITH KEY OBJ_NAME = SY-LISEL+1(20). MOVE JTAB-OBJECT TO WF_OBJECT. CASE WF_OBJECT. WHEN ‘SMOD‘. SET PARAMETER ID ‘MON‘ FIELD SY-LISEL+1(10). CALL TRANSACTION ‘SMOD‘ AND SKIP FIRST SCREEN. WHEN ‘SXSD‘. SET PARAMETER ID ‘EXN‘ FIELD SY-LISEL+1(20). CALL TRANSACTION ‘SE18‘ AND SKIP FIRST SCREEN. ENDCASE.
[转帖]SAP BADI应用
http://space.itpub.net/10500555/viewspace-616097