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: 

Interactive report for vendorwise purchase order details

Former Member
0 Kudos

Hi Experts,

I am trying to create vendor wise purchase order interactive report, if i click any of vendor detail it has to call display vendor screen for selected vendor or if i click any of purchase details it has to open purchase order details..

can any body explain...

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi arun,

use at line-selection

example,

-


at line-selection.

if sy-ucomm = 'PICK'.

if wa_lifnr is not initial.

set parameter id 'LIF' field wa_lifnr.

set parameter id 'BUK' field wa_bukrs.

set parameter id 'EKO' field wa_ekorg.

call transaction 'XK03'. endif.

if wa_ebeln is not initial.

set parameter id 'BES' field wa_ebeln.

call transaction 'ME23N' and skip first screen.

endif.

endif.

-


Regards,

Logan

1 REPLY 1

Former Member
0 Kudos

hi arun,

use at line-selection

example,

-


at line-selection.

if sy-ucomm = 'PICK'.

if wa_lifnr is not initial.

set parameter id 'LIF' field wa_lifnr.

set parameter id 'BUK' field wa_bukrs.

set parameter id 'EKO' field wa_ekorg.

call transaction 'XK03'. endif.

if wa_ebeln is not initial.

set parameter id 'BES' field wa_ebeln.

call transaction 'ME23N' and skip first screen.

endif.

endif.

-


Regards,

Logan