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

RE_DATA

Former Member
0 Likes
404

What is the meaning of re_data.

CALL METHOD wa_items-item->get_data

receiving

re_data = itmdata.

Please provide me some notes on Objects Programming.

Good work will be highly rewarded.

Thanks

1 ACCEPTED SOLUTION
Read only

uwe_schieferstein
Active Contributor
0 Likes
365

Hello Lalit

RE_DATA is the name of the parameter that is RETURNED by the method and RECEIVED by the caller of the method.

On SAP release >= 6.20 you can also use the functional method call because methods which RETURN parameters only return a single parameter (like Java methods):


itmdata = wa_Items-item->get_data( ).

Regards

Uwe

2 REPLIES 2
Read only

uwe_schieferstein
Active Contributor
0 Likes
366

Hello Lalit

RE_DATA is the name of the parameter that is RETURNED by the method and RECEIVED by the caller of the method.

On SAP release >= 6.20 you can also use the functional method call because methods which RETURN parameters only return a single parameter (like Java methods):


itmdata = wa_Items-item->get_data( ).

Regards

Uwe

Read only

Former Member
0 Likes
365

THANKS