[转]MS Excel VBO option missing in Blue Prism

本文转自:https://stackoverflow.com/questions/48706743/ms-excel-vbo-option-missing-in-blue-prism

问:

I am trying to learn Blue Prism in order to complete a proof of concept.

I added an action for the purpose of reading an MS Excel. As I understand, first I need to add a "Create Instance" action, but in the drop down the "MS Excel VBO" option itself is missing. The "help" page indicates the VBO may not be properly installed. What to do now?

答:

You have to import the VBO itself first. Once logged into Blue Prism, choose File > Import...:

From the resulting dialog, browse to the VBO folder within the directory in which Blue Prism was installed and open the file called BPA Object - MS Excel.xml. In most cases, the directory in question should be located at a path similar to C:\Program Files (x86)\Blue Prism Limited\Blue Prism Automate\VBO.

After you‘ve successfully imported the object, close and re-open whatever processes/objects you have open to see the MS Excel VBO option in your Action Stage configuration:

原文地址:https://www.cnblogs.com/freeliver54/p/9972174.html

时间: 2024-08-30 14:13:29

[转]MS Excel VBO option missing in Blue Prism的相关文章

[转]Blue Prism Opening a password protected Excel workbook?

本文转自:https://www.rpaforum.net/threads/opening-a-password-protected-excel-workbook.470/ 问: As the title says, how would we open a password protected Excel workbook using Blue Prism? 答: Hi Nick The best approach (which I have used for my developments)

[转]Blue Prism Interview Questions and Answers

本文转自:https://www.rpatraining.co.in/blue-prism-interview-questions/ What is a Visual Business Object? The role of a VBO is to act as an adapter to the user interface of a specific application. To accomplish this,each VBO has three main parts: A connec

[转]Blue Prism Login Agent 使用指导手册

本文转自:https://cloud.tencent.com/developer/news/83035 咳!咳!咳! 第一篇RPA技术文,还是贼拉鸡冻.各位大侠要多多支持啊 1.Login Agent简介 什么是Login Agent呢? Login Agent是BluePrism公司提供的一个独立的插件,用于支持自动化程序与Windows桌面应用程序进行交互的,可以理解为Windows用户登录代理. 为什么要使用Login Agent呢? Blue Prism Server是用来提供服务与Bl

Python 操作 MS Excel 文件

利用 Python 对 Excel 文件进行操作需要使用第三方库: openpyxl,可执行 pip install openpyxl 进行安装 1. 导入 openpyxl 模块 导入 openpyxl 模块后,利用它的 load_workbook() 方法可以打开一个 Excel 文件,该方法使用一个文件名称作为参数,示例如下: >>> import openpyxl >>> wb = openpyxl.load_workbook('example.xlsx') &

关于TOP GP导入导出MS Excel

曾经在專案中曾使用” Apache POI - the Java API for Microsoft Documents”(官網: http://poi.apache.org/) 實現Microsoft Excel檔與TOP GP的互動(導入/匯出), 效果不錯, 供分享! [1] Microsoft Excel  數據導入到  TOP GP (1) 支持Microsoft Excel多個頁簽(Sheet)同時導入. (2) 支援Microsoft Excel局部儲存格的精確獲取及導入. [2]

【转】SSIS 2012 – Package Configurations Menu Option Missing

原文:http://dataqueen.unlimitedviz.com/2012/01/ssis-2012-package-configurations-menu-option-missing/ I’m going to blog this in case anyone else has run into the same issue. I recently tried to create SSIS Package Configurations using SQL Server Data To

作业二: MS Excel

根据作业分配表筛选出相应的班级,并利用邮件合并功能生成学籍卡并上传生成的学籍卡word文件,作业分配表: 学号 姓名 作业班级 201505301 王增辉 机设062 201505302 郭长明 机设061 201505303 王朋辉 机设052 201505304 吕毅良 机设051 201505305 彭华康 机设043 201505306 廖传嘉 机设042 201505307 陈剑锋 机设041 201505308 李翔 机设032 201505309 田晓晨 机设031 2015053

[Blue Prism自学]Attach, Detach, Read and Actions

Detch: 1. Detach is used to disconnect a Business Object from an application 2. The Detach button has "disconnected" the Business Object from Order System and as a result, the Write stage nolonger works. Even though Order System is still there,

[转]Have a query in Blue prism coding stage and collection stage.

本文转自:https://www.rpaforum.net/threads/have-a-query-in-blueprism-coding-stage-and-collection-stage.488/ 问: Hi,i have some values got through for loop using code stage, like 1,2,3,4,5.ex: for (i=1; i<=5;i++){Console.WriteLine("{0}", i);}How wou