-
Recently active
Hi! I´m trying to make a process in which a document (pdf) is uploaded, then some values are extracted and reconciliated and, finally, those values are saved into a record. By now I managed to create a process until the reconciliation of the document: First of all, the process start form allows the user to upload the document After that, I start the doc extraction and, when it is finished, the user is allow to supervise and reconcile the values which are not correct and "train" the program. By now, this step appears as a task in tempo (I don´t know how to make it appear in the process, by now I have to click into" reconcile doc straction" and "execute the task", manually My doubt here is how to save the values, mapping them with specific columns of a created record. By now I have a data type (general) only with the fields (id factura, nomProveedor, NIF...).
Hello, I'm running into a rather curious issue with record controls and userfilters on a records interface (a!headerContentLayout). In my first screenshot, the 'Show Search' box, userfilter, export filter options appear normal in desktop, wide-desktop formats, but then all options disappear when viewing in mobile tablet. Also, shrinking the interface in a smaller web browser window does stack the record controls as expected. Any ideas as to why the visible options discrepancy on the tablet format?Screenshot #1 (Desktop View)Thanks,JT
Hi! I have a write records smart service but it gives me the following error: Unable to write to the source because the data source did not respond. Error Details: Field 'a_id' doesn't have a default value What is causing this trouble?
Hi! I have the following editable grid, in which some values are passed from another record and other ones are completed by the user When I run the process model, it seems to work properly, auto-generated values appear and the user completes the rest of values: But after this, the auto-completed values don´t appear in the record! I´m using a WriteRecords function directly in the interface, not in the process model My configuration is the following one: I´m using the fv!item to save the values into the local variables, the appending to create new rows and finally using the writeRecords function. But it fails for the variables in which the value is a rule input from a previous interface (idFactura, idPedido, proveedor). The rest of them are saved correctly. What can I do? Thanks a lot! My code is the following: a!localVariables( local!data, { a!gridLayout( label: "A continuación, incorpore las lÃ%ADneas de factura correspondientes y pulse el botón d
Hi All, Recently when we are trying to resolve Health Check UI highlighted issues for our application we got one Yellow warning as "Array of primitive type detected"There is one CDTtype!TEST_CDT( id, name, documentId ) <xsd:element maxOccurs="unbounded" minOccurs="0" name="documentId" type="xsd:int"> <xsd:annotation> <xsd:appinfo source="appian.jpa">@Column(name="document_id", nullable=false, columnDefinition="INT(11)")</xsd:appinfo> </xsd:annotation> </xsd:element>This document is mapped as Number(Integer) and is Array, which is giving the above warning. ISSUE: When I am checking the database the table does not have this column and still data store verification is being passed. Values are being stored in this variable and are being queried too. I am not able to understand how this column is not present in database and still mapped in CDT.
Hello, I recently came across the issue of putting in all of my rule input values that I need for my editable grid to have my interface working. What happens is that I go to save after entering the rule input values in and when I reload the interface I get an error at the top. Also, my rule input values go back to null. What is the reason for this? Is there some sort of mapping step with the data that has been missed? Sorry if this is a dumb question or has been answered before, I tried searching for other threads with the same issue but didn't find anything if it is out there. Any help is appreciated.
Hi, I am using Text Doc From Template smart service in my process and it is creating the document as per our requirements but we need document Id in my process. Please help how we get the document Id in the smart service. We have tried with the above configuration but it returns the document name.
Hello Community, I am working on a form where employees enter all their basic details and also upload a profile picture of them. These employees already have an Appian user account. My requirement is to update the profile pic document ID in a database table and also update that particular user's profile picture in Appian. Since Update User Profile Smart Service doesn't have the option to update the profile picture of an user, I searched in App market and came across a third party plugin named "User Profile Picture Utilities" but it is not working as expected. When added it to process model, it runs fine without any error but the profile picture of the user is not updated. Is there any other way to change the Profile picture of Appian user account other than smart services? Also, I would like to know if there is an option to disable the Profile section for users (Please refer to the attached image)? Thanks in Advance!
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.
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.