-
Recently active
Hi, In my dropdown field, I need the choice Labels to be concatenate two fields. choiceLabels: concat ( fieldname1 & "-" & fieldname2 ). When I Used this, I am getting below errror: A dropdown component has an invalid value for "choiceValues". The choiceLabels and choiceValues arrays must be the same length, but choiceLabels was length 1 and choiceValues was length 101.
Hi, I have a simple process model which I am using to send emails. If I am sending email to person who is OOO, then I would like to collect OOO email. In order to achieve this, I did the below setup, but still no luck. Appreciate if someone help on this. Thanks, in advance. In addition to the below setups, I have also added conf.suite.ANONYMOUS_ACCESS=true in the custom.properties file.
How to answer this question in an interview? Could you please explain this diagram?
Hi, I have a requirement to send/receive message to process instance. My instance holds 3-4 receive message events a particular receive message will be executed based on the msg.properties.xyz properties. When a particular receive message event continues and the process terminates I am getting a error email from rest of the listeners. Problem: This notification is sent for canceled event messages of type Process to Process. Details: Canceled consumed message in Message Filter (ERROR:EVAL:@reason=Invalid bean property name 'rejectToRequestor' (valid properties are jmstype;username;eventtype;acceptandallocaterequest;originprocessmodelid;originprocessid;destinationprocessid), bean error code 0) for message sent to persistent id 0003ea7b-4569-8000-4990-7f0000014e7a on named port 'reject To Requestor'. The process itself has not been canceled and may continue to consume events. Recommended Action: Check the message listener for correctness. Cleanse the
Hi! I´m trying to create an editable grid in which the user can introduce new rows, so that: 1) The data introduced in the editable grid is saved into a record. Also, I´m saving variables from a previous interface (IDFactura, IDPedido, Proveedor), and I want them to be saved in the same record 2) When a new row is added, it is also saved into the record The problem I´m facing is how to save both type of variables in my record (previous variables and actual ones): - For the actual ones (editable grid) I´m using the WriteRecords function inside the interface - For the new ones, I´m adding an a!save function When I add the a!save function, my actual variables (editable grid) are not saving correctly. In the process model, I´m using a write records smart service too, and it seems that the only variables catched are the previous ones (IdFactura, IdPedido, Proveedor). It´s
Hi, I have a date field in Form. The selected date i need to pass it to integration service which is a datetime field. For my inputted date to pass i need to convert todatetime to pass into integration. The issue we are seeing is below conversion is appending the timezone to the datetimefield which is not needed. ActualResult: todatetime(ri!BGDate) 7/20/2023 12:00 AM GMT+00:00(Date and Time with Timezone) ExpectedResult: todatetime(ri!BGDate) 7/20/2023 12:00 AM (Date and Time) Kindly suggest.
Hi, I am trying to add a customized background image for a form with text boxes, dropdowns, check boxes, and radio buttons. a!billboardLayout is there but it does not support text boxes, dropdowns, or checkboxes. Is there any other way to achieve this?
Hi Team Is it possible to customize the buttons? 1. To display different color in the buttons. 2. Adjust the size of the buttons. What all different possibilities do we have to customize as below.
What are all possible situations or mistakes in Appian coding, design or modelling can cause deadlock whether it's DB deadlock or any deadlock situation in Appian objects like process model?
I´m trying to create an editable grid in which the user can add or delete several rows. I have four columns (Material,Unit Price, Quantity, Total Price), and TotalPrice is the product of Price and Quantity (when the user enters both values, the product is created automatically). But the fact is that, even though the product is created correctly, it seems like it is not saved correctly like the other data values Here is a picture of the interface In the next picture you can see the column "Importe Total" and its values don´t appear To create the editable grid and save the values temporarily (because after that I write them to a record) I created a local variable (data). Basically, I followed the instruction of an Appian Community Video about editable grids from scratch. I leave here the code and some captures. In the end, I updated the records directly in the interface. I don´t know if it is a correct way to do it, or if I should write the records in the
Hi! I´m trying to create a complete invoice in two steps: Step 1) First interface in which the user enters headboard values (id, total price, supplier, etc). The data is saved in Record Type 1 Step 2) Second interface in which the user enters the invoice lines (editable grid). Also, I want to link some of the fields of the previous interface, such as the supplier name or the invoice id. The data is saved in Record Type 2 I´m linking both interfaces in the following process model (I´m only showing the left part, in the right part I make some checks with logic doors and write the records to the database. The process without the invoice lines works correctly, now I´m just introducing the invoice lines to the process) The problem I´m facing is that I´m not able to pass values directly from one interface to another, putting them on a text field. I´m trying to do it this way with a text field: Display value: rule input which refers to
I would like to utilize the API to achieve the functionality of the embedded view. JavaScript is required for implementation.However, upon further investigation, I found that HTML rendering is not supported within Appian, and that it was necessary to retrieve the HTML generated by an external system from the URL.In addition, OAUTH authentication is required to realize embedded views by API. If so, is it correct to think that authentication is also done by an external system that renders HTML? If possible, I would like to complete it only between the system with the embedded view and Appian. thank you. en.developer.box.com/.../
Can we define document retention or archieval process for documents saved into KC or in any Appian folder. Can it be retrived also on demand?
Hi, I have a question is there a way to add a Search bar to a grid that the data source is a variable?
a!currency() what is the role of:-- isocode:"USD" ,"EUR format: CODE,LOCALE,SYMBOL how they related to each other
Hi. I have a doubt in nested if's here, if the first condition is true, then it will be return the statement "should be 18 digits". If it's false, I want null value to be returned. Since I am using nested if's its returning "must be numerical and no more than 12no's". how can we resolve this. Can someone help me here?
Is it possible to create exact Record Save Filter UI.When user click on funnel icon it will show clickable options.Same as below.
Hi All, I'm creating an application where I have a form with an add button on it. Using this button, I want to add a row into an editable grid with recently added data. Then, using the same form, I want to add the data in the same Editable Grid in the next row. Finally, if the user clicks the submit button, all the grid data is stored in the database. Adding a row to the grid when I click the add button here I am facing the problem
Hi, I have a requirement where I need to duplicate a particular section on clicking add button. In the section I have some text fields and clicking on the "Add" button the text fields should get duplicated where I have to enter new values in the field. Is it achievable? or is there any other method where I can duplicate the fields on clicking the button ?Please let me know Thanks
i am trying to save the selected data into some local variable but it was saving as id i need full data to be save in the local or RI this is my code: a!localVariables( local!items: { a!map(id: 1, firstName: "John"), a!map(id: 2, firstName: "Michael"), a!map(id: 3, firstName: "Mary") }, local!selectedReport, local!data, a!gridLayout( headerCells: { a!gridLayoutHeaderCell(label: "Summary"), a!gridLayoutHeaderCell(label: "Qty", align: "RIGHT"), }, columnConfigs: { a!gridLayoutColumnConfig(width: "DISTRIBUTE", weight: 5), a!gridLayoutColumnConfig(width: "DISTRIBUTE"), }, rows: a!forEach( items: local!items, expression: { a!gridRowLayout( id: fv!index, contents: { a!textField( /* Labels are not visible in grid cells but are necessary to meet accessibility requirements */ label: "summary " & fv!index, value: fv!item.firstName, readOnly: true ), a!integerField( value: fv!item.id, readOnly: true,
Hi everyone, I would create a note entry for my application in the record details page to create a history of the actions performed by a user who accesses the following interface. I created a manual action that allows you to write these notes in an anonymous field of the record. However what I want to create is a history of these notes: from the note entry screen in the screenshot I would like that every time a note is entered the old one is no longer selectable and a new line appears in the record detail screen under the appropriate section, as depicted in the screenshot. So the result has to be like this in the record details page. What the record call does is simply an override in a field of the selected record. Thanks everyone for the help. P.S: i don't want to simply write note in a box field in the interface: this information must be visible into 2 different sites, so i have to memorize this notes somewhere in the records
Hi All, I downloaded the health check report, in that report for description column for user input task i am getting below Description. 29 calls, 1.2MB max interface, 360 max component count, 84.6KB average interface, 296 average component count. .what is the exact meaning of this description Thanks in Advance.
Hi All, If i have two tables where possible relationship can be configured, is it better to create view from both table OR create relationship to query data from both table? Thanks in advance
Though it's an extension to below thread: https://community.appian.com/discussions/f/user-interface/20858/merged-or-nested-column-headers-in-an-editable-grid I was trying to follow the approach in above thread to achieve grid format I have attached as image in this thread post. The above logic works good but there are lots of alignment issues when grid is viewed across different environment screen like wide desktop, mobile, etc. The column widths in read only grid changes on different screens which most of the times cross the limits of above cards, for example - I have one main header "A" under this I have two headers "AA", "AB" and one more main header "B", have only one under it "BA", when I change screen to wide the width changes and unaligns. Mostly, I see columns which should only be under "A", some part of those columns move under "B" header. Also, with paging grid, it is getting diffic
Hi All, I am trying to update data from one table to other table using execute store procedure smart service but i am getting below error while executing smart service. (conn=8566693) Incorrect string value: '\xAC\xED\x00\x05ur...' for column. can any one suggest what it is referring for. 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.