I have an ALV report using the new ALV object model . In the ouput of report I am outputting some class names .
I have made the class column cell type hot spot . I am using method on_link_click(event handler ) to respond to the event
FIELD-SYMBOLS <fs_line> TYPE /evuit/devt_err_final.
READ TABLE my_lines ASSIGNING <fs_line> INDEX row.
SET PARAMETER ID 'CLASS' FIELD <fs_line>-class .
CALL TRANSACTION 'SE24' AND SKIP FIRST SCREEN.
This is working but the problem is the call transaction goes only till the SE24 screen . I want to skip the first screen ie
the class should be taken in the display mode inside .
How is it possible?
Thanks
Arshad