-
Recently active
Hello all, I have a question that I think it should be easy but I cannot figure it out, and also I cannot see any response in this forum. If I have a a!forEach within another a!forEach, is there a way of refering to the items of the outer loop, within the first loop? Example to understand with non real data: I have two lists: local!text: {"1111 - GREAT", "1000 - BAD", "5600 - MEDIUM"} local!words: {"GREAT", "MEDIUM"} as you can see, "text" is a list of text, and each string contains a code a "-" and a word. I want to create a nested loop that returns a list with the codes only when the words contained in the list "words" are in the list a.In this particular example: {"GREAT", "MEDIUM"} because "GREAT" is included in "1000 - GREAT" and "MEDIUM" is included in "5600 - MEDIUM". I woud like to iterate though every item of list &quo
I have a non-synced REST API that I am using to fetch data via an integration. This endpoint supports paging. In both the record data source and the integration, when I put a a!pagingInfo(x, y), in the pagingInfo test inputs, the data increments through pages correctly according to the values I give for x and y. But, in the data model test listing and the record list URL, the first 50 records appear (as expected) with the correct record total (more than 1,000), but when I click the next button, the next page is blank and says "No items available". I can click the previous button, and the first 50 records display again. The Paging Info drop down on the data model page is mapped to the correct rule input on the record data source. The Appian version is 23.2. Here is my code for the dataSubset in the record data source: a!dataSubset( startIndex: ri!pagingInfo.startIndex, batchSize: ri!pagingInfo.batchSize, totalCount: local!integrationResponse.result.bo
When I click on a button, it will generate a comment and we are saving it in a comment table. In particular scenarios, when we click on the same button, it will generate multiple comments and we need to save it in a comment table itself. So how can we handle in appian?
I want to loop through a list of 'Course' CDT and increment the local variable named progresspercent by 25 each time I encounter a Course with status "completed". E.g. a student is enrolled in 4 courses and 3 of them have "completed" status, the progresspercent variable should be 75 in this case. Following is a snippet of my code and a picture of the output I am getting.Can you please help me figure out how I can do this? a!localVariables( local!progresspercent: 0, { local!progresspercent, a!forEach( items: rule!ID_GetCourses(ri!collegeid), expression: { local!progresspercent + if( fv!item['recordType!ID course.fields.status'] = "completed", 25, 0 ) } ) } ) /resized-image/__size/640x480/__key/communityserver-discussions-components-files/16/Screenshot-2024_2D00_06_2D00_14-at-6.30.24_2F20_PM.
Hi all!Once we create a record via Web Service, we will be creating a Connected System along with Integration, now Appian creates us a new record data expression with a single rule input -> ri!batchNumber. Now, lets say I have a web API which has more than 2,000 rows of data. Now, at first iteration the batchNumber will be 1 and in next iteration the batchNumber will be 1001 i.e for each iteration our start index ---> 1 + ((batchNumber - 1) * batchSize) Now, do we have to handle this manually or Appian handles by itself ? i) Could anyone send me a sample working record data source expression code that handles the paging Info.ii) Do we need to handle this pagingInfo in the Integration also? A sample screenshot would be appreciated for both Integration and Expression
i'm fresher for appian and I have configured FitNesse as shown below version 21.1 While click on test i'm getting the below error Any one knows the steps to reslove please help me.
Discover how Appian’s largest department, Engineering, is powered by our own Appian apps! Join us to see "dogfooding" in action as we leverage our platform to gain user insights and enhance our capabilities. In this exclusive livestream, our lead product evangelist, @April Schuppel, will be joined by @Suvajit Gupta, Executive Vice President of Engineering at Appian, for an insightful discussion. What’s on the agenda: Explore our internal apps and gain tips to improve your own operations. Uncover the possibilities with data fabric, AI, total experience, and case management. Engage with us and get your questions answered in real-time via live chat. Turn on notifications to make sure you don't miss it!
Can anyone tell me the limit for the number of basic user accounts created in Appian?
When I use package details api to get package details, it response error { "resource": "/suite/deployment-management/v2/applications/_a-0000ea0b-d034-8000-9c03-011c48011c48_12019827/packages", "title": "An Error Has Occurred", "error": "APNX-1-4552-038", "message": "Cannot access package details. Either this application does not exist or your service account does not have permission to view this application's details." } I created a service account, add Appian-API-Key to header. Also add Service Accounts group to application Users Group and Administrators Group, but can't fix the issue. How to fix the issue?
When the same process variable is updated by both the input and output of a 'user input task' what will be the result? From what I have tested, the input takes precedence. As implemented in the attached photo, the initialization set in the output (setting to NULL) does not execute. /resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/_B930AF30EA30FC30F330B730E730C330C830_-2024_2D00_06_2D00_14-153006.png
Hi, Please find attached screenshot. How to remove the list of dictionary with size 'o'
I have an requirement as to rotate the document in IDP reconciliation task. some times documents are coming upside down, it makes user to difficult to extract the data. Can we have a feature in IDP reconciliation task for rotating the documents as same as which is in Classification task? any suggestions would be appreciate. Classification task have Rotate document option. But In Reconciliation task, we don't have that option
Good afternoon, I am encrypting a simple text to test with hmacsha256bytehash, but I can't find any functionality to decrypt it, could you help me? Thank you so much
Hello Everyone, Could anyone please assist on saving documents on click of donwloadlink on local system path folder? Thanks
How can we select the multiple choices in a check box field. the current code that i am using right now is attached here with for your reference. if( ri!questions['recordType!{9f9ccdcb-c623-460d-b62e-11edf107c89f}MCS Questions.fields.{d24285e2-2025-4026-a79d-369fe6874d09}Style'] = cons!MCS_OPTIONSTYLE_POINTER[2], a!checkboxField( choiceLabels: { " " }, choiceValues: { true }, value: fv!item['recordType!{ed28cd83-aecc-434c-ac3c-48f88d5ab332}MCS_ANSWERS.fields.{d4e78775-ad64-4f7a-9881-ff6dac1ec243}isCorrect'], saveInto: { fv!item['recordType!{ed28cd83-aecc-434c-ac3c-48f88d5ab332}MCS_ANSWERS.fields.{d4e78775-ad64-4f7a-9881-ff6dac1ec243}isCorrect'], a!save( ri!answers, a!forEach( items: ri!answers, expression: if( fv!index <> local!presentindex, a!update( fv!item, 'recordType!{ed28cd83-aecc-434c-ac3c-48f88d5ab332}MCS_ANSWERS.fields.{d4e78775-ad64-4f7a-9881-ff6dac1ec243}isCorrect', null ), fv!item ) ) ) }, align: "CENTER" ),
For line 6, "In the Node Inputs pane, click Records I do not see that here on my application. What am I doing wrong here?
Why I cant see the database and admin in top grid. I am trying to create a database for my application
Hi, I am using a dropdown with values retrieved from a record. The record only has the identifier field and a text field. The issue is that when using the search option, it finds values that do not match exactly what is typed in the dropdown search box. For example, I type part of the name of one of the records ("real") and it correctly shows only one matching result, "LOREAL EUROPE SUCURSAL ENESPAÑA." However, if I add one more letter ("reald"), the results change and show two results that do not exactly match what I am looking for: "INDUSTRIA CORE ESPAÑOLA DE MODA" and "NEW ERA REMARK LIMITED". I understand that it shows these values due to the following, "INDUSTRIA CORE ESPAÑOLA DE MODA" and "NEW ERA REMARK LIMITED". If I add an "a" -> "realda", it only shows "INDUSTRIA CORE ESPAÑOLA DE MODA". Isn't there a way for it to search only for re
Hello All, Is there a way to pass system message to Appian Records chat to set the tone to the interactions? To be more specific, I want to display a value as chat response that is dependent on a column of the record type instead of displaying the exact value from the column. I am able to achieve it using prompts, but I cannot expect users to write this prompt every time they interact with the bot.
Hi, I have got 2 mentions of my Process model in a health check report which 2 weeks ago # of unattended process loops"PM Name " (UUID of PM ) -> "gateway for a loop" ((more...)"PM Name" (UUID of PM ) -> "sub process node" (11 node(more...) I couldn't really comprehend , what "# of unattended process loops" really means ? Can someone explain it in simple terms ? At the moment , I am not sure whether this error is reported every time a health check is run , we run health checks weekly in our organisation. waiting to see whether this error always occurs what does the 11 nodes above means ? does this means active nodes in the instance ? do they count gateways also as nodes ? Any idea whether , we can see "# of unattended process loops" in any of the system logs ? If so , which log ? Any pointer on how to fix the issue? The PM in question , iterates over a number of DB
Hi All, I have recently updated a data type via a new version XSD , it was successful and I also went in and published my Data Store. And old PM which works fine in higher environments with the old version of the data type is throwing me this error every time I try to write to DB, An error occurred while trying to write to the data store [MOR Data Store]. No values have been written. Details: org.hibernate.exception.ConstraintViolationException: could not execute statement (APNX-1-4208-004) Was this caused due to the update of the data type? any suggestions? thanks in advance
I would like to translate content into English(Canadian) with the help of Translation set. but English(Canadian) is not there in locale settings. Can we able to achieve this without using database. If yes, please guide me
I was previously using the Case Management 24.1 and have now installed the newer(24.2) version. I am aware that existing objects get overwritten. I can find all my data in the database but the record types and other objects that were generated and also the newly created objects seem to be deleted. I am facing issue in the Studio site, where the generated record types for the case category and type are deleted and therefore, I cannot create/modify the intake form. I can create a new record type, but the database tables have the previous record type uuid saved. Is there any documentation or course available as a guide to upgrade to a newer version? Has anyone found a workaround for this?
You created and published a new process model. The process model has a start form with two synchronous subprocesses with 40 and 66 nodes each. All nodes are chained from the start node through the subprocesses to the end node. After the tasks and subprocesses, there is a second User Input Task in which the user can confirm the entries and add a comment. When testing as a normal Acme business user, you see that the confirmation screen is not shown to you. What might be the reason for this behavior?' A. Maximum number of activity chained Node is exceed and breaks B. The second User Input Task is assigned to the process Initiator C. the second User Input Task is assigned to the ACME Business user group it should be A or B confused on this
I am getting this error while i used refresh variable to refresh the value based in the variable change. Expression evaluation error [evaluation ID = c66ea:0543a] in rule 'mtc_griditemtotal' (called by rule 'mtc_formworkorderapproval') at function a!refreshVariable [line 31]: a!refreshVariable may only be used to define a local variable within the a!localVariables function. Please check the screenshot. Please let me know if you have solution for this..
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.