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

INTERACTIVE REPORTING

Former Member
0 Likes
462

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.

2 REPLIES 2
Read only

ferry_lianto
Active Contributor
0 Likes
435

Hi,

Please check this link for sample interactive report.

http://www.sap-img.com/abap/an-interactive-alv-report.htm

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
435

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