-
Recently active
Write records is refreshing record type only after enabling the activity chain. Is there any other option to refresh record type other than enabling the activity chain.
a!gridColumn( label: "Ticket Id", value: a!richTextDisplayField( value: a!richTextItem( text: fv!row.issueId, link: a!dynamicLink( saveInto: { a!save(local!selectedTicketId, fv!row.issueId), a!save(local!showDetailsPage, true()), a!save(ri!showLinkedIssues, true()), a!save(ri!newShowDetailsPage, false()) } ), linkStyle: "STANDALONE" ) ) )Can we open a dynamic link in a new tab or is there any way to open in new tab
Hi, How to write syntax for rich text field I found hints from the cheat sheet populate FIELD_TYPE field [FIELD_INDEX] with VALUE(S). Can you please help me to know what will be FIELD_TYPE? I tried with paragraph, text, rich text field, and rich text field editor. Thank you very much!
Above is what my substitution keys look like. Below is what I am seeing in the PM designer for each key. Some of the keys do appear normally. Below is for the key poss. I have keys which are not underlined that are producing the same behavior. This word document was provided to me by the client. It is a paper form that customers would fill out by hand. p oss Any idea what the issue is? Can anyone reproduce this? I could send a portion of the document to anyone interested.
Hi Experts I have a DB Script in which a column have the French language data(Conversion of English fields name). I import the script but after importing the data, the data is not correct as It is giving question mark(?) for few letters in the French word. Example: complète ( French Word ) ---------> compl?te (After import is complete). I used every default setting such as UTF-8. If is there any solution then tell me in steps Thanks in advance.
here am using record to display the grid along for that grid need to add the filters a!localVariables( { a!gridField( labelPosition: "ABOVE", data: 'recordType!{81e1435a-de76-4bff-8b85-6ae5a581d036}Documentation Checklist', columns: { a!gridColumn( label: "CIF", value: tointeger( fv!row['recordType!{81e1435a-de76-4bff-8b85-6ae5a581d036}Documentation Checklist.fields.{cif_int}cif_int'] ), align: "START", width: "NARROW" ), a!gridColumn( label: "Customer Name", value: fv!row['recordType!{81e1435a-de76-4bff-8b85-6ae5a581d036}Documentation Checklist.fields.{customerName_txt}customerName_txt'], align: "START", width: "1X" ), a!gridColumn( label: "Source", value: a!linkField( links: a!recordLink( label: if( rule!APN_isBlank( fv!row['recordType!
am trying to create read only grid using record type but am getting this error, record type is updated only
Hi, we need to create an integration with JMS on Cloud, being able to send messages to an external JMS Queue or Topic, and starting processes with a receive Message Event This can be easily done in a OnPremise Installation, but according to the documentation, this is not supported on cloud, but most of the cases can be achieved with a plugin from the market, but in the market we only find two old smart services that are only supported in previous appian versions. How can we achieve this requirement if we are working in an on Cloud instance? Regards
Hi, Please help me out to populate date and time in fitnesse script |set test variable|start_date |with|10/13/2023 02:30| |populate field |Start Date|with|tv!start_date| Thanks
Hi i have a requirement to show only unique index value while using for each how can i do that ? in local!voucher Details have 4 item that is duplicate i need only unique value
I have a Process Model which is Called from Web API via Start Process. a!startProcess( processModel: cons!MA_WRITE_TO_DB, processParameters: { getData: local!getData, } onSuccess: a!httpResponse( statusCode: 200, body: a!toJson( { a!map( value: fv!processInfo.pv.value ) } ) ), ) I need to return value from Process Model(so we have used Activity chaining in PM), but due to Activity chaining its taking too much time. Is there any alternative way(without Activity Chaining) how i can return the value from PM so that it takes less time
Hi I have dynamic List of comments. A comment may have one link or more (there is no restriction on the number of links), as an example is shown below. 1. [{color:#4F50FF}ISSUE-120{color}|https://apps.Tsca.com/suite/sites/lowrider/page/home/record/lQBzulQNzBso196rg0E7ESk00riOSRPp8CPq_KH4VquOjcsriDU6l5j_CxkCY3Ckxt7DZght8D6EZ4CtItPtDmx_uQf3vIm9JzMPvW8QmMKoSTzXRo/view/summary] has been updated to the following status: In Review in Tier 1 by Klaus Lewis, 2. [{color:#4F50FF}ISSUE-122{color}|https://apps.Tsca.com/suite/sites/lowrider/page/home/record/lQBzulQNzBso196rg0E7ESk00riOSRPp8CPq_KH4VquOjcsriDU6l5j_CxkCY3Ckxt7DZght8D6EZ4CtItPtDmx_uQf3vIm9JzMPvW8QmMKoSTzXRo/view/period] , [{color:#4F50FF}ISSUE123{color}|https://apps.Tsca.com/suite/sites/lowrider/page/home/record/lQBzulQNzBso196rg0E7ESk00riOSRPp8CPq_KH4VquOjcsriDU6l5j_CxkCY3Ckxt7DZght8D6EZ4CtItPtDmx_uQf3vIm9JzMPvW8QmMKoSTzXRo/view/period] has been updated to the followi
Hi,everyone How to publishing process models as web services.How to configure in WSDL URL .Need advice and help!!! Thanks
What should I write script for grid Thanks
Is it possible to download the data in Compare and Deploy grid into an Excel file. Or any way to implement a custom report around it to download the data in that grid?
Hello Techies, We are planning to roll out Appian to thousands of our customers and looking to onboard a digital adoption platform like "WalkMe" with Appian. They typically use either JavaScript or browser plug-ins to work with a web application. Appian does not support adding JavaScripts to sites or elsewhere. Have you used DAPs in your projects? If not, have you configured JavaScript anyhow?
Hello , In the current client we have the need to create a document (specifications for tenders). The functionality is that in the bpm there is a form with several sections that the user must fill with information. This information must be formatted (tables, bold, list of items). We need to be able to add this formatted text in specific points of the document that is used as a template. We have tried with the smart service dynamic template but it does not preserve the text formatting. What would be the right solution for this?
Hi, Has anyone ever had to send an encrypted password from Appian to an external system? In my case, I need to send an encrypted password to RPA (Blue Prism) and I have tried the encryptvalue() function of this Encryption Functions plugin that uses the AES-256 method to encrypt, but the RPA team is not able to decrypt it from Blue Prism... I had also thought about using the native encryptedTextField() component but I don't know what method it uses to encrypt or how to obtain the key needed to decrypt from an external system. Thanks
a!localVariables( local!array: cast( 97, { { item: "stapler", name: "Mike", countryId: 1 }, { item: "printer", name: "Larry", countryId: 2 }, { item: "laptop", name: "Mike", countryId: 1 }, { item: "glass", name: "Mike", countryId: 3 } } ), local!updatedArray: a!forEach( items: local!array, expression: remove(fv!item,"item") ), local!finalArray: a!forEach( items: local!updatedArray, expression: remove(fv!item,"name") ), local!finalArray )
Hi, what is the Appian's Policy for data collection in regard to a company data? and we have a use case to enable the SSO authentication via Microsoft to login into the site or portal that we made in an application. what is the process for the same?
Hello Community! I have next error after running tomcat: aused by: java.lang.ClassNotFoundException: Unable to load class: org.postgresql.Driver from ClassLoader:java.net.URLClassLoader@326de728;ClassLoader:AppianWebappClassLoader context: suite delegate: false----------> Parent Classloader:java.net.URLClassLoader@326de728 at org.apache.tomcat.jdbc.pool.ClassLoaderUtil.loadClass(ClassLoaderUtil.java:56) at org.apache.tomcat.jdbc.pool.PooledConnection.connectUsingDriver(PooledConnection.java:304) ... 29 more Caused by: java.lang.ClassNotFoundException: org.postgresql.Driver at
I want to add this (Move Raws Up and Down ) functionality for the editable grid.
Hi All, I have a parent process A where I have wired another process B as a sub process. When I look at an instance of process A, I can see that the start process node takes 11 second to execute (I am looking at the process node > response time in the process details tab). When I look into the instance of process B, I can see that the response times for each and every node does not add up to 11 seconds (adds only up to 7 seconds). I would assume that in this case, the response time for individual nodes should be added up. Does anyone know how does the calculation of the response time is done? Thanks, S
Can we execute VB script in Appian? Is any type of custom code execution possible in Appian? If not what are the workarounds?
is there any way to create an record type without Primary key ? As i am getting the data from web service
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.