cancel
Showing results for 
Search instead for 
Did you mean: 

What is rs38l_fnam?

Former Member
0 Kudos

Hai Gurus,

In smartforms iam using this <b>rs381_fnam</b> in the program. But when we <b>type the function</b> name directly it is <b>not working</b> but when it <b>copy and paste</b> from the original

place it is <b>working</b>. I dont know what is the reason.

So Convey me the reason and also tell <b>how to generate this rs381_fnam function</b>.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi ,

data : w_fm_name TYPE rs38l_fnam

w_smartform TYPE tnapr-sform .

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

formname = w_smartform (variable containing smartform name)

IMPORTING

fm_name = w_fm_name

In place of smartfrom u can directly specify name of smartform in ' ' .

Then u can use CALL FUNCTION w_fm_name

and supply the required parameters.

Regards