‎2007 Nov 06 8:20 AM
Hi Friends,
Please tell me how to set up trigger steps to run BMV0 automatically after a program.
Thanks,
Gokul
‎2007 Nov 06 8:23 AM
If that is a z-report you can use CALL TRANSACTION or SUBMIT statements.
‎2007 Nov 06 8:51 AM
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.'
‎2007 Nov 06 8:27 AM
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.