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: 

Regarding data retrival

Former Member
0 Kudos

Hi,

In my requirement, I have to read the data from <b>HRP5122</b> table and there is one include called <b>HRI5122</b> with in that include I need some fields 'posting_channel' and 'language'.

So how can I read those fields from include.

I am trying to paste screen shots of this req but its not working.

Kindly help me.

Thanks,

Anil

1 ACCEPTED SOLUTION

abdulazeez12
Active Contributor
0 Kudos

Hi

HRPxxxx are OM infotype tables and HRIxxxx are related structures.

You need not do anything special here..

just use the simple select

SELECT 'posting_channel' 'language'

from HRP5122

into table itab

where <conditions>.

Thanks

Shakir

Reward if useful

1 REPLY 1

abdulazeez12
Active Contributor
0 Kudos

Hi

HRPxxxx are OM infotype tables and HRIxxxx are related structures.

You need not do anything special here..

just use the simple select

SELECT 'posting_channel' 'language'

from HRP5122

into table itab

where <conditions>.

Thanks

Shakir

Reward if useful