Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function module import tab

Former Member
0 Likes
795

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

2 REPLIES 2
Read only

Former Member
0 Likes
525

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á

Read only

Former Member
0 Likes
525

Hi Jim,

Try press F1 on these fields...

KR

Veeranji Reddy P.