Application Development and Automation 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: 
Read only

ABAP Query

Former Member
0 Likes
549

Hi All,

I need one clarification Regarding ABAP Query, i have create a function group using logical Database,abd have assigned it to a user group

i have created a ABAP Query using the above infoset(function Group) and getting the ABAP Query report

the report is comming very fine as SAP list viewer , but i have a requirment where i need the selection screen details to be displayed on the top if my report ,

can any body please suggest me how i can do this in ABAP Query, also let me know where i have to put eh coding for this

Thanks,

Sai

4 REPLIES 4
Read only

Former Member
0 Likes
509

Hi,

In a query, it is not possible to display the selection screen details, above the report list data, like what we display in an ALV report or other classical report.

Selection screen will come first, then the List viewer is displayed,

you can't display the selection screen details on the top of the list.

Regards,

Anji

Read only

0 Likes
509

Hi ,

But in the infoset , there is button called Extras if we click on that and see you can find a tab 'code' in that there is a drop down which has INITIALIZATION, START OF SELECTION, TOP-OF-PAGE etc...

one of my friend suggested that we can write code there in the extras and that will get reflected in the ABAP Query

i tried this but top of page did not get triggered..

please update me if we can do in top-of-page in the

SQ02>Infoset->extras>code--->top-of-page

thanks,

sai

Read only

Former Member
0 Likes
509

saideepak,

This is not possible in ABAP query.Because system will write the code for ALV report.If you like this in ABAP query itself you have create selection screens in infoset level(not in query level) and and write general ABAP ALV code in

START-OF-SELECTION event.

Try with this.

Read only

Former Member
0 Likes
509

Hello sai,

In the 'Extras' tab one can place additional coding or add additional fields but the i don't think its possible to display the selections on top of it. you could probably get the data using ldb_process and display the data in ALV by urself.