-
Recently active
I have a list like {1,2,3,4}, I want to add new items like {1,2,3,4,5,6,.....} in the same list without using a new variable to store the new list.
So in the above pic i have an interface where i gave the user an option where he can select or reject a candidate. And when he clicks select a candidate, a mail will be sent to the candidate saying he has been selected for the job and when the user hits reject, a mail will be sent to the candidate saying sorry you have been rejected. So i created this process model and kept 2 emails for the both different mails.Is this the correct format or am i missing something. Can someone Please guide me through this.
I have created a Robot in Appian RPA and it comes online. At the end of the day when I turn off my system the robot goes offline and the next day, in order to bring it back online I have to download the new installer and install it again. Then only robot comes online. Is there any way we could bring the robot back online without having to download and install the installer again every day?
Hi everyone, I'm working on a Robotic Task in Appian RPA that performs the following steps: Opens a browser and accesses a web portal. Enters credentials (passed as text input). Navigates through some pages and downloads a file (PDF). Accesses the local folder where the file was saved. Currently, after downloading the file, the robot uses Upload Document to upload it to Appian as a Document. My question is: Is there a way to pass the downloaded file directly to the process model without using Upload Document? In other words, I’d like to avoid explicitly uploading the file to Appian and see if it’s possible to return it directly to the process model as a file in memory or temporary file reference using the output data tab of the robotic task. Has anyone dealt with a similar scenario? Thanks in advance for any suggestions!
Hello team, We have a requirement to implement an chatbot in Appian and similar to Enterprise copilot. Will it be possible to use this Appian LLM standalone whenever needed? So that we can make the bot LLM configurable. We have to give option to connect with Appian LLM / OpenAI / Azure OpenAI. Thanks in Advance!
Hi, I have created a Robotic Task and I am able to save data from some attributes in variables of Robotic Task. I have created a process model and called "Execute Robotic Task" smart service to run this task. I want to get this output variables from my robotic task in my process model variables. How to do that?
Hi team, where we can find the sample invoice documents in our Appian documentation? to train the document classification model. thanks in advance!
I have a structure of record type A like this: {id: other business field:, relationships: record Type2: { id, A_id, other business field } recordType3: { id, A_id, other business field } }, After user change the data, I want to check whether the business field is actually modified. What I thought is to traverse the list of this record and construct new objects using the business field, use the new objects to compare. I want to know is this the only way to solve my problem? Is there any easy way can solve this.
I'm encountering an issue where I need my suggestion function to return both a dataSubset and an output value (like a flag). The goal is to allow users to enter a new project code if it doesn't exist and make dependent fields editable. I need a way to pass that output from the rule back to the interface Trying with a!update
I have to open a web page as RPA Task and scroll down to click on an icon to extend the additional info. Upto scroll down to that particular section, it is working fine. But I am not able to click on the add icon to extend. Can someone guide me with the configuration.
In a queryentity function, in an interface, I'm getting an error like "Unexpected error executing query (type: [CPVAccountsStatementTrackerDT8331], query:[queryentity expression], order by: [[Sort[FinancialInstitutionOther asc]]], filters:[(firmId = TypedValue[it=1,v=-1)])". How should I resolve this error. In one of filters, we are filtering based on -1 but this is working in some environment while failing at some.
I created and RPA to upload a document(CSV File) from a Virtual Machine to Appian. Everything works fine when I run the RPA manually, ie select execute from the robotic process. However when the RPA runs as part of my process model, I get the following error. [ERROR] 2022-11-14 17:55:06 - - Error code APNX-1-4530-023 with message "The document cannot be uploaded because the storage limit exceeded, you do not have privilege or the document name is not unique." found for resource /api/v1/uploadDoc[WARN] 2022-11-14 17:55:06 - - Method manageException invoked I'm sure it must be some security setting in my Process model, but I can't figure it out. Any ideas?
Hi, I have a RPA that takes files from my local machine and upload them into an Appian folder with the Upload Document module provided in Appian Services.. When I run the RPA within the Appian RPA console it works perfectly fine. I want to trigger this RPA from an Appian Process Model that uses the Robotic Process Smart Service but when I do so the RPA start fine but then I have an error that I can't solve so far... (looks like it's about the Target Folder).Error code APNX-1-4530-021 with message "docFolderUuid query paramter is not found." found for resource /api/v1/uploadDoc Can anyone help me? Thanks, Jeremy.
I'd like to understand how the count of descendant rules affects interface performance and how this count is calculated.
HiCan we extract data from unstructured documents using Appian IDP Gen AI features
Hi [mention:765e189a8fe04dcb81da7360e05696f4:e9ed411860ed4f2ba0265705b8793d05] mukeshr0002 [mention:83200b87486f491ab4742c4178286957:e9ed411860ed4f2ba0265705b8793d05] I am trying an experiment with Appian RPA on using ms outlook api. I added the ms outlook api dependencies, but the maven is not downloading those jars. Only jidoka-client-api jar is downloaded, no other module apis are getting download. Please let me know what i am missing here POM 4.0.0 com.appian ctnq-ms-outlook 0.0.1 CTNQMSOutlookExtraction 2.15.1 1.2 17 jidoka 9.15.3 4.13.1 UTF-8 3.6.2 4.10.0 commons-logging commons-logging com.novayre.jidoka.module jidoka-client-api com.novayre.jidoka.module jidoka-msoutlook-api junit junit test commons-io commons-io ${commons.io.version}
Hi, I'm looking for more details about IDP, implementation directions and where can I find more help/documentation regarding this. I am new to IDP anything that you can provide would be helpful. Thank you.
Hi everyone,Is there any way to maintain an audit trail of user queries and responses monitoring for review purposes of any chat bot mentioned above.thanks in advanced
Hi AllWhen i am doing filtering not getting expected output.Below code is mentioneda!queryEntity( entity: cons!LOCALE_TRANSLATION_NEW, query: a!query( selection: if( rule!P3_utils_checkIsNullOrEmpty(ri!columns), {}, a!querySelection( columns: a!forEach( items: ri!columns, expression: a!queryColumn(field: fv!item, alias: fv!item) ) ) ), logicalExpression: a!queryLogicalExpression( operator: "AND", filters: { a!queryFilter( field: "label_txt", operator: "=", value: ri!label_txt, ), }, ignoreFiltersWithEmptyValues: true ), pagingInfo: if( rule!P3_utils_checkIsNullOrEmpty(ri!pagingInfo), a!pagingInfo( startIndex: 1, batchSize: cons!P3_BATCH_SIZE[7] ), ri!pagingInfo ) ), fetchTotalCount: and(ri!isFetchTotalCount))=======================================When i searched "Research". It is giving me expected outputIs it default behavior of Appian ? Expected result - It should not return anything because there is no label like "Research "
Hi, I'm using the Open Browser action in Appian RPA to launch a legacy web application. Occasionally, the website may be down, and when that happens, the bot execution fails with an error like "unable to navigate to URL." In such cases, I would like to trigger a notification (ideally an email) to inform the support team immediately about the failure. My questions are: Is there any default mechanism in Appian RPA to send notifications (like emails) on task failures? If not, what’s the best practice to implement an email notification when an action like Open Browser fails? Any guidance or examples would be appreciated! Thanks in advance.
Hi everyone, I have a challenge where I need to classify more than 10 different types of documents. I understand that the traditional Classify Document approach in Appian requires a substantial amount of training data to build an accurate model. Is it possible to use generative AI (Gen-AI) for document classification in Appian instead? Or is Gen-AI generally not suitable for handling multiple document types like this? I’m aware that the current Appian AI Skills for document classification do not use Gen-AI, but I wanted to check if there are any alternative approaches or best practices. I also tried using extraction with unstructured Gen-AI for classification, but it turned out to be more complex than I expected—especially converting the output to JSON and so on. Thanks for any advice or suggestions!ps; currently lacks of documents so i not using the classification document method xD
In UIPath we have reFramework (dispatcher, performer, reporter) and the queue/orchestrator splitting the work between bots. Can somebody please point me to a similar way of doing it in the Appian Academy? Thank you so much.
Hello, good morning. When I try to execute my Execute Robotic Task node, I'm getting the following error: "Creation of the Quartz job for robotic_task_remote_smart_service_EXECUTE.311_0_#be has failed." Does anyone know what might be causing this? Thanks in advance!
Is there an expression or component that can display the documentation of a rule on an interface the way it appears when coding?
Out of 3 environments (dev, test and prod), prod is giving wrong output to a default datetime conversion. Attached screenshots. How to resolve this? Does it depend on some settings?Dev environment - First rule input is converted to GMT-4:00 Prod Environment - First rule input is converted to GMT-5:00 Created and deployed the same rule across environments, just to verify that I am not doing anything wrong. Appian Version 25.1Hosting: Cloud
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.