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

Abap Code Menaing

Former Member
0 Likes
640

Hi Gurus,

Can Somebody give me the meaning of the following ABAP code:

CALL FUNCTION 'RSAU_READ_MASTER_DATA'

EXPORTING

I_IOBJNM = i_iobjnm

I_CHAVL = l_chavl

I_DATE = i_date

I_ATTRNM = i_attrnm

IMPORTING

E_ATTRVAL = e_attrval

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
588

Hi,

This FM is reading the attribute value of i_attrnm on the charateristic i_iobjnm.

Parameter i_chavl is seperated by space, first the value of your compounding characteristic, and then the value of your infoobject

Regards,

Satish

3 REPLIES 3
Read only

naimesh_patel
Active Contributor
0 Likes
588

Calling This FM and retriving data in the E_ATTRVAL.

Regards,

Naimesh Patel

Read only

Former Member
0 Likes
588

Hi Stalin,

It is the call to the FM 'RSAU_READ_MASTER_DATA'. You can see the FM in transaction SE37.

Regards,

Atish

Read only

Former Member
0 Likes
589

Hi,

This FM is reading the attribute value of i_attrnm on the charateristic i_iobjnm.

Parameter i_chavl is seperated by space, first the value of your compounding characteristic, and then the value of your infoobject

Regards,

Satish