-
Recently active
Hi team, The requirement is to display a pie chart in the dashboard. For the pie chart, I am using a card layout. Inside that, I am calling the KPI interface. The KPI interface has a side-by-side layout at the top and KPI and side-by-side layout at the bottom. I want to use only KPI size medium and card layout size tall_plus, but with this combination, I am getting a scroll. Is there any way to compress the height of the KPI using any other component?
Hi, I have a process model with a user task. user task has a Rich text editor, where user uploads the images but leaves the form without submission. Issue is, how to delete the uploaded images/documents based on timer - 1hr. I have tried exception flow on UIT, but the user enter docs data/Ids are not received into process var. Is there a way to get the document IDs by using process instance Id? Thanks, Keerthi
Hi, I am new to Appian and I'm having the following error when building my application. I'm trying to configure the rule inputs but the message "Invalid index: Cannot index property 'relationships' of type Text into Type RecordType. I'll attach a screencapture. Thank you in advance for your help.
Background: This issue is only happening in our three environments (DEV). Issue: When using an a!documentImage field inside a!imageField, the image only displays if the sit is set to 'FIT'. It is not displaying for any other size setting (including null). In the following code, the interface is only displaying the image where the size is set to 'FIT':{ a!imageField( label: "Image", labelPosition: "ABOVE", images: { a!documentImage(document: a!EXAMPLE_DOCUMENT_IMAGE()) }, size: "MEDIUM", isThumbnail: false, style: "STANDARD" ), a!sectionLayout( contents: { a!imageField( images: { a!documentImage( document: cons!G_FILETYPE_ICON_IMG_SMALL ) }, showWhen: true, size: "FIT" ) } ), a!sectionLayout( contents: { a!imageField( label: "Image Field Example", images: { a!documentImage( document: a!iconNewsEvent(icon: "HAMMER", color: "BLUE") ), a!documentImage( document: a!iconNewsEvent(icon:
Hi All, we are getting JDBC begin transaction failed: in the process model when one record going to store in database. and another process model we are getting -Unable to write to or delete from the source due to system error.Error Details: Failed to update database "TN_Transaction" because the database is read-only. note : both error happening at same time. could you please someone help me on which scenario we wil get this error. thanks!
Hello, I have submit disabled, validate set to true, required set to true but the required message only appears on one field when clicking save button. Here is my code for the amount to refund field: a!sideBySideItem( item: a!textField( label: "Amount to Refund", labelPosition: "ADJACENT", value: if( local!updatedStatus = "Closed - Full Refund", a!currency( "USD", local!data.paymentAmount ), a!currency("USD", local!refundAmount) ), saveInto: local!refundAmount, refreshAfter: "UNFOCUS", required: if( local!updatedStatus = "Closed - Partial Refund", true, false ), required
I have created a rule to display date time how to resolve it ?
Hi All .I hope everyone is doing good. I have a scenario , but not sure if its possible / correct/not . Please let me know if any one has any ideas or any suggestions. Scenario: I have used navigation pattern in interface . This uses different interfaces in choose function and get the data accordingly . Is it possible to do it in a single interface instead of using multiple interfaces or can we use a single grid ( instead of calling a!grid and the data for all the remaining status) and call the value in local variable and pas the local variable and get data accordingly .........! Below is the code for an idea what i am describing about . Any ideas / suggestion please let me know. Thank you in advance [emoticon:c4563cd7d5574777a71c318021cbbcc8] { a!localVariables( /* The selected navigation section */ local!activeNavSection: 1, /* The navigation sections */ local!navSections: { a!map(name: "Requested"), a!map(name: "Inprogress"), a!map(name: "Delayed&q
I have a question about the text() function.When I used "#" in the second argument to text(), the following behavior occurred.When I tried to match the digits and separators to the format,the numbers after the decimal point changed.The documentation says that "#" is a format for numbers,but does it also convert the numbers themselves? ・document docs.appian.com/.../fnc_text_text.html ↓exmapletext("12,333,333,333,333.12","##,###,###,###,###.##") → "12,333,333,333,333.11" is returned.
I have a scenario where the users is viewing an interface from a record action. Before they click submit to complete the record action I want them to click a button that will call an integration and that value returned will either allow them to submit or not (it is a backend validation process). Everything I am trying I run into issues because the refresh variable.The code: a!localVariables( local!loggedInUserVar:fn!loggedInUser(), local!isLoading: false, local!isValid: a!refreshVariable( value: if( local!isLoading, rule!UWM_Map_Calculate_Data( caseId: ri!case.caseId, loggedInuserVar: local!loggedInUserVar ), false ), refreshOnVarChange: local!isLoading, refreshAlways: true, ), a!columnsLayout( columns: { a!columnLayout( contents: { a!sectionLayout( contents: { a!cardLayout( conte
Hi team , I am using record data as source for KPI but the field name in y axis taking lot of spaces. If you see y axis taking lot of spaces ,is there any way to minimize the space
I have a requirement to embed iframe into Appian user interface. Is there any way to do this?
TCN is a system used for auto-dialling customers in our use case. Currently, TCN interfaces are used to auto-dial the customers and record the communications. However, with Appian coming into picture, we are now exploring the option to embed the TCN Screen into Appian interfaces. Your inputs here are highly appreciated here on achieving this.
Hi there. Related to the best practices, wich is the best way to call to an interface rules on my interface? Calling the interface rule on a rule input, Using keyword syntax or Always use consistent ordering of rule parameters? Thanks in advance.
Hi,I want to add an dollar icon inside the floating point field or a text field, How can I achieve this?If the above one is not possible then, How can I add the Dollar Icor right before the field?Thanks in advance.
Hi Team,Could you please check and suggest a solution for below issue?Expression evaluation error in rule 'appian_rule1' (called by another rule 'appian_rule2') at function a!queryRecordType: Cannot invoke "Object.getClass()" because "activeProcessCount" is null
Hi all, I am facing an issue related to data being refreshed in read-only grid. The issue is in my read-only grid, I have navigated to a different page say 21-30. But after certain interval i.e., 30 sec my grid page navigates back to 1-10 automatically. I have a configuration of refresh Interval of 30 sec in the read-only grid. Does the grid refresh configuration update only the grid data or it also impacts the current fv!pagingInfo of the grid? Reason to add refreshInterval was to update the grid data for user as soon as a new work item is created. BTW the data field is a recordtype which allows me to use certain other features of grid.
Hi, Can I have a button inside of a dropdown? Thanks in advance
Appian Family, Here is my Interface -- JR_InterfaceName 1) File Upload field in an interface >> Define the Target Folder with all correct permissions. 2) Submit Button: "submit" set to true. I have 2 scenarios here 1) Just the interface by itself is just working fine when I upload the file and click submit. It gets save to the target folder. 2) When the same interface is either called from another interface as rule (rule!JR_InterfaceName) it doesn't work. The file is not saved to the target folder. I am pretty sure the document object is there but it's just not available to either save in a target folder or for anything else. What is it that I am missing? is it an Appian shortfall/Issue? I am assuming that this is very basic need for almost everyone. 3) Just to play around further I called a Process Model using "saveinto" property of the button passing some dummy variables and the Document Uploaded from the upload control, The PM got call
I am trying to create a dropdown menu in my application that looks and functions like the one in the attached image. I am unsure how to make the dropdown appear like this without dropdown component Can you please help me to achieve this
Hi Everyone, We need to manually validate the accessibility of a few styled text editor components before enabling the document export. While this can be done using browser extensions or accessibility testing tools, the client wants to perform the check within Appian. I would appreciate any insights on whether there are any Appian community-supported plugins or reliable APIs that can help achieve this. Thanks!
I need to validate the checkboxes when the submit button is clicked, based on a specific condition. There are four checkboxes, and before submitting the form, the user must check at least one. However, instead of using FormLayout, I’ve created the form using CardLayout and local variables. I’m looking for suggestions on how to improve or streamline this approach.
How can we allow certain users to view critical fields while restricting access for others, all within the same application and read-only interface? What’s the best approach to achieve this?
Not sure where i went wrong, gets below error, i understand error says i cannot use rule inputs in a!save, any suggestions to fix it:
I'm trying to uploading an .sql file which we have blocked in an admin console. It will throw a validation message. Then I'm trying to upload valid file, But the validation message still displays Thank you 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.