Application Development 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: 

RE_DATA

Former Member
0 Kudos

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

uwe_schieferstein
Active Contributor
0 Kudos

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

uwe_schieferstein
Active Contributor
0 Kudos

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

Former Member
0 Kudos

THANKS