cancel
Showing results for 
Search instead for 
Did you mean: 

how ti find the correspoding smartform?

Former Member
0 Kudos

Hi

how ti find the correspoding smartform? for a particular FM Is there any table??

I have an FM /1BCDWB/SF00000181 like this .How to find the corresponding smartforms name for it?

Regards

laxman

Accepted Solutions (1)

Accepted Solutions (1)

naimesh_patel
Active Contributor
0 Kudos

GO to SE16.

Open Table STXFADMI.

Put the last Digits after the SF into FMNUMB.

Run it.

Field FORMNAME will give you the name of the SMARTForm.

For your example you need to enter '00000181' into FMNUMB.

Regards,

Naimesh Patel

Former Member
0 Kudos

Hi

Check in this tables U will get solution

STXFADMI

RS38L_FNAM

TCMS_SMT_FRM

Each smartform will have a unique number assicaited with it which is found in the table STXFADMI. number is concatenetd to '/1BCDWB/SF' to get the FM name.

So if in a program you are specifying a function name it will point to the smartform only.

Regards

Pavan

Answers (3)

Answers (3)

marius_greeff
Active Participant
0 Kudos

Hi,

Use the numeric last part of the FMOD name and select from table STXFADMI.

FMNUMB = '00000181'

Hope this helps.

Regards,

Marius

Former Member
0 Kudos

Hii

u can get thru TNAPR ,TTXFP tables

reward point if useful

regards

Jaipal

marius_greeff
Active Participant
0 Kudos

Hi,

If you open the FMOD in SE37 you can go to Attributes. Double Click the main program near the bottom right. It will open and list a couple of includes. Open the one at the bottom ending with 'F01'. The very first line is a note to wich form the FMOD belongs. You can even use this to place soft break points in the code from the form if you search for 'NODE' will be all the code lines in the form.

Regards,

Marius