Application Development 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: 

calling a standard report from zalv report ?

Former Member
0 Kudos
374

Hi all,

I am creating a zalv report , when the user double clicks a particular line , i have to pass that line customer and company code to fbl5n txn and after passing it, it has to select the 'ALL Items' radio button and should show the report ........... if i use - submit export to list memory.... i could NOTsee the screen but i could see the message at the bottom of the window saying that 2 items displayed .

Can u people tel me how to solve the issue ?

Thanks,

Siva

1 ACCEPTED SOLUTION

Former Member
0 Kudos
161

Try this

DATA: KUNNR TYPE KNA1-KUNNR value '0000100098'.

SET PARAMETER ID: 'KUN' FIELD KUNNR.

CALL TRANSACTION 'FBL5N' AND SKIP FIRST SCREEN.

3 REPLIES 3

Former Member
0 Kudos
161

submit RFITEMAR and return
    with .....

ThomasZloch
Active Contributor
0 Kudos
161

Drop the EXPORTING LIST TO MEMORY addition.

Thomas

Former Member
0 Kudos
162

Try this

DATA: KUNNR TYPE KNA1-KUNNR value '0000100098'.

SET PARAMETER ID: 'KUN' FIELD KUNNR.

CALL TRANSACTION 'FBL5N' AND SKIP FIRST SCREEN.