‎2007 Dec 13 9:26 AM
Hello Friends,
I have a program called ZMMINV1 which is using one smartform for printing invoice, currently I do not know the smartform name so that I can look into it and make some changes.
My question is, how will I come to know for the program ZMMINV1 which smartform is being used?
Please help me.
Thanks,
Shreekant
‎2007 Dec 13 9:29 AM
Hi,
In coding there must be one FM SSF_FUNCTION_MODULE_NAME which uses form name otherwise check table TNAPR
Regards,
Prashant
‎2007 Dec 13 9:29 AM
Hi,
In coding there must be one FM SSF_FUNCTION_MODULE_NAME which uses form name otherwise check table TNAPR
Regards,
Prashant
‎2007 Dec 13 9:42 AM
Use Fm 'SSF_FUNCTION_MODULE_NAME'
put a break-point on this select query in the function module.
select single lastdate lasttime
from stxfadm
into (l_sf_udat, l_sf_utime)
where formname = formname.
forname(name of the function module)
‎2007 Dec 13 9:46 AM