‎2008 Jul 28 5:15 PM
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
‎2008 Jul 28 5:17 PM
‎2008 Jul 28 5:18 PM
Hi,
I mean I need the logic to populate the values.
Regards,
Srik
‎2008 Jul 28 5:29 PM
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.
‎2008 Oct 15 7:40 AM