-
Recently active
I have a button named "Save Decision" on task details page, on clicking it automatically kicks out and returns to the home page(Where all tasks are displayed) and also the task assignee gets changed (to the one who was its original assignee before reassignment) In the code, upon clicking on "Save Decision" we are just saving data to few variables. Tried to debug but could not locate the reason. does anyone know what might be the reason for it ? Thanks
Hello, in a process I am using "Post Comment to Feed Entry", the value of author being passed is a user who is deactivated. This process sometime works fine and intermittently gives me generic error as below- An error occurred while trying to post a comment or hazard to the feed (entry id: [382]). Details: The supplied feed entry [382] is not accessible (APNX-1-4181-100) This is strange behavior, any idea why does it work sometime because I believe passing deactivated user as author should give an error always. TIA!
Hello, to perform a POST type integration in which I want to add a content type multipart/form-data to the body, I have to add the boundary field to the integration header, which I have seen that appian generates in the HTTP Request . That value that is generated in the HTTP Request is --TnQmfygKfP801A_kE1bGL-7YAFk_k6gl9--, and after testing in different environments and files, I have seen that it is always the same. POST /api/myit-sb/content HTTP/1.1 Content-Type: multipart/form-data; boundary=TnQmfygKfP801A_kE1bGL-7YAFk_k6gl9 X-Requested-By: XMLHttpRequest Cache-Control: no-cache Content-Disposition: form-data; name="file"; filename="OP_ATP_DocPrueba.docx" Content-Length: 12354 Host: aena-dev-restapi.onbmc.com Connection: Keep-Alive User-Agent: Appian Accept-Encoding: gzip,deflate --TnQmfygKfP801A_kE1bGL-7YAFk_k6gl9 Content-Disposition: form-data; name="file"; filename="OP_Test_DocPrueba.docx" Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Con
Hello I need advice .As my requirement after registered data to database and redirect register form. below is my process model flow. which flow is better and good for redirect interface. Is there any other method other than the Flow I implemented? Thanks
Hi All, Anybody can please me for regexmatch code IPv6 Ip Address. I an using this regex code "^([0-9a-fA-F]{0,4}:){7}[0-9a-fA-F]{0,4}$" Using above code this scenario: a) :2551:FFFF::3333:4566:3456:0 is also vaild but I don't want to start IP address with any special character. Some of the example below that I want to match regex code valid and invaild like: a) :2551:FFFF::3333:4566:3456:0 (Invalid) b) 1001:2551:FFFF:255b:1222:3333:4566:3456 (valid) 1001:2551:F:255b:1222:3333:4566:3456 (valid) c) 1001:::255b::::3456 (vaild) d) 1001:::255b:::456: (invalid) I need a regex match code which passed all the above mention examples. Thanks
Hello, I've created a new Account in Appian Community, but I use to have an older/existing one years ago. What are the steps for linking an existing account an registering as an Appian Partner. I currently work for a company who is an Appian Partner.
Hi , I'm trying to perform action through the interface using a!recordActionFiled(). The record contains few related actions and I'm displaying that as action dropdowns on the intreface. When I click on those actions. it's throwing me the below error. "The specified related action does not exist or you do not have permission to view it." I'm the administrator who has created all components, but still I'm not able to action. Can you please help me here?
Hi all, I can no longer receive emails from the start node. I configured everything correctly according to the documentation guidelines. Until yesterday I was able to get the process to receive emails, from today nothing works anymore. Any suggestions? I'm attaching screenshots for settings
Hi Guys, I would need to get one list of dictionaries and not two lists of dictionaries? how can I proceed? I expect: this result Now my code is like this: how can I fix? a!localVariables( local!data:{date(2023,10,10),date(2024,10,10)}, local!country:{"ITALY","USA"}, a!forEach( items: local!data, expression: a!forEach( local!country, { DATA:local!data, COUNTRY:fv!item } )) )
Hi, I have to update a status value after a related record action but it is not getting updated until unless I refresh the screen manually. I have used a!refreshvariable() for the local variable where we fetch the status, have given activity chaining in the Process Model and also tried Records sync Smart service. But none of them works. Can someone help if missing something or is there any other option that causing this.
As per Appian 21.1 (https://docs.appian.com/suite/help/21.1/Web_Link_Component.html) now we should be able to open the link on same tab. I tried testing this but the link opens in new tab regardless of the value that is set to the parameter openLinkIn Test Code in 21.1. a!sectionLayout( contents: { a!linkField( links: { a!safeLink( label: "Safe Link", uri:"">https://appian.com/", openLinkIn:"SAME_TAB" ) } ) } )
I have two instances now where related data is not showing up in a read only and editable grid. To solve this problem before, I had to create an Expression Rule to retrieve the data (not the record) for display purposes. This is the latest example. I have an editable grid that shows the positions for a specific clergy member. (the grid is not complete, I am just trying to get the data to display properly) Relationships are built between Clergy Position and Clergy Member, Ref Clergy Position, and Parish. All relationships are built both ways. Data shows for the columns Term Start, Term End, Term and Term Complete. Data does not show for columns Position, Organization and City; these are all related data. a!gridLayout( totalCount: count(local!clergyPositions), headerCells: { a!gridLayoutHeaderCell(label: "Position"), a!gridLayoutHeaderCell(label: "Organization"), a!gridLayoutHeaderCell(
Good morning, I am trying to locate the file appian_log4j.properties, but I am unable to reach the path /deployment/web.war/WEB-INF/resources. I am working from an Appian Cloud environment. Could someone please guide me on how to get there or where to find the information? Thank you very much
Hi Expert I have an interface where I have read only grid . Now, when the user clicks on completed Status , I want a way to open the interface as a dialog. if there is a way please let me know. I tried with record action but not able to achieve this . a!gridColumn( label: "Status", sortField: 'recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status', value: a!richTextDisplayField( value: a!richTextItem( text: if( a!isNullOrEmpty( fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] ), "", fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] ), link: if( and(fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] = con
Activity chaining is used to show forms in succession , then how activity chaining can decrease the performance .
Hello , Any best practices around how do we manage objects which are not required anymore ? Specially when those objects have been previously deployed to production. Is it a best practice to delete such objects ? If this could be an option , then such objects could be easily deleted in the development environment but then how do we promote the deletion to high environments ? Or someone will have to manually delete them in the high environments ? Thank you.
Hello, Is there a way in Appian we could upload from Google Drive Client from local system? Basically the google drive client look like this- When we select and upload Test GDOC gets this error- Thanks is advance.
Hi Expert I have an interface where I have read only grid . Now, when the user clicks on completed Status , I want a way to open the interface as a dialog. if there is a way please let me know. I tried with record action but not able to achieve this . a!gridColumn( label: "Status", sortField: 'recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status', value: a!richTextDisplayField( value: a!richTextItem( text: if( a!isNullOrEmpty( fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] ), "", fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] ), link: if( and(fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] = cons!CDM2_VA
Getting this error when trying go into the application, not only for our application, clicking on other applications in same environment happen the same. But when I switch to another browser (Chrome), no error when opening application Also having this error 'unable to acquire JDBC connection' in many places in our application. Are these same issue?
Currently I am using appian provided Document extraction AI skills. While running the process it is taking approx 3~5 min for document extraction from a high resolution pdf. How can we improve the performance of the AI skill, any thoughts?
Hi! Does anyone know if Appian has storage with s3?
Hi, I have an issue when using custom sender in the email sending nodes. I have a very simple process with two email sending nodes in parallel. Both nodes are configured exactly the same, except for the sender type: one of them is 'Custom sender' and the other is 'Process'. I have tried different combinations in the 'Sender email' field, and nothing works. To rule out that the email is going to a spam folder, I have put a personal email in the recipient email, and only the email configured with 'From: Process' arrives, just as it happens when I use a corporate email. Furthermore, in the 'Sender email' field, I have tried using both the toemailrecipient() function and the toemailaddress() function. Neither of the nodes gives an error. Any ideas on what might be happening?
I have an interface where I have read only grid. Now, when the user clicks on Completed Status . I want a way to open the interface as a dialog, if there is a way please let me know. I tried with a!recordactionfield but not able to achieve this . a!gridColumn( label: "Status", sortField: 'recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status', value: a!richTextDisplayField( value: a!richTextItem( text: if( a!isNullOrEmpty( fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] ), "", fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] ), link: if( and(fv!row['recordType!{1b81b174-97c1-47ee-aa85-b20723b749c3}CDM2_Target Record.fields.{status}status'] = cons!CDM2_VAL_TARGET_ST
Good morning everyone, I am new in Appian, we are setup to use SSO to log in Appian, when users are created, it send wrong informations to the users. Is it possible toi disable the automatic email sent when creating a new user? Thank you
Hi all,We have a business requirement where the user will enter data into a text field and if the data reaches a certain character limit say 100, we should not allow users to type more than 100. Like they want it to be freezed or stopped at 100 character length? We are showing character limit validation but they want some kind of restriction. Is it possible to achieve to such feature?
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.