-
Recently active
Hi All I am trying to design a generic rule which will take recordtype. filter fields and filter values and filter operators and final filed as inputs and it should give result of that final field after ruining the query Record and applying the aggregation.It is working if the filter are single or multiple and all filter operators are "=","<>","<",">" but not when filters are multiple and operators are mix of in ,= or not in,= .here is the code i have used. a!localVariables( local!filterFields: { recordFields }, local!filterValues: { a!update(a!map(), "1", { 21, 27 }), true() }, local!filterOperators: { "in", "=" }, index( a!queryRecordType( recordType: recordName, fields: finalOutputField, filters: a!queryLogicalExpression( operator: "AND", filters: a!forEach( items: { local!filterFields }, expression: a!queryFilter( field: fv!item, op
Hello,I am developing a robot that performs a registration on a website. The problem is that sometimes when I click the "Sign In" button, it shows the message "Invalid or expired reCAPTCHA token." This is not a reCAPTCHA that involves puzzles or checkbox clicks; it's just a message. If I click manually, it sometimes allows me to proceed. I have tried implementing pauses and mouse movements, but they don't always work. I would like to know if there is a viable solution to bypass this reCAPTCHA. Is it possible to add a support file to the robotic task that solves reCAPTCHA? If so, do these solutions have a cost, and which ones do you recommend? Or is there another solution?Thanks
Hi All, I have created a new AI skill object for text generation in the Appian Dev environment. The skill was successfully created and tested with different temperature settings, and it works as expected. I have integrated it with my process model, published, and saved the model. However, when attempting to deploy the AI skill to the Test environment, the deployment fails with an import error. During deployment, there are no warnings or dependency issues shown. The deployment log indicates the following message: Problems (1):aiSkill 8292bde1-7e28-4b70-a94f-890b679ab860 "NH_Generative_AI_Skill": An error occurred while creating aiSkill [uuid=8292bde1-7e28-4b70-a94f-890b679ab860]: Name is insufficiently unique (APNX-1-4071-032) (APNX-1-4071-007) I have attempted to resolve the issue by changing the name of the AI skill, but the problem persists. Could someone assist me in identifying the potential cause of this issue? Additionally, out of curiosity, could you let me know whic
Hi everyone, I'm facing issue while saving unique identifier value into a local variable. By default indexes are getting saved but I want to save the identifier value so that even if custom filters are applied only the actual selected value is checked/selected in the grid. The working approach I came up till now is to convert my data into a datasubset using a!dataSubset and then use todatasubset with fv!pagingInfo from the grid. The issue which I found with this is todatasubset function is not able to over ride the paging configured by a!dataSubset, it could very well be an Appian issue not sure but due to this I'm getting full grid data in the screen. (Screenshot attached for this below) If you know any workaround for this or any approach you implemented for this use case please share!
Hi, I am evaluating Appian OOTB capabilities for Document extraction. We have Trained an AI skill, used it in a process model, reconciled it, etc. But what is not written or documented anywhere is how is Appian doing this behind the scenes. I am trying to understand if a client is using Appian Cloud, where does the Model run does it use the same infrastructure, if yes then how does this affect the memory/cpu power (Models are generally cpu hungry is what i understand). So by introducing an AI skill to an existing model how does it affect the runtime performance of the process model, the memory consumption. Do we need to consider any upgrades in the Appian engine before using AI Skills.
Hi everyone, I have this specific use case: I have to extract data from a pdf document using AI Skills. The pdf document has the structure of a table, with multiple rows. So the problem is, when setting up the AI Skill, when I want to label the fields, I can only select one of the rows. I want to extract the same field, say "email", for all the rows in my pdf table. Still haven't found a way to label repeating fields inside a document. Any workaround or help is much appreciated, thank you.
Hi Team, I am trying to setup the RPA , and the agent icon colour appears GRAY and in the logs I am getting "java.net.UnknownHostException" Can anyone please suggest. Thanks
I want to perform a regex match in such a way that the text should start from # symbol and text should be from a - f and 0 - 9 Eg: #123A34 (hexcode)
How to create list of unique 3 character alphabet code. If i pass "AAA" and 2, it should return "AAB", "AAC". 2 unique codes after "AAA"
Hii I have requirement to trigger PM on 15th business day of each month so, ( workday( date(year(ri!date), month(ri!date), 1), 13, { null() } )) By this expression i'm getting 15th working day of month bt as we have timer event and in that monthly time recurrence will ask for On Days So How we can do that ?
Hi , I want to know the character limit that the Appian Private AI (GEN AI) - Document Extraction. I've uploaded a document with table value of 43 rows. But in the response , I can get only 30 rows as incomplete. I have altered the prompt also, but its not the problem. I've searched about the character limit of Extraction , But couldn't able to find it .. Can anyone help me with this matter?
Hi, I am using Appian's Execute Gen AI Skill smart service for unstructured document extraction. I want the document extraction ID similar to what I have in the Document Extraction Smart service. Is it possible to obtain the document extraction ID in this case?
Hi We recently encountered the following alert in the Operations Console:“You have robot(s) using an outdated auto-login service. Please reinstall the robot(s) to avoid disruptions. The outdated version will be unsupported in a future release.” However, we have already updated to the latest versions: Agent Version: 9.14 Java Version: 17.0.12 Has anyone else faced this issue, and if so, what steps were taken to resolve it? Any insights would be greatly appreciated. or agent re installation will work? Thank you!
Hello I am going thru Appian course to build a robot as Appian evaluation process. A robot shows as online and has been added to a Robot Pool, but when I attempt to use RPA I get message "No Robots Available". Following are screenshots. Please advise? Thank you gary
Hi, I have a local variable local!tasks containing a list. In the confirmation message of a button I would like to concatenate a text with the local variable. Eg : Are you sure want to & local!tasks I want to display the list of tasks in next line eg : Are you sure want to task1 task2 task3 inside confirmation message of a button I am using char(10) but it is not working as expected. Is there any way to show like this in confirmation message of a button?
Hi, I'm trying to extract data through AI skill object with Document Extraction configuration. I can extract the table data if the table is in one page.In some documents, the grid/table data runs for multiple page. In that case, through the reconcile task I can select a table either in first page or in second page, but I cannot select the table data that runs on both pages.In the below attached pdf, I need to extract 22 items on the grid, but unfortunately in the Reconcile Task I can select the table data either from Page one or Page 2. Need help on how to retrieve all data that runs across multiple pages.[View:/cfs-file/__key/communityserver-discussions-components-files/15/JEM_2D00_0063.pdf:320:240]
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.
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.