‎2007 Jun 25 9:32 AM
Hi Folks!
I have read a XML-File into an internal table. Now I need to validate some of the data. Can somebody please explain me how I can display only a single column of a deep structured itab?
Thanks
Johann
‎2007 Jun 25 9:36 AM
hi
data: iflag type i value 0.
read table itab index ..
if iflag eq 0.
move itab-field to <table of type structure>
loop at <table of type structure> into <wa_area of type structure>
write : wa_area-fields.
endloop
iflag = 1.
end if.
regards
ravish
reward if useful
‎2007 Jun 25 9:33 AM
Hi
Can you give your internal table structure and which field you need?
Regards
Raj
‎2007 Jun 25 9:47 AM
Hi Raj!
I have declared a lot of structures and table types in the DDIC to fill an internal table with data from service-catalogues. Now I need to read the content in a column of the 4th level of depth in my strucuture...
‎2007 Jun 25 9:36 AM
hi
data: iflag type i value 0.
read table itab index ..
if iflag eq 0.
move itab-field to <table of type structure>
loop at <table of type structure> into <wa_area of type structure>
write : wa_area-fields.
endloop
iflag = 1.
end if.
regards
ravish
reward if useful