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

Regarding data retrival

Former Member
0 Likes
636

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
Read only

abdulazeez12
Active Contributor
0 Likes
602

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

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 REPLY 1
Read only

abdulazeez12
Active Contributor
0 Likes
603

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