-
Recently active
Hi Guys, Please lemme know .., what are the roles & limitations of activity chaining ? in which kind of scenarios we use activity chaining? in which kind of scenarios chaining may break generally?
An e-mail could not be sent because the run as user for this activity could not access one or more of the groups listed in the e-mail address.
in a process i have two user input tasks let first is x and second is y now i have scenario 1) where the user 1 completed X then he only need to complete Y or where the user 2 completed X then he only need to complete Y 2)when the user 1 complete X then we have to restrict to complete Y by the user 1 or when the user 2 complete X then we have to restrict to complete Y by the user 2
a!localVariables(local!x:{{name:"rajini",marks:25},{name:"vamshi",marks:30},{name:"rajini",marks:40},{name:"venkatesh",marks:88}},/*using index,wherecontains() need to fetch only rajini details*/)
Is there a way to filter a grid on the rows that you selected or have not selected. Use case being if your grid is really large and data are on multiple pages. When you go through pages selecting items, maybe you want to filter by selected items to see all the items you've selected? Is there a way to make a selected filter? Not sure if this can be a user filter.
Hi everyone, I'm quite stuck at this part so I'm needing some helps [emoticon:6d505171faa4497c85c5ca27290c555d] I built an interface to show a report which data is from a view, the view looks like this table below: Case Id Step User doing this step Updated Date Time 1 Created Molly 11/11/2021 5:11 2 Processing John 11/9/2021 7:22 2 Pending John 11/3/2022 8:33 2 Completed Molly 11/2/2022 9:11 3 Created Nick 10/5/2022 13:20 4 Processing Nick 9/9/2022 9:09 4 Pending Molly 12/8/2021 6:12 4 Completed Molly 12/6/2021 6:12 4 Created Molly 22/10/2022 1:20 The interface does not show updatedDateTime + Step (business requirement), and was filtered by loginUser(), which is why I got this result of duplicating rows with same case ID and other columns all have the same values in the report for the same case. Is there anyway I can get the unique row using Appian if there are duplicating row in the interface? Case Id Created date Related
Hello all, Is there a function or process within Appian to store and specific value for every user? (Similar to session variables in.Net,) the use case is: We have a dropdown with general values in our main page, so depend on the value selected all the subsequent pages needs to take care of that value. We want to store that value selected for every user in his own session. I did some research to use constant, but for this we need to create constant in sail code (in appian it's no possible, only update), it's not a good approach. Another thing that we discuss was to pass the value as a rule input in every object (interfaces, query rules, Process Models, etc) not sure if its a good approach since the user can go directly to other pages (saved as bookmark) even if no value is selected, but it's a must for our app. Another approach that we are thinking it's storing the value in a "customfield 1" but the function doesn't work "a!updateUserProfile()".
Hi. On write to datastore for overwriting an EXISTING record I am getting the following error. ids for this class must be manually assigned before calling save(): I see plenty of posts saying enable autogeneration, but don't feel this is appropriate given no autogeneration should be occurring on this entry and it already has a primary key filled in. If such a thing did work after enabling autogeneration, it seems to me that would mean something is going wrong and a completely new Entity is being saved. Am I wrong in this understanding?
Hi All, I couldn't see generated emails in our DEV environment as this is blocked by our admin. Surprisingly , I can test emails only in Preprod environment. Is there anyway by which I can check the generated HTML like saving it into to a process variable in custom output like the screenshot below. FYI , I am using html templates in the email. Any help or comments will be highly appreciated Thanks in Advance, MikeMiracle
Hello everyone, Trying to add back button on the summary page and then returning back to the same list, but not getting any perfect solution for this. "I need back button on summary page and when a user clicks on it, it will get back to the same list." Thanks for any help.
Hi, here from line 515 if condition is executing but it's showing only highlighted one not the remaining conditions. it has to show the remaining list of data but not showing what might be the reason for that
Hello everyone, I need that when a user offline submits a user input task, it does not disappear from the task list and he can see it in the future. Is it possible in appian configurate process/task in such way? Thanks for any help.
My Appian Community Edition site seems to have disappeared. Instead of the usual link to my instance, there's a "get my site" button. Did something happen to the servers?
Any example to hit process model through dropdown value in Interface
Is it possible to capture the page level action? Eg : When submit button is clicked - We get - "Action Completed" Message or Eg: When submit button is clicked - "Field 1 is a required field" How do we capture the messages?
Both the a!startProcessLink and a!startProcess functions state that the "processModel" parameter accepts "a constant referencing the process model or a process model UUID" However, when we try to pass a constant of type Text with a process model UUID to the processModel parameter, we get a generic "The process does not exist, has been deleted, or you do not have permission to start it." When we pass a constant of type Process Model (using the same process model) to the procesModel parameter, we are able to start the process as expected. Do these two functions still accept UUID in the processModel parameter? If so, what are we doing wrong?
Hi, I'm trying to dynamically display a!datefield based on multidropdown values. If user has selected 2 values from the multidrpdown component, then I should display 2 datefields for user to select dates. I'm trying to do this with a!foreach , however I'm not able to store values. Can you please help me with this? Sample code: { a!multipleDropdownField( label: "Titles Held", labelPosition: "JUSTIFIED", placeholder: "--- Select a Value ---", choiceLabels: local!titleNames, choiceValues: local!titleIds, value: ri!selectedTitleIds, saveInto: ri!selectedTitleIds ), if( a!isNullOrEmpty(ri!selectedTitleIds), {}, a!forEach( items: ri!selected
Hi everyone, I have a scriptask which create an output of type text by running an expression rule, which looks like below: I save this output into a process parameter, then plan to use it for the sub-process. If I want to take the updatedRelationship of the current process instance, what the script should be like? I tried below code but the data does not pass into sub-process... do I need tp!instanceIndex for the process to know what data to pass into its subprocess? index(pv!scriptaskOutcome,"updatedRelationships",tp!instanceIndex, null) Thank you!
I have a list of group names to remove from a user: pv!toRemove = { "PROFILE 1", "PROFILE 2", "PROFILE 3" } And the following Process: The MNI for the Remove Group Members is configured as follows: As node input, I have to provide the users and the group to remove. For the user I'm simply using touser and providing it the username. For the group I was using a!groupsByName(index(pv!toRemove, tp!instanceindex)) The problem is that the function a!groupsByName returns a list of groups and the input expects only one group. Even if the list has only one item, as the type is wrong, it will fail. It will run the first instance and remove the "PROFILE_1" group, but the subsequent instances will fail because it tries to remove "PROFILE_1" again as the variable will not update anymore. To fix this, we just need to make the return of a!groupsByName return a single group, I'm using index to achieve
Hi, I'm looking for some developers who can spare a few minutes of their time to fill out this survey. Please know this survey will not be used for any monetary gains whatsoever. It's a little research that I'm doing for a project of mine. The link; https://tally.so/r/nPRR1Q Thank you in advance.
Hi All, I have to show a text field below the "Reassign button" like some instruction but I am not getting how to do that,since it is 17.4 version. Please help me sort this out. Thanks in Advance.
Hello all, I'm trying to create 2 dropdowns where the 1st dropdown will show the unique manufacturer brands from this table. I managed to do it, but the 2nd dropdown is to get the motorcycle models based on the selected manufacturer. The catch is I need to only make a single query. What I did is I created a query rule then saved it to a local variable. On the 1st dropdown, I used union function to get the unique manufacturers from the local variable containing the query. However, I'm having a hard time on the 2nd dropdown.
Hi, I want to create an interface when the users select the date, then the form will display a form for the whole week, example I choose 4 Nov 2022, will generate a form table to display the week to allow the user to enter how many hours they work on the day. such as something like this
Hello, thanks for stopping by to help.I have a common issue: A read-only grid isn't refreshing after the user performs one specific record action (all other record actions do refresh the grid). The process completes correctly, but the user is forced to refresh manually to see the generated data. Here are the steps I've taken so far: First, I have set the read-only grid to refreshAfter: "RECORD_ACTION". The data queries a recordType, though I did also try using data from a local variable with the same refreshAfter settings to resolve this issue, but no luck. Next, I have enabled activity chaining on all nodes on the relevant process model. For the record, the record action opens in a dialog box and just revolves around a simple form that the user has to fill out. I am sorry if the screenshot is too small, but you may have made out the final subProcess node there. This is a synchronous subprocess, and it has the "Enable Activity Chaining into all initial nodes in
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.