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 disappear

Former Member
0 Likes
777

I have one ABAP program Z1 calling smartform ZSF1, but I searched in TNAPR table, and find no such smartform, my smartform probably use dynamic calls, the function module is /1BCDWB/SF00000228.

My objective is find all the program using smartform ZSF1, how to achieve this, thanks

6 REPLIES 6
Read only

madhu_vadlamani
Active Contributor
0 Likes
737

Hi Siv,

Just check all forms and their driver programs are stored in TNAPR table. Elaborate clearly what you need.

Regards,

Madhu.

Read only

Former Member
0 Likes
737

Hi Siv,

Use the table HRFPM_SMARTFORMS for getting the amrtforms and reports name.

Or Try where used list for Function Module SSF_FUNCTION_MODULE_NAME. This function module has to be used to call Smart Form from any program. You can then search for particular Smart Form name in those programs.

Regards,

Simi A M

Read only

0 Likes
737

does not works, the HRFPM* table contains zero entry, smartform generate /1BCDWB/SF00000**** function module, in where list, no program is used

Read only

0 Likes
737

Do a where used list on FM SSF_FUNCTION_MODULE_NAME for list of Z programs.

Then in those programs SEARCH for ZSF1 text.

Read only

0 Likes
737

I have over 500 Z programs appeared in function module SSF_*, if I double click one Z program, it shows "

call function "SSF_*"

exporting formname=C_name.........

I click another z program, it shows: exporting formname=lf_forname.

it looks like lf_forname is variable

So how can I know inside these 600 Z programs which are the ones used form ZSF1?

Read only

0 Likes
737

Hi Siva,

In the list of all Z programs, some where it will be mention the smartform name as constant.

In the FM SSF_FUNCTION_MODULE_NAME we should pass the smartform name as import parameter.So some where it will mention the smartform name in the Z program.

Check out that one.

Regards,

Simi A M