-
Recently active
a!localVariables( local!locationsList:rule!AT_getAddresses(addressId: null), -- getting an error at this line.{ a!sectionLayout( label: "Address", contents: { a!radioButtonField( label: "Radio Buttons", labelPosition: "COLLAPSED", choiceLabels: local!locationsList, choiceValues: local!locationsList, saveInto: {}, choiceLayout: "STACKED", validations: {} ) } )})
Hello, I would need the result of this Expression Rule in cod_provincia show me only the code of the provincia to which the municipio belongs. However, it is returning all the codes from my provincias table. What am I doing wrong? Thanks in advance.
Hello! I am making a call to an integration to retrieve data that I am saving in a local variable. then I have another local variable with a parent cdt. And now I want to save my integration data in my son cdt. How can I cast my data to follow the format of my database and have in my child CDT a column of my parent CDT? I need to use whereContains? I am learner. Thanks !
Hi team, i have an expression rule to get the doctors with count of patients assigned to them with the disease but i want to get the total patience count for that particular doctor with array of disease like eg: swift:3:{cance,Gallstones,Emotional Disorder}, Please help me to achieve this format substitute(substitute(substitute(substitute( substitute( substitute( a!queryEntity( entity: cons!PO_MEDICALINFO, query: a!query( logicalexpression: a!queryLogicalExpression( operator: "AND", filters: { a!queryFilter( field: "reasonForVisit", operator: "in", value:ri!reasonForVisit ), a!queryFilter( field:"appointmentDate", operator: "between", value: { todatetime(ri!createddatefrom), todatetime(ri!createddateto) }, applywhen: and( not(rule
Hi. I added some new document types in Standard Channel and I wanted my model to auto classify the document. I tried many times but did not get any email from Appian regarding Classification of the documents. I just wanna ask, is the feature to train documents for auto-classification even available for Appian community edition users?
We have got an email box ( for example : Customercare@xyzcompnay.com). There are thousands of emails here related to customer issues like Email 1 : "internet is very slow" Email 2 : "have a query regarding refund" .etc. Email X: "Would like to change my personal details". I would like to create a process which reads the above emails and creates tasks based on keywords. This process has to create as task for Finance team with Email2 as it is related to Refund. And it has to create another task for IT team with Email1 data as it is related to Internet and so on another task to HR Team with Email X. I assume it is more of a AI ( Machine learning ) work. Is there any way to do this in Appian ? Thanks
Is there a way to authorize the carriage return when using the cleanwith() function? I tried to include char(10) or char(13) at the end of the "with" parameter, but the result is not what I expected. Examples: ri!myText: "My texte with carriage return" cleanwith(ri!myText,"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ "&char(10)) Result > "My texte with carriage return" cleanwith(ri!myText,"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ "&char(13)) Result > "My texte with carriagereturn"
Hi All, We wrote a query to fetch date from one particular entity from Database, but the output(date) differs based on the user time zone. For example , In Database it shows as 10th June 2021,12:06 AM, For GMT time zone user it shows as 10th June 2021,12:00 AM as output in expression rule, For EST time zone user it shows as 9th June ,8:00 PM as output in expression rule. Can you please help us to sort this, Thanks in Advance. Regards, Jansi J
When i add process model to navigation bar it works fine but then i collap the navigation bar it show blank on icon click how to add process model to section layout? a!sectionLayout( contents: { rule!TCT_Template_Dashboard() } ), a!sectionLayout( contents: { } ),
Hi All, I have a column name created date in db as datetime . When I am creating filter in expression rule as createddatefrom and createddateto . I am not able to filter it . Expression Rule: a!queryFilter( field: "createddate", operator: "between", value: { todate(ri!createddatefrom), todate(ri!createddatefrom)+ day() }, applywhen: not(rule!APN_isEmpty(ri!createddatefrom)) ), a!queryFilter( field: "createddate", operator: "between", value: { todate(ri!createddateto), todate(ri!createddateto) + day() }, applywhen: not(rule!APN_isEmpty(ri!createddateto)) ), Please help and thanks in Advance
can anyone suggest a usecase for insertquestions() and extractanswers()
Hi Everyone, I have a query which will receive a text input based on that it will query data.(The data is like the reviews received for books under one particular genre, say I give my input as romance that will give all those reviews under all books in that genre), But I want to group it based on the book name. So I can get average ratings for a particular book.On grouping , I am getting only names of the book and not the other details. I have attached the required snap of code for it. In the First pic there is 9 items as output but when I group it the output will be 5 items. I want only the details of 5 items without repetition as in the second pic and I also want to know how to calculate average rating for these books.Please help me out guys!!
Hi All, I have a requirment in my Interface that I am displaying the data in a grid through Expression rule . But in that there are some fields like say isA , isB and isC with 0 and 1 value in database . But now the The condition is that I have to show the Yes , No , N/A in the grid instead of 0 and 1 on some conditions like 1. If isA is 0 in database then isB and isC should be N/A in the grid and isA will No in the grid 2. If isA is 1 and isB is 0 in the database then isA will be yes , isB will No and isC is N/A in the Grid 3. If isA is 1 and isB is 1 in the database then isA will be yes , isB will be Yes and isC yes/No based on value in database Thanks in advance
Hi All , How to create a expression Rule where I want to check single or multiple mobile number is present or not in a DB . Ex 1234,4567 present in a data base . If these two are there then return true else false
in a only view table in a grid colum the field is an integer but for requirements i sent that value to an a expresion rule and result in a value but i want to sort that field also with the integer that result from the expresion rule there is a way to sort that?
Hi All, I am having a list of months shuffled in a list. I want to arrange them in their chronological order. But I can sort only on alphabetical order. Help me guys. local!months:{"June","January","March","Novemeber","February","October","December","April","July","May","September","August"}, sort(local!months). Thank you
Hi , Can i use IDP with Aamzon AI instead of Google AI? Can i use Google AI with AWA S3 bucket for storing the files? Any case studies of IDP using Portuguese docs? Thanks Krishna
My requirement is to remove the duplicate values from a rule input of type text. Here is a sample input and output. Input: Hello hello Hello there there past pastures Output: Hello there past pastures
Hi All, I am getting the output as list of numbers, but I want the respective output in array format ,since I have to use that output in "value" parameter in query filter in another expression rule. PFB the screenshots, Can you please help me on this to convert list of numbers to array, like {56,57,58,....} Thanks in Advance.
Hi all, this is a problem that's been troubling me for some time. Let's say that I have the following date, "08/18/2021". I know that it falls on a wednesday, and I want to substract enough days in order to get "08/16/2021" as the result. Same for any other date in the same week, I'd like to automatically detect how many days have passed in the week so it always results in the Monday of that week. My approach has been the following: a!localVariables( local!ctrlday: weekday(todate("08/18/2021")), datetext(todate("08/18/2021") - day() * (local!ctrlday - 3), "yyyy/MM/dd"),) And it "works" for that example, but if I were to calculate "08/17/2021" and substract 2, it would end up with "08/15/2021". Any ideas on how to make this behave properly? Thank you in advance.
Rule name is available (retrieved from DB ) in as pv!integration.mappingRule.I am trying to run this rule in Node output expression rule I have tried various options like rule!pv!integration.mappingRule or rule!eval(pv!integration.mappingRule) or eval(rule!pv!integration.mappingRule ) None of them works . Any idea , how to make this work? Thanks in advance.
Hi, I have a below output from my expression My requirement is if "expr" of every Dictionary contains "rowcode" that row code needs to be replaced by "expr" of that particular rowcode (for eg: "(FRML_88_1+FRML_88_2)" this expression contains rowcode so i need to replace it with expr "((123/12)+(1284*64))" and the final output be like "(((123/12)+(1284*64))*(9090+122))"
Hello, I am using executestoredprocedure() function to get the data, but when i am executing the expression rule it is not returning any data. a!localVariables( local!result: executestoredprocedure( dataSourceName: cons!dataSource, procedureName: cons!storedProc, inputs:{ name:"user_id", value:"ankita12" } ), local!result)
Dear Experts, There is a requirement that, a given date time, which maybe GMT+05, GMT, or GMT-03, we need convert it to logged user's time. For example, given date time is "7/29/2021 2:39 AM GMT+05:00", my local time zone is "GMT+08", I need convert it to local time, the expected result should be "7/29/2021 5:39 AM GMT+08:00". However, I have tried below functions ( image attached ), no one can meet my expectation.
Hi All, I am using regex match to validate some values but after 20.1 upgrade system is very slow & appian support team is saying it is due to regexmatch. Can regexmatch go to long running process or infinite loop( no loop has been use to in regex ). Any help would be appreciated .
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.