-
Recently active
While creating a case , i will click on validate button and data will be sent to Api to verify the GRU is correct or not ,if it is incorrect in the form i need to go back to same form to update the correct GRUIn my process model ,it is going back to user input task but the form is again asking for details to be entered but the want is i need to update the Gru and resubmit the form .can someone please suggest how to achieve this
I am trying to update a specific list item from SharePoint list using SharePoint Connected System and Integration. Inserting a new Item to that list is working but not updating an existing item. Below is the integration: Getting the following error: Can someone please help with this. Thank you
Is it possible to hide a related record action link based on certain conditions? In the example below, a record summary view, when the status is In-Progress, the START MAINTENANCE action link should be hidden. Is this possible? If so then where could I find the option to configure this? Thanks.
= a!localVariables( local!emails: ri!test.emailAddresses, local!individualMail: if( a!isNullOrEmpty(local!emails), {}, reject(fn!isnull(_), split(local!emails, char(10))) ), local!invalidEmails: substitute( tostring( reject( fn!isnull(_), a!forEach( items: local!individualMail, expression: if( regexmatch( pattern:"^[A-Z0-9\_-]+(\.{0,1}[A-Z0-9\+_-]+)*[@]{1}[A-Z0-9.-]*[A-Z0-9-]+[.]{1}[A-Z]{2,6}$", searchString: fv!item, regexFlags: "si" ), null, fv!index ) ) ) ), ";", "," ), local!validation: if( isnull(local!invalidEmails), {}, "Emails must be in a valid format, and each email must be on a new line. " ), a!formLayout( label: "Test", contents: { a!sectionLayout( contents: { a!columnsLayout( columns: { a!columnLayout(
As I am new to appian env, I tried to access the workspace for hands-on practice. For the same I request an instance to communityedition@appian.com and I got credentials to logged in this environment. After logged in it is rendering "403 Access Denied" and You don't have permission to view this page.
I have to send email addresses as input from Appian to external system and the external system validates those email address and send back the ids of those email address. How i can implement the design ,what all are needed ,can someone help?
Hi, I have two dropdowns on a form. Is it possible to populate the choices for the second dropdown based on the selection from the first? In the first dropdown, I populated its choices from a record type using this example, Dropdown Component - Appian 23.4. Based on the selection from this dropdown, I'd like to query another record type (filtering on this selection) and use the result as choices for the second dropdown. What is the best way to achieve this? Any examples for reference would be much appreciated. Thanks.
I need to validate if the list is line delimited and in a valid email format using regex in paragraph field . If not , throw a validation message.test@test.com test2@test.com test3@test.com
Hi, I have a code like below where I am getting a list of text strings into a local!leadIDs. When I try to use contains() function to check whether a specified string exists, then I am getting an error like Expression evaluation error at function 'contains' [line 11]: Invalid types, can only act on data of the same type (Any Type, Text) Can someone advise, how to fix this. a!localVariables( local!leadIDs: index( rule!getLeads(key: null()), "id", null()), contains(local!leadIDs, "AB12345")) Expression evaluation error at function 'contains' [line 11]: Invalid types, can only act on data of the same type (Any Type, Text)
a!localVariables( local!emails, local!invalidEmails: if( isnull(local!emails), {}, joinarray( reject( isnull(_), a!forEach( items: split(local!emails, " "), expression: if( validateemailaddress(fv!item), null, fv!index ) ) ), "," ) ), local!validation: if( isnull(local!invalidEmails), {}, "Invalid email at " & local!invalidEmails & " position(s)" ), a!textField( label: "Enter emails", value: local!emails, saveInto: local!emails, validations: local!validation ) ) I want my email addresses validation each mail should be in one line otherwise throw an error and email format should be correct other wise throw an error. ( test@test.com test2@test.com test3@test.com ) can someone help me with the code and how to store this email address in line by line in db
I am unable to request to restart my community edition site. After clicking on the Restart the site, if check for the status i am getting the same page with restart, get new site, upgrade to paid version. After requesting for a restart i am getting this And if i click the check status i am again getting this instead an any mail.Can anyone help me out..?
Hello All, I have a requirement to display record types in an interface. We have around 20 record types and I should display in an interface in tiles. When we click on each tile respective record type should be open in same tab/Dialog box and perform the record actions. When cancel its should comeback to the home page. Please find the below screenshot for reference. Thanks in Advance
My process has Start form setting 3 fields, Script task adding few more fields. but after the data is written to DB, Properties is limited to id only, other data is removed from Process variables. No error in process model and data is written to DB as well. Anything missed from my side ?
Hi Everyone, I have three fields in interface field A, field B and field C. I need to display the field C values only when the field B is checked. The values in fields are being populated using for each loop. Can anyone please help me on this.
hii all, in a editable grid i am fetching backend data by selecting a product name ,if i have selected product name then in next field the respected product description should come , after filling all the fields in editable grid i am going to submit and updating a data base , here every field of editable grid is storing except the product description, respected product description is showing in the grid layout but its not storing in to data base ,but if i edit that product desciption and submitting then its storing in the database . please help me my requirement is to fetch product description by selecting a product name in grid and storing it in to the database thanks and regards, b ramesh babu
I am trying to return some values in a web API of mine where I call an expression rule that maps the vales that are wanted. The thin is I used index() function to cast the values like this childId: rule!A_QE(index(fv!item, "id", null()))['recordType!{record}Record.fields.{record}.childId'], where the item is going through an iterative loop to fetch each list. in the web API it is getting returned as: "childId" : [ 777 ], which i do not want it in this form i need it to be returned in the following form: "childId" : 777 , I tried to add at the end of the index, [1] and it is still returning the same form..
Hi, I noticed that, in my current Appian environment, the document ID of the file uploaded via a!fileUploadField is the same as when it is saved in the destination folder eventually. Is this to be expected? I was under the impression that a temporary ID is generated when the file is uploaded and the document ID is only confirmed when it is successfully saved in the destination folder. Also, is this document ID unique only within an environment? I would like to capture the ID of the document uploaded and saved, and use it for future retrieval (via a download link). Thanks.
Hi All, I have the requirement, where on click of a button in interface the text box pop up should appear to enter text and then submit it. Can anyone please help me how to achieve it?
it does not have any English language course to work with. if there any option tell me share me its link please.
Hi everyone, I am new to Appian, and this is my first question! What is the difference between "Create Folder" type and "Knowledge Center" type under "New" -> "Create Folder" at Build tab of Appian Designer? How to decide which one fit better for an application?Thanks!
from appian application , i will send some emails addresses to 3rd party application , that 3rd party app needs to verify those email addresses and sends the email addresses ids back . do i need use webapi or integration for this scenarios
I have created the ETP_SyncTreatmentNotes_Cloud9 Robotic Task on the dev environment and deployed this bot to the UAT Environment but I am getting an error.I have added a robot and updated the API key in the UAT Environment and permission tags.Error: Problems (1):roboticTaskDesignObject 53537fbd-9bfd-381e-808c-a345d855df37 "ETP_SyncTreatmentNotes_Cloud9": An error occurred while creating roboticTaskDesignObject [uuid=53537fbd-9bfd-381e-808c-a345d855df37]: java.lang.RuntimeException: com.appiancorp.rdo.client.invoker.ApiException: {"timestamp":1702553011435,"status":500,"error":"Internal Server Error","message":"com.appiancorp.object.remote.rtdo.rpa.CaughtException: The robotic task [uuid=656d7a2d28c21722eacbf58d] cannot be imported because the following required precedents are missing: content [uuid=656d7d3c28c21722eacbf590] cannot be found.","path":"/rtdo/DesignObjects/IX/ObjectImportSuppor
Hi All, I am facing this issue when trying to delete a row from a table in db. Is this error caused by foreign key ?
Hello Team, I have filter the date based on the function eomonth(today(),-1) i.e last day of previous month but the fitler has type of date & time where as this function will return only in date format.I have tried to add the time to the function but couldnt able to achieve the requirement as it throwing error of miss comparison types.please help.Thanks in Advance.Error : Expression evaluation error at function a!queryRecordType [line 3]: Cannot apply operator [LESS_EQUALS_THAN] to field [createdDate] when comparing to value [TypedValue[it=3,v=11/30/20236:08 AM]]. a!queryLogicalExpression( operator: "AND", filters: { a!queryFilter( field: "createdDate" /* this is type of Date & Time */ operator: "
Is there a way to customize the transient message, Action completed, after a form button (Cancel, Save, etc) is clicked? For example, can we change the message to "Action canceled" after the Cancel button is clicked? Thanks.
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.