-
Recently active
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
Hi Community, I got an issue regarding "Export to Excel" button in the record type. The button is clickable but no action happens. However there are 16,000 rows there and the source is data type. Also, it happens to some users but it fails for me. We are all using chrome (although I checked Microsoft Edge and it is the same). Could anyone suggest a solution please ? Thanks in advance.
I have a custom VB script which I need to execute using Appian. Does Appian have resources to do so? What are the steps I need to take to execute the script?
i am creating record type (Source as web service )Also Created one expression rule as written in code snipet a!localVariables( local!result: rule!JTV_intCustomFieldsGET(), local!rows: if( condition: index(local!result, "success", false), valueIfTrue: local!result.result.body.values, valueIfFalse: {} ), a!forEach( local!rows, a!map( projectId: index(fv!item, "projectIds", {}), customFieldName: index(fv!item, "name", {}), customFieldId:index(fv!item, "numericId", {}) ) ) )But it returns output like this by doing like this project id will be blank in record type or i have to to join array to make it comma separated in record type ..... But out put required is like MapprojectId 18800(Number (Integer))customFieldName"2nd Outreach"(Text)customFieldId28306(Number (Integer))MapprojectId 12405(Number (Integer))customFieldName"2nd Outreach"(Text)customFieldId28306(Number (Integer)) MapprojectId 11000(Number (Int
I have a process model that opens an interface to "update a request." I called the process, passed the parameters and the rule expression to fill the form of the previously entered data which the user is going to update. when i click edit, the interface shows up , but when i click next or cancel or any other button, it says " Action completed " and then closed the interface and returns to this page. Next or cancel are not the end of the form , next is supposed to take me to the next slide, and the button works perfectly on the page that i am calling using the process model. "Next" is supposed to take me to the next slide to make the user update the data.
Hi All , In the attached Screenshot, two values are shown for the project ID, and I want the custom field name to repeat itself twice and the custom field id to repeat itself twice as well. I've added code snippet to what I've currently written for reference and Output should look like this map project id list of number(integer)-2 items 18800 (number(integer)) 12405 (number(integer)) customFieldName list of (Text)-2 items "2nd Outreach" (Text) "2nd Outreach" (Text) customFieldId. List of Number (Integer) -2 items 28306 (number(integer)) 28306 (number(integer)) a!localVariables( local!result: rule!LGH_intCustomFieldsGET(), local!rows: if( condition: index(local!result, "success", false), valueIfTrue: local!result.result.body.values, valueIfFalse: {} ), a!forEach( local!rows, a!map(
Hi everyone, I would like to export my app from dev to prod environment. In the 2 different environments there is a folder with the same name but containing different files. I would like to delete the current app in prod and replace it with the updated version of dev, but keep that specific folder that already exists in prod, then replace the same folder of the app imported from dev to prod with the files I need, keeping the same UUIDs of the documents contained in it and also the other information. It can be done? Or can you download a folder from a specific development environment on the local PC and then upload it as a zip file to the desired environment without changing the uuids? What is very important for me is that the uuids do not change. Thanks in advance
I have created a PM to get Json data, next I have created a webApiPost Start Process, I have tested the request, status code:200, after filling the body {} with json data, is passed to a process variable. But the purpose is to store all the data with mutliple table, through one CDT.
How I know what are the new objects come in Appian 23.3 and 23.2 versions Please share me docs.appian.com page link for new release of 23.3 and 23.2 versions
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.