cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to Find all my z programs or customised tcode, programs and reports

BrendaNuwasiima
Explorer
0 Likes
1,912

It is very easy to find these.  Open SAP Gui and choose the client , your username and passwords.

SE16 to open the Data browser of Abap workbench . Open for table TSTC which shows all Tcode and search Z* to display all Z t-code, programs, screens and description.

Accepted Solutions (0)

Answers (3)

Answers (3)

kiran_angar
Explorer

three  options:
1. Usually if we know the output type, then we got to TNAPR table and find which program is triggering the output and SMARTFORM.

2. Sometime if you know the closest name of smartform , then check table STXFADM - this will have all the smartforms read the relevant .

3. Using tcode - code_scanner  search in Z* package - CALL FUNCTION - SSF_FUNCTION**

RaymondGiuseppi
Active Contributor

To find the SmartForms used in your reports, perform a where-used search on the SSF_FUNCTION_MODULE_NAME function module call, filtering by package.

  • The form name is passed to the FORMNAME parameter, which can be defined as a constant elsewhere in the code, but can also be calculated or read from some Customizing table.
kiran_angar
Explorer
0 Likes

Try
1. Usually if we know the output type, then we got to TNAPR table and find which program is triggering the output and SMARTFORM.
2. Sometime if you know the closest name or Desc of smartform , then check table STXFADM - this is master table. 
3. Using tcode - code_scanner  search in Z* package - search CALL FUNCTION - SSF_FUNCTION**