‎2007 Mar 28 3:59 PM
HI
I AM NEW TO ABAP IN INTERACTIVE REPORTING I HAVE TWO FILEDS IN THE OUTPUT OF A LIST WHEN I CLICK ON THE FIRST FIELD IT HAS TO GO TO 'ME23N' TRANSC WHEN I CLIC ON SECOND FILED IT HAS TO GO TO 'VLO3' TRANSACTION HOW IT WORKS .PLEASE HELP ME.
THANKS.
‎2007 Mar 28 4:02 PM
Hi,
Please check this link for sample interactive report.
http://www.sap-img.com/abap/an-interactive-alv-report.htm
Regards,
Ferry Lianto
‎2007 Mar 28 4:18 PM
hi,
declare two extra varibles in ur report,
DATA: V_FNAM (10), V_FVAL(10).
WRITE THE BELOW LOGIN IN THE CORRESPONDING CASE STATEMENT
SUPPOSE
WHEN 3.
GET CURSOR FIELD V_FNAM VALUE V_FVAL.
SET PARAMETER ID 'FIRST THREE LETTERS OF THE FILED' FIELD V_FVAL.
CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
repeat the same logic for the other also
if u find it useful mark the points
~~Guduri