-
Recently active
Hi , Is there an Appian function to retrieve Severs' primary locale ? I am looking for something like userlocale() , but specific to server not user. I know this can be be achieved in plugin/java. But I am looking Appian function. Ideally , I am looking for a function which can return highlighted settings in admin console as shown in the screenshot The usecase is a process model scheduled to run as batch which is developed by a single country but runs in different countries with its own servers. I am looking to dynamically disable or enable this PM , by setting up an expression or condition in the start timer.
After a user loging in i want do open a diferent interface based on theyr permission levels, but it goes to end node without opening any of the interfaces from the process models
Hello community, I am exploring the loop functionality of a scrip task but can't figure out how to do the following. I have a list of 6 map entries (same structure) with e.g. 4 fields and want to pass the values of the field of each map entry to a subprocess for earch entry fetching the values. I use pv!listOfMap[tp!instanceindex] to get the values. But what happens is that the script task iterates 6 times first and passing the last value of index 6, to 6 instances of the sub process. So ending with 6 instances with only the last value, instead of 1 to 6. I know I can pass the list of maps to the sub process and also pass the [tp!instanceindex] as a variable, and use the index in the sub process. But what am I doing wrong here? Kind Regards, Erik
This feature request involves navigation controls upon Site Action completion. Currently, as with all Appian Actions, when one is completed the user is returned to the area they initiated the action from. This makes sense in a number of situations, however, not always with Site Actions in my experience. In most situations I've encountered, a user is expected to submit 1 action at a time. Typically we will have a few Site Pages, maybe a Home Page interface with general process details/contacts, a Record with some reporting capabilities, and a Action to submit a request. Currently when the action is completed, the default behavior is to return the user to the same action's start form, essentially now a blank interface for the same process they have already submitted. This causes end user confusion and creates extra development when we want to show a user a confirmation screen and allow custom navigation. Best case, an extra click and an orphane
HI, I am getting an error when I try to send emails using "Send E-Mail" service in the process model. Basically, I am an administrator at the application level and when I try to run I am not encountering the issue. Whenever any user is trying to run, they are encountering the below specified issue. I have used a constant to refer 2 different groups. The user which is running the process is part of those 2 groups. Any idea why I am getting this error.
Hi. I currently have a requirement to allow the canceling of a UI task while keeping tp!id the same. Basically the equivalent to exiting out of the window and coming back to it later. Is there a way to do this with a button labeled cancel within my PM or interface?
In the process model I used "Bar Chart To Image", can I change the color of the chart? I had this result but I need to change the colors, there is any way?
I want to reset my password for appian community but not able to reset, When I click on forgot password I got a mail Password can only reset by administrator. Already send a mail to appian community regarding reset my password but not getting any response. Anyone have idea regarding this issue please help me out.
Hi Appian experts, Here, I am trying to get the cText based on the passed typeId. How I can achieve this. a!localVariables( local!selectedtype: "IM", local!myDictionary: { { cText: "Internal Memo", typeId: "IM" }, { cText: "External Memo", typeId: "EM" }, { cText: "Correspondence", typeId: "CP" } }, local!myDictionary.cText[local!selectedtype])
Is there a way to prevent an Appian object in conflict to be overwritten while importing the package. If there is no way to prevent a particular conflict to be overwritten . Is there any properties file settings to prevent overwriting of all conflicts in that import? what I am looking for is something like importSetting.FORCE_UPDATE=true in import customization properties file, ideally for one particular object in conflict or all objects if that's not possible
My requirement is to display current month as default option in dropdown and user can change month value from dropdown if they want to change and for each month there should be integer value saved in Rule Input "selectedMonth", so I have applied dropdownFieldByIndex() function for this. If user select blank then it will revert it to current month but I am getting below issue: SAIL Code: local!currMonth: datetext(today(),"M"), local!monthName: {"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"}, a!dropdownFieldByIndex( label: "", labelPosition: "ABOVE", placeholder: "--Select Month--", choiceLabels:union(local!monthName,local!monthName), /*choiceValues: tointeger(union(local!monthValue,local!monthValue)),*/ value: if(rule!APN_isNotBlank(ri!selectedMonth),ri!selectedMonth,local!currMonth), sa
Hi I have a question i have 3 rule inputs i.e, ri!uniqueref1,ri!uniqueref2, ri!uniqueref3 these 3 rule inputs needs to be updated to DB but 3 rule inputs have to refer to single column but different rows in DB can anyone help me for this how can i write logic for creating process model 3 rule inputs needs to refer single column but different rows in DB and update the values
Hi, We are using Cucumber for Appian and we tried every way to click on related actions that are in a dots menu like so : Anyone facing the same issue did find a solution? Thank you, Jeremy.
HI Appian, I have to pass multiple cdt values as process parameter from a webapi how can i do that? Please someone help me for this. I have attached the sample code for your reference.PF_Request and PF_REQUESTITEMDETAIL is the table which i am passing as parameter from webapi to process model as Process variables. a!startProcess( processModel: cons!PF_Create_Request_WithChanges, processParameters: { PF_Request : a!fromJson( http!request.body ), PF_REQUESTITEMDETAIL:a!fromJson( http!request.body ) }, onSuccess: a!httpResponse( statusCode: 200, headers: { a!httpHeader(name: "Content-Type", value: "application/json") }, body: a!toJson( fv!processInfo ) ), onError: a!httpResponse( statusCode: 500, headers: { a!httpHeader(name: "Content-Type", value: "application/json") }, body: a!toJson( { error: "There was an error starting the process" } ) ) ) Thanks S
Is there a way to query the Appian user database and discover those users whose passwords are expired (rather than account deactivated. I've looked at the user() function and none of the arguments help..
How can I change the language or translate the language of the interfaces of an application to other languages both its interfaces and the site itself?
Hi, I would like to know if there is a way or workaround in Appian to receive multiple files in a single webAPI call? Scenario: A third party system needs to drop files to Appian by calling the Appian Web API.
How I can upload book as pdf file and preview it in Appian
Hi I need to compare each item in two arrays e.g. local!dtmdata: {9, 9, 33, 33},local!databaseData: {9, 33, 33, 33} i have tried: a!localVariables( local!dtmdata: { 9, 9, 33, 33 }, local!databaseData: { 9, 33, 33, 33 }, local!notAtIndex: a!forEach( items: local!dtmdata, expression: if( wherecontains(fv!item, local!databaseData ), wherecontains(fv!item, local!databaseData ), "false" ) ), local!notAtIndex ) But its not sufficient as I want compare the numbers at each index So I need to compare the first item in array local!dtmdata with the first item in array local!databaseData and so on. If at any point they are different then I need to know the index of the difference in the example above it would return index 2 as it is different Thanks!!
Hi, I am getting an error while logging into the development environment of my organization whereas my rest team members are able to login.. Error 401 - Unauthorized Sorry, your request could not be processed. Could anyone please suggest what should i do? Thanks.
I have an integration which makes a POST (read-only) to a database. The returned value is a string formatted in pascal-case. There are a total of 25 possible string value responses, here are some examples from the 25 possibilities: "DeferredStudentLoan" "LeasePayment" "PersonalLoan" I need to convert these strings from the above pascal-case to standard-case (I guess you call it that?). "DeferredStudentLoan" should be converted to "Deferred Student Loan" "LeasePayment" should be converted to "Lease Payment" "PersonalLoan" should be converted to "Personal Loan" Here are some snippets of code... a!localVariables( local!line4_addedLines: 1, local!PostCall: rule!EI_FieldReader_CDpg3_UCD_Sec_K_Line4(), ........ local!PostCall: rule!EI_FieldReader_CDpg3_UCD_Sec_K_Line4() creates a dictionary of the post call made in the integration (not shown anywhere in this thread). I call upon a speci
I have a question... am using reusable rule, in that rule... date need to be editable for some set of process model and not editable for some set of process models... how can i write code for it? is it possible with IF condition? if so can anyone let me know Thanks Kavya
How can I achieve validation in dateField.... in the date field i shouldn't able to pick past date only future date i can select.. how can i achieve this with validation can anyone help with this
how to get most recent document uploaded in grid.I have created grid with 3 columns ,in which how to get most recent document which is uploaded by user.
Hi , I have a editable grid having 17 columns and horizontal scroll is appearing in the page due to large number of columns. I am trying to use weight of the a!gridLayoutColumnConfig(width: "DISTRIBUTE", weight: 8) for width distribution like making one column wide and other less wide but non is showing any effect on the width distribution of columns, all are appearing fixed width on the screen. Is it like a!gridLayoutColumnConfig stops working if number of columns are huge ? Please help with pointers. Regards Bihitak
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.