blueprism

Password Recovery in Blueprism

社会主义新天地 提交于 2021-01-28 18:47:49
问题 I have username admin. But now I forget my password.I want to reset my password in blue prism. How to recover my password? 回答1: This isn't the official script distributed by Blue Prism (as @Jerry pointed out the existence of), but one I've used against several installations to force a reset of the password. Blue Prism v6 This finds the user with the username admin and resets their password back to the original admin string. It will force a password change for admin on their next logon. USE

How to change column data type in a data table using vb.net

醉酒当歌 提交于 2021-01-27 13:03:40
问题 How can I change the data type of data column from an input data table (already filled) in VB.NET, then I'll put the code in a Blue Prism Code Stage where I have in input: Name of the field (column) that I want to change the data type The data type that I want to convert Input Collection (data table) Example: Dim InputDT As New DataTable InputDT.Columns.Add(New DataColumn("test")) dt.Columns("test").DataType = GetType(Date) Thanks 回答1: If the DataTable is already filled with data, you cannot

Unable to Invoke Inserted Javascript Fragment

谁说胖子不能爱 提交于 2020-08-19 05:38:05
问题 I am attempting to insert a Javascript fragment into a webpage and then invoke it using blue prism. The purpose of this is to analyse what elements are returned from a search to determine where to go next in the overall process flow. I have tested the Javascript code on the intended website using the IE 11 developer console and it works without issue. The code is below in case it is useful. function includes(stringToCheck, CharacterToSearchFor) { var found = new Boolean(); var splitString =

Sorting query output by Month name

会有一股神秘感。 提交于 2020-06-17 09:08:47
问题 I am trying to extract values from Excel using an SQL Query, but what I've been struggling with is sorting the months in their respective order. Right now the table is being sorted A-Z, I tried playing around with DATEPART , but was not very successful as I was getting an Int16 error. Select F1, SUM(F2), ROUND(SUM(REPLACE(F3, ',', '.')), 2), ROUND(SUM(REPLACE(F4, ',', '.')), 2) FROM [Sheet1$] WHERE F1 IN ('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September',

how to pass the collections data from process studio to object studio using input and output paramters in blue prism

我怕爱的太早我们不能终老 提交于 2020-06-09 07:04:47
问题 Creating a demo process for calling BP travels VBO in Blue Prism. Want to capture the data in the create quote tab using capture collection in Process Studio and pass the data to a collection inside an object in Object Studio. 回答1: First capture the data in the "create quote" tab into a collection item in your process. Then go to the object in Object Studio and inside the Start stage, Add a new input: In the object, create a collection item and call it the same as the collection item in the

nternal : Failed to perform step 1 in Navigate Stage 'XXXX' on page 'XXXX' - Not Connected

我是研究僧i 提交于 2020-01-15 08:52:28
问题 I am getting "Not Connected" issue while executing a blue prism object. Currently, I'm working for browser application and I have given browser URL and window title in application modeler. If I launch the application by navigation stage it's working fine but I'm expecting like already running browser we need to attach and has to do some automation operations on it. We tried with navigation stage with actions attach/Active application, getting issue "Not connected". Can anyone help on this

Enabling SAP mode for SAP Logon Pad in Blue Prism

跟風遠走 提交于 2020-01-02 23:11:51
问题 I followed the below steps to enable client and server side settings for SAP, hoping that this would enable the SAP mode in Blue Prisms. Even after executing the below steps and then restarting both Blue Prism and SAP logon pad, I don't see the SAP mode in blue prism. Any suggestions on what might be happening? I am still only seeing the three default modes - Win32, Accessibility and Region mode. i. Enabling Client-Side Scripting Start the SAP Logon and log in to the SAP server. Click the

Blue Prism applicaton modeler fails to identify authentication pop up window on firefox

﹥>﹥吖頭↗ 提交于 2019-12-25 02:28:21
问题 I am trying to automate a web application using firefox on blue prism. When I use the application modeler to launch the web application, first it is asking for credentials to login on a pop up window. Application modeler cannot identify this pop up has appeared. So I cannot automate the login. However after login manually, I can spy other elements in the application as normal. Any idea on how to automate the pop up window asking for user name and password? 回答1: I assume that you specified

Declaring And Calling Methods in Blue Prism Global Code Stage

孤街浪徒 提交于 2019-12-25 00:56:16
问题 I am a Blue Prism RPA Developer and I want to create methods in my global code and call them from other code stages. In Global code info page, it is stated that this could be done but i could not find a satisfactory resource on the subject. Can anyone share a syntax rule set, maybe a sample global code and code stage code sniplets or guide me in the direction? I use C# and i would much appreciate responses in C# Note: I am not from a developer background, i have elementary coding know how but

'Internal : End of subsheet without corresponding start' in blue prism

梦想与她 提交于 2019-12-24 22:12:42
问题 I encountered an error 'Internal : End of subsheet without corresponding start' in blue prism after stepping the end stage in process studio,can anyone knows what the error means and when it comes? 回答1: This happens when BP "gets lost" after the end of a page because it was not directed to the page using a Page Reference stage to begin with.It can happen if for example you are using Set Next Stage a bit too freely jumping between pages instead of following a more linear approach to debug your