-
Recently active
Hi Everyone! Recently, we have one requirment, once the claim is submitted by the customer in the Appian portal. we need to generate and send a link to the respective customer via SMS/Whats app. In this, the link is an unauthorized link where customer click the link and acknowledge the form. In the form we need to display all the information in the readonly format and customer will go thorugh the form and acknowledge it. Once customer acknowledge the form, in appian we need to update the status. Is this possible in Appian? Thanks in advane
this is the UI using this sequence column from record i have to rearrange the UI columns how can i achieve this
Hello everyone!Scenario: A process gets an unexpected error and stops. (No error management flow, like a rule error) Is there a way to do more than the standard appian alert email and automate a robot or a process that, for example, sends that error information to other system (like opening a ticket in Service Now throguh API). Apart from the main question, what options exist if a customer wants to view all the possible monitoring information in they're own dashboards system? Information like:-Healthcheck dashboards-CPU, Ram, Disk Alerts-System Metrics -Process Alerts -Flow Errores (like integrations) The customer mentioned dynatrace (which Appian does not recomend and we have a cloud environment) and ServiceNow Thanks everyone!
Hi Team, Has anyone come across this error: "An error occurred while executing a save: This page has timed out. Changes you made may not be saved. Click OK to refresh the page." any thoughts on handling this? Actually, we found this error message from Heath check analysis report. Regards,Sandeep
If i want to write records more than 1000 rows sync fails in appian how to avoid that?
HI there, We currently have a gridfield which displays record data, and we have a requirement where on a button click we will show additional information which is fetched from an API and displayed in the grid. I'm trying to find a way to fetch the data from the API for only the records which are currently shown in the grid. Is there a way to get the list of values currently being shown in the grid without forcing the user to select them via a checkbox? Or is there an alternative solution to this? I was considering saving the paging information into a local variable and using that to query the record, which will in turn query the API, but that will only work if the user performs a paging operation. Thanks for any help.
I am facing a security issue when I use the function a!doesGroupExist() in the record additional dashboard. Is there any restriction in using this function? Appian Documentation a!doesGroupExist()
thank you always.Something unprecedented happened with the interface I was developing. Implemented in expression mode on 2024/4/4 18:00 (JST) and saved without errors.2024/4/5 09:00 (JST), Opening the same interface causes an expression error. There is no evidence that anyone has edited it. There were certainly no errors when I saved it yesterday, and I was happy to be able to display it and took a capture. However, by the end of the night, the code that worked was determined to be an error. Specifically, get the value from the record type and save the aggregated value in a local variable. The display was successful by passing the alias defined when aggregating the variable + measure to the graph.Here's how to pass it.local variable name.data["alias name"] However, the next morning, an error occurred in the .data["alias name"] part.The details of the error are as shown in the attached image. As a workaround, the issue was resolved by removing the .data["alias name"] part from the v
Hello All, In one process I am Using Send Email Notification and while executing it is failing and the error message is "Failed to send Email". Can anyone help me in this, what can be the cause of this. Thanks in advance
I'm getting an "invalid expression" error in expression. What should I do?
rule!CRP_getUserOrGroupEmailIds( recipient: if( contains( cons!CRP_TXT_BUTTON_ACTION_FOR_RM_APPROVAL[4], pv!buttonAction ), ac!involvedUsers, if( contains( cons!CRP_TXT_BUTTON_ACTION_FOR_RM_APPROVAL[5], pv!buttonAction ), pv!requestMasterDetails['recordType!{7d4ba6cb-2d10-4167-b775-b01207e73ffb}CRP_requestMasterDetails.fields.{11a8daca-73c1-434d-b842-1d9095c26c07}initiatedBy'], pv!taskAssignee, ) ) )
Hello, Having followed the Appian guide on how to use both doc extraction and doc reconciliation nodes, I am now running into a problem whereby the process does not seem to be learning from the multiple reconciliations that I have done. The documents that are being read are all structured the same way, with the desired information always being in the same place, yet, every time I process a new document, the same information is being recognised/unrecognised. Furthermore, when I run the process without a reconciliation step, some of the information which was previously automatically identified during the reconciliation is no longer identified. Does anyone know what I can do to solve this issue? Thank you
Hello We need to work with files larger than 1 GB, and in particular we have two scenarios: 1- A portal made in Angular, where users external to the organisation will attach a document larger than 1 GB. We need this file to reach Appian and then be sent to a sharepoint of the organisation. We have a limitation when receiving the file from the external portal as the appian api only allows 75 MB. 2- The other scenario is that a user in appian wants to attach files larger than 1GB in an appian interface with the uploadfile component, then appian through a web service must send it to sharepoint. We have the problem that the uploadfile component only allows 1GB. For these two scenarios, what would be the optimal solution?
Hi all, I have a requirement of dividing 12 months in current year into 4 quarters. Can anyone help me with it?
I have number greater than 10 digit and that stored as a text and I want sort them. I have tried with sortextarray() that is sorting based on ascii values so it is not giving me correct output. and I tried to convert into int but that is giving me infinity Please help me here to sort the array. Thanks in advance.
Hello everyone, Here is the code for a field. When the user gives an input, there are some controls that should be verified. I want to add some code so that if the user gives an input that doesn't satisfy the condition, the field should be initialized as empty. How can I do this, please? a!integerField( label: "Montant Apport", labelPosition: "ABOVE", placeholder: "Donner le montant exact de l'apport", value: ri!record['recordType!{3e104763-60d6-49a4-8cdb-405e073de678}PBY prêt.fields.{0f648b9f-079f-483f-87ad-d8a64c53802e}montantApport'], saveInto: ri!record['recordType!{3e104763-60d6-49a4-8cdb-405e073de678}PBY prêt.fields.{0f648b9f-079f-483f-87ad-d8a64c53802e}montantApport'], required: true(), validations: { if( and( not(isnull(ri!record['recordType!{3e104763-60d6-49a4-8cdb-405e073de678}PBY prêt.fields.{0f648b9f-079f-483
Hi, I have Selectable Read-only grid and when I select few rows and click on select button a review grid will appear on the next page with the selected rows. Now I have an EDIT button which takes me to the previous page to select/de-select the rows, then here comes the issue that all the previous selection of the rows are getting removed. The EDIT button doesn't have anything to remove the selection. I'm not able to figure out what the issue is.. Can someone please help. This is my code for the selectable grid and review grid. a!localVariables( local!pagingInfo: a!pagingInfo( startIndex: 1, batchSize: cons!RGRACSLBL_BATCHSIZE_5 ), local!selectedBDLMAgreementActivities: if( not( or( rule!APN_isBlank(ri!BWELSelectedIds), rule!APN_isEmpty(ri!BWELSelectedIds) ) ), index( ri!veevaResults.data, wherecontains( touniformstring(ri!BWELSelectedIds), touniformstring(index(ri!veevaResults.data
When DB Write to DS is giving locking issue saying it is Locked by some other process. Below is the error message. com.appiancorp.rdbms.common.LockException: Could not write to the entities [XXXXXX] of data store "XXXXXXXXXXX", because the data is locked. (APNX-1-4180-00A): javax.persistence.OptimisticLockException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect) : XXXXXXX
hello, im develloping an application that contains 2 groupes i have created a sign in page this page allows me to create a new user and then add it to a specifique group , now i want that after the user receive a mail that contains the login and the password to his appian account an interface that contains information will be played ( i want to display this interface directly after the user loged to appian ) any help how can i do this please !
I have been trying to run automated testing through Jenkin. I have followed appian documentation Running Automated Tests on Expression Rules with Jenkins - Appian 23.4 . I was getting several errors and managed to solve some of them and got stuck at one particular issue. Highlighted all the errors faced so far - I was getting below error but managed to resolve it by modify the “build.gradle” file. I have removed the less-than symbol (<<) in build.gradle file. After resolving above issue, now I was getting message “Could not parse content-type header”. I have resolved it by adding header (content-type: text/plain) in “ciStartRuleTestsApplications” webapi. After resolving above issue, I am getting error related to “java.io.Writer” For better understanding of error, I have added parameter “--stacktrace” to task in Jenkin build step, it shows “noSuchMethodError” Error type. Can so
I just want to know how much score i have to get for passing the ACD 101 Certification Exam
I am calculating time difference between 2 time stamps in hours: min :sec format . Now my problem is I have to eliminate weekends between 2 time stamps and calculate difference in hours: min :sec format
Hello everyone, I have a question. I'm developing an application. The home page contains two buttons related to record action. The first one is the "Create Account" button, where the user can create an account and input different fields. This button works as expected. In the process model related to this page, I have added a "Create User" node so that after the creation, the process sends an email containing the name and password for the user. Now, I want to create a "Sign In" button. Is that possible, and how can I verify if this account really exists?
I just want to know Can a basic user get the access of the appian designer if account is related to community account only. how is it possible to give the designer access to a basic user. i have check it but did not find the system designer group if we set basic user authentication to a user. Please help
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.