‎2006 Nov 23 9:49 AM
Hi,
How to find to know a function module whether it is already existing or not?
Thanks in advance.
Regards
Ratna
‎2006 Nov 23 9:50 AM
hi,
go to se37.
give FM name.
rgds
anver
pls cdont open same threds.
‎2006 Nov 23 9:57 AM
Hi,
I want to find all z* funtion module list.
regards
ratna
‎2006 Nov 23 9:58 AM
hi,
go to se37.
give z*
press f4.
u will get all the Fm starting with Z
rgds
Anver
‎2006 Nov 24 11:17 AM
Please mark this answered as U already gt the answer.
‎2006 Nov 23 10:06 AM
Hi
<b>Please check table TFDIR</b>
here if you give a select query
select * from
tfdir
into table i_tfdir
where funcname lile 'Z%'.
you should get the list of function modules
‎2006 Nov 23 12:56 PM
Hey... tell me a simple thing
just enter the<b> Function module name Press "Create" or F5,</b>
if it is already exsted <b>system will give error msg i.e. "FM is already Exist"</b> it means it is already created .
if the system is allows u to create means it is not existed...:)
Bye..
Nary
‎2006 Nov 23 1:09 PM
if u want to check with coding
then use this FM RH_FUNCTION_EXIST
call function 'RH_FUNCTION_EXIST'
exporting
name = 'REUSE_ALV_LIST_DISPLAY'
exceptions
function_not_found = 1
others = 2.
if sy-subrc = 0.
*functin exists
else.
*function module does not exist.
endif.