26-09-19 05:20 PM
28-09-19 07:30 AM
30-09-19 09:20 AM
Hi Aarti,
Do You mean Status Bar in SAP? If yes then You can write Your own code stage to read it:
Dim SapGuiAuto As Object Dim session As Object Dim Application As Object Dim Connection As Object SapGuiAuto = GetObject("SAPGUI") Application = SapGuiAuto.GetScriptingEngine Connection = Application.Children(0) session = Connection.Children(cInt(N_In_Session_Number)) T_Out_Status = session.findById(T_In_ID).messagetype
Inputs
N_In_Session_Number - number corresponding to sap session being used
T_In_ID - ID of SAP element
As an output in T_Out_Status You should get one of the following values:
S - Success
W - Warning
E - Error
A - Abort
I - Information
Best regards
Michal