2006 Aug 30 7:07 PM
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
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
2006 Aug 31 12:57 AM
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
2006 Aug 31 5:45 AM
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
2006 Aug 31 5:59 AM
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
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |