-
Recently active
The idea that I want to do is be able to save a specific answer into a specific spot into an array. I want to be able to select multiple drop downs save it into one array and then put that in the CDT to be referenced. I do not want to use a multiple dropdown because thats not in the scope of what I have to do nor is it plausible for the problem I have to complete. The basis of this interface is supposed to be able to click the add button add another option and then select if its the primary or not and then save those. This code you can play around with yourself: a!localVariables( local!pubProd: {null}, local!dataProd1: {null}, local!count: 1, local!datacount: 1, { a!cardLayout( contents: { a!forEach( items: enumerate(local!count), expression: a!columnsLayout( columns: { a!columnLayout( contents: { a!dropdownField( label: "Producing Or
Hi all, uploaded the documents and showing those documents to the user but i facing error in site page showing "expression evaluation error [evaluation ID = aae0b:d617b] in rule 'sha_imagelist' at function a!forEach [line 23]: Error in a!forEach() expression during iteration 1: Expression evaluation error at function a!billboardLayout [line 35]: The image in a billboard layout has an invalid value for "document". "document" must not be null". I checked it by using different function like fco_hasvalue and fco_isnullorempty still i have this issue can anyone help me to resolve this error a!localVariables( local!listingData:rule!SHA_LISTING_EXPRUL(listingId:index(ri!listing,"listingId",null)), local!houses: rule!SHA_qe_getDocuments( entityId: index(ri!Document,"entityId",null) ), local!address:rule!SHA_qe_toGetPropertyAddressDetails( listingId: local!listingData ), local!appCount: length(local!listing
I have the below expression rule, and which is pointing to an entity using a constant. a!queryEntity( entity: cons!AT_EMPLOYEE2, query: a!query( logicalExpression: a!queryLogicalExpression( operator: "AND", filters: { a!queryFilter( field: "status", operator: "=", value: ri!status ) }, ignoreFiltersWithEmptyValues: true ), pagingInfo: a!pagingInfo( startIndex: 1, batchSize: 10, sort: a!sortInfo( field: "employeeId", ascending: false ) ) ), fetchTotalCount: false ).data and I have the below code, and which is containing a grid and the data getting loaded based on the "Status" dropdown selection. I am getting an error while exporting the data into an excel. Can someone advise what needs to be done. The error is at the line " entity: 'type!{urn:com:appian:types:AT}AT_employee2(rule!AT_getEmployeeDetailsByParameters(status: local!sta
Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!gridField [line 497]: A grid component [label="null"] has an invalid value for "data". "data" must be sourced from a Record Type, a query, a list of Dictionary, a list of CDT, or a data subset. Received: Text I'm trying to refactor the code to display the data in read-only grid the previous version is with a!gridSelection() which is passed form expression rule to an interface to handle a!pagingInfo() and as per my understanding a!gridSelection() is deprecated and instead a!gridField() should be used. rule!abc_expression( select:rule!selectionFilter(), queryFilters:{ rule!queryFilter(), a!queryLogicalExpression() }, pagingInfo: ri!grid
Hello, I would like to add color (red) to the label of a textField() in my interface. I know I can use a!richTextDisplayField() and then use the a!richTextItem() to change the colors of the value. Below code displays Red color value; But I need the label to be in Red color: a!richTextDisplayField( label: "Red Text", labelPosition: "ADJACENT", value: a!richTextItem( text: "Red Value", style: "PLAIN", size: "STANDARD", color: "NEGATIVE" ) ) How can I change the color of the Label here? Thanks in advance for any help in acheiving this.
Hi All, I am getting error for pattern below ("^[a-z._-@'0-9A-Z]+$") Error is illegal character range near index 8 . it is near dot. Please let me know if any acceptable pattern for below charater. thanks Sushma.
a!textField( label: "Date Of Application", labelPosition: "ABOVE", value: ri!today(), saveInto:{ri!today(), a!save(ri!LM_CustomerDetails.loanid.dateOfApplication,today())} , readOnly: true ) i need to save the date in database . i have tried various means but cannot find correct way. can anyone solve this. thanks Yeswanth
I Create a validation query that check if the emails exist in the RDBMS, if email does not exist the validation shown like this, but I struggle in the multiple message because I used a!foreach for that.How this text make as one only?
Hi All , I am build an interface in which two card layout are there for Approve and Reject , and In link field of card Layout I am performing an action . I am facing an issue while refreshing the page when an action is performed via link field of card layout . Please tell me how to refresh a page automatically . Thanks in Advance
Hi team, my requirement is : I called my record type into a interface to show in grid format, want to show all the images i have uploaded for all the respective id's of grid and i tried using expression rule and but facing problem in passing the id of the record into the expression rule, please help me with this. a!localVariables( local!selectedInterface, local!ammenities:'type!{urn:com:appian:types:SHA}SHA_newAmmenities'(), local!list:'type!{urn:com:appian:types:SHA}SHA_listType'(), local!Document:'type!{urn:com:appian:types:SHA}SHA_document'(), local!docImage:rule!SHA_qe_getDocuments( entityId:ri!listing.listingId ), /*local!data: a!recordData(*/ /*recordType: 'recordType!{f5a15e34-42fe-43a9-b8c0-e51ffd299618}Student list type',*/ /*filters: a!queryLogicalExpression(*/ /*operator: "AND",*/ /*filters: {*/ /*a!queryFilter(*/ /*field:'recordType!{f5a15e34-42fe-43a9-b8c0-e51ffd299618}Student list type.fields.{listingId}listingId',*/ /*operator: "=",*/ /*va
Hi, I have defined the below process model and an interface with milestone. I don't have any mandatory fields inside the "Previous Employment" tab (form), but still by current process is creating an empty record inside PreviousEmployment table with an employeeId. Can someone advise, how can I stop creating an empty record. Basically, I need to check whether PreviousEmployment CDT is empty or not. Where and how I can do this? Thanks in advance.
How to hide custom picker field and display a textbox for creating new record when there is no matching data available in custom picker in selection coming from DB & Vice-versa. Can anyone help me out for this logic??
Hi, I have an expression rule. Please refer to the below screen I have designed a horizontal milestone inside an interface and calling the above expression at local!steps. When I run the interface, I was able to see proper tabs (Main Employee Form & Review). But, the Issue is when I navigate to "Review" tab, it was showing hidden tabs layout also. Any one is having any idea, how can I avoid this issue. I would like to show only the screens which are visible during load. I don't to see hidden tab screen details in the "review" tab.
Hi there, can "Newline" (Enter Key) character be accepted in "Text" field on the interface? and can be checked if "Newline" (Enter key) character being input (Enter key pressed)? what I am trying to do is that finding the user finishing inputting the data, while dont want to move the focus (the text field is set as "Keypress" for "Refresh After"). regards, Lin
I have created multiple records for my applications .I have configured them using record relationships to my main record . I have to display the record data in a summary interface and when i use the record rule input the related record type surrounding the main record displays the integer value such as 1,2,3 as they are connected using foreign keys. can anyone describe how to display the original outputs or is it okay to use multiple record rule inputs as they are connected using foreign keys.
Hi there I have an interface which has three barcode fields, what I am trying to do is that once I scanned the first field, the focus can be automatically move to the second "barcode" field, so I can continue scanning without need to click the second "barcode" field on the interface, so on with the third "barcode" field. and also the similar thing with "Text" fields, once I type in the first "Text" field, then press "ENTER (new line character)", then the focus will move to the second "Text" field, so I can keep typing in without the need to click the field to move the focus. Could you please help if you have the experience/knowledge about this? Regards, Lin
a!dropdownField( label: "Type Of Loan", labelPosition: "ABOVE", choiceLabels: cons!LM_LoanTypes, choiceValues: cons!LM_LoanTypes, value: ri!LM_CustomerDetails.loanid.typeOfLoan, saveInto: ri!LM_CustomerDetails.loanid.typeOfLoan, searchDisplay: "AUTO", required: true a!floatingPointField( label: "Interest Rate", labelPosition: "ABOVE", value: if( ri!LM_CustomerDetails.loanid.typeOfLoan,rule!LM_LoanRates(LoanType: ri!LM_CustomerDetails.loanid.typeOfLoan )," " ), saveInto: ri!LM_CustomerDetails.loanid.interestRate, refreshAfter: "UNFOCUS", readOnly: TRUE, i want to display interest rate through the type of loan with decision i have created.but it is not displaying
Hi All , I am showing a pattern like bar chart in an interface i.e Total , Approved , Rejected etc . Now what I am doing is showing total count in the respective field but now as per requirement I want to show the count based on user filter . For example Approved total request is 10 , now user filter the approved , and the data displayed in the grid(1-5) has only 3 Approved . Then I have to change the 3 instead of 10. How to achieve this . Thanks in Advance
Hi, I have a CDT and it is linked to a form and fileds are linked to CDT columns. Now, when user submit the form, data should save in the main table as well as another Audit table. Any idea how can I achieve this requirement.
What is the best UI/UX Design for updating existing value in a particular field or creating new value for that field against unique ID in DB from an Interface?
Hi, We have a use case where an employee from a warehouse needs to scan multiple barcodes. We were asked if this is possible without pressing, for example, a "Submit" button for each and every barcode scanned, since it would delay the process. The main goal is to allow the user to pick multiple barcodes, save them into a variable for example, and whenever the task is finished, it would trigger a process. Do you know if this is possible to do without forcing the user to press hundreds of times a submit button, for each barcode scanned? Or it's only possible via JavaScript embedded on the webpage? Kind regards
Hi, I have an interface which I am using for Employee details capture. I am using the same form for the creation of a new record in the database and for the updation. I have created a RecordType and created "Update Employee" related action. Now when I click on the "Update Employee" button I am getting an error like "Error Evaluating UI Expression Expression evaluation error [evaluation ID = 335d6:04711] in rule 'at_captureemployee' at function a!multipleDropdownField [line 68]: A multiple dropdown component [label="Languages Known"] has an invalid value for "value". All selected values must be present in the choiceValues array, but value was [languageid:25,languagenumber:1]; [languageid:26,languagenumber:4]; [languageid:27,languagenumber:2] and choiceValues was 1; 4; 2; 5; 3." Can someone help on this.
Hi All, I am trying to design a Comment Page , where I am displaying an Image just before comment textbox , but in that image field I want to display user profile if is available other Initials for the same. Please help me out in this condition. Thanks In Advance
How to export local data to Excel?
Good Day Everyone! I'm having a problem on how to use the foreign key on my CDT so that I use another Record type as Rule Input, but when I used the Interface in a process model, I'm having a problem on the variables because I used a record type as a rule input. also I can't use the can't call the rule input in the context under Related action on my record type because of the same problem that I used a record Type as a Rule Input. what should I do? Thank you!!
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.