-
Recently active
Hi Appian Experts, I have a requirement where i want to launch external system directly from related action without user interaction/extra click on UI. External system should launch soon as i click on related action. Creating UI task with giving safe link will not work here as user interaction not required, also, webContentField component will not work here because launch URL is not safe url(it's http url) . Any quick help will be highly appreciated.
Hello, I have an interface with a grid which has a column called actual time which is an editable field and multiple entries can be added. Suppose i enter 3 rows and there are 3 values for actual time say 5, 10,15 and if i edit the first value ie 5, a text box should be displayed where a comment can be added. So if any of the row values is edited, the text box is displayed. TIA!!
.
All of the sudden a client appears be getting this error when trying to start processes. "The Process Model cannot be started. There is no published version". This happened in a test environment. upon inspection of the process model it seems like the PM was missing the latest versions as if someone came in and deleted them and now there were only a few old unpublished versions. A quick solution was to save and published the PMs in the dev environment and deploying them again. However, I don't know what might have caused this problem? Has anyone run into this problem and found the cause for it? Some pointers would be helpful to ensure that this doesn't happen again. Is there a log registry I can look that would information about this issue?
Hi All, Could someone please help on Stored Procedure used in Appian? My main question is why do we need Stored Procedure in Appian? What is the main purpose behind using this? In What scenario it can be preferred over views? Thanks Faisal
Hello, I would like to know whether Cucumber/Fitnesse testing only refers to "on premise Appian Installations" or are they usable as well for "Appian cloud installations". Do we need an specific set-up (eclipse IDE, local servers, etc...) to set up the environments?. Sorry but it's not clear to me reading Cucumber and Fitnesse sections on the playbook. Thank you!
Is there a way to add client's custom disclaimer text as a footer which will be visible on every site page?
Hi Everyone, I need help on the below issue : We have a dependency between two screens, so in the first screen we enter an XYZ fields and save it and depending on the Role what we select in the second screen we get the XYZ fields of first screen what we entered and then save it. The problem here is , after saving it, when we navigate to the first screen, XYZ fields values are not displaying. It will display after refreshing it or if we wait for few secs. Kindly let me know is there any way we can display without refreshing the page.
Hi all, We have a Site based application with a main home page that displays information about processes. When a process flow ends, then the main home page is displayed. The process is modifying some values that should be displayed in the main home page. However, when the process ends the main home page is displayed with the old values. Only when we refresh the browser the page displays the new values. The home page is reading the values from the database. We have verified that the variables are declared inside a a!localVariables() block. We have also tried to use a!refreshVariable() with no luck. Does anyone have any idea to automatically load the new values?
Hi Team, I was not aware about the archive task thing, I lost many tasks . I need those task back or see them. Any way to do that?
Is there a way to Fix multiple process instances of a process model ?
I am working on a process model and it needs to stop at a certain time (For example 2PM CST) However, I don't see any option to do it. I've tried working on the advance options but it seems like that doesn't satisfy it as well. This was the condition that I put in Advance Options now() < local(fn!todate(today()), timezoneid()) + 30/24 Any suggestion is welcome.
local!a:toInteger(20),document(local!a,"id") works, but when Replcaed local!a with ri!Table_Name.docId getting error, How to fix? a!linkField( label: "Link", labelPosition: "ABOVE", links: { a!documentDownloadLink( label: "Document Link", document:document(6802,"id") -->replced 6802 with ri!Table_Name.docId gets an error ) } )
Hi All, I am getting the below mentioned error in Grid field when i try to submit the form. Expression evaluation error [evaluation ID = N63DMP1Y] in rule 'A' (called by rules 'B' > 'C') at function a!gridField [line 62]: key. Request to provide reason for this error occurrence. Thanks in Advance Pradeep.B
Hello, I have the following list of strings coming from a query: List of Text String - 4 items"user1"(Text)"user2"(Text)"user2; user3"(Text)"user4"(Text) How I can sort that so the final result will be list of strings of only unique values: Result:"user1"(Text)"user2"(Text)"user3"(Text)"user4"(Text)
Expression evaluation error [evaluation ID = DD2TAAGA] in rule ‘ibs_referencetableibsrefrfld' (called by rule ‘ibs_referencetables') at function a!dropdownField [line 312]: A dropdown component [label=“FLD_ID”] has an invalid value for “value”. All selected values must be present in the choiceValues array, but value was 56 and choiceValues was 1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; 21; 22; 23; 24; 25; 26; 27; 28; 29; 30; 31; 32; 33; 34; 35; 36; 37; 38; 39; 40; 41; 42; 43; 44; 45; 46; 47; 48; 49; 50; 51; 52; 53; 54; 55; 56.
Hi All, Is there a way to edit / update / modify the text inside the word doc template in Appian by the end user apart from the parameters passed. Any help is appreciated. Thanks, Pramod.
I am having difficulty with adding a Start Process smart service to a Process model. My scenario is that I have a process model that runs an interface that gives the user an option of 3 things and enters their selection into a rule input, ri!userinput, then I have an XOR that amaryllises the value and directs them to the smart service they selected and I want that to start the process model for the selection, like one is an "Customer Maint" interface, one is a "Contact Maint" and one is an "Create Event" interface. I wanted to do this via the Process Model instead of the interface but is it even an option or should I just complete in the interface?
Hello community, is it possible to set/change the value of a process variable in a scripttask/expression for example when a condition is true other than node output is stored as. I know how to set a value of a processvariable in the node output, but can it be done in like setting the value of a localvariable?example:if(pv!fruit="Apple",pv!color:"green","") Kind Regars, Erik
Hello community, Is it possible to add values from a list of string of string to fields where string 1 of the list maps to field 1 of the CDT, sting 2 to field 2 of the CDT etc.When I pass the list of strings to the CDT as a parameter in the expression it passes al the strings to field 1.I want to make the expression dynamic, so for example looping through the list of strings and add them to CDT field 1, next CDT field 2 etc.I do not know how to set the values of the CDT fields based on their index. All the fields in the CDT are of type text.To illustrate for example CDT Alphabet with fields Letter1: "", Letter2: "", Letter3:"".List of String{("A"),("B"),("C") etc.Now I want for the length of the string, adding A B C to Letter1, Letter2, Letter3 using a Loop. (is it possible to use index of CDT field instead of fieldname?)My second question is, is it possible to just add the whole list as a parameter when I cast it to a certai
Please help me to figure oute the error - Expression evaluation error: Syntax error. Details: Expression evaluation error at function a!columnLayout parameter 2 [line 33]: Missing right parenthesis in expression, found COMMA { a!columnLayout( columns:{ a!columnLayout( contents: { a!richTextDisplayField( value: ( a!richTextIcon( icon: ri!icon, size:choose( "LARGE", "MEDIUM_PLUS", "MEDUIM" ), color:cons!DU_CHART_COLOR_HEX_CODES ), ) ), a!richTextItem( text: " " & ri!label, size:choose( "LARGE", "MEDIUM_PLUS", "MEDUIM" ) ) } ), } a!columnLayout( contents: ( ri!extraComponent ), width: if( ri!isSectionFullPageWidth, "WIDE", "NARROW_PLUS" ), showWhen: not( isnull (ri!extraComponent )) ), a!columnLayout( width: "NARROW" , contents: { a!richTextDisplayField( labelPosition: "COLLAPSED", align: "RIGHT", value: ( a!richTextItem( text: ri!linklabel, style: "STRON
The available options on escalation are : reassign, change priority, send alert and send message. I cannot see an option to execute a script in the same process model. is the only way creating a different process (and send message) ?
Hi everyone,I apologize if this question has been asked before, I just got started with Appian and have been tasked with implementing the web API with our PHP website. I looked at the documentation but English isn't my first language and I find it hard to follow. Are there practical examples of web api with PHP I could see? It would be really helpful.Thank youBlumenversandMihail SchweizerZürich
Hi, i have written a query filter which is working fine and displayed that in interface. Now i need to download Excel which is also working fine but i need not have to include option: best Suppose i have a drop down field which contains values: Good, better, best. But when i download Excel i should not see best option in Excel(instead it should be blank ) ..but the value in complete row should be downloaded. applyWhen: {rule!AAP_isNotEmpty(ri!Status),remove(ri!Status,wherecontains("best",touniformstring(ri!Status)))} Can someone help with what change i should do in code
How to define the expression rule for site accent color? what should we consider for decisioning? As per the system, The accent color is used to highlight key interface elements. Avoid grayscale colors (black, white, and gray) that are similar to colors used for interface elements and green/red that are similar to colors used to indicate positive/negative values If I want to conditionalize the colors for links, grid row highlight, etc, how should we define the conditions?
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.