SAP ABAP - Find User Exit of Transaction Code With Custom Program
REPORT zfindexits . 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 . PARAMETERS : p_tcode LIKE tstc - tcode OBLIGATORY . 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...