Blue Prism,UIPath,Automation Anywhere,Workfusion

Robotic process automation(RPA) is an emerging form of business process automation technology based on the notion of software robots or artificial intelligence(AI) workers.In traditional workflow automation tools, a software developer produces a list of actions to automate a task and interface to the back-end system using internal application programming interfaces (APIs) or dedicated scripting language. In contrast, RPA systems develop the action list by watching the user perform that task in the application's graphical user interface (GUI), and then perform the automation by repeating those tasks directly in the GUI. This can lower the barrier to use of automation in products that might not otherwise feature APIs for this purpose

SAP GUI

SAPGUI is the GUI client in SAP ERP's 3-tier architecture of database, application server and client. It is software that runs on a Microsoft Windows, Apple Macintosh or Unix desktop, and allows a user to access SAP functionality in SAP applications such as SAP ERP and SAP Business Information Warehouse (now called SAP Business Intelligence). It is the platform used for remote access to the SAP central server in a company network.

Microsoft Excel

VB Script,Excel VBA,Excel Macro

VB Script

VB Script

Lifecycle of RPA

Lifecycle of RPA-:A typical life cycle of RPA has 4 phases. Analysis, Bot Development, Testing, and Support and Maintenance

Microsoft SQL Server

Microsoft SQL Server is a relational database management system developed by Microsoft. As a database server, it is a software product with the primary function of storing and retrieving data as requested by other software applications—which may run either on the same computer or on another computer across a network (including the Internet).

Sunday, 17 February 2019

How to Change Sleep Mode of System



SetwshShell=WScript.CreateObject("WScript.Shell")
Do
WScript.Sleep
60000
wshShell.SendKeys
"{NUMLOCK}"
wshShell.SendKeys
"{NUMLOCK}"
loop

How to Unhide Sheet all tab from Excel

OnErrorResumeNext
'vMasterFilePath=WScript.Arguments(0)
'vLogPath=WScript.Arguments(1)

vMasterFilePath="C:\Users\admin\Desktop\Operation\Data.xlsx"
vLogPath="C:\Users\admin\Desktop\Operation\Log.txt"

'For
writethelog'
Set
objFS=CreateObject("Scripting.FileSystemObject")
Set
FSO_Handle=objFS.OpenTextFile(vLogPath,8,True)

Set
objExcel=CreateObject("Excel.Application")
objExcel.DisplayAlerts
=False
objExcel.Visible
=True
Set
objWorkbook1=objExcel.Workbooks.Open(vMasterFilePath)


For
EachwksInobjWorkbook1.Worksheets
MsgBox("sheet
name"&wks.Name)

If
objExcel.Worksheets(wks.name).visible=FalseThen
MsgBox(wks.Name)
objExcel.Worksheets(wks.name).visible=True
count=count+1
End
If

If
wks.autofilterModeThen
wks.autofilterMode
=False
End
If
objExcel.Worksheets(wks.name).range("A1:BY100").ClearOutline

Next

objWorkbook1.Save
objWorkbook1.Close
True
objExcel.Quit