-
Recently active
How to create a movie ticket booking Seating Arrangement dynamically based on individual theater the seating for each and every theater is different. Admin can change the no.of seats how much he required.
Is it somehow possible to create a map or dictionary using variables for the keys? For example, is there some way for me to do something like a!map(localvar1:local!var2) to make a user generated map? Or maybe use a foreach loop over a 2d array to convert it to a map?
My use case is to have the ability to add, remove and reorder items in a list similar to what we see for defining the columns in a grid in interface designer. Is something like this possible using SAIL? I would think so, but having a hard time envisioning this. Is it a series of cards with rich text-based links to manipulate the positioning? Thanks in advance.
Hello, I have the following question: while watching an Appian training course the instructor used the a!dropdownFieldByIndex() component. I tried to search for it inside the interface palette when in design mode but I was not able to find it anywhere. Is there a place or a doc that contains a list of all these hidden components? Besides the a!dropdownFieldByIndex() component I know some others are a!multipleDropdownFieldByIndex(), a!radioButtonFieldByIndex(), a!checkboxFieldByIndex() and a!timeDisplayField(), but it would be great to discover more if any. Many Thanks!
Hi all, I have a requirement of adding documents which has to be related to a case.I have tried it using record actions of document by giving a dropdown of cases to relate the document to the case selected. But I have to do it without using dropdown .So I have tried it using start process link in cardlayout.It was working fine but after triggering the process it has to go to previous page where i have an option as documents grid in summary page, but in my case it was navigating to the previous tab in the same summary page which has another grid in it. I am using start process link in 2nd button but it was navigating to the 1st button in the same page.Is it possible to open the start process link in dialog box? or Is it possible to add documents and directly relate them to the case without using dropdown? Kindly refer the below file where it contains the screen recording of the exact issue that i am facing. [View:/cfs-file/__key/communityserver-discussions-components-files/13/startpro
Hi Everyone, I am getting the cdt rows through record type using expression rule. Is it possible to add more unique rows to cdt through expression rule. If yes, can anyone please help me out?
if the outageEligible (boolean) is false , then I need to null the value for outage(boolean) if(rule!GBL_isnull(ri!outageEligible,false()) , a!save(ri!ouage,null(), a!save(null(),null())) above is the code , I am using. But it is not working
Our team has been having a difficult time figuring this out. I'll try and do my best explain clearly. We have a child interface where you add a creditor and a debtor. The field level validations are working fine in the form itself. The validations I'm referring to here are, there is a debtor section where the debtors are added to an array rule input. Same with creditors. This interface is called in the main wrapper interface where the "Next", "Back", etc buttons are located. The requirement is to be, **only when a user clicks "Next"** is it supposed to check for page level validations. Meaning once a user clicks "Next" it'll check to see if there is both a creditor and debtor added. If it finds that there is no debtor added, for example, an error message will display to the user saying "You must have at least one debtor and one creditor added to proceed," and the page count will not progress. We're having trouble f
Hello. Would like to know if Appian Server supports Oracle 19g, and if so, what Oracle JDBC Driver can it support. Thanks in advance
I started with a CardLayout and have a sideBysideLayout inside it. Inside this SideBySideLayout I have two SideBySideItem. The problem I'm facing is Inside one of this SideBySideItem I want to have two components. SideBySideLayout doesn't allow any other layouts, nor does it allow array of items. PS: For reference this is being used in a Portal. Please see attached pic for layout if the descriptions seems confusing.
i want to learn PDF utilities appian and its new capabilities. can you help
Need a loop for multiple texts. To test the loop just made a dummy loop like below Start node:Process variables : array(Text, multiple, {"a","b", "c"}), iteration (Number, Integer), len(Number Integer) Set len :Set output: expression: = length(array), stored to: pv!len Properties: Delete after execution XOR:=pv!iteration>pv!len true End NOdeElse: Text Doc From Template Text Doc From Templatesave a document named: pv!iteraion description: pv!iteration & arrayProperties: Delete after executionIncrease Iteration:Set output: expression: = pv!iteration+1, stored to: pv!iteraion Properties: Delete after execution But I can see the it stuck at XOR after 1st iteration. Why?Let me know if you want more info.
Hello! Nice to meet you! [emoticon:c4563cd7d5574777a71c318021cbbcc8] I want to take the Appian Analyst Certification exam, but I have some questions. I have already done the Appian Analyst learning path and I have done the practice test several times to train it. Since English is not my native language, I am a little worried. Is the official exam very different from the practice test questions? Or are they more complex? I have more problems with the multi-choice questions. Do you recommend anything else besides the Appian Analyst course? Thank you so much. Have a nice day.
Hello there! I have a related action on my records which are displayed in a grid. Is it possible to hide the icon starting the action immediately after the user clicks on it? Otherwise there are users who do multiple clicks, and since my action deletes the same record, they end up with a sad An error occurred while applying the context for the [myRecordName] related action [identifier=12,086]. Details: The record data does not exist, has been deleted, or you do not have sufficient privileges to access it. In fact, the record disappears from the grid quickly after the click, but not immediately, and sometimes user can click again. The record action is a related record action, configured to be call the deletion process as follows: { idRecord: rv!record[[myRecordName.id]], cancel: false()} Part of the code: a!gridField( labelPosition: "ABOVE", re
a!localVariables( local!Details: rule!GetInformation(), a!formLayout( ....... showwhen:if(local!Details "ERROR") ) ) Hi, I want to show the formLayout in the design mode(designer/expression) irrespective of the return value of rule!GetInformation() expression rule. However in runtime the form should load as mentioned in above code i.e., based on the return value of rule!GetInformation() . Kindly suggest.
I have API which returns me some responses based on parameters but the important point is when my database has any change then my Appian local variable which has API data also needs to get updated automatically, which means simply a WebSocket type connection with an API
There are 2 local variable: local!test1 : "CRIS3-AB; CRIS3-AB; ; ; SOECS; SOECS; ; ", local!test2 : "; ; Related FOX; Related FOX; ; ; Trace; Trace", If no value available before semicolon symbol of local!test2 then a value from local!test1 should take place Desire output : " CRIS3-AB;CRIS3-AB;Related FOX; Related FOX; SOECS; SOECS; Trace; Trace"
There is an interface created which displays business elements in a tabular form, fetching details from a process report. The interface is expecting a rule input and filter the data based on rule input. The issue I am facing is, once the interface page gets refresh, the rule input value is getting set to null. Any idea how to handle this scenario?
I need to create "start" button as related action .when i click on start it should check the status for that particular request if status is "Approved" then the api call should happen .and request will end .But we click on start then process model should start (will not any interface after clicking start)Is it possible to create this related action without creating an interface. If yes,then how the start button will know which ID form it needs to call.
Hi Everyone, Is that possible to store Multi dimensional of a record type? I have a requirement where i need to store like below a[1][1]=2, a[1][2]=3, something lie this,With CDTs i see it is straight forward but when i am using with record type to save a[1][2] it is showing below error . Am i missing anything? Can someone please help me on this?
Hi Everyone, How to handle null values in a recordtype? My output is like this where first index is nul. To exlcude that in recordtype what needs to be done as i have used reject function as well but it will only work for an array. Can someone please help me on this?
I created an interface with read only grid which pulls data from process analytics. I would like to bring dialog box when user clicks on a link from the interface. Any suggestion how I can implement this? Thank you.
Hi, Need guidance or suggestions on how to achieve this. Here's what I'm aiming for: I have a Section layout at the top of my interface, and I want it to remain fixed in the UI while allowing other components to scroll down beneath it. Essentially, as the user scrolls down the page, I'd like the section to stay in place while the rest of the content moves.
How can I get a same section when we click on a button under the section to provide multiple details to the single ruleinput just like adding address1,address2,address3
Hi All, I have an interface where we are having paragraph field and grid . User will be giving data in the paragraph field in specific format and will click on add button, Once they clicked on it, it will be written into database and the grid will be refreshed with the added data. There are some use cases where user will be adding more than 2000 records at a time. Currently it is taking around 2 minutes to load the 500 records into database. What is the best way to save the data into database with minimal time? Could someone please help me on this
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.