-
Recently active
I have a Process Model that creates a record. That record has a field "record types", which can be A, B, or C. Based on which record type is selected, I would like to create a record from a related table with additional inputs. I have tried following this documentation: https://docs.appian.com/suite/help/23.1/Write_Records_Smart_Service.html#create-records-and-related-records, but there is a lot that it leaves out. Here is an example. If the Record Type is A, the process forks down to "Create A record".My problem is creating the A record. The A table has a 1-1 relationship with the Record table.Some specific questions I have are:What should the process variables be set up like for this? How should the "Create A record" Data section be set up for this process?Both tables have Auto Incrementing IDs, is any additional setup needed for this on the actual Appian platform? If so, what?Are there any additional services or processes needed
I am training the document in the reconciliation task. i am able to read all the text fields. but unable to read the check boxes. What could be the reason? Thanks in advance
Hi everyone, how can I obtain the list of the extension of files that are shown in an interface by the document viewer?I checked the documentation and there are no indications or lists about the formats allowed.
Hi, I have a constant which contains array of text, I want to check if a given value is in the array subset of that constant. For that I'm using- contains( { cons!TA_CITY_LABEL[1], cons!TA_CITY_LABEL[3], cons!TA_CITY_LABEL[4], cons!TA_CITY_LABEL[7] . . . and many more }, local!label ) I wonder if there is any solution to it as I have to write the name of constant again and again and I'm checking this multiple times on different datasets.
I have an expression rule which is containing a data with multiple values, I am trying to insert that data to dropdown choice labels and choice values but I am not able to do that.Can anyone help me to configure that?
I have file(docx,pdf) and i have to retrieve or extract comments from the that.
Hii Team, Currently we are trying to use webhook for getting back the signed document from adobe. But in the creation of webhook itself, we are getting an error that "webhook URL is invalid". We have tried becceptor with adobe for testing purpose. So it worked there . But when we tried with our production environment's webapi URL, we weren't able to create webhook. We have provided the webapi URL as webhook URL in the format mentioned below, [https://:[apiKey]@webapiurl]. But still we are getting that error message. Can anyone suggest how can we resolve this? Thanks in advance.
Hi Expert, I have made a expression rule which is returning datasubset . For eg: This is my query entity returning data. Col A Col B Countcolumn a b 2 d e 3 g h 1 Now i want to repeat row based on count column.How can i achieve following output: Col A Col B a b a b d e d e d e g h Please help.
Has anyone been able to run FitNesse for Appian with a Password File? http://fitnesse.org/FitNesse.UserGuide.AdministeringFitNesse.PasswordFile Here's what I'm seeing. All runs use the following command java -jar fitnesse.jar -a "passwords.txt" where the passwords in each file are cleartext or encrypted passwords.txt users.properties Result cleartext cleartext good encrypt cleartext good encrypt encrypt Invalid argument encrypt no user=password line error encrypt no file error cleartext no file error When it's run, the authenticator says MultiUserAthenticator (password.txt) versus PromiscuousAthenticator (users.properties). But, the above tests seem to indicate that passwords.txt is being ignored completely and FitNesse is only using users.properties. I hope someone can shed some light on this for me. Thanks
Hi Experts, How to use Index Function to extract whole row data from a list of records based on one record field value? We want to extract one row data from local! data where one fieldname : id has a value: 100051
We have a requirement to showcase end users the deployment details like we developers can see in the deployment tab inside designer. Business Users wants to see the incoming deployments for a specific application, time, number of Objects , Object details, object versions etc. Is there any way we can achieve this ?P.S I have installed log reader plugin to read deployment logs but unable to see details
The way I understand it is that the idea of Record Sync is to replace the functionality of database views by creating relationships between tables which work like joins in views. That being said, a big part of database views is joining transactional tables which store ref IDs with ref tables to get the display values. Would it be considered an anti-pattern to create a record type for a ref table and join that to the transactional record to display a ref id's display value, or is that under the intended functionality of Record Sync
Hello: I have the following code and the 'assessment score' (which, for now, is a value generated by a rand() function) changes value when I click on the 'Show details' icon. Is there a way to prevent that from happening? Thanks! a!localVariables( /* We load the employee data into this variable. If you are populating this variable with a query, you would put .data at the end before passing it to the grid. */ local!employees: { a!map( id: 11, name: "Elizabeth Ward", role: "Senior Engineer", team: "Front-End Components", pto: 15, startDate: today() - 500 ), a!map( id: 22, name: "Michael Johnson", role: "Payroll Manager", team: "Accounts Payable", pto: 2, startDate: today() - 100 ), a!map( id: 33, name: "John Smith", role: "Quality Engineer", team: "User Acceptance Testing", pto: 5, startDate: today() - 1000 ), a!map(
I want to do something like this: CONST MIN_YEAR = 15 int[] yearOptions for int i = year(date)-MIN_YEAR to year(date)+1 { yearOptions.push(i) } How can I do this in Appian?I suspect this need to be an expression rule and the number 15 may change while I'm working on the interface.
Zuuuup, people ? So, I've been developing a process model (not from begin, some other guy started development before me) and, sunddely, everytime I click on the drop with variables, all tabs in chrome with an Appian url rise an error about "out of memory". I'm trying to click on this drop: Is it something knowed? I mean, may I or someone else missunderstanding some config ? Thanks anyway for your time spent reading my question !
Hi, How can I disable "show objects" icon which is appearing at the bottom right of Appian site.
I have CDT with following fields While using a!toJson , it is EXCLUDING fields which are having NULL values except fields with TEXT datatype. Expresion: - a!localVariables( local!data: 'type!{urn:com:appian:types:RS}RS_dummyCDT'(id: 1, name: "abc"), a!toJson(local!data)) Result: Note: If I use parameter removeNullOrEmptyFields as true, it also excluding text fields which are null a!localVariables( local!data: 'type!{urn:com:appian:types:RS}RS_dummyCDT'(id: 1, name: "abc"), a!toJson( value: local!data, removeNullOrEmptyFields: true )) Result: While using a!toJson_17r1, it is returning all the fields of the CDT irrespective of NULL values. Expression: a!localVariables( local!data: 'type!{urn:com:appian:types:RS}RS_dummyCDT'(id: 1, name: "abc"), a!toJson_17r1(local!data )) Result: I want to get the data the way we are getting result while using a!toJson_17r1. i.e. I want to get all the fie
Hi, There is a stored procedure that updates the database and soon after we trying to sync records in a subprocess.Sync of all records and related records based on identifier is done.It has been observed that certain processes are being paused while others are completed fine. This is random behavior and no error on process model. Please let me know if any solution regarding this. Thanks, Bhavika
Hello, Does anyone know how can I populate the node input "Custom Cell Values" on the smart service "Export Data Store Entity to Excel" with the result from the query that is performed on this node ? So basically, a query is performed on the DSE, then on the same node is it possible to map an existing template on specific cells with the result of that query? The same can be accomplished with plug-in "Export CDT To Excel", considering an existing template and populating specific cells with CDT values. So, since this one is deprecated and Appian advices to not use this plug-in, how can we accomplish the same with this smart service ? Any ideas ? Thank you in advance
Hi All, Is there a possibility of Highlighting a field , when it is updated. we have a scenario, where a user updates some fields of a record and send it for approval. The manager should be able to see the fields updated as Highlighted, based on which he can take decisions. Warm Regards Vineeth
I am unable to invoke the chrome browser version 111 using chrome driver version 111, following exception is faced. Kindly let me know the solution __EXCEPTION__:org.openqa.selenium.remote.http.ConnectionFailedException: Unable to establish websocket connection to localhost:59631/.../f4eb2165-b462-46cb-9627-a5bdb48c2252 Build info: version: '4.1.2', revision: '9a5a329c5a' System info: host: 'VURAM-2021-0203', ip: '192.168.1.8', os.name: 'Windows 10', os.arch: 'x86', os.version: '10.0', java.version: '1.8.0_311' Driver info: driver.version: ChromeDriver at org.openqa.selenium.remote.http.netty.NettyWebSocket.<init>(NettyWebSocket.java:104) [selenium-remote-driver-4.1.2.jar] at org.openqa.selenium.remote.http.netty.NettyWebSocket.lambda$create$3(NettyWebSocket.java:137) [selenium-remote-driver-4.1.2.jar] at org.openqa.selenium.remote.http.netty.NettyClient.openSocket(NettyClient.java:118) [selenium-remote-driver-4.1.2.
Hi, I'm getting below error with the below code. Please help me in resolving this a!localVariables( local!selection, local!selectedProduct, local!rowSelectionIndex, local!docCodes, local!removedPropertiesList, local!finalNotificationProperty:a!refreshVariable( value:ri!finalNotificationProperty ), local!removedPropertyIdList:a!refreshVariable( value:ri!removedPropertyIdList ), local!documentCodes, /*local!tempDate,*/ a!sectionLayout( label: "Product Details", contents: { a!gridField( label: "Read-only Grid", labelPosition: "COLLAPSED", data: ri!finalNotificationProductDetails, columns: { a!gridColumn( label: "MK/V", value: fv!row.mkv_txt ), a!gridColumn( label: "Generic Name", value: fv!row.genericName_txt ), a!gridColumn( label: "Trade Name", value: fv!row.tradeName_txt
Hi, I have an expression rule which is returning data from the database table. Now, I would like to get a latest db record using that expression rule. How can I achieve this. Any advises please. Thanks.
Hi, I have the below scenario. I have a master table to which I have to save the data initially. Later if any of the child tables have data then I need to store into respective tables. Also, I have to save the master table autogenerated key column into the child tables. Can someone advise, if I have to use any specific smart services to achieve this. Thanks in advance.
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.