-
Recently active
I'm currently passing emailaddresses in each line but when i submit it is storing values as test@test.com;test2@test.com but it has tostore in db as in new line and it has to be passed to an integration as {"test@test.com,test2@test.com"} Can someone please help
Hi Team, we are trying to implement record field validation through applyvalidation function , its not it working as expected, please refer below screenshot, this is the screenshot of pre-configured validation code in UI we tried to implement validation but it didn't worked as expected , as shown below, please suggest if missed anything configured. Note: I have tried this logic appian community edition thanks in advance
In the grid I am getting the same plan name whatever plan I select in the dropdown , Can anyone help me fix this? a!localVariables( local!wmsPlans: index( rule!WMS_qr_Plan( columns: { 'recordType!{a64248d4-beb2-46af-9f5f-eb0f79b17649}WMS PLAN.fields.{f39ad615-5340-4968-8dd2-3b4d81474095}planName', 'recordType!{a64248d4-beb2-46af-9f5f-eb0f79b17649}WMS PLAN.fields.{a8baeebc-1ffb-4f0a-9096-d148777d3756}planId' }, clientId: 11, planStatus: "Active" ).data, {} ), local!vetRequestPlans: index( rule!VET_qr_RequestPlans_ByFilters(requestId: 1188 ), {} ), local!additionalCITplans, local!plansSelected, local!editablePlans: if( length(a!flatten(local!plansSelected)) > 0, reject( fn!isnull, { a!forEach( items: local!vetRequestPlans, expression: if( contains( local!plansSelected, fv!item['recordType!{9339afa7-3440-42ac-9d18-6e89a7
I noticed a behaviour , just curious to understand more details if anybody knows Using API backed record for read only grid, case1:- For data: a!recorddata() was used and action was configured as below a!recordActionField( actions:a!recordActionItem( action: 'recordType!myRecord.actions.myAction', identifier: fv!identifier case2:- For data: a!queryrecordtype() was used and action was configured as below a!recordActionField( actions:a!recordActionItem( action: 'recordType!myRecord.actions.myAction', identifier: fv!row[recordty
I am not sure it is a basic or i am missing a point . We're working with a multi-interface navigation in Appian (6 interfaces navigated via buttons). When a user clicks a button to go to the next interface, the interface loads correctly, but the page does not scroll to the top. We do not want to use a process model with chaining to reload the form. We also tried using formLayout(focusOnFirstInput: true) but that didn’t help. How can we make the form automatically scroll to the top on each interface load using only SAIL/interface logic? Setup :headercontent layout hosts - header, contents {two interfaces}.interface1 have 2 columns , first column hosts navigation and other one hosts subinterfacesinterface 2 have buttons : Go Back , Save & Continue How it works:On the first page (interface), the user fills out the details and scrolls down to click the "Save & Continue" button. When clicked, the navigation counter increments, and the user is taken to the next pa
Hi Everyone, We have a way to use a Record type designed to have a database view as data source into a Records Chat Component? local!data: a!queryRecordByIdentifier( recordType: 'MY RECORD WITH DATABASE VIEW AS SOURCE HERE', identifier: ri!id ), a!recordsChatField( recordType: 'MY RECORD WITH DATABASE VIEW AS SOURCE HERE', identifier: ri!id, height: "TALL", initialMessage: concat( "For this instance of ", local!data['MY RECORD WITH DATABASE VIEW AS SOURCE HERE.fields.{processName}processName'], " process, I have the following data available: " ), suggestedQuestions: { concat( "When this instance was created?" ), concat( "What is the instance deadline?" ), concat( "What is the process version of ", local!data['MY RECORD WITH DATABASE VIEW AS SOURCE HERE.fields.{processName}processName'], " instance?" ) }, fields: { 'MY RECORD WITH DATABASE VIEW AS SOURCE HERE.fields.{instanceId}instanceId'
Hello everyone.I'm using the web content field in Appian. I want to display a site, but when I add the URL, it says the site is refusing the connection. In the example image, I added the Appian page.I'd like to know what settings I should make on my end, or if the settings are for the server where the site is hosted.
a!isUserMemberOfGroup( username: loggedInUser(), groups: cons!IP_GRP_RECRUITERS ) So this above code i gave it so that that particular field is visible to the specific user from the specific group only, but its not working when i gave it in a read only grid. This code did work in the normal interface and it only showed the particular field to the particular user of specific group only , but when i gave it in the read only interface, its not working. What anyone help me with what might be the issue.
I have a read only grid interface whose source is record data (API backed record). Record holds 3 million data which is one time sync . If I need to implement two custom picker fields for two columns (ex: Year & Name, max selection is 5 ) and grid should reload even with combination filter as well. Please drop your suggestions to implement this without affecting the performance much.
I have requirement in which a user uploads a document while composing a comment. The uploaded document should be stored temporarily, and its ID held until the user submits the comment. If the comment is submitted, the document becomes permanent; otherwise, it should remain temporary.
I am having a column named due On in the record with data type as date and time,In db the data type for this field is timestamp.I have to add a filter ,having two options one Before or at 7:59 PM Today and After 7:59 PM Today and display this filter and read only grid in a interfaceThis is the filter code I am writing currently,but it is not working correctly kindly help me regarding thisa!recordFilterList( name: "SLA Due Date", options: { a!recordFilterListOption( id: "before", name: "Before or at 7:59 PM Today", filter: a!queryFilter( field:'recordType!{ee5aa46d-0228-430f-a794-1134a11fbcc0}CMGT_Task.fields.{56f4ac00-4b4b-4c1b-b841-1938bd23ac80}dueOn', operator: "<=", value: rule!NWS_SlaCutOffTime(), ) ), a!recordFilterListOption( id: "after", name: "After 7:59 PM Today", filter: a!queryFilter( field:'recordType!{ee5aa46d-0228-430f-a794-1134a11fbcc0}CMGT_Task.fields.{56f4ac00-4b4b-
Hi I have a requirement I want to edit the prepopulated dropdown label name which will be coming from ref table and save that into other table. My first doubt is can we do that ?
Hi, Unable to open interface due to memory circuit breaker exception. Getting the following error - The Memory Circuit Breaker prevented this evaluation from completing due to insufficient resources. Unable to edit the interface. Is there a way to open the interface. Thanks.
As you can see above i have a list of jobs posted. And this view is the summary view as you might already know and i have an saperate action apply beside the job details tab which is for applying the candidate for the particular job. But when i click apply, the candidates that i have applied for other jobs also are visible. I want to know how can i use the queryfilter option so that when i come to the summary view of a particular job and click on apply i can only see the candidates that have applied for that particular job. Ex: I have a job posting called coforge with an job posting id of "00004" and when i go on its summary view i can see the whole job details and when i click on the apply tab , i should only see the candidates that have applied for the coforge job only. Is that possible using the queryfilter function. Please guide me through it.
I have read only grid backed by record type. Need to place download button using rich text icon in the grid which makes call to S3 using record action & gets presigned URL . Now user should be able to download the file and submit the form as well so that user land on Grid page with single click. Any suggestion to achieve this?
Hi In Interface under columns layout richTextFied was defined so that field was displaying to us and whatever the test user which i created newly same like user access for that also it was displaying that field but to the users it was not displaying there was no visibility conditions defined, when i replace that richtextField with paragraph field by passing same parameters then users were able to see that paragraph field so could you please confirm what exactly might be reason for this weird behavior a!columnLayout( contents: { richTextField( label:ri!resourceBundleDict.Signature, labelPosition: "ABOVE", richTextValue: local!maintenaceCDT.sign, richTextSaveInto : local!maintenaceCDT.sign, enableProgressBar :false() ), /*a!paragraphField(*/ /*label:ri!resourceBundleDict.Signature,*/ /*value:local!m
So the 5 text fields in the bottom of the page are actually link fields. This is a Landing page i was supposed to create which is still in progress. And the link fields lead to another site, but as you can see above they are very plain and unattractive to call them as a site. Is there any way that i can make these link fields more presentable and in a nice way so that this site can be called a WEBSITE. Thanks and Regards.
Hi , I am working on requirement when creating a request for a user some plan will be available they can select any of the plan.Its ready only. It will be write to request plan table . Later in another task they will have option to select other plans belongs to them and they want to edit the plan name as well and they want to add new plans for the request alone and for the task related to it. Now this plan are populated from reference table we shouldn't alter that. So I tried to create the new plans from ref of type above mentioned request plan table. And I created a editable grid to populated the plan name to have option of edit . But I m struct saving the local data to rule input . This is my expression to create request plan from ref table local!gridDataforPlan: a!forEach( items: local!existingClientPlans, expression: if( contains( tointeger( index( local!vetRequestPlans, 'recordType! Request Plans.fields.planId',
Currently, when users paste multiple lines of data into these fields, Appian merges everything into a single line. The requirement is to improve this behavior by allowing multi-line inputs to be preserved and formatted correctly—each line should be treated as a separate entry. Based on this input, the system should identify and display relevant matching data for each line, helping users quickly find and select multiple valid options. Example if we search - "Option 1", "Option 2", "Option 3" then relevant options should be displayed in the dropdown a!localVariables( local!selectedData, { a!columnsLayout( columns: { a!columnLayout( contents: { a!dropdownField( choiceLabels: {"Option 1", "Option 2", "Option 3", "Option 4", "Option 5", "Option 6", "Option 7", "Option 8", "Option 9", "Option 10", "Option 11", "Option 12"}, choiceValues: {1, 2,
So as shown in the above image iam using safelink() function for the buttons "Recruiter" and "Vendor" , etc... and i gave the web address of another site, but when i click on the button iam getting no response as if the button is just a dummy button, it is doing nothing. Have i made any errors in configuring the safelink function. Please someone guide me through it.
I am having a wrapper interface and inside that first interface will have links listed in a grid ,on click of that dynamic link another interface open and has back button ,This wrapper is used as a record summary view.When I am testing from interface it is working fine but when I am testing from record View It is throwing an error.kindly help me to resolve? Grid Code:a!localVariables( { a!gridField( data: ri!relatedTransactionsInfo, columns: { a!gridColumn( label: "Transaction Id", value: a!richTextDisplayField( value: a!defaultValue( value: a!richTextItem( text: index(fv!row, "transaction_id", {}), link:a!dynamicLink( saveInto: { a!save(ri!currentTransactionId,ri!transactionId), a!save(ri!transactionId, index(fv!row, "transaction_id", {})), a!save(ri!showInterface,cons!NWS_TXT_NAVIGATION_TRANSACTION_VIEW) }, ), ), default: cons!NW_NULL_PLACEHOLDER_VALUE ) ), align: "START" ), a!gridColumn( label: "Type", value: a!richTextDispla
Hi all, Is it possible to display an icon as a label in the header related action ? There is an option to select an icon but it's just a string, I couldn't use richTextIcon. The icon we can select below doesn't work either in that case. Thank you
Hi All , I want to generate a table inside a word doc. I am trying "MS Word 2007 Doc from Template" but unable to create a table. In other threads i see someone recommended "Advanced Document Templating" plugin. Please can someone share a sample code for this. sample table UserName Project ABC 22222 Xyz 33333 Thanks!
Hi I am trying something like this , I have editable grid for which data will be populated from local!data of type AB recordtype , I want to edit the row data and select them and save into another recordtype thorugh a rule input , I want to add new row also but when i try the rule input is getting updated but the grid row is not created and when i try to edit the pouplated data its not getting saved. I know im missing something I am a beginner so can anyone guide me achive my requirement? a!localVariables( local!datatype: a!queryRecordType( recordType: { 'recordType!{479ce76d-f462-432e-80f8-34a12cfb2725}RPM Candidate', }, fields: { 'recordType!{479ce76d-f462-432e-80f8-34a12cfb2725}RPM Candidate.fields.{6f148197-c427-48b6-a52c-0f8c403c81e2}id', }, pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 100) ), a!sectionLayout( label: "", contents: { a!gridLayout( label: "Editable Grid",
So as you can see in the above pic i have 2 different fields and for both the fields i have used multiple dropdown option and i have used the same functions for them. But unfortunately, the multiple dropdown is working only for the status field and not working for the commitment field. i.e, when i try to select more than one option in the multiple dropdown field, it shows an error. . . . . "Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!wizardLayout [line 3]: A multiple dropdown component [label="Commitment"] has an invalid value for "value". All selected values must be present in the choiceValues array, but value was Career Growth and Learning; Work-Life Balance and choiceValues was Career Growth and Learning; Work-Life Balance; Environment Sustainability." . . . . Can anyone help me out with where i did the mistake.
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.