‎2008 May 07 7:05 PM
Hi Guys,
I want to add an OPTIONAL IMPORT parameter. What are the things I need to take care to change and activate the FM, so that the changes does not effect the other programs calling this Z function module.
Thanks,
‎2008 May 07 7:41 PM
since you are going to make it an optional parameter, you will have no problem there. However, you have to make sure that, upon calling this function module, the functionality will not change for the other objects by introducing a new variable.
What to do?
Just add this new parameter, make it optional (mark checkbox) and do the coding.
‎2008 May 07 7:41 PM
since you are going to make it an optional parameter, you will have no problem there. However, you have to make sure that, upon calling this function module, the functionality will not change for the other objects by introducing a new variable.
What to do?
Just add this new parameter, make it optional (mark checkbox) and do the coding.
‎2008 May 07 7:46 PM
Adding one more point,
While raising exceptions to your ootional parameter make sure that
For example XINT is optioanl paramter then
if NOT xint is initial.
" then raise your exception
endif.
a®