-
Recently active
How to concat extra spaces other than using concat function in a value. To convert a list of text strings to a string, concat is not working if it has multiple spaces in a sequence. Eg: {"a"," "," "," "," "," "," ", "b"} Actual output using concat is "a b" using to string function "a; ; ; ; ; ; ; b" Expected output "a b"
Has anyone else encountered Chrome driver errors while using Appian recently? I'm facing an issue and would appreciate any insights or solutions you might have to resolve this problem.
Hello, I am running into a "Requesting File" error on all robotic tasks. The following is the trace log for one of them (with altered client information) but the same error is occurring for all robotic tasks: [INFO] 2024-11-14 22:57:38 - - Robotic task 'updateClient' (62ced40be4b01228753f64b2), execution #3674, technology JAVA, start method API, log level TRACE, testing mode is OFF, external workflow is OFF [INFO] 2024-11-14 22:57:38 - - Robotic task will run with following parameters: [INFO] 2024-11-14 22:57:38 - - Parameter 'client', value '{"#t":5266,"#v":{"Id":4,"firstName":"C","middleName":"","lastName":"H","ssn":"4","medicaidId":"K","dateOfBirth":"1900-01-01","specialInstructions":"This client was created in APP. Please go there for full client details.","primaryLanguage":"English","ethnicity":"Unknown","gender":"female","addressLine1":"","addressLine2":"","city":"","state":"","zipcode":null,"county":"","caseManager":"","phone":"7208299615"}}' (default value 'null') [IN
Hello Appian Community, I am currently using AI Skills in Appian to extract data from a document. The extracted data is being saved as text at the process model level. However, I need to convert this text into JSON format for further processing. I attempted to use the a!fromJson() function to convert the text into JSON, but I am encountering an error during the conversion. Here is what I have tried: The extracted data is stored in a process variable of type Text (e.g., pv!extractedData). I tried using a script task to convert the text to JSON using: appian Copy code a!fromJson(pv!extractedData) However, this results in an error. Error Details: My Questions: How can I ensure the text data is valid JSON and successfully convert it? Are there specific considerations or configurations required when working with AI Skills and JSON data in process models? What are the best practices for handling such scenarios? Any guidance or examples would be greatly appreciated!
Error in Appian while creating a robot - Expression evaluation error [evaluation ID = X7SEV] : An error occurred while executing a save: java.lang.RuntimeException: java.lang.NullPointerException
Hi all,As i have intalled RPA bot in my host machine.. I cant find the appain icon in my task barSo that my bot shows offline. I have tried executing the agent manually but it didn't workedPls suggest how to configure
I have installed RPA agent in my host machine. But I cant find icon in my taskbarI have tried to launch the agent manually but didn't worked
I am getting an error in Maven Setting.With AppianRPA-configurator.exe, I am trying to do Maven Setting.However, the error log shows up. --------------- [INFO] Scanning for projects...[INFO] Downloading from SERVER_ID: mnvk.appian.community/.../maven-metadata.xml[INFO] Downloading from SERVER_ID: mnvk.appian.community/.../maven-metadata.xml[WARNING] Could not transfer metadata org.apache.maven.plugins/maven-metadata.xml from/to SERVER_ID (mnvk.appian.community/.../repo): authentication failed for mnvk.appian.community/.../maven-metadata.xml, status: 401 Unauthorized[WARNING] Could not transfer metadata org.codehaus.mojo/maven-metadata.xml from/to SERVER_ID (mnvk.appian.community/.../repo): authentication failed for mnvk.appian.community/.../maven-metadata.xml, status: 401 Unauthorized[INFO] Downloading from SERVER_ID: mnvk.appian.community/.../maven-metadata.xml[WARNING] Could not transfer metadata org.apache.maven.plugins:maven-archetype-plugin/maven-metadata.xml from/to SERVER_ID (mn
I am trying to create an RPA using APPIAN RPA Configurator, in the Maven settings, I get the error: This step checks if the Maven settings.xml configuration file exists and has the required configuration. Appian RPA Configurator can create or edit this file for you. Note: If you continue with this step, Appian RPA Configurator will create or add the required configuration to your settings.xml file When I go ahead and add the user, URL to the repository and the Maven key, another error pops up and returns me to the same screen with the previous error in red.
this error am getting how can i fix this am querying this data to display in grid, is their any other way to display the data ?
I Trained AI skills with 20 Documents(resumes) under both Highly Structured and Unstructured categories, for this accuracy rate for Highly Structured is 40% and for Unstructure it is 47%. Is there any other ways to extract document for my OCR activity
Hi I have to extract all user details into excel manually from one specific group it has nearly 6.5k users as the data is huge the data is truncated and cant copy all the user details and post to Excel below is the logic using to get users from group can you confirm is there any way we can get all this user details in batch wise like 1-900 later 901-1800 like that getdistinctusers( topeople( togroup( 123456 ) ) )
Hello, I have been using a community edition and am trying to use Appian's RPA feature to open a browser and enter information into a legacy system. I am doing this on a Mac. When I navigate to the ops console to activate my robot and then create a robotic task, I am instructed to download the prerequisite files for installing and running the RPA. But I find the linked files are only for Windows. Although the documentation says it is possible on Mac, I can't find where to download Mac RPA files. Does anyone know where I can find them?
Hello everyone, Please have a look at below code:local!array1: { a!map(id: 1, name: "Name1"), a!map(id: 2, name: "Name2") }, local!array2: a!forEach( items: enumerate(10), expression: concat("key", tostring(fv!index)) ), here i want to extend array1 map key from array2, which is dynamically generated through array2 and values should be the value of id from array1. so i am expecting the new array would be like this: { a!map( id: 1, name: "Name1", key1: 1, key2: 1, key3: 1, key4: 1, key5: 1, key6: 1, key7: 1, key8: 1, key9: 1, key10: 1 ), a!map( id: 2, name: "Name2", key1: 2, key2: 2, key3: 2, key4: 2, key5: 2, key6: 2, key7: 2, key8: 2, key9: 2, key10: 2 ) } any easiest way to do this. Thanks in advance
Hello, I need to create rule that takes an array of dictionaries in input and if multiple of these elements have the same "id" value, I want to take only the first one in a separate list: ri!list: { {output: "OK, id: "abcd", description: "hello"}, {output: "OK", id: "abcd", description: "hi"}, {output: "OK", id: "yxz", description: "bye"}, {output: "OK", id: "yxz", description:"goodnight"}, {output: "OK", id: "opt", description: "ok"} } the output should be the following: local!output: { {output: "OK, id: "abcd", description: "hello"}, {output: "OK", id: "yxz", description: "bye"}, {output: "OK", id: "opt", description: "ok"} }
input: "Banana", output: "B---------------1" , "aaa---------------3", "nn---------------2" any one try it anthor way .. { a!localVariables(local!data: "Banana",local!len: len(local!data),local!merge: union(a!forEach(items: enumerate(local!len) + 1,expression: local!data[fv!index]),a!forEach(items: enumerate(local!len) + 1,expression: local!data[fv!index])),local!all: a!forEach(items: enumerate(local!len) + 1,expression: local!data[fv!index]),a!forEach(items: local!merge,expression: index(local!data,wherecontains(fv!item, local!all),{}) & "---------------" & count(wherecontains(fv!item, local!all)))) }
Here, the integrationResponse.result.body is an array of dictionaries. However, the length function returns 1 if not using flatten. Not sure why this is happening. Please share comments/reasons if any.
How to ignore hypens while searching in the grid In the above image, while searching in the grid after removing hypen also below data needs to be come..
Hi All, I am trying to fetch data details from an XML file which contains XML code of an Process Model.When I try to fetch the name , UUID or Pv's data using the following syntax for PV's : xpathdocument( docId , "processModelHaul/process_model_port/pm/pvs/pv[1]/name" ) for UUID : xpathdocument( docId , "processModelHaul/process_model_port/pm/meta/uuid" ) for Name : xpathdocument( docId , "processModelHaul/process_model_port/pm/meta/name/string-map/pair[1]/value" ) I am getting no response.when i checked in Community : https://docs.appian.com/suite/help/24.3/fnc_scripting_xpathdocument.htmlthere also it was mentioned the similar syntax that i am using.But still i am not getting why the I am getting null as output. Thanks in advance.
we have this grid but the user wants like below how can we transpose this grid to row wise grid
Hello, my team and I have used the new AI skill for an email classifier and we have several questions regarding the process.For some context, we need the AI to classify emails into three groups, lets say A, B and C. To train the AI we uploaded: for group A around 139 eml files, for group B around 103 eml files and around 70 for group C.Once it was "trained", it said it had an accuracy of 100% and it concluded there were no errors in the training process nor the actual classifying process, but as seen in the picture, it seems the model was only trained with few of the files we uploaded for each group. We were a little surprised when we took a look at the metrics since 1- they were extremely successful and 2- the ai didn't use all the files we uploaded from each type. We still went ahead and tested it with new emails, 1 from group A, 2 from group B and another 2 from group C. The results showed all emails but one were classified as group A, and the
We have an expression rule that has not been modified since 2017. The developer who wrote the rule originally is no longer with the company. This rule is executing without error in our DEV, UAT, and PRODUCTION environments. However, when I go to the rule in Appian Designer, it's throwing an error, saying there is an undeclared local variable. Indeed, there is an undeclared local variable, and it is referenced multiple times in the rule. However, this rule is somehow working, otherwise we would see dozens of errors in Production on a daily basis (according to the rule's Performance Trends, it's hit several hundred times a day). How is this rule able to work correctly when it's called in Production, but becomes a problem when it's being modified in Appian Designer. It's worth noting that the rule is called by an Interface that (again) has not been updated since 2017, and still uses "load" and "with" instead of "a!localVariables" - and
I got 2 of this. one is Intergrate Designer and one is API Web designer. I already configured all the parameter and the endpoint seem the same from 2 of them. I use test request and both of them return success (200) but only Web API designer post data to database while Intergrate Desginer doesn't. Integration Designer : Web Api Designer: Can anyone know what is the issue and how to resolve this one.
Hi, I have a requirement where I need to find the count of how many times a keyword appears in a PDF. How can this be done?
When I was creating the robot in RPA Appian, I forgot to add user with permission, so at this step I cannot delete the current bot to add another bot (delete button in grey). I use community edition so only 1 robot can be created. can any one help me how to delete the bot or who/email that I can contact to remove the bot or grant me the access to remove the bot ?
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.