-
Recently active
I have a validation on a dateField that I am trying to use a rule inside of the if statement. See below.validations: { if( and( rule!someRuleThatDoesntWorkHere(a, b, c), rule!someRuleThatWorks(a) ), "message goes here", {} ) } I get a "Cast Invalid Could not cast from Rule or Function Reference to Boolean" when I add the first rule. Is there something I should look for specifically.
CAn any one tell how can I do the following in Interface, 1. I want a multiple selection option on a grid, having submit,cancel button on the bottom. 2. Another grid below the above one to get the data populated in this grid based on selection made on above grid after clicking submit button. 'Please help me, i am new please provide detail solution I would very helpfull. Thank you for understanding
Hi Community, One of our new project ask is to have Appian support branching, merging and deployment basically to set up complete CI/CD. How can we do that? We need more than one developer working on the same object and then merging them like using git version control. Any suggestions will be appreciated. Thanks,
Hi team, I have a use case where I am calling an API -> Saving the data to appiancloud db -> fetching data to interface. I am calling an API which might take 1 to 2 minutes to send response and after that I will be able to store that in db and then I will be able to render it on interface. Now my question is, can I show a full page spinner until the data comes in the interface instead of loading the top loader bar ?
I have a requirement to dynamically generate a word document from a template and will need at a certain point to insert images in different places.i have a list of assessments and for each assessment will need to generate a map picture of the location of the assessment (the number of assessments can vary and is not static) i was able to bring the list of assessments information but have no idea how to bring for each assessment the right map image generated ? i have attached the following screenshots for more clarity When i try [#list logo as logo] ... [/#list] it insert all the images in one column like the following Please any suggestion how to solve this issueThanks
In this grid i have first name ,middle name, last name, these three variables while submitting i want to store it in one rule input. Example :John jackie smith (it should display like this) can anybody help me on this
Hi team, I just need a UI similar to shown below in Appian. Could u pls help me, how to create it ?
there is 16 digit card no which in text format like { 2567893025367892} want the output as {2567-8930-2536-7892}.
I was able to trace this issue down to the interface object. The new error from the design view when I click the EDIT link is: Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!dropdownField [line 454]: A dropdown component [label="Relationship to Child"] has an invalid value for "choiceValues". Duplicate items are not allowed in the choiceValues array, but choiceValues was 4; 15; 54; 23; 27; 28; 29; 37; 41; 42; 43; 40; 44; 1; 2; 3; 4; 5; 6; 7; 8; 46; 9; 10; 11; 12; 13; 14; 15; 47; 16; 49; 48; 17; 18; 19; 54; 50; 51; 52; 53; 55; 20; 21; 56; 78; 39; 22; 57; 58; 59; 60; 23; 24; 25; 26; 61; 62; 63; 27; 28; 45; 29; 64; 65; 30; 77; 70; 66; 67; 68; 69; 31; 32; 33; 34; 71; 72; 35; 73; 74; 36; 37; 75; 38. item: a!dropdownField( label: if( local!isDependent, "Relationship to Parent", "Relationship to Child" ), placeholder: "Plea
Hello, I receive the error below when trying to edit a case: Expression evaluation error [evaluation ID = 8bac2:ea07c] : [Lcom.appiancorp.core.data.Dictionary; cannot be cast to com.appiancorp.core.data.FieldAddressable Any ideas will help. Thanks
Hi All, I want to create a process report which will return all the processes with status "Processes With Errors" but unfortunately that status is not given in the status field in the process report filters.Is there any alternate way to achieve this. Thanks in Advance,SSP
Hello everyone, I stumbled upon an issue in Appian's interface designer. Whenever I open a record action in a dialog window (using recordActionField component) and submit a dialog form, all of my rule inputs are set to initial values. I tried running the interface as a process start form exposed as an application action and everything works fine (values of ri's stay the same), so this issue only occurs in the interface designer. Additional problem is kicking the same interface as a start form in process designer. It looks like in this case, opening related actions in dialog box is not supported at all. All actions are opened in a separate tab. Below I included a simple interface with which you can reproduce this issue { a!recordActionField(actions: a!recordActionItem('your record action')), a!linkField( links: a!dynamicLink( label: "Test", value: "Test", saveInto: { a!save( ri!test, "Updated value" )
Hi everyone, when ever we create any Appian objects, will it create any column or row in database referring to that object? Thank you all in advance! Regards, Kiran Sajjan
HI , we are planning for the migration from on-premise to appian cloud instance . In analysis , we came across one question : currently the each request to appian is identified by process Id(generated by appian) for the status or follow-up. on the request. Since we are planning to migrate to cloud instance . will there be any case where the process Id can repeat for new request to appian after migration ?
I want to create an link which should redirect to process activity apart from any environment dependency? is there any function?
HI All , I am trying to select the value in a readonly grid by select all and deselect all functionality in a grid . I am not able to achieve this . below is the snippet of my code . please help me out . a!localVariables( local!data1: { { name: "Java" }, { name: "Python" } }, local!selectedRowData, local!pageSize: 25, local!defaultActivityPaging: a!pagingInfo( 1, local!pageSize, a!sortInfo("name", true) ), local!activityPaging: local!defaultActivityPaging, local!gridselectedsNumber, local!selection, local!isDeselectAllDisabled: or( length(local!data1) > 100, a!isNullOrEmpty(local!selection) ), local!isSelectAllDisabled: or( length(local!data1) > 100, length(local!data1) = 0 ), { a!columnsLayout( columns: { a!columnLayout( contents: { a!richTextDisplayField( value: { a!richTextIcon( icon: "question-circle", capti
I have a requirement where user A submits some task to user B for approval. But I won't be able to use OOTB task report here for user B to accept that task for approval. I need to provide a link to that task in my custom UI which opens that task. I know processTaskLink() and task ID is needed and we can store that in our db and then query the task ID associated with that record to generate the link to task for that record for approval. But, I am not able to figure out that how can I store the user input task ID to my db once it's active, if I put write to ds before then UI task is not active yet so no value and there is no point of putting after it as well because until unless task is completed by user that write won't run which doesn't makes any sense then. Because the link to open that same task will be generated after querying task id from db only. Correct me if I am thinking wrong approach and suggest some way to achieve the above functionality, not to mention again
Question - whether activity chaining is followed in start process smart service or not? The start process smart service calls the child process asynchronously and in asynchronous call the parent process does not wait for child process to complete . In documentation , it is mentioned that it followed, but their is condition that, " Will follow chaining in the new process until chaining ends, then the parent process resumes (even if the new process has not finished) ". I tried so many times, but every time it did not follow the activity chaining . I'm in confusion, whether the activity chaining is followed or not ? if start process smart service follow the activity chaining (as it is mentioned in documentation).then please give an example so it will be helpful to understand and in what cases it follow the activity chaining? Thankyou
Hi, I've been trying to convert datetime from any set time zone to ET. Like, if in my profile settings I've time zone set as GMT, I'm using the below code, and its working fine for GMT to ET conversion, but if I'm going with MDT or IST, it's not returning the current time as per ET. Does any one happen to know how I could achieve this conversion from all time zones to EST ? datetext( local( ri!datetime, "America/New_York" ), "MM/dd/yyyy hh:mm a" ) & " ET"
Is it possible to place a text field within a paragraph of instructions? Specifically, I'd like to recreate this in Appian: It would look something like this ideally: That image is edited in a photo editor to display my intentions. I understand I could maybe concoct a sideBySide layout to get something close, but it might have formatting issues with different screen sizes. Does anybody have any idea what I can do to achieve this?
How can I have the user enter a datetime including seconds in Appian? The date & time input control does not allow me to enter seconds (it clears the entire date/time value when I try) How can I display the datetime back to the user with the seconds? I do not see any display formatting for the date & time control. It seems odd that this is not built-in... or if it is then I'm odd because I cannot find it.
Hi team, I am trying to show a checkbox in front of every record in the grid. I have used the following code given below: a!gridField( label: "Test Cases", labelPosition: "ABOVE", data: 'recordType!{e805a109-fc8e-434b-a28c-4c7b62baa8d4}BTUA_Suites_RecordType', columns: { a!gridColumn( label: "Test Cases", sortField: 'recordType!{e805a109-fc8e-434b-a28c-4c7b62baa8d4}BTUA_Suites_RecordType.fields.{b36e5404-7689-44f8-bcb3-efc90764cd0e}suitefilename', /*value: a!linkField(*/ /*links: {*/ /*a!recordLink(*/ /*label: fv!row['recordType!{e805a109-fc8e-434b-a28c-4c7b62baa8d4}BTUA_Suites_RecordType.fields.{b36e5404-7689-44f8-bcb3-efc90764cd0e}suitefilename'],*/ /*recordType: 'recordType!{e805a109-fc8e-434b-a28c-4c7b62baa8d4}BTUA_Suites_RecordType',*/ /*identifier: fv!identifier*/ /*)*/ /* */ /* */ /* */ /*}*/ /*)*/ value: a!che
Hi everyone, I would like to know how to add text in the bottom in the generated qr Code plug ins?
Hello Everyone,I have encountered I don't know if it is already bug but I have experienced when answering the activity in UI/UX advanced course. I wasn't able to submit the answer when I refresh it I can't go back and retake the activity. Right now I couldn't acquire the certification for this specific course. I'm looking forward to your answer. Thank you in advance. On the first image the status is in progress button showed that I can resume but I wasn't able to retake the activity. If anyone experienced this issue I need your help. Thanks.
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.