-
Recently active
My process inserts a new record in table CONTACT. Using AC!StoredValues, the process variable pv!contact is correctly updated with the ID (in debug, I see it in the process variables). Now I would like to understand why it is not updated in the interface calling the process as bellow. a!startProcess( processModel: cons!CADOR_PM_SAVE_INFO_CONTACT, processParameters: { &n
Hi. I have a requirement to get characters from a String at a particular index in a List of Strings and replace semicolon (;) with a comma (,) Let's say for example we have a list of strings with only one value at index1: {"Bob; Troy; Victor"} Required output: {"Bob", "Troy", "Victor"} Is there a way to iterate individual string characters at a particular index and replace semicolon (;) with a comma (,) Thanks!
i want to display a text box only when a check box is been clicked. what can i do to achieve that?
once data is captured in the page 1 , how can we move to the next page to continue the data capture and have the progress in the navigation bar. Can anyone pls advice
What is mostly recommended for Process - 1- Run as whoever started the process 2- Run as whoever designed this process model
Hi, I just finished identifying all cookies used on my Appian applications. I need to categorize them between essential and non-essential. Are there any existing guidelines or documentation on this? Which cookies are considered essential by Appian? In particular, I can't quite figure out the right category for the JSESSIONID Appian cookie. Thanks for your guidance!
I had given my Appian Associate Developer exam on Saturday(14-05-202) at 5pm but my exam result is not out till now my exam id is-31510016203. Can anyone suggest me where to contact now.
Hi, I want to display the Link on read only grid and once i click on that link then a pop up kind window should open where i can see another read only grid with column name, address, age and download link to download these details. Can someone help.
Hi Team, There is a chat bot where we receive an approve action from approvers. How to receive that approve action in an active process to run particular approval instance.
"
Hi, I am using below code for radio button setup, however after selecting any value from radio button , i click anywhere (click outside of radio button area) on screen it deselect automatically. a!radioButtonField( label: "Type of Maintenance", labelPosition: "ABOVE", choiceLabels: {"Scheduled", "Unscheduled"}, choiceValues: {true, false}, saveInto: ri!maintenance.maintenancescheduled, required: true, choiceLayout: "COMPACT", choiceStyle: "STANDARD", validations: {}) Thanks in advance!!
How to validate ssn in appian? format should be ###-##-####
Hi All, I have a requirement where first interface/section( with inprogress spinner gif) needs to be displayed for 5 seconds and then Second one. I tried with refresh variable but we have minimum refresh interval of 30 seconds only. Do we have any alternative way to do? My Solution with 30 seconds interval , a!localVariables( local!currentTime: now(), local!waitingTime: a!refreshVariable( value: local!currentTime + intervalds(0, 0, 5), refreshInterval: 0.5 ), { if( local!waitingTime >= now(), a!sectionLayout(label: "First", contents: {}), a!sectionLayout(label: "Second", contents: {}),) })
I am trying to use safelink outside record link getting the error as expected. error :Interface Definition: Expression evaluation error at function a!gridField: A grid component [label=“null”] has an invalid value for “columns”. A grid column [label=“Module Names”] has encountered an error. Expression evaluation error at function a!safeLink [line 11]: Could not cast from RecordLink to Safe URI. Details: CastInvalidCould not cast from RecordLink to Safe URI. Details: CastInvalid
Hi, I have a requirement to write a heading like "Scores * " and the " * " needs to be in red. Can anyone help how to write in two different colors?
Hi All, I have requirement where i need to trigger an exception path for User Input task, .If Thee active user input task does not receive any service data within given time frame, It should follow a exception path at specific time, let it be 7:30 AM EST . This should be checked daily , if by this time summary is not received , the exception flow should be triggered. kindly help me with this configuration.
Hi I need to show tab only desktop users and I have tried with a!isPageWidth("DESKTOP") function but not working .. Can any one suggest on this issue. Regards Devi.
Hi, I do have a UI as start form for process model. This UI has fileUpload control. I would like user to upload file to external system (API) even before user submit the form. File that is uploaded and before submission are stored in temperate location and when i tried to call document function with that file there is information that file dose not exist. Is it possible to access to file that is stored in temporary location before submitting a form?
How to apply Styles and css in interfaces , to change the look and feel of the UI?
I am generating document but document name may contains special characters like ("\\/;:“|?’><*") but i want to replace this characters with "_".Any quick solution? Text : "Data/S Load:?" Expected : "Data_S Load__"
HI, I'm trying enter the value in edit using lowcode WIndows Automation.I found kind off this error. [STAT] 2022-06-01 13:33:43 55s (0h) - <ACTION_START> - Start action 'windows-automation->interact-with-element' - 'enter pwd' // dur: - - avg: - etc:[INFO] 2022-06-01 13:33:43 55s (0h) - Custom timeout of 30 seconds provided[DEBUG] 2022-06-01 13:33:43 55s (0h) - Element search criteria: SearchCriteria [controlType=Edit, automationId=null, name=Password, className=null, failIfMultiple=false, failIfNotFound=true, index=0][DEBUG] 2022-06-01 13:33:43 55s (0h) - Waiting for condition "Searching for element...", try #1 of #30[DEBUG] 2022-06-01 13:33:43 56s (0h) - Condition "Searching for element..." satisfied with #1 of #30 attempts[DEBUG] 2022-06-01 13:33:43 56s (0h) - Trying to perform an interaction of type 'SET_VALUE' on the found element 'Password' of type 'EDIT'[WARN] 2022-06-01 13:33:43 56s (0h) - There was a prob
Hi, I have a grid row layout and added an remove icon at the end for each row. When I click on remove icon, row is deleting from the UI but it is not deleting from the database. I used the below code for removing the grid row from the UI link: a!dynamicLink( value: ri!clickedRow, saveInto: { a!save( ri!data, remove( ri!data, ri!index ) ) } ) Could anyone please help me how to delete the row from the table through the interface
Hi, I need to add a grid row right after I cloned(click on a link) the first one. I have used insert function for that. But still, the row is adding before the main row i.e at the starting of the grid rows Coa!richTextItem( text: a!richTextIcon(icon: "Add", caption: "Create Rows"), link: a!dynamicLink( value: ri!data[ri!index], saveInto: { a!save( ri!data, insert( ri!data, 'type!{urn:com:appian:types}C_CDTName'( Id: ri!data[ri!index].Id, HeaderLine: ri!data[ri!index].HeaderLine, Desc: ri!data[ri!index].Desc, ), (wherecontains(ri!data[ri!index],ri!data)), ) ), ), linkStyle:"STANDALONE" ),Could anyone please help me on the above issue. Thanks in advance
Hi Folks, i tried to trigger process model from mail(External system) using UUID. The main process gets triggered by guest but i have one sub process inside it which is not getting triggered. Please find the error below and attachment for error screenshot. Problem: The user does not have privilege to the process that the activity attempted to start. Details: Recommended Action: The process is not started, and this node cannot complete. Please start the next node if necessary. Priority of this problem: High Priority
Hi Folks, I am using connection string to fetch document details which i have uploaded in folder. When i execute/Test connection string to retrieve data its working. But if i call the same to fetch details dynamically from process model its not fetching. i am getting the error as "[workflowVariables:[FileName:[Document:]],status:ENQUEUED]" When i execute individually with hard coded value getting correct result as " [workflowVariables:[FileName:[Document:36161]],status:SUCCESS]"
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.