-
Recently active
Hi Team, while running unattended automation, Bot/resource frequently going in disabled mode & we have to manually check, make it enable then its goes to running mode again.we are not able to rectify why Bot/Resource is behaving like this and our bot/Resource is not running in fullest unattended mode Thanks Manish
in this process we are taking the link of my appian designer account by the help of robotic recorder we are opening the link by edge by clicking on select appliaction after opening we are giving username and password after testing the bot it is not taking my username and password what i given please reply if any ones solution
Is there an way to list all expression rules in an application inside an expression rule itself. Or list all the Appian rules insider a rules folder. My purpose is to find expression rules in an application with and without test cases.
Hi All, We have a Postgre SQL DB connected to Appian system, and we are trying to fetching the data from respective table. i created CDT, entity mapping verified & Data store published successfully. In Rule Expression, when we tried the query entity for this DSE, we are getting below error. Expression evaluation error at function a!queryEntity: An error occurred while retrieving the data. Details: Unexpected error executing query (type: [AAFAssetDT2555], query: [queryentity expression], order by: [[Sort[assetpreviousstatus asc]]], filters:[null]) could you please suggest me to resolve the issue.
Hi Team, I have designed an interface which has 1 Rule Input Now on the UI I am calling an integration and getting data from the integration The requirement here is to save the data coming from the integration to rule input but without clicking any buttons. i.e. there are no buttons in the interface (if there were buttons I could have used the saveInto parameter of it) Is there any alternative way to save the data to my RI ?
Hi All I am working on version 23.3. My use case is to extract data from a PDF file; the data can be both hand written or system written. In case the content is system written; after few runs; the system is able to extract certain amount of data from the PDF (which is the expected behaviour from AI Document Extraction). However, if my input PDF document is hand written; no data gets extracted after multiple cycle runs as well. Can any one please guide as to how I can achieve data extraction from hand written document as well or what am I missing to achieve my goal. I am referring to the following link to achieve my goal (Note: Currently trying to capture PDF data in CDT; not in record for my POC): Create a Document Extraction AI Skill - Appian 23.3 Thanks in advance!!
Good evening,Can anyone tell me if there is a method to handle all unknown exceptions during an execution of an automation flow? For example a Try and Catch error. Regards,Nicola
Hi, I have a rule in which I call an SP.I made changes to a field so that it accepts an array and now my Rule is not working. I'm not getting an error, just nulls. Any idea?with( local!result: a!executeStoredProcedureForQuery( dataSource: cons!SOP_ARC_CONS_ALMACEN_DATOS, procedureName:"SOP_ARC_GETTOTAL_INFORMESLAS", inputs:{ a!storedProcedureInput( name: "STARTINDEX", value: if( isnull( ri!startIndex ), 0, ri!startIndex - 1 ) ), a!storedProcedureInput( name: "BATCHSIZE", value: if( isnull( ri!batchSize ), 100, ri!batchSize ) ), a!storedProcedureInput( name: "SORTBY", value: if( isnull( ri!sortBy ), "idinstancia", lower(ri!sortBy.field) ) ), a!storedProcedureInput( name: "ASCENDING", value: if( isnull( ri!sortBy ), true, tointeger(ri!sortBy.ascending) ) ), a!storedProcedureInput( name: "RESULTADOSMAXIMOS", value: cons!SOP_ARC_INFORMES_MAX_RESULTADO_PANTALLA_ONLINE[ri!codigoInforme] ), a!storedProcedureInpu
Hi Community ,We have a requirement where we have to compare two lists of map , Both the Map have same values but these map are created from different query statement.I want those Keys where Values are different. For Eg : Map1 : [[id:230,no:0]; [id:223,no:1]; [id:232,no:1]; [id:264,no:1]]Map 2 : [[id:230,no:1]; [id:223,no:2]; [id:232,no:1]; [id:264,no:1]] I need a expression rule which gives result as 230, 223 bcz Map 2 values are different in it. Many Thanks ! Regards,ASK
Hello, I am working on a team that would like to try out and potentially use the AI Skill "Email Classification" for our work, but the training of the AI skill states that it requires .eml files. Unfortunately, our company uses Outlook, which does not natively have a way to save .eml files - as far as I am aware. Is there a way for me to convert .msg into .eml, or has anyone else found a workaround? We are not allowed to use other email providers in any way, and all converters I found online would likely be blocked by my company.
Hi, Actually we are trying to select an object in an Application to duplicate. when we select in check box, it will enable the options like duplicate, add package, move etc.. when we try and test this through bot, in Appian RPA result it is showing green marks but it will not reflect in the bot running application. could you please help in the configuratiion to select the check box and enable the duplicate. It will be very helpful for us. Thank you.
I am facing a weird issue when comparing two arrays of dictionary type. As in the code attached, I have two arrays of dictionary from which I am converting one of them to be similar to other one using foreach loop. I am pretty much sure that output after conversion is same as "array1" in code snippet. But, still their comparison returns {false, false, false} as output of it. And, when I run the commented comparison below, it returns {true, true, true}. Why direct comparison is returning correct output but not the output from foreach besides the fact that formats and outputs are exactly same. a!localVariables( local!array1: { { value1: "abc", value2: "cde" }, { value1: "fty", value2: "yui" }, { value1: "uiu", value2: "dft" } }, local!array2: { { value1: "abc", value2: "cde", value3: "gdh" }, { value1: "fty", value2: "yui", value3: "hyu" }, { value1: "uiu", value2: "dft", value3: "kol" } }, local!convertedArray2: a!forEach( items: local!ar
I want create new application through bot while we are creating a new application what configuration we should give. while we are creating application name through bot application name is not updated we taken id in selector in interaction we used update value in a x we taken new variable If any one knows the solution please reply ... ThankYou
Hi Appian Community, hope you are doing wellI have the following use case, The solution should be intelligent enough to capture the payslip documents from the end user and extract the data from the payslip document. As with Appian 23.4 release the AI skill has became much more smarter and works like a charm for documents that have similar structure. But, in this particular use case each user can have a different format of payslip that will be uploaded to the system, although all the payslips will be pdf and will be a structured document, but again can vary in terms of format. What is the best way to train the model so it can capture data from these payslips. Also, in case it is not possible can you please suggest a workaround as well.Regards
Hi,I want to use VLOOKUP formula in write into worksheet excel action in Appian RPA. The catch is I am passing all excel related values from interface to the bot (so all variables are set having values for lookup value, table range, column index etc.), therefore if I want to write the formula it should be in quotes like this --> "VLOOKUP(A1,Sheetname!A2:C12,2,FALSE)", this may work for hardcoded values but if I want to put my variables in this formula, it may not be possible as this is within quotes. For e.g. I can't replace A1 above with pv!lookupvalue as entire formula works within quotes.So how do I construct this formula in RPA to get these dynamic values from variables?
Good morning,I would need, for an automation, to connect to the Chrome browser already opened by another robotic task; among the available actions, I cannot seem to find any option.Could anyone help me with this?
Hi All, I am new to RPA. See the below screen. Is that any separate activity to use the updated USERNAME and PASSWORD in RPA?. I have tried to use start-Recording method but it threw error.
Hi, In Appian environment we have two application and two differrent people are working on different application with same RPA, when i am going to open task recoreder in my screen nothing is happen and details are showing in second person screen. how we can resolve this ?
Hello, How would I go about Base64 encoding a string inside of an expression? In my use case, I have an input to a process model where parameters is a list of type map I would like to wrap local!JOB_ID in a function that converts it to Base64. processParameters: { parameters: { a!map("operationId": 210), a!map("jobId": local!JOB_ID), } } Thank you!
Hi, I have many users and I have custom field 3. I want to get the list of values in the custom field 3. Is there any function to get the list of specific custom field values? Thanks in advance!
It's getting error while creating the robot in the APPIAN RPA.can anyone help me with it?.Please suggest me where i can see About Appian RPA (Use case) also suggest with links how to create the APPIAN RPA...
Can we only use Appian RPA for automation without creating any applications from Appian? I want to create a bot for this: "">www.rpachallenge.com/.". I want to automate this site. For this automation, I have one Excel file, read the data one by one, fill it on the RPA challenge form, and click submit.Is it possible in the Appian RPA? if possible, then how can we start the process?is there any need to excel data store to database?
I am performing image recognition which is provided by RPA learning path, but in that it is not showing me result of image addition i.e 13. For reference[View:/cfs-file/__key/communityserver-discussions-components-files/61/21.1-RPA-Tutorial-_5F00_-ImageRecognition-Low-Code_2D00_-105_2D00_2.pdf:320:240]
I am working through the "RPA Tutorial: Parse Excel Files" and I can't get the Add Excel data to database function to work. I believe the issue stems from the "ExcelDocumentID" variable is null. I can't find anywhere in the training where the Document ID gets passed to the variable. Has anyone else completed this training? Am I missing something?
Hi, I want to open excel workbook after using download document action in RPA. So in download document I am using a variable that receives the excel file from interface & process model, on execution I can see the file downloaded in the provided path. I have 2 issues : - The variable for file shows as null instead of the document value coming from the interface and PM, even when it successfully downloads it?Thanks in advance.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.