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

trigger BMV0

Former Member
0 Likes
554

Hi Friends,

Please tell me how to set up trigger steps to run BMV0 automatically after a program.

Thanks,

Gokul

3 REPLIES 3
Read only

Former Member
0 Likes
519

If that is a z-report you can use CALL TRANSACTION or SUBMIT statements.

Read only

0 Likes
519

Hi Rama,

we tried to schedule the transaction (bmv0) from background after the report program(Z program) .but got an error 'its not a report program.cannot be scheduled.'

Read only

former_member480923
Active Contributor
0 Likes
519

Try this code:

SET PARAMETER ID 'BM6' FIELD w_jobname.
CALL TRANSACTION 'BMV0' AND SKIP FIRST SCREEN.

or at the End of Selection event Write this piece of code:

END-OF-SELECTION.

LEAVE TO TRANSACTION 'BMV0' AND SKIP FIRST SCREEN.

Hope That Helps

Anirban M.