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: 

Hiding pop up messages during submiting a program

Former Member
0 Kudos

Hello All,

I am using 'submit' in first report (program1) to call another report (program2) and returning.

In the execution of the program2 seperatly, we get a information message popup.

Now if I execute the program1 (indirectly executing program2),

I get the same information message popup.

How could hide the information message popup from appearing?

Please help.

Thanks and Regards,

Kunal.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Execute the program in background. And Submit statement allows executing the program in background..so see its syntax for further details

Ex.

Submit prog_name via job lv_job_name number n.

You'll have to use the JOB_OPEN function to get number n.

~Piyush Patil

2 REPLIES 2

Former Member
0 Kudos

Execute the program in background. And Submit statement allows executing the program in background..so see its syntax for further details

Ex.

Submit prog_name via job lv_job_name number n.

You'll have to use the JOB_OPEN function to get number n.

~Piyush Patil

0 Kudos

Hello Piyush,

Thanks for the solution.

But I can't do the same because, in program2, i am uploading and downloading to the presentation server, which is not possible in the background job.

Please suggest what should i do.

Thanks,

Kunal.