‎2008 Sep 18 12:50 PM
Hello,
I have a query that holds data in all columns excepting one.
In the END_OF_SELECTION (before list) I would like to loop the resulting query list and update the empty column.
The question is how to find the name of the internal table that will be displayed in the resulting list.
if populating the list should not be done in other event than END_OF_LIST(before list) please give me a hint *
Thank you.
‎2008 Sep 18 2:00 PM
Hi...
DEBUGGUGING with watch point can give you HINt as well as SOLUTION.
Try once,
Thanks,
Naveen.I
‎2008 Sep 18 1:49 PM
Hi
suppose you retrive data in <itab> with header line.
now in
START-OF-SELECTION.
loop at itab.
itab-empty = ' hh hghj '.
append itab.
endloop.
end-of-selection.
IT will fill a same value in all rows of that coloumn.
if you want different values.
use selection screen.
Edited by: swati gupta on Sep 18, 2008 2:50 PM
‎2008 Sep 18 1:58 PM
Hi,
I think no internal tables are used in Queries, instead field groups are used. Try to check which field group is used for your requirement, and try to add one more field to that field group then make change the value.
Rgds,
Bujji
‎2008 Sep 18 2:00 PM
Hi...
DEBUGGUGING with watch point can give you HINt as well as SOLUTION.
Try once,
Thanks,
Naveen.I