-
Recently active
Hello, How I can sort this by ClientName ?
Hello community, I have a webapi that updates an instance of a process model by completing an open task. this task has a input for a main category, example {"fruit", "vegetable"} the task output: Based on input, (a decision rule is called with ac!category as a parameter). example category("fruit), result: Apple, Banana, Orange is stored in a pv. I would like to pass the result / task output or the value of the pv as a result/response of the webapi. I tried to retrieve the result by calling an expression that gets the pv value from a process report, this doesn't work because the data is not updated yet.fv!processInfo doesn't apply here because it's not an start process api. (guess that's the reason, it doesn't work) How can I make this work? Kind Regards, Erik
Dear Community, I have a CDT by the name 'Fund' which contains a field 'amount' of type 'Number (Integer)'. Due to business reasons, now I have to change this field's type to 'Number (Decimal)' in this CDT. Which means in the backend, I have to change the datatype for this field from 'int(11)' to 'decimal(19,2)'. When I update the CDT by changing the field's data type, it creates a newer version of it. All the future process instances will reflect the newer version of CDT which is just fine. But in production, I have around 1000 process instances which has a user input task with this CDT as one of the inputs. This means all the live process instances before the deployment will continue to remain on the older version of the CDT which is 'Fund^1'. What is best / recommended / work around approach to handle the in-flight process instances in this scenario? Thanks, Arun
Hi I , have configure the Sent Receive Messages but they just stop to work. I don't think is the configuration it seems that I have conflict with it in the server, so I want to ask is there is a way by analyzing logs to see what is the issue. We are still on 18.1 with the last package for that version. BR,Natasa
Hi, I have a read only selection grid that contains records. I would like to select certain records and remove them from the grid, is this possible? How would I do it in the interface? Thanks
I have the Outputs tab of a Write to Data Store Entity setup where AC!StoredValues is stored as the process variable (PV) that I'm inputting. The data is successfully written into the DB, but the id is not saved back to the PV. I don't see a "Modify Variable" or similar activity being done after/during the Write to DSE action. As a workaround, I've made a custom output to store ac!StoredValues.id into a new pv!id. This works and I use a script to save it to the original PV. Am I missing something in my attempt to save the entire AC!StoredValues into my PV? Like does it need to be cast or only work with certain datatypes?
/*You have an array and you want to seperate by a batch of 3E.g Array: {"a", "b", "c", "d", "e", "f", "g", "h"}Expected output: { ["a", "b", "c"], [ "d", "e", "f"], ["g", "h"] }*/ a!localVariables( local!chunkSize: 3, local!startingList: { "a", "b", "c", "d", "e", "f", "g", "h" }, local!wholeListSize: length(local!startingList), local!numChunks: ceiling(local!wholeListSize / local!chunkSize), local!data: a!forEach( enumerate(local!numChunks), a!localVariables( local!currentStartIndex: fv!item * local!chunkSize + 1, /* note: this utilizes zero-index of fv!item */ local!currentIndices: enumerate(local!chunkSize) + local!currentStartIndex, /* this rule just unions the input array with itself and rejects null values */ reject( fn!isnull, index( local!startingList, local!currentIndices, null() ) )
Hi I have a related action with visibility set to true but they are not showing up on non admin users. Do you know why this is the case? thanks
Hi Guys, I am using Document Extraction (Google Vendor) to read data from Images present in PDF. However, Some of the Images in the PDF are titled (upside down or facing sideways). After the extraction gets completed, it is becoming very difficult for the users to see the data and click the correct field. The interface for document extraction is constant and I wanted to add a rotate button so that the users can rotate the image and click the correct field. Is this approach feasible and yes please let me know the approach? Many thanks,
I am working to develop an application on Appian where I can send request links for third-party users where they can click on the link, fill a form, provide any supporting documents and give their approvals. I want to understand how the license structure would work in this case as these third party users would be external users to my organization and I only want to give them access (preferably just for filling the links via link) and not proper user login sessions. Please help
Hi , I have two Drop downs. I want to Select another Drop down value based on selection in different drop down. First DD will have choice label:("dev","engg","it") and choice value:(1,2,3) Second DD choice Label: ("DevEnv","TestEnv","ProdEnv","Dev2","Dev3"), choice value :(1,2,3,4,5) Could someone help in giving me a easy solution. I am learning Appian. Thanks Faisal
I have 30 questions in a form out of which few are mandatory. If I miss any one of them and go for submit, I can get error message at the end of page (usually before submit button). It is very difficult to scroll up the page and find for the missing ques. Is there any way in where I can get an alert message in the center of the page/near the ques itself ? Please help ....
Hello all, Is it not possible to use a Rule Expression as the expression that defines the configuration of a Timer Event? We have an issue with setting up a timer based Exception Flow on a User Input task where the timer is defined as "Skip this node at the date and time specified by this expression" and the logic is implemented as a Rule Expression instead of writing it directly within the Timer event configuration. The issue that users see when the Task is loaded is "This task may have been deleted or completed by another assignee". However, when we copy the logic from the Rule Expression and paste it directly into the timer event configuration, then there is no such issue.
i everyone , i am pratik and i am trying to build one form where user can search the candidate from dropdown which is comes throw database using query rule. and on selection of that choice i want to display the all information of that perticular person in read only component . and after that i want to add some more component in interface and store that into other table . but when i refresh my page that time i get the below errors. Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!integerField [line 42]: Invalid index (-2147483647) for list: valid range is 1..3 load( local!availableCandidates:rule!dms_query_demo(), local!selectedCandidate, local!selectedIndex, local!selectedTitle, a!formLayout( label: "Document Uploading page", contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!dropdownField( label: "Class",
I was wondering if there was a way to verify all of the values in a dropdown picker field without selecting each one. Scenario: There is a field that contains 3 choices "Initiate, Additional, Review", is there a way to verify that this dropdown contains each of this values without populating each field then verifying. The following script will accomplish the goal, but does not scale well, as some drop down fields contain dozens or hundreds of selections and this would greatly increase testing time. !|script||populate field | [1] | with | Initiate||verify field | [1] | contains | Initiate||populate field | [1] | with | Additional||verify field | [1] | contains | Additional||populate field | [1] | with | Review||verify field | [1] | contains | Review|
Hello, I have an issue where I am attempting to offset !today by a declared variable to verify a due date. Example: !define dueDateOffset {10} |script||verify field | Processing Due Date | contains | !today +${dueDateOffset}| Result: verify field Processing Due Date contains 4/02/2021 +10 The following script produces the result I want but does not use the variable, unfortunately I need to keep this dynamic so the variable is needed. |script||verify field | Processing Due Date | contains | !today +10| Result verify field Processing Due Date contains 4/12/2021 How do I use a variable to offset today's date?
The Business wants to implement a functionality where, a User Tag can be added to a note [paragraph field] to a new/existing record. What is the best way to achieve this without having to perform a lot of post-processing in the system.Example: [Text] @UserName1 [Some More Text] @UserName2 [Additional Text] Should trigger emails to the mentioned users about the note added.Current Suggested Solution: have a user picker where user can tag users and below the user can add the notes in paragraph field. Which most likely be rejected due to extra clicks, and it might also cause some ambiguity otherwise requiring tagged users to be mentioned again in the added note itself.
Hi, From the above pic need to click on dairy based on id Id is my input then have to find the corresponding dairy for given id and then click on that. Is there any conditional command/method to satisfy above condition. Thanks in advance, Uday.
We have a requirement, where one single interface we have 2 columns, in first we have, selectable grid and in 2nd column various links, buttons, etc. We want separate Accent color for selectable row and separate color for button. Is there a way we can use separate accent color based on the UX components that we are using.
Hello! I am trying to create a calendar interface and I wanted to know how can I display all the calendar days by passing month and year
I have created Process model to add vehicle after approval from supervisor. For approval, task is created. When I debug the process model , not able to see task on Task tab. Please help me out.
Hello, I'd like to store the values of a multiple dropdownfield into the fields of an cdt. So for example, I'd like to make something like the following work: a!multipleDropdownField( label: "Category", placeholder: "Select Category", choiceLabels: index(local!categoryRefData,"value",{}), choiceValues: index(local!categoryRefData,"id",{}), value: index(ri!ctgry, "ctgryId", {}), saveInto: ri!ctgry.ctgryId ) How can this be done? Thanks!
I have a requirement where after I upload the attachment, I need the following tabular information needs to be shown as read-only . I could not find a good example in SAIL documentation Say, if I upload a file name abc.txt then the following info need to be displayed. Name File Name File Type Uploaded By Date abc.txt abc TXT loggedinuser 3/31/21 test.doc Test DOC loggedinuser 3/25/21
When i use a user picker in my interface, it saves into a text field and returns as an email. How can I get a save as a User object? Eventually I want to use this field as my assign tab in my process model? Is this possible? Im new to appian. Thanks everyonew
With the updated records, we can simply call them out the way I have in the image below. My question is, when doing this, is the record querying the database every time is called out? What is the case for using records this way aside than the inside the grids?
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.