-
Recently active
i am getting this error while click on related action how to resolve ? An error occurred while applying the context for the GAI Application related action [identifier=125]. Details: The record data does not exist, has been deleted, or you do not have sufficient privileges to access it.
Required is not working for dropdown field in gridrow layout how can i resolve this ? a!gridLayout( label: "", labelPosition: "ABOVE", headerCells: { a!gridLayoutHeaderCell(label: ""), a!gridLayoutHeaderCell(label: "") }, columnConfigs: { a!gridLayoutColumnConfig(weight: 3), a!gridLayoutColumnConfig(weight: 3) }, rows: { a!gridRowLayout( contents: { a!textField( value: "Grantee Administrator (Primary Contact)", readOnly: true(), required: true() ), a!textField( showWhen: rule!SCO_isBoolNotEmptyAndTrue(ri!hasUserClickedGeneratePdf), readOnly: true, label: rule!GAI_utilFormatUserName( ri!applnProjectInfo['recordType!{ba1b9bf5-818d-401c-b540-67788e6d7d2d}GAI Application Project Info.fields.{8852265a-0704-4a43-829a-c4828
Hi All, While doing upload of file with filename which contains ; or ' the characters ; and ' are replaced with _ automatically . Other windows allowed characters for file name works fine. Could you please suggest what can be issue or is it a limitation on Appian side or is it a configuration issue or is there a work around to keep the original name Thanks in advance Raj
I have a requirement, which is to query data within two working days. I use process calendar and a!subtractDateTime() to achieve this functionality. I first defined the holiday in the process calendar, and used a!subtractDateTime() to calculate the start time of the query. Code: a!subtractDateTime( startDateTime: now(), days: 2, useProcessCalendar: true, processCalendarName: "MasonTestCal",) & " ---- " & now() The out put is: My account is set up as follows: Questions: 1.Why are the calculated results not different by 48 hours? 2.What are the specific rules for a!subtractDateTime() when using process calendar?
Hi i have written code like this but it is showing the data like option1, option 2 but i want to show data like •option1 •option 2 how can write code for it
It's just a question out of curiosity. Does Appian provide a way that any solution created in Appian by any partner or organisation can be installed on client's server but still be managed and hosted by solution provider. I mean in terms of exposing the solution's code and architecture, if I don't want to expose my application code, implementation and objects to client but still want to install in their environment?
Hii, I am getting this error while executing saveinto Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!forEach [line 139]: Error in a!forEach() expression during iteration 1: Expression evaluation error at function a!paragraphField [line 153]: Invalid index type: Record field uuid: 2a1bfc02-84a2-4226-8519-1a87a180881c Record type uuid: b5dd0e17-b6cf-431f-a6b1-27d0db4b17da Relationship path: [407e0837-118e-4386-9d0f-db23d7df12ba] rows: a!forEach( items: local!section1, expression: a!gridRowLayout( id: fv!index, contents: { a!textField(value: fv!item, readOnly: true()), a!radioButtonField( label: "", choiceLabels: { "Yes", "No" }, choiceValues: { 1, 0 }, /*value: fv!item['recordType!{b5dd0e17-b6cf-431f-a6b1-27d0db4b17da}GAI Ref App Review Question
$value= ABC 12345 $res_value= 12345 I tried with |populate field with placeholder|Search Tasks |with|!{substring($res_value,5)}|It doesn't work
In database view has been created by combining many tables and it shows the results properly. When we use a!exportDataStoreEntityToExcel function to extract the content it fetches only 22k instead of 24k which is shown in view results. Is there any limitations on the extracting content except the column count 50 (ours only 25 columns)?
I have two different pm. Can I cancel one process model in the other process model. I used "Cancel Process" but it looks like it cannot work.
Hi I have connected Microsoft SQL server data base with connected system - connection is successfulit consists of real time data in employee table I need to bring that table data and store it in Appian DB and should sync the ms sql table and appian db table daily
Hi All, I got one change request, to show the date in "MMM-DD" format for the current calendar year, I think this can be achieved by concatenating two dropdowns (when user selects month in the first dropdown and second drop down should show days in the months) and I need to write some code to do that. Can anyone please guide me in achieving the same? Thanks in advance. We are using Appian 23.3 version. Thanks
I'm trying to get the User Filters that are currently applied in a readonly grid to use them in a Process Model, but I don´t find a way to do it. Is it possible to retrieve that data?
I am creating multiple employees through process model and I need to create folder for each employee I am using create folder smart service. Can anybody suggest how can i create multiple folder for multiple employee
Hi Team, I created a Application and I want to add chatbot in that application. Can we do this requirement in Appian? if so what are the steps to implement chatbot. Regards, J Vinay
I got an error message in a Process Model that is running a script task to update on a recordType. Error writing to process variables (Invalid a1e14d1a-f90e-42c0-821e-33ec2665fafd: Cannot validate type, incorrect number of elements, Invalid c3c2a3f4-623c-4f0a-b2fc-d893215c2897: Cannot validate type... (Data Outputs) The individual is a foreign key being passed to the following. The first one: a1e14d1a-f90e-42c0-821e-33ec2665fafd is a phone number record. The second one: c3c2a3f4-623c-4f0a-b2fc-d893215c2897 is an email record. if(rule!AF_RULE_General_isEmpty(pv!emails), {},repeat(count(pv!emails), pv!individual['recordType!{3d84f28c-0ab1-4452-aa14-6f0eaa2b6612}OLMS REC Individual.fields.{6942f6b1-21e5-418a-9944-1d58af72dba2}individualId'])) if(rule!AF_RULE_General_isEmpty(pv!phoneNumber),{},repeat(count(pv!phoneNumber), pv!individual['recordType!{3d84f28c-0ab1-4452-aa14-6f0eaa2b6612}OLMS REC Individual.fields.{6942f6b1-21e5-418a-9944-1d58af72dba2}individualId'])) What c
I want to generate 24 months based on the given month and year. for ex: if i gave "Nov-23" as rule input i want to get next 24 months list, result something like this {Dec-23,jan-24,feb-24,mar-24,apr-24}. can someone help to achieve this
I have below code. Can someone help how to break it into batches/looping in dynamic way. Its reaching threshold so i need to convert into batches/looping. a!queryEntity( entity: cons!MA_DSE_ABC, query: a!query( logicalExpression: a!queryLogicalExpression( operator: "AND", filters: { a!queryFilter( field: "Name", operator: "=", value: ri!name, applyWhen: not(isnull(ri!name)) ), a!queryFilter( field: "Id", operator: "=", value: ri!id, applyWhen: not(isnull(ri!id)) ), } ), pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 2000) ), fetchTotalCount: true() ),
I have an requirement where i have to add watcher to JIRA from Appian .Just wanted to know how to Add the service account as a watcher
Hello there, I wanted to convert html to csv file and send CSV file in email. I have used "HTML Doc from Template" node and "Convert HTML to CSV" node. My CSV file has generated at backend folders but HTML file is going in email. How Can i send a CSV file in email? Please suggest. Thanks
Hi All, Is there a way to implement a form for other users that are not in the application to fill out, but at least have some sort of validation of who gets access to this form. The purpose is to save the form information but the user who fills it out is not an application user, and this form doesn't appear in any menus of our application. Is this possible?
When the screen loads Custom picker show load the Editable Interface. And while search example if searching any data from the grid it should return the respective row from editable grid
As per my Requirement I need to use the Dual Picklist with Editable Grid in Interface instead with Dual Picklist with Checkbox Design Pattern. So the issue here is 1.Currently i am having the 4 items in the available list 2. When i am selecting 1 & 4 the local variables is taking the respective data related to 1 & 4 and after clicking on the ADD SELECTED it moved to the Selected List local variable 3.Remaining items available 2 & 3 when i am selecting them it should consider as 2 &3 but instead it was consider as new iteration as 1 & 2 Now the issue here is when i am selecting 1,4 those needs to be added to selected list and after submitting these when i select 2,3 the items needs to consider as 2,3 instead of 1,2 and all needs to be append and display the data Code: a!localVariables( local!availableDataIndex, local!selectedDataIndex, local!availableList: rule!example().data, (record type) local!selectedList, { a!sectionLayout( contents: { a!col
Hi Team, I have a requirement where I need to convert MNI into batches/looping, since its reaching threshold(MNI has limitation of 1000). Can someone help how to convert . Requirement: I am trying to write data to database via Stored Proc(Data is huge). In advance I don't know how many records am getting to write in database via integration. I cannot use Record, since its old Application(Business People are not in favor to convert to Record, since it has dependency on 100 objects.)
I am having the below array configuration as output, but I only want 4 array of List Of Document with each having 50 items.
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.