-
Recently active
I have built an expression rule where I am using a!foreach() and looping through items. Below is the query. a!localVariables( local!var: a!queryRecordType( recordType: 'recordType!rec_type1, pagingInfo: a!pagingInfo(1, 10) ), a!forEach( items: { local!var}.data, //4 data items from the record type table are that it can iterate on// expression: fv!item['recordType!rectype1.fields.col1'] [1] )) The record type I am querying here has 4 items that I am iterating in using a!foreach(). Now expression gives a single output (specific cell's data from table i.e. first record's col1 value). My expectation was that this would give same table cell data as output but 4 times instead of 1 time. Is it due to the fact that in every iteration fv!item moves to the subsequent item as current array item and therefore cannot give that cell's data as output remaining 3 times since it has already moved ahead to next item.Let me know if I am thinking correctly or is there
Please let us know if we can get the 'confidence level for Document extraction' similar to the confidence score output for Document classification.
Any idea why the input value is not recognizing the array? I've tried with/without the comma, but Appian is still saying there is only 1 item in the list.
i have faced access denied problem when i add more than one email type in AI Skill Email Object
Hi, I have an upcoming application that is going to have a heavy IDP component. I haven't actually worked with IDP yet, and development hasn't started yet, so all of what I've been researching for Appian capabilities has been what Appian has in their documentation and other community questions. The question is, when the user uploads the form and there are attachments that also have to be extracted, does each document have to be in its own PDF? Or can they all be uploaded as one, multi-page PDF and the system can extract them all separately? Thank you! And I apologize if I'm not wording things properly, again, I don't actually have any hands on IDP experience yet, I know each form a user could upload has to be configured and classified, so this is assuming the main form and possible attachments have been configured.
Hello techies, I need to use the merge() function on a dynamic list but it isn't proving easy. Please check the following code snippet and suggest applying it on the dynamic list local!a.b a!localVariables( local!a: { { a: 1, b: { 1, 2, 3 } }, { a: 2, b: { "asdf", 5, 6 } }, { a: 1, b: { 7, 8 } } }, { merge({ 1, 2, 3 }, { "asdf", 5, 6 }, { 7, 8 }), /*working*/ merge(local!a.b[1], local!a.b[2], local!a.b[3]), /*not working*/ merge(a!forEach(local!a.b, fv!item)) /*incorrect result*/ })
Getting this error while adding cdt Constant in expression rule
Hi all, I am trying to extract data from PDF using AI skill document extraction , but it is not working. Is it working in community edition?
Hi All,Will readcsv("login-audit.csv") fetches all users login audits if we are on high availability cloud (Having more servers)?Or do we need to do anything extra to get the audit logs from individual servers. Thanks in Advance,Ramesh
Hello, We are trying to extract the data from PDF using AI skill Extraction but not able to extract most of the data, Is there any way to improve the AI skill document extraction performance to extract complete data in PDF Thanks R Gopala Krishna Raju
Hiii, i want to fetch multiple string value seperated by semi colon through query in one column like (123456;234565;456789;234567;124567). How we can do that
Hello Experts, Not able to find the Appian Connected Systems - Document Vector Database, is it pinecone CS? Cheers, Kalai.
Hi Team, I would like to remove total words from a sentence, Below is the sentence Are the machines property stickered(external communication) I need to remove(external communication) from the above one, Strip with or clean with cant be used because it will remove other letters also Any suggestions ? Thanks
Hi, I am receiving date in the format like : 25SEP I want to format it in this format : 25th September Is there a way to do it ?
hello, im trying to implement a rule that takes as an input (number:decimale) and return and italian readout of that number for example(21762161120,58)the result will be this way (ventunomiliardisettecentosessantaduemilionicentosessantunomilacentoventi/58)
Hi all I need one suggestion please let me know if anyone have an idea Question: I had data in array ex: a!map{ (id:1,idTwo:1,value:text), (id:1,idTwo:2,value:exam), (id:1,idTwo:1,value:yes) }, I need to combine the value when id and idTwo are same Expected Output: { (id:1,idTwo:1,value:textyes), (id:1,idTwo:2,value:exam) } Thanks In Advance
Hi does anyone know how can we perform AnalyzeId operation in appian using textract connected system? I cannot see this operation while configuring integration
My use case is i just want to get all the employee details whose birth month is suppose i pass 7 in rule input.How can i achieve it?
Hi All, I have multiple values like this, I need to show single data ,How Can I show single value using expression rule, Is there any way to do ? Please help on this on priority.
Hello everyone! I'm in the process of designing a quiz feature, and I'm struggling with designing an algorithm that will choose questions for a quiz. I believe my issue would easily be solved with a while loop, but since this is unavailable in Appian, I need some help designing an alternative solution. I have no code written, so let me describe my issue from a high level. I have a table containing quiz questions - around 400 rows at the moment. When loading a quiz form, I need to pull randomly chosen 40 questions from this table. First, I determine the first available question ID. Then, I determine the last available question ID. I save both as integers, 7 and 403. Then, I get a random integer number, picked from a range between 7 and 403. And here's where I get stuck: I need to make sure these numbers are unique. Normally I would have an array that I would append with these randomly generated integers on the condition that they are not already in the array, and I would do
I have a requirement to connect to Drone from Appian. I have seen an application developed by Procensol in Appian Hackathon for the same. https://youtu.be/IN5MEyguKaM?si=kl-wATgZ00rDg53Q Please let me know if there is any Plugin/API to use the same? Thanks, Sarat Tumu
user(pv!servicesDelivered.iss_analyst,"firstName")& " " & user(pv!servicesDelivered.iss_analyst,"lastName")Above is the code I have, simple user fuction to grab first and last name for user. Currently getting this error: (Expression evaluation error at function 'user': Null argument not allowed) (Data Inputs)Any insight to why? Than you in advance!
1. Interface upload image 2. second interface use document viewer to display image. Pulling image by document ID a!documentViewerField( label: "Laboratory test results image", document: ri!svcRequest.lab_images, altText: "5 Digital Transformation Predictions for 2018 and Beyond", height: "MEDIUM") 3. What I need is to pull the same image and display in an email. How would I go able doing so? What I am seeing is that is may not be possible.
An email is send by the client to appian mailbox, Appian needs to autodetect and pickup the attachement from the mailbox automatically. with the attachements as a input we have to triggered the process where input is the attcahements of mailbox. is it possible to autodetect an new email with the attachment from the mailbox? in case if it auto detected, how to trigger an appian process with the attachment as the input?
Hi, I have a question, I need to evaluate two dates, one I have already solved, the one I have solved is like this: I have a date, and I have to validate with a boolean that must receive a data from 3 months to here, if it is more than 3 months, it is already an invalid date, but the part that I have not solved is, that I mark an invalid date from tomorrow. I have compared it with an or, but it gives me true, I have this code, and it returns a true if( local!tipoComprobante = "INVOICE", a!localVariables( local!extraeFecha: substitute(right(local!fechaRecibida, 9), " ", "-"), local!mes: rule!months(month:extract(local!extraeFecha, "-")), local!fechaValida: concat(local!mes, "/", left(local!extraeFecha, 2), "/", "20", right(local!extraeFecha, 2)), or( today() <= edate(local!fechaValida,3), today()+1>local!fechaValida) ), false ) this code block is inside an if, could I get some suggestions? my local variable
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.