cancel
Showing results for 
Search instead for 
Did you mean: 

To call transaction FBU3 from alv list display

0 Kudos

I want to call a transaction FBU3 from an alv. The parameter in the first screen of the transaction does not have PID . So please suggest on how to pass values from alv to the parameter on the first screen of FBU3.

Accepted Solutions (1)

Accepted Solutions (1)

Sandra_Rossi
Active Contributor
0 Kudos

use call transaction in BDC mode, see [wiki BDC FAQ - Is it possible to simulate AND SKIP FIRST SCREEN using BDC?|http://wiki.sdn.sap.com/wiki/display/ABAP/BatchInputFAQ#BatchInputFAQ-IsitpossibletosimulateANDSKIPFIRSTSCREENusingBDC%3F]

0 Kudos

Thanks Sandra Rossi . My issue is resolved.

Answers (1)

Answers (1)

Former Member
0 Kudos

Another solution is:

        set parameter id 'VRG' field <alv>-BVORG.
        call transaction 'FBU3' and skip first screen.

0 Kudos

it worked