Application Development 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: 

How to obtain the name of the SmartForm?

Former Member
0 Kudos

Hi all,

How can I get to know the name of the smartform when i only have the transaction code which simulates it.Need to do changes to alter the output but i dont have the name of the smartform.

Help.

4 REPLIES 4

Former Member
0 Kudos

You can search in the program code for:

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

and check the form name used in parameter.

Or you can put a break-point in the fm SSF_FUNCTION_MODULE_NAME to check the SF name.

Former Member
0 Kudos

Hi,

If the program is the custom build program (Y/Z program, then just open the program and check for the constants or text elements where you can have the form name. This will be associated with SSF_FUNCTION_MODULE_NAME function module. If this is the SAP program, then please ask the functional person for the form name, since s/he configures the form name in the systems. If you want to know yourself, then you can use SPRO transaction and check within that Business unit about the form name.

Regards,

Hardik Mehta

Venkat_Sesha
Advisor
Advisor
0 Kudos

If you know the Transaction Code

Check the same in the table TSTCP and see if you got something in the Second field...

And It will contain the name and from there u got what you want...

If you didnt found there.. Then Check the Table TNAPR..

Hope this helps...

marcio_medeiros
Explorer
0 Kudos

Hi Dharmin,

If you have the code of the function to simulate the smartforms print, you need do this steps:

 

For Example: /1BCDWB/SF00000057

Part 1:

/1BCDWB/SF

Part 2:

00000057

Enter in the  Table STXFADMI

With >> FMNUMB = 00000057

The Return:

Field: FORMNAME  (Is the name of the SmartForms)

The changes of the output and input is done in transaction SMARTFORMS, you can't change directly in Function.