I have a custom z program which updates custom database table. There is another custom z program, which reads that custom table and generates report. My task is , when some call the report, the custom z another program should tigger and update the custom table and this report program display information. I am sorry for not clearly specifying..
please reply ASAP..
Thanks
Ok.....why do you need to update the custom table in another program? Anyway, you can use the SUBMIT keyword, or call a Function module.
Regards,
Rich Heilman
If I understand clearly, you already have custom program A that updates custom table X. Then you also already have custom program B that reads custom table X and display it as a report.
You need a third custom program C that will do SUBMIT on program A, then submit program B.
Submit A and return.
Submit B.
If program A and B have parameters, create them in program C so that you can pass that parameters into A and B respectively.
Add a comment