-
Recently active
Hi, I have a process model with a start node that will trigger an interface. Now, I would like to call this process model when a specific button/link is clicked. When I try to use the below code, it is actually initiating a process model, but it is not loading an interface form where the user can enter data through form elements/fields. Am I missin anything here. Can somone advise please. Thanks. a!formLayout( buttons: a!buttonLayout( primaryButtons: { a!buttonWidget( label: "Submit", value: loggedInUser(), saveInto: a!startProcess( processModel: cons!AT_ConsCaptureEmployee, processParameters: "", onSuccess: "Ok", onError: "Not Found" ), submit: true, style: "PRIMARY" ) }, secondaryButtons: { a!buttonWidget( label: "Cancel", value: true, saveInto: ri!cancel, submit: true, style: "NORMAL", validate: false ) }
Hello, I have a table which have 5 fields. I am showing 3 non null fields on UI as user input and storing them in the record input of CDT type to that table. The other 2 fields (UserloggedIn and Unique Identification Number), I want to set it as default value to those record input fields on submit button but it is now working. I don't want to show this field in UI and allow modifcation by User. Placing my code below. Please suggest what is the mistake here or how to achieve it. Thank you. Interface: Code: load( local!reportedBy: loggedInUser(), local!uin:"TEST000000000005", a!formLayout( label: "Kk Testing Kk", contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!textField( label: "Tstclientname", labelPosition: "ABOVE", value: ri!record.tstclientname, saveInto: ri!record.tstclientname, characterLimit: 55 ), a!dateField( label: "Tstmasterdate", labelPosition: "ABOVE", value: date(2022, 03, 06), saveInto
I want to create a rich text button in a interface that open a another interface when triggered. I tried with link parameter with a!dynamiclink() but it say it need all the rule input mapping from the interface that I want to link.my case opening interface have some rule output so rule input mapping may no need for opening interface. Is there any method to do my task
Hi, I have a scenario like below. I have a a!textField and I using this for searching the data and loading based on the output into a a!dropdownField. This is working is fine for the first time when I searched by providing a text in the textField. The issue is happening when I try to re-enter a new text in textField after selecting an item in the dropdown. Error is saying, All selected values must be present in the choiceValues array..... Is there away I have clear dropdown values after user is trying to search with new text in search. Thanks in advance
Hi, I need to set appian internationlization based on user locale after login, like if user's native language is hebrew I need to set appian internalization to hebrew after login using his language preference, some guide and help will be thankfull. Note: I know i can do this by admin console manually
In the documentation on parallel evaluation, Performance View - Appian 21.4, it is mentioned that if multiple queries are in place, they may be evaluated in parallel. I'm noticing that this doesn't seem to be the case for a!queryRecordType(). Would it be a better practice to avoid a!queryRecordType for use of a!queryEntity in interfaces where parallel evaluation would help performance? Can someone please confirm or chime in if they have more detail, here are my findings: I set up an expression rule in the following manner (6 local variables all independent of each other, at any given time 3 of the other type are commented out). The queryRecord1 and queryEntity1 are equivalent other than the function being used to run the query: Performance details indicate that the query records are not running in parallel, while the query entities are. Query Record details (sum of percentages does not exceed 100% indicating no parallel evaluation): Query Entity details (s
is there any way to remove mover hover text displaying on interface of recordActionItem as shown in the below image can't we disable that mouse hover text Thanks In Advance
Hello all, depending on the user choices, they can either be able to change a value or to just read only the values in an Interface. For the text field is easy I just apply the readOnly parameter : How can I make a dropdown field read only ?. Kind Regards,
Hi Team, We have a requirment in which when the user clicks a button there should be a pop up message dispalyed for 15 secs and then it should get auto refreshed and the user should land to the home screen.As far i know, we dont have any such thing in appian to create a pop up screen but can utilize the a!buttonWidget where we can use confirmMessage property to achieve the pop up. In my case, we dont need the buttons in that message, but it appears by default in button widget. How can i remove these buttons and also how do i achieve the auto refresh thing? Please suggest. Thanks.
Hello community, I am trying to make UI which has a read only grid which is populated based on data from integration, we passed a cdt as an input to this grid, now I wanted to put filters on that data using drop downs and date filters (start date and end date), I did came up filtering the cdt using wherecontains() function and foreach() loop and got different index for them. but I couldn't make them work like record filters. how do I group them ?some code below for understanding. Thanks. a!localVariables( local!selection, local!responseData: rule!PNK_DataForGrid(), local!actualData: local!responseData, local!customerAddress: union( local!actualData.customerName, local!actualData.customerName ), local!customerNameSelection, local!ftaNames: union( local!actualData.customerAddress, local!actualData.customerAddress ), local!customerAddressselection, local!startDate, local!endDate,
Hi, i have a list of items I want to save to the data. The output should be ID=4, ID=5, ID=6 However, when submitted, it duplicates first ID: ID=4, ID=4, ID=4. please help. thanks a!localVariables( local!list: { 4, 5, 6 }, a!formLayout( label: "Form", buttons: a!buttonLayout( primaryButtons: { a!buttonWidget( label: "Submit", saveInto: { a!save( target:ri!Data.ID, value:a!forEach(items: local!list, expression: fv!item) ) }, submit: true, style: "PRIMARY" ) }, secondaryButtons: { a!buttonWidget( label: "Cancel", value: true, saveInto: ri!cancel, submit: true, style: "NORMAL", validate: false ) } ) ) )
It seems this question keeps poping up. But I ll keep it simple: 1. What is the best way to store checkbox values, when multiple choices are selected? 2. Is it possible to show such record on a read only checkbox? I also checked Checkbox Component - Appian 21.2, but I could not find the information I am looking for. I also tried changing the DB and CDT from integer to varchar/text. Additional topics I looked at: Appian Community Appian Community Appian Community Appian Community Kind regards,
I have a requirement to have my read only grid which is populating from a process report only show the tasks for groups which a user is a member of (located in column c2). I have tried using a filter with isLoggedInUserMemberOfGroup(LoggedInUser(),fv!row.c2) but this yeilds an improperly scoped variable. Please assist.
Hi, How can I trigger external page or other web-page on button submit in interface? Button in interface (submit) -> other page. Thanks.
Hello Community, I want to make an editable grid with fields having below details Column Names - studentCountry , studentName, subject , status - (Pass or Fail)I've Created the grid where the studentName will be repeating and read only because of the different subjects & also subject will be read only-> the user (teacher) should fill the studentCountry and his status - (Pass or Fail) in editable grid,Now my requirement is such that when a teacher selects student country for a particular student it should update the studentCountry for all the rows having that particular student name.How should I achieve this. Any suggestion will helpful.Some sample data for better understanding studentCountry studentName subject status1) dropdown Student A Maths Ye
Hello There, I am getting this error,:"Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!imageField [line 182]: The image at index 1 in an image gallery component [label="Image"] has an invalid value for "document". "document" must not be null." Visibility: not(rule!FOV_ISNull('recordType!{cdcf96e7-71f5-4a66-90e4-9d29efd1a922}FOV Vehicle.fields.{7924e1ce-3938-4fbb-aae4-8636d37e830c}imageId')) a!documentImage( document: ri!record['recordType!{cdcf96e7-71f5-4a66-90e4-9d29efd1a922}FOV Vehicle.fields.{7924e1ce-3938-4fbb-aae4-8636d37e830c}imageId'], showWhen: not(rule!FOV_ISNull('recordType!{cdcf96e7-71f5-4a66-90e4-9d29efd1a922}FOV Vehicle.fields.{7924e1ce-3938-4fbb-aae4-8636d37e830c}imageId'))) I have a list of cars some have images other not (null), How can I fix it?
So the way the group picker filter works is you put a group in that filter and the picker shows any groups that are children of that group. Is there any way to also display that parent group as well? I'd like to show just the groups within a particular application so I'm using the application's all users group for the filter, but it doesn't show the all users group. I would rather not add some other group to put that all users group into if I can avoid it. Is there another option? If there's some other way to specify groups that are added to an application instead of the entire environment, I'd be open to that as well.
Hi there, I have an interface, normally there is drop down which has multiple options, use select one, then click button "Next"("Submit" button) to get out to different interfaces. but the user want to just choose the option without clicking "Next" button, then system can automatically go to next one. any suggestion how to do it? I know in Appian you have to click a "Submit" button to get out. and heard someone mentioned can set the timer, but dont have any idea. can anyone help here? Thanks. Lin
Hi, I would like to create an interface where it will add/insert multiple CDT (a Parent one) and it's child CDT ( one to many ). I am not using nested CDT. Once the user enter the details, in the process model, it will insert to respective DSE. I am finding difficulty to identify the primary key of each parent and update to its respective child CDT. How can I achieve this? Use Case: An interface where the user can multiple invoices and multiple line items for each invoice without using nested CDT. Regards, Surjit
Hi, I'm seeing this screen in one of my interface when I open it from process model while debugging / from Tempo. Can someone suggest on what needs to be done to identify the issue? There is no change in this interface from couple of years. When I try to populate the information in the designer mode. I'm able to view it without any issue.
In this post I can begin typing @mi... and it will display a list of users to select from. Is this possible in Appian? If not has anyone come up with a way to implement it with a smart service or other product add-on? Thanks m
Hi, Can we include two or more forms in one Interface. I'm using section layout to include other interfaces which has forms(save button) but it is showing error. Is there any alternative method?
Hi All, I am using a parent UI where 2 gridField and 1 gridRowLayout is used. First gridfield is working fyn. GridRowLayout will receive user input and based on that input the second gridfield will filter and display grids. Initially I created that within parent UI but the pagination and sorting is not working. I tried it in a new child UI sorting and pagination is working but its querying all the data , not the filter from the user input. Help me guys. Thanks in advance.
Hi all, I am working on a project, I want to restrict the end user to enter the duplicate email ids or mobile numbers. I mean, end user cannot enter the email or mobile number if it's already exist in the Database. It should show an error message if user entered existed email id on the interface. Solutions would be highly appreciated. Thank you in advance!
I have a Interface object, where I forgot to add a description (see picture below (1)). How do I add this, given that the properties action is disabled (2)? Kind regards,
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.