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

Infotype Subtype

Former Member
0 Likes
471

Hi Experts,

I need to get the values for all the subtypes of two different infotypes.

For eg: 71,72,73 are the absence type of the infotype 2006,

34,45,56 are the attendance type of the infotype 2007.

I need to get the values from both the infotypes for all the subtypes.

Regards,

Srik

4 REPLIES 4
Read only

Former Member
0 Likes
440

hi check the table T591A

Read only

0 Likes
440

Hi,

I mean I need the logic to populate the values.

Regards,

Srik

Read only

0 Likes
440

tables:t591a .

data: begin of it_t591a occurs 0,

infty like t591a-infty,

subty like t591a-subty,

end of it_t591a.

select INFTY

SUBTY

from T591A

into table it_t591a

where infty = '0006'.

loop at it_t591a .

write:/ it_t591a-infty,

it_t591a-subty .

endloop.

Read only

Former Member
0 Likes
440

done