Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Sapscript Identification

Former Member
0 Likes
839

I have a requirement where I have to scan all custom sapscripts and smartforms for instances of hard coding. Can anyone tell me the SAP tables that contain the sapscript/smartform names?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
805

Hi

perhaps table STXFADM

Regards

Bernd

7 REPLIES 7
Read only

Former Member
0 Likes
806

Hi

perhaps table STXFADM

Regards

Bernd

Read only

0 Likes
805

Close, but not quite. I've got serveral sapscripts that I know exist and do not appear in this table. Any other suggestions?

Read only

0 Likes
805

Hi

try STXH

Regards

Bernd

Read only

Former Member
0 Likes
805

Hi Thomas,

Check the table 'TNAPR', the field TNAPR-FONAM is the custom spascript or smartform name.

Regards,

Satya.

Read only

TuncayKaraca
Active Contributor
0 Likes
805

Steve,

Use <b>STXH</b> table for SAPscript Forms.

STXH-TDOBJECT = 'FORM'.

STXH-TDNAME = Z*

STXH-TDID = 'DEF'.

TDSPRAS = sy-langu.

Use <b>STXFADM</b> table for Smartforms.

STXFADM-FORMNAME = Z*

Read only

Former Member
0 Likes
805

I found the answer, table TADIR with OBJECT = "FORM".

Thanks for the updates.

Read only

0 Likes
805

Steve,

Yes, the best answer is TADIR. You are right!