-
Recently active
I am getting this error when importing Application in an environment. The recordType [id= uuid=13eb9112-5a87-4853-a549-499536e89c3c] was not imported because a required precedent is missing: java.lang.reflect.UndeclaredThrowableException (APNX-1-4071-006) Any clue why I am getting this import error? and how this can be resolved?
Hi, I have a requirement to update a date based on a condition that if the given date is of last 2 dates of that particular month, then I want my rule to return first date of the next month and it should be applicable for all the dates whether the month has 30 or 31 days or if it is February or leap year. For eg: 27/02/2023 should be converted to 01/03/2023. I have written following code for this, but my senior asks me to optimize the code and reduce the use of if conditions. Please tell me what else I can do edit:a!localVariables( local!currentMonth: month(ri!requestDate), local!currentDay: day(ri!requestDate), local!currentYear: year(ri!requestDate), local!isLeapYear: isleapyear(local!currentYear), todate( if( and( tointeger(local!currentMonth) = 2, or(local!isLeapYear), contains( tointeger({ 28, 29 }), tointeger(local!currentDay) ) ), concat( tointeger(local!currentMonth) + 1, "/
I have few active receive message(cancel_process) event with a condition to match a request id and then proceed. A different process executes and send message(cancel_request) with request id to all receivers, this call does not have destination process ids. After this, all active receive message node moved further even though the condition was false. The receive message executes even when the condition evaluated to false, has anyone faced this issue? Thanks in advance!
I'm using a record type in my grid column and need to keep a few columns as sort fields. I was curious as to whether the sortField columns impact the performance of the record type?
Hello readers, We have a previous record view, when accessing these records we want to show the records corresponding to that id in the read only grid, but instead all the records in the table are being shown For example, the airline Iberia, has a related contact But when I enter the summary, in the read-only table, it shows me all the airlines and the contacts of each one in the DATA attribute of the record type I am using the airline record
Hi, I came from a .NET background and I have handled lot of data using session concept. I have used session variables to pass the data from one page to other page. I would like to know if there is any such Session concept in Appian. Are there any session identifiers that are being used by Appian for form fields.
Hi team, I am Looking for an API that provides Services to fetch Cibil score by sending PAN Number. Can anyone Help me in finding the API for this Thank you J Vinay
Hello everyone! I am trying to implemented zoom integration. Below is the result of integration and the output is "Reaction Tree". In this case how to get the response? e.g. "join_url", "agenda" etc. Any help is appreciable!! Thanks.
Hi team, I have a flow where in which I have to create a offer or Coupon to a set of customers who have that eligibility. Example: In Swiggy or Zomato (Food Delivery App) , Some coupons like Welcome or Save60 offers are Available for New customers. but if the customer who frequently make orders should get some different Offers so for that 1. I have to make a dataset of customers who make orders frequently. 2. create some different offers for those dataset. 3.enable that offers in some channel. This is how I did when I Implemented with different BPM tool those are done by Decisioning capabilities of that Tool. Now iam trying these same flow in Appian . Can i get any help in understanding how these are done in appian as I am new to this , I couldn't able to get any decisioning Rules other than Decision (Table). I want to know how datasets & Channels are configured and how offers are created. Mainly I have to understand how Appian Helps i
Hi, I have a multipleDropdownField with the attached code. I am getting an error when I try to select any additional item from the dropdown. Can someone give me an idea how to fix the issue. Thanks in advance. Using the below code while Testing the user interface. rule input: lcmIntakeDesignatedBusinesses:
Hello I need to create a summary I have two sections, one of them with date information In the other one I need to use a Read Only Grid, to show I created a ER. to return data using an Id, but I don`t know how used the ER, in the Read Only Grid. I don't know what to put in the expression field Someone could you help me please? Best regards
I have a related sync record One to Many - Request and Watchers. I am trying to query data from Request record but filter the data so only those requests for which the watcher is the one provided in filter is there as well as isActive should be true. But the response i am getting back is weird. Please have a look at the attached screen for rule as well as the data. It's returning data which doesn't seem to satisfy filter criteria. Am i missing something? please suggest. a!queryRecordType( recordType: 'recordType!{5c74086c-d578-4cb3-bcc9-462eac05e87d}CLM Request', filters: { a!queryFilter( field: 'recordType!{5c74086c-d578-4cb3-bcc9-462eac05e87d}CLM Request.relationships.{456939a6-4ebb-43c0-9f2a-89523af6a1f1}clmRequestWatcher.fields.{72eced9d-9111-4afa-9a19-ec3dbb59e196}isActive', operator: "=", value: false() ), a!queryFilter( field: 'recordType!{5c74086c-d578-4cb3-bcc9-462eac05e87d}CLM Request.relationships.{456939a6-4ebb-43c0-9f2a-8952
When I call the plugin GetConstantOrRuleUUIDByName() with a previously created expression it does return the UUIDD, however when I create a new expression it returns the name of the expression and not the UUIDD.
Hello All, As per the link https://docs.appian.com/suite/help/21.2/Custom_Mobile_Applications.html, it seems that Appian Provide Custom Mobile development. Where can we get more information regarding how to develop a custom mobile applications. Does Appian provide some IDE and SDK for custom mobile application development. I am aware of the fact that applications created on the web using the Appian Designer platform can be view on Appian App available on Play Store, but what about if some want to create the only app for Mobile applications. Additionally, can we create our own apk and IPA for Android and iPhone, later can we publish this to app stores.
Hi all, I want to learn how to upload document on a REST webAPI. What I want first is to fetch the document from POSTMAN to Appian ( for Test purposes only ). However, I'm getting 500 internal server just by including a document from my body. Without including a document, it works fine. my Body is a "Form-data", My issue probably is on my Web API Object of Appian ( request ), can you advice on this one on fetching request data from POSTMAN? Thanks rule!REST_Route( request: http!request, handlers: { rule!REST_Route( path: "/test", handlers: rule!TEST_PostTestAPIHandler(request: _) ) })
I have a usecase where I need to export grid data to Excel but here we need to export not only data but also the same format of each column value that we see on grid. For example we have one of the column Revenue in which we have data as $ 123,233,000 this needs to be exported to Excel in the same way and also apart from that data in Excel should show in number format with the formatting of above example so users can do some manipulations on that data like summing up the revenues. Data on that grid is coming for a stored proc.
Hi, I need to copy an existing application with cdt and data source in the same server environment with a different application name. Kindly let me know the best practice for this and the easiest way of doing this. I also need to create a copy of the table structures used in the DB. Thanks in advance, Swetha.
Hi Team, I have a parent process model calling another process model using "Sub-Process" service. Here we have input as well as output data configured. If the child sub-process has any error in it, then the parent process model is in Active status at the sub-process node. We do not get any alert emails neither with regards to the parent process nor with child process model. I have another parent process model calling another process model using "Sub-Process" service. Here we have only input data configured. If the child sub-process has any error in it, then the parent process model is in canceled by exception status at the sub-process node. We receive alerts stating that there is an error in task "child sub-process node name". I concluded that if output data is configured and the child sub-process fails then the parent process model stays in active status and in such cases we don't get system default alert emails or any kind of alert mails stating that
How to find the wrong email address when we are fetching data from the DB? (I am fetching employe's Data from DB, after fetching the data I need to send the mail notification to those Employ's, but "I don't want to send the email notification whose gave me the wrong email format or wrong email in process model Also I need to find the invalid email id") Can Anyone help me for this,
I want to display cards as rows and columns of each 15 displaying as a grid together. After this i want to apply condition to display the numbers in order and display the cards that numbers are divisible by 7 , 8 and 9 only without rearranging. I display the rows and columns using cards. Can some on help me please?
I want to make UI where two grid will be shown grid 1 will have all data and grid 2 will be initially empty. In grid 1 we have checkbox where we can select different row and when we click add button then all selected items will be transferred to the second grid and selected item will be deleted from grid 1.
I have run the Appian Health Check recently. I chose not to automatically upload results to the community. After the check completed, I downloaded/extracted the zip file. Per the documentation, an Appian Health Check summary sheet should be available. As I review the contents of the zip file, I do not see a Summary sheet. What in the extract should I be looking for specifically? Thanks
Hi Community Team, I'm facing issue to store multiple values in Database, My task is to accomplish to add multiple comments in a interface section layout. I need to store them by saving them into Cdt. User Scenario: For each comment it needs to generate new Primary Key.. Data need to be entered in a new row for each comment. Comments Comment1 Remove Icon Comment2 Remove Icon comment 3 Remove Icon Add Icon to add new comment
I am trying to perform related action for a record but I am facing below issue This issue happens for only particular record where as for other records it is working fine. Any help on this would be appreciated
Hi Community Team, Here, I'm using two Cdt's One parent table (Emoloyee Details) and one child table (Comments). I'm calling primary key in the parent table into the child table to fetch the values in the Child table. I'm getting NULL instead of primary key of parent Cdt. Please help me out how to configure this error? Child PK Parent FK Comments_ID Employee_ID 1 NULL 2 NULL 3 NULL 4 NULL 5  
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.