Hi All,
I would like to ask for tips or possible way on how to display my simple deep structure. please see the structure below.
types: begin of gty_datex,
dextaskid type edextask-dextaskid,
dexproc type edextask-dexproc,
dexstatus type edextask-dexstatus,
end of gty_datex.
types: begin of gty_wflow,
top_wi_id type sww_wi2obj-top_wi_id,
wi_text type swwwihead-wi_text,
wi_stat type swwwihead-wi_stat,
end of gty_wflow.
types: begin of gty_output,
ext_ui type aufk-zzext_ui," NMI
aufnr type aufk-aufnr, "SO Number
ktext type aufk-ktext, "SO Description
datex type standard table of gty_datex,
wflow type standard table of gty_wflow, "workflow status
end of gty_output.
data: gt_output type standard table of gty_output,
I have properly populated the GT_OUTPUT table. Now, my problem is how am i going to display the content of the GT_OUTPUT itab?
Is it possible to display it in ALV? If yes, How can i do that? Basically, this is the ouput i would like to display.
row1 | B | C | 1 | 2 | 3 | aa | bb | cc |
1 | 2 | 3 | aa | bb | cc | |||
1 | 2 | 3 | bb | cc | ||||
row2 | B | C | 1 | 2 | 3 | aa | bb | cc |
1 | 2 | 3 | aa | bb | cc | |||
1 | 2 | 3 | bb | cc |
Thank you in advance.
Have a nice day.
Regards,
Nars.