‎2006 Nov 01 2:26 PM
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?
‎2006 Nov 01 2:31 PM
‎2006 Nov 01 2:31 PM
‎2006 Nov 01 3:14 PM
Close, but not quite. I've got serveral sapscripts that I know exist and do not appear in this table. Any other suggestions?
‎2006 Nov 01 3:47 PM
‎2006 Nov 01 2:32 PM
Hi Thomas,
Check the table 'TNAPR', the field TNAPR-FONAM is the custom spascript or smartform name.
Regards,
Satya.
‎2006 Nov 01 4:05 PM
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*
‎2006 Nov 01 5:31 PM
I found the answer, table TADIR with OBJECT = "FORM".
Thanks for the updates.
‎2006 Nov 01 5:38 PM