-
Recently active
anyone can you please help me for this qustions?
Hello All, I need to open an Interface after submit information on a Interface. Can someone help me to achieve this? I have a process model that has a interface as a "StartForm" when the user click on submit, we have some logic to write into DB and other stuff, at the end we need to display to the user an interface with the information successfully added (kind of summary of the process), I tried to use a subprocess with the interface as "StartForm", but this is not displaying anything. What configuration I'm missing? Also tried chaining the nodes but doesn't work. NOTE: I DON'T NEED TO CREATE A TASK FOR THIS PURPOSE, THAT'S THE REASON WHY I"M NOT USING THE "USER TASK".
We have a strict 30 minute session timeout policy, and want to show a countdown on our interfaces (dashboards and forms) warning users how much time they have left. While we can have a 30 minute timeout from load, this isn't accurate because they may keep the session active by navigating or interacting with SAIL components. Is there a way (out-of-the-box, plugin, or API) to show the user how much time they actually have left in their active session / how long since they have been active? Thanks!
While using a!recordActionItem() to open a pop-up, there is no close option which is by default by Appian to close the dialog box? What can be the solution?
Hi everyone, For audit purposes in a ticket management process, I need to track create/update/delete actions on a Ticket (record type) each time it has been opened the relative interface and track timing (basically: startEvent, endEvent). I already track the interface initial loaded date/time in a local variable using now(), but how to pass it to a rule input (and therefore use it in the create/update process)? I think I have to use a!save in the primary button, but I am missing low-code details. Do you have any suggestion?Thank you so much,
Hi All, We have recently done an app for browser and the same has to work from the mobile. However when we are trying to click on the Next button on the Mobile App. we are getting an Error. screenshot is attached. Please help.
Hello, I'm looking for an text field (user input) which will auto suggest values (based on a database field). Afaik, that is something dropdown fields and with some more logical a customer picker can provide except they wont allow for new values to be entered. What would be a good way (if any) to achieve this?
Hello all! I am creating a portal for Appian Europe Live Build Challenge 2022. In this task among others I am showing on my interface a read-only grid with scheduled World Cup matches. Since I need to use Appian Portal, I cannot use record type and my data source for the read-only grid component is a (local) variable that contains list of Dictionary data I got from previously created API and Integration. The question is: How to create user filters that allow to dynamically filter rows in a read-only grid component? In my case, a user would enter my Portal website and filter matches by coutry or group. Thanks in advance! Marcin
Hello Everyone, Can anyone help me in the below scenario. Scenario: Using multiple dropdown selection field End-User should search and select the no of items from the dropdown field. Details for this scenario:Table = Courses (Record Type)In the multiple dropdown field i want to fetch all the existing course names from the courses record type for selection.
Hi Folks, So the scenario is to that we have a case dashboard where we are showing case count over time. In that screen ,the use case is if we have a date range, from -to date and if we click on filter it should show us the graph along with the cases count between selected date range. How can we make a graph for this , including the X AXIS data points? Like how do we make range displayed as batch for each filter, data wise we are good as we can have data for specific time range,but how to display in graph.
I have created dynamic interface , in which if user have option to create number of text field , if want to 2 or 3 text field , i have created according for each , text field appearing fine, but storing data is a problem in CDT, here i have two field, i field is filled by manager and corresponding field will filled by employee as task. ,
i have a requirement where i have a field for which im not storing data in the db. but i need to show that value on the landing page . how can i achive it?
Hi, How to Handle Errors in interface level,I have a Scenario where we are passing list of document Id's to interface and if any documents is deleted the the UI is throwing an error,We want to handle it like if the function document is throwing an error , we want to handle it in a way that particluar docid should be removed from the list of inputs or that execution should be skipped. How can we achieve this? Thanks is Advance,SSP
i want to create the interface like this but i don't know how to create the interface with this type of format can anyone help me for this, i want clickable links in the interface for that what i want component i want to use.
Hi Everyone, I have a requirement like. Action dropdown with value Approve Reject Terminate Comment paragraph filed Use Case 1 – If user select Approve from action dropdown, Comment field should be optional.(non-required) Use Case 2 – If user select Reject or Terminate from action dropdown, Comment field should be become mandatory (*Required field) We have below code, a!localVariables( local!selectedaction, local!comment, local!submitClick, local!isActionChanged, local!previousSelection, a!formLayout( label: "Form", contents: { a!sectionLayout( label: "Section", contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!dropdownField( label: "Action", labelPosition: "ABOVE", placeholder: "--- Select a Value ---", choiceLabels: { "Approve", "Reject", "Terminate" }, choiceValues: { 1, 2, 3 }, value: local!selectedaction, saveInto: { a!save(local!comment, null), a!save(local!submitClic
Hi, I have a below expression rule and it is working fine when I tested. But, when I try to use inside an interface, I am getting an error. Anyone is having any idea on this? Thanks.
Hi All, In Editable grid using a!multipleDropdownField(), when user selects the two values in multiple dropdown field then it is storing in CDT ri!rules[fv!index].clientID like (clientID 1234; 7890) a!save( ri!rules[fv!index].clientID, fv!item.clientID ) Here, for each selected clientID, how to build same CDT with second selected clientID. Sample code is pasted for a!multipleDropdownField() which is used in Editable grid Requirement is for each selected clientID in multiple dropdown, on click on button need to display in another editable grid for two selected clientID in separate two rows. a!multipleDropdownField( label: "clientID", placeholder: "Type in Client Name/clientID", choiceLabels: if( rule!APN_isEmpty(ri!clientDetails), {}, append(a!forEach( items: ri!clientDetails, expression: index(fv!item, "custname", {}) & " - " & index(fv!item, "clientID", {}) ),"NONE") ), choiceValues: append(if( rule!APN_
i have created a process model where pdf file is created from a form as a salary slip and than i have assigned another user input task (with another interface) to show that pdf and download it. and i have linked it to a related action link button to generate and show the pdf to the user. but as the user click the generate salary slip it creates the pdf but it wont show the other interface to show the pdf and download it. it shows that interface as a asign task page. so need help to show the pdf to the user as he clicks the generate pdf button and user can download it.
I have form where I need to update the DB for an already existing row with the Date details. But when I clcik on submit it is creating a new row. Please help. a!formLayout( label: "Employee Leave Application ", contents: { a!sectionLayout( label: "", contents: rule!ELT_EmployeeDetails_Summary( rule!ELT_GetEmployeeDetailsByUser(loggedInUser()) ) ), a!columnsLayout( columns: { a!columnLayout( contents: { a!dateField( label: "Start Date", labelPosition: "ABOVE", value: ri!EmpLeave.leaveStartDate, saveInto: ri!EmpLeave.leaveStartDate, validations: {} ) } ), a!columnLayout( contents: { a!dateField( label: "End Date", labelPosition: "ABOVE", value: ri!EmpLeave.leaveEndDate, saveInto: ri!EmpLeave.leaveEndDate, vali
how to add interface with rule inputs to site
I want to show progress bar in Read only Grid cell, How can i do that?
I have a column req id in database which is auto generated when I save user details. Now when the form is submitted to supervisor I want that req id should be displayed in read only mode.
Hi, I want to get local!notes.createdDateTime value out of local.notes by matching the note Id with local!caseNote.noteId, where local!notes was created by querying from a record type, and local!caseNote is a CDT type. Not sure why I got the error above, as I already use square brackets for local.notes local!result: index( local!notes['recordType!{0b920cc5-462c-4191-981c-afe3a33f9ce4} Reference Data - Notes.fields.{a447478e-53ee-40e5-80dc-6588861432fb}createdDateTime'], wherecontains( local!caseNote.noteId, local!notes.id ), null ), Could anyone help? Thank you!
Hi, I would like to realize a site with this layout where billboard component stay on all page as on the top and on the side and not as my result. thanks
I have few issues associated with validations. I have included the code within asking all my questions in comments and instructions. Please guide. Thanks a!localVariables( local!testValueToo, { a!textField( label: "Test Me too", instructions: "Enter a value less than 12. The validation should pop up without pressing Submit which shouldn't be the case if validation group is given. Please suggest correct validation group configuration.", value: local!testValueToo, saveInto: local!testValueToo, validationGroup: "SUBMIT", validations: if( len(local!testValueToo) < 12, /*When form loads, the value of local!testValueToo is null making its length as zero and 0
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.