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

help need

Former Member
0 Likes
454

hi friends,

Could u please send me the details

in report list

Ex:

Storage Type:1,2,3-----10.

this has to be displayed as the header for the report and this storage type is a selection-screen select-option

if i give the select-option in betwen the 1 and 10 all the storage types to be displayed as given above .

How to do this Plaese suggest me

Regards

Siri

3 REPLIES 3
Read only

Puneet_Gupta
Contributor
0 Likes
408

Hi Siri,

You will have to select all the entries from the master table into an internal table and then display the entries from your internal table.

eg: select lgtyp from t301 into table itab where lgtyp in s_lgtyp.

loop at itab.

write : itab-lgtyp.

endloop.

Thanks,

Puneet

Read only

Former Member
0 Likes
408

Dear Sireesha,

After selection-screen input, get the data from database using select statement as given above and format it as you like into a variable. Put WRITE statement under TOP-OF-PAGE event.

Regards,

Prasanth

Read only

Former Member
0 Likes
408

Hi,

In the TOP-OF-PAGE event, loop at the selection table (select-options table) and write the high and low value.

Also calculate the intervals.

reward if helpful.

Regards