Robotic Process Automation (RPA)

Robotic Process Automation (RPA)

Come for answers. Stay for best practices. All we’re missing is you.

 View Only
  • 1.  Bot is getting stuck in SAP

    Posted 12/10/21 05:55 AM
    HI Team,
    I am using IBM RPA(WDG) tool to automate a process in SAP which will export a table data based on the filter range provided. The bot is getting stuck at the point where we have to click Allow on "SAP GUI Security window" while importing and exporting the file.

    I have used any option like find windows, attach window, wait for window to appear etc. Wile used key strokes to click on Allow one day it worked and next day it stopped working

    Any one has an idea on how to resolve this issue.

    Regards,
    Muralidhar


    ------------------------------
    Muralidhar Vankamaddi
    ------------------------------


  • 2.  RE: Bot is getting stuck in SAP

    Posted 12/14/21 08:33 PM
    Hi team
    It seem it is a bug in the tool (Ticket num TS007781283).

    the alternative for now is put in delay and use keys strokes to click on Allow or do VbScript to click on Allow. 

    Put delay and use Run Windows Script->VBscript and paste the below code.

    Set oShell = CreateObject("WScript.Shell")
    Do
    Loop While Not oShell.AppActivate("SAP GUI Security")

    If oShell.AppActivate("SAP GUI Security") Then
    oShell.SendKeys "%A"
    End If.


    ------------------------------
    Muralidhar Vankamaddi
    ------------------------------