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

Smartforms

Former Member
0 Likes
400

How can I know the FM related to the Smartform?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
351

Hi Bharat,

<b>SSF_FUNCTION_MODULE_NAME</b> is the function module to get the function module for a smart form.

Check these function modules realted to Smart forms

SSF_CATALOG

SSF_CLOSE

SSF_CREATE_COMPOSER_INPUT

SSF_FIELD_LIST

SSF_FUNCTION_MODULE_NAMESSF_CATALOG

SSF_CLOSE

SSF_CREATE_COMPOSER_INPUT

SSF_FIELD_LIST

SSF_GET_DEVICE_TYPE

SSF_CHECK_EXTERNAL_NAME

SSF_CHECK_INTERNAL_NAME

SSF_CHECK_VARIANT_NAME

Thanks,

Vinay

3 REPLIES 3
Read only

Former Member
0 Likes
351

go to smartforms transaction.

Give the name of the form and press display.

If the smartform is already active, Chose from menu:

Environment->Function Module name.

Regards,

Ravi

Read only

Former Member
0 Likes
352

Hi Bharat,

<b>SSF_FUNCTION_MODULE_NAME</b> is the function module to get the function module for a smart form.

Check these function modules realted to Smart forms

SSF_CATALOG

SSF_CLOSE

SSF_CREATE_COMPOSER_INPUT

SSF_FIELD_LIST

SSF_FUNCTION_MODULE_NAMESSF_CATALOG

SSF_CLOSE

SSF_CREATE_COMPOSER_INPUT

SSF_FIELD_LIST

SSF_GET_DEVICE_TYPE

SSF_CHECK_EXTERNAL_NAME

SSF_CHECK_INTERNAL_NAME

SSF_CHECK_VARIANT_NAME

Thanks,

Vinay

Read only

ferry_lianto
Active Contributor
0 Likes
351

Hi Bharat,

You can use FM SSF_FUNCTION_MODULE_NAME to find Smartform's FM.

call function 'SSF_FUNCTION_MODULE_NAME'
exporting
formname = formname
importing
fm_name = fm_name
exceptions
no_form = 1
no_function_module = 2
others = 3.
if sy-subrc <> 0.
exit.
endif.

Also you can check table TNAPR to find more information such as print program, form name, etc.

Chcek this link as well.

https://websmp205.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700008423592001

Hope this will help.

Regards,

Ferry Lianto