-
Recently active
Is there any way to get list of all process models having receive email event???
A process model is configured to archive after 7 days. Its instances are completed but they wont be archived till 7 days. Now the process model is configured to archive after 0 days. Now it will be archived the moment the process instance is completed. Will this change affect only the latest instances or it will affect the old completed instances as well??Thanks
I have a few business requirements for our mobile development and I can't find any information that can help. The only mobile functions that I can find are: isNativeMobile() isNativePhone() isNativeTablet() So are there any mobile functions OOTB or from a plug-in that helps me: - Know if a specific app has been downloaded on the users phone - Open a specific app on a specifics phone - What OS the device is using so I can send them to an appropriate app store (Apple App Store, Google Play Store, Galaxy App Store if neither are an option, etc.)
I want to compare now() to 11:30 AM EST/EDT but it's always converted to GMT. our time zone already changed EST/EDT any suggestion? Thanks, Ken
I want to embed an external web application inside the Appian web component . How to achieve it? I do not want to open a new window. Thanks, SB
Hi I have an interface where I'm displaying data related to a case and that data actually from another source where they provided it as a view. Now since they have emptied the view the expression rule that fetches the data from this view is throwing error as an error occurred while retrieving the data:unexpected error executing query...Can anyone help me in handling this null data. It would be great if anyone can provide an example query expression. Thanks in advance.
Hello, "Can you please help me? My array field, which is auto populated from another array field, takes the information but does not save it in the database. How can I adjust it to save?" I intend to get "Codigo Finca" auto populate from a "Finca" field array list. my interface code: My expression rule: property(a!queryEntity( entity:cons!SCP_FINCA_DSE, query: a!query( selection: a!querySelection( columns: { a!queryColumn(field: "codigoFinca"), a!queryColumn(field: "id"), a!queryColumn(field:"value") } ), pagingInfo: a!pagingInfo(1,-1) ) ),"data",null) Appreciate your help. Regards,
I have a task in a process model that needs some user input. I also included cancel button as a way to "go back" and do the task later. I have mapped this cancel to a XOR and if cancel is true, the line loops back into the task:This produces two issues. The first one is I get notified again if I cancel because task is reassigned to me. The second issue is that for some time the task is not assigned to anyone. I have a list of tasks taken from a task report, where I have links to the tasks. When I click on the link this form opens and when I click the cancel button I get back to the list of tasks but the said task is not present anymore in the list. When I refresh the page however it appears again as it is assigned again.Is there a better solution?
i have condition, where 2 questions are dependent on each other when i select 1st Q as YES then next Q auto select to NO if 1st select as NO then no action of 2nd Q if second Q is YES then 1st to be auto select to NO if second Q is NO then no action for 1st Q
I am facing an issue where I am setting a variable in the process model at first to be false and at the end I am setting it to be true, this change was made flawlessly across all the process models only this one. whenever I try to return the value via the web API it keeps on returning false. just note that the script task that change the value is set after a sub process model. keep in mind all chains are enabled !
HI, I am trying to implement a functionality where I need to save documents from a file upload field to Appian. The button's submit parameter is false. Any idea how this can be implemented?
Any two gates side by side in a process is okay ? What may be the issue? what is it called?
.
Hi All, While writing the data to records via a pm , i am getting the below error Unable to write to or delete from the source due to system error.Error Details: Incorrect date value: '292278994-08-17' for column Can anyone guide me on this issue .. Thank You
When I open the site it should show tasks assigned to me by default.
I want to show customized confirm dialog box (instead of the Appian default "The Task Couldn't be submitted" message) whenever the user input task is timed out (in our case the exception timer we have kept for UI task is 20 mins). Also at present when the user clicks OK button in the default dialog box, then the page stays there and either the user have to press F5 to restart the process or have to click on any of the SITE tabs to come out of the screen. Instead, I have a requirement to come out of the current UI and the system should redirect the user to the page where the process was called from eg., if the process was a related action and one of the UI task timed out, on click of OK button the system should redirect the user to the page where the process was triggered i.e., record summary page.
I have a read-only grid that uses an expression rule as its data source. Now, I want to implement manual pagination. When a user clicks on the 'Next' button, it should trigger a request to the API to fetch the next set of data, which will then be displayed on the interface. Is this doable in Appian?
Once i clicked on any left section like general , programetic i am getting out from task, if i see in process instance task is there only ,i how to resolve this ?
here we have multiple section as i highlighted for that sections am using expand link so it will expand inside the layout, but those are reusable one but how can i control expand all bool for one section currently when i click on expand all it is expanding for all the section but it should happen for which section we click how can i do that
Hi All, is there way we can show the preview on mouse hover on any image or link like the one in below in SAIL interface? Otherway is it possible to Section layout collapse/expand on Mouse hover instead of click.? Thanks in advance.
I am trying this piece of code but it is just executing while loading the interface and it is never getting refreshed after that. local!refresh: a!refreshVariable( value: rule!NGS_queryMerGenerationData( executeWhen: true, pagingInfo: a!pagingInfo(startIndex: 1, batchSize: - 1) ) , refreshInterval: 0.5 ) Can you please help regarding this?
Hi All, I have got a small question while using a!tagField. I wanted to add 2 tag items separator with a "/".When I use like below, I am getting an error. I tried using concat, & but both didn't work, Can someone help here. a!tagField( labelPosition: "COLLAPSED", tags: { concat( a!tagItem( text: "t1", backgroundColor: "#aaa9ad", textColor: "#ffffff" ),& "/"& a!tagItem( text: "t2", backgroundColor: "#990099" ) ) }, size: "STANDARD")
Hi guys, Encountered an interesting behaviour today in a workflow that encompasses a multitude of different process models. Each PM is a step in the process, and some steps are performed by different teams. E.g. Team A would perform a relevance check, then Team B would check if all is in order and either approve or send it back. What I noticed is that sometimes Team A will not receive an automated email by Appian with their task, although they are the assignee in Appian and can navigate to it from there. And it seems that it has to do with how Activity Chaining and the checkbox for "Override assignment for the next attended activity even if the current user is not an assignee" in the flow properties is set up? I tried to check the documentation for information / best practices in this regard, but didn't find anything pertaining to this problem. Would someone happen to know what the rules are and what pitfalls I should avoid when modelling such a workflow? Best,
Hi there. Sometimes there is a business scenario you need to make some actions more user friendly (quick). For example, if someone approves many tasks, you don't want him to open every task and click the approve (submit) option. I want to give the approver an option to submit from a site (not an input form). So I have in mind grid or list of his tasks and he can click "approve" or "reject" button in each line (instead of opening each task and click tehre). Is this possible in Appian?
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.