‎2010 Aug 10 8:46 AM
What is use Option and pass by value in Function moduel-->import tab ?
what will be happen when i check Option checkbox and Pass by value check box ?
what is standard method of checking or unchecking this two check boxes ?
Moderator message: please search for information and try yourself before asking.
locked by: Thomas Zloch on Aug 10, 2010 10:28 AM
‎2010 Aug 10 8:56 AM
Hi!
Import tab is used for passing values from the caller ABAP code to your function module.
Simply enter a row into your importing parameters:
PAR TYPE CHAR5.
In your function module you'll be able to use this parameter, but you can't change it, because it's only an importing parameter.
If you set the "optional" checkbox, you can call your FM, without this parameter. If it is uncehcked, you must call this FM with this parameter.
Pass by value or reference. There not many differences between these option, but you can't use the reference for an RFC type FM.
Regards
Tamá
‎2010 Aug 10 9:06 AM