Application Development 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: 

query list

Former Member
0 Kudos

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.

1 ACCEPTED SOLUTION

naveen_inuganti2
Active Contributor
0 Kudos

Hi...

DEBUGGUGING with watch point can give you HINt as well as SOLUTION.

Try once,

Thanks,

Naveen.I

3 REPLIES 3

Former Member
0 Kudos

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

Former Member
0 Kudos

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

naveen_inuganti2
Active Contributor
0 Kudos

Hi...

DEBUGGUGING with watch point can give you HINt as well as SOLUTION.

Try once,

Thanks,

Naveen.I