Hi,
i have made a particular field on the output screen hotspot enabled.Now when i click on this field i need the data to be displayed from an internal table in an interactive list.Please help me in how to do this.Please see my simple code below.
Points Assured.
data : itab type standard table of ekko,
itab1 type standard table of mara.
select * from ekko up to 5 rows into table itab.
select * from mara up to 5 rows into table itab1.
data: Errors type char15 value 'Failed entries',
Success type char20 value 'Successful entries'.
write :/ 'ERRORS',errors color 6 inverse off hotspot on.
*when this hotspot is clicked table itab displayed as an interactive list.
write :/ 'SUCESS',SUCCESS color 5 inverse off hotspot on.
*when this hotspot is clicked table itab1 displayed as an interactive list.