-
Recently active
Hi Guys. Im trying to make a function where the string contains half-width and full-width spaces, the first and last spaces will be removed. When i used the trim() function in appian it only trim(beginning and trail) half width spaces but if the spaces are full width it will not trim. so i tried to trim and use the substitute function like this: trim(substitute(ri!value," "," " )). It does trim the value perfectly, but it will also substitute the spaces in between the value where it shouldnt be. Example process: "<full-wdith spaces>he<full-wdith spaces>ll<full-wdith spaces>" after executing the process: trim(substitute(ri!value," "," " )) result: "he<half wdith space>ll" expected output should be : "he<full-wdith spaces>ll" Do you have any other idea to perform the desired process? Thank You guys [emoticon:2e0881b394ea47039c4b7e5eed46a79e]
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".
Hi, I have a process model like below I have the data in each of the variable like below. Name Type Multiple Value -------------------- ---------- ---------- ------------ listOfSubmitters Text Yes [addedby:AA1234]; [addedby:AA1235]; [addedby:AA1236] I need the value of each "addedby". When I am trying to make a loop and get each addedby like below. I am NOT getting required output. a!localVariables(local!lst: a!forEach(pv!listOfSubmitters,property(fv!item, "addedby", null)),local!lst[pv!totalCountOfSubmitters]) Please advise if I have to declare the process variable with any other type instead of "Text". Or, let me know if anything wrong in a
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?
I have two interfaces and want to switch between them but my process variable doesn't interact. when I click the "Edit Mode" button in the interface, the process variable doesn't change and the process stays in view mode.
Zuuup, people ? So, I've created a releated action and added it to a interface. All following the usual, nothing exceptional. However (of course, otherwise this post wouldn't be necessary), the follwing message poped up when I tryied to click on it. I reviewed security settings for this action and releated items to it. All looks ok. Any suggestions ?
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?
How can I add a row that calculates all the rows above: id number 1 20 2 30 sum 50 something like this. tnx
is it possible to change the cell background color when the value of the cell is null?
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 an requirement of optimising below grid column , in the value of grid Column i am fetching the required value from query rule.But i have to declare query rule in local variable first and then i have to use how shud i fetch the relevant value after using in local variable . a!gridColumn( label: "Data Type", value: index( rule!WFM_qeGetLookupRefDataByInput( isActive: true(), lookupRefId: fv!row['recordType!FWM_record.id] ), "label", {} ) )
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. ,
Hi, I am getting data into a Process Variable like below inside a process model Name Type Multiple Value -------------------- ---------- ---------- ------------ listOfSubmitters Text Yes [addedby:AA1234]; [addedby:AA1235]; [addedby:AA1236] Now, when I try to access the index 1 value, nothing is coming out. Any guess what went wrong
Hi Guys, I have a query entity rule which is failing to retrieve data when I run for the first time in a day. If I run again, it's working as expected. This behavior has started happening recently(it was running fine from long). I looked into the logs and I am not finding the error. We use on-prem servers and DB is oracle. Thanks in advance
I need to know our Appian Instance IP's. where can i find it or do i need to raise support case to get it?
Hello, I have a site with an interface page as content. My interface nested other interfaces and the navigation through all interfaces is based on the logic of local variables. However, in some interfaces I use "a!processTaskLink" to run tasks on already started processes. My problem is: I want to open these tasks in the same tab and when I finish my task, I want to go back to the interface where I was. But, the actual behaviour is that when I finish my task, I go back to the main interface because the values of local variables are lost. Does anyone know how to get around this problem? Thank you.
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?
I'm getting this error in my tomcat stdOut log when I startup Appian. I'm able to go on the site but when I try to run/debug my process model it always stuck on the start node and won't continue the flow. Not sure what went wrong, It worked fine other times when I did a fresh install of Appian. 2021-12-29 20:31:45,319 [ForkJoinPool-1-worker-25] ERROR com.appiancorp.common.config.ConfigObject - An error occurred while trying to initialize the config LoadExceptionHandling [0ms] [resources 27ms] java.nio.file.InvalidPathException: Cannot store the note content, because the location is not valid.: C:/appian21.2/_admin/process_notes/exec/00/2/0 at com.appiancorp.process.notes.services.NotesContentServiceImpl.createNoteContent(NotesContentServiceImpl.java:164) at com.appiancorp.process.notes.services.NotesContentServiceImpl.createNoteContent(NotesContentServiceImpl.java:178) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImp
Hi,After successful deployment, I am getting the above error at UAT in the parent process because of the subprocess.
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
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.