-
Recently active
Hi Everyone, I am facing an issue with News Feed, My requirement is whenever I am posting a comment I should not receive any email, I tried disabling the Email notifications for News but it's not working. My scenario is, I have 2 users (Initiator and Approver), when initiator submits a case to the approver there will be post added to New feed Now Approver gets a task to approve the Case, at this point whoever(Initiator or Approver) comments the post, that user is not receiving any email But after the Approver Approves or Rejects the Case(the case will go back to Initiator if rejected), then in both scenarios Initiator is receiving an email if Initiator is posting comment in News feed Entry and Approver is not getting the email if anything is commented to the post. Please help me resolve this, I should not receive email notification for Initiator in any case. Thanks
Hello Appian, I'm having trouble with setting SMTP for on-premise appian server. https://docs.appian.com/suite/help/22.2/Mail_Server_Setup.html#sending-emails I followed the instrtuctions from above link. And getting error like below from the log - tomcatstdout log - mail-listener.log - custom.properties How can I make this work? Thank you
Hi, I am trying to configure the Microsoft SQL local database from my machine into Appian application. While doing this I am seeing timeout exception (as shown below). We looked in to the logs and we are seeing the SQLTimeOutexception in the logs (As shown in below image). Are there any limitations with academy version of Appian to connect to the existing MS-SQL database? OR Am I missing anything here? I have reffered the below topics to resolve the issue… Without much help! docs.appian.com/.../Configuring_Relational_Databases.html https://community.appian.com/discussions/f/data/10274/connection-to-sql-server-2016
I was reading this article, creating records and related records using a process model, and I wondered if the code for the form interface, Case, referred to in the article is available on the Appian Community for reference. I'm working on a form (proof-of-concept) which has a similar structure as the Case form, i.e. a base record type and an editable grid of related record type on the form.
Hi Appian, I found that there is a cleanup.sh script that helps data maintenance. ( https://docs.appian.com/suite/help/22.1/Data_Maintenance.html#cleanup-script ) From the documentation, is says that [actions] for [data] cleans up old data files (*.kdb) in the live `gw*` directories. What are the content of the data files (*.kdb) that will be cleaned up from 'gw' directories? And what does the 'gw' directories stand for? Thank you
Is it possible to get the robotic task, which is custom developed in IDE (intellij) executed in Appian RPA?I am following the documentation on Custom code dev in Appian RPA. Using Guided configurator initial steps are completed with respect to JDK, Maven and IDE setup. After this I was reading Calculator tutorial and downloaded source code file to try and execute the custom developed bot in RPA console.Due to being novice in Java and Maven I am not able to understand fully how the IDE connects with Appian RPA console, - how do I get this calculator bot imported/deployed and then executed in Appian RPA.- Do I need to create a bot in RPA first and then export it, copy it in my IDE project folder, copy calculator code and then run some deployment command or how?Can someone simplify it for me and explain how to achieve this? If possible, please distil it down in steps.Thanks in Advance.
Hi, Is there any straightforward method to compare below two arrays in such a way that, SelectedAnswersArray[1]=correctAnswersArray[1] , SelectedAnswersArray[2]=correctAnswersArray[2] and SelectedAnswersArray[3]=correctAnswersArray[3] . SelectedAnswersArray: {"a","c","b"} correctAnswersArray: {"a","b","c"}
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?
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.