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

Supress SAP Inofrmation while executing VBA script

Former Member
0 Likes
732

Hello all,

I have an scripting code with vba that is working fine for some transactions, however for ZM52 transaction I am receiving a pop up information window when executing the report and for that reason is not working.

The problem is that is a big report, which takes time to download and this pop up is showing more than once.

Is there any option to "say" to SAP to avoid / omit / supress/ this kind of information?

Any help will be very appreciated!

Thank you all

1 ACCEPTED SOLUTION
Read only

Former Member
630

I have found out a solution by using the following code:

While objSess.ActiveWindow.Text = "Information" 
objSess.findById("wnd[1]/tbar[0]/btn[0]").press 
Wend
1 REPLY 1
Read only

Former Member
631

I have found out a solution by using the following code:

While objSess.ActiveWindow.Text = "Information" 
objSess.findById("wnd[1]/tbar[0]/btn[0]").press 
Wend