-
Recently active
Hi everyone, I am creating a process model which starts and receives some data from email due to a Receive Message Event, then processes this data with some logic and finally sends summary email in response using Send E-Mail Smart Service. I want that the summary email that my process sends to be displayed in outlook (or any other email program) as a conversation, that means to be grouped and displayed in one thread. Case: - Person X sends email A to Person Y that triggers my process model,- Person Y receives email A,- Process model executes and sends to person Y summary email B as a response to email A,- Person Y receives email B and both emails A and B are displayed in one thread in person's Y outlook Usually in high code to do this, I need firstly set headers parameters as References, In-Reply-To for my summary email B before sending. I get this headers values of email A with Receive Message Event but I do not know how
Hi Everyone, I am saving value of loggedinuser() function into cloud mysql db, but everytime it saves the "Administrator" instead of the my username. I test this function in expression rule where it gives my username. Can anyone please help me out?
Hi All, I have been trying the image recognition RPA functionality, getting the below error & I have used the given templates & ran the process in the available resource. Kindly let me know where can we insert the image for Image recognition, How to configure this?
Here I have a Plan TypeWithin Plan Type Sum Insured (Min Val and Max Val)Within Sum Insured Year Range (Min Year and Max Year)Within Year Range service center (Agency or Garage)1. I should be able to duplicate the whole transaction2. I should be able to add multiple Sum Insured (Min Val and Max Val). 3. When I add this, within Sum Insured I should be able to add multiple Year Range 4. Within the Year Range I should be able to add multiple service centers ( 1 Agency and 1 Garage)Now with the current code If I add a Transaction, 2 Transactions are getting addedAfter filling details if I add another transaction, all the values getting disappeared from the 1st transaction If I add Year Range I am getting the following error message (An error occurred while executing a save: Expression evaluation error at a function a!map parameter 3 [line 328]: Cannot add incompatible operands of type Null and type Number (Integer).) a!localVariables( local!index: 1, local!planType: {a!map(planType: ""
If isReachable throws an IOException in Java, what is the right step to do and why? The application, I believe, should halt the process and output the system message: the host is not accessible. Because isReachable throws an IOException, the host cannot be reached. But I'm not sure what the solution is. I would be grateful if you could assist me. Thank you very much
Hello Appian People, Do you have any idea how to to implement this case: So for example variable arr must be the same length value of variable value: local!arr:{1,2,3} local!value: {"a","b","c"} But if incase of variable arr is not equal value size of variable value. It needs to add null value on the local!arr , example: local!arr:{1} local!value: {"a","b","c"} local arr expected ouput must be : local!arr{1,null,null} another case example: local!arr:{1,2} local!value: {"a","b","c","d"} local arr expected ouput must be : local!arr{1,2,null,null}
Dear david.catalan Could you help me to resolve this issue? I am following the course and trying to record the searching bank name and certificate number action in chrome browser but could not get the list of applications Please refer to the screenshots below: I have chrome in the start menu Could not see any applications in the dropdown list,
Hi All, I have to generate PDF document for record summary data which contains mutiple grids and sections. I haven't done this before.So could anyone please help me. Thanks in Advance.
Hi all.. Can you tell me what's wrong with this expression? Why is the percentage not picked by the gauge component?
hii all, i have a requriment of placing a NOTIFY button in interface , once a new request is entered into a approval interface he has to take an action , once he took an action he needs to notify the remaining users by sending a mail by clicking a NOTIFY BUTTON , based on the request status we should sent an email by clicking NOTIFY USER BUTTON with request id , its like a push notification by sending a mail, based on request status we will sent different mails. thanks in advance
Closing this topic since I found a similar one on community that answers my question!
Hi Everyone, I have the requirement to capture the task report data into the database. Can anyone please help me out? Thank you
Hi Everyone, I am getting the error "Missing domain prefix" when trying to use the created expression rule to check the condition for visibility setting on a particular button.
My interface is now using a record type (data source is a process report) to show a list of cases info, now I want to add into this interface 2 additional columns, but the data for these 2 columns is in another record type, and the common field to get the right data is "caseID". Is there any possible way to query the data from the other record type back to this interface? I tried but couldn't point to the exact case ID... a!boxLayout( label: "My Pending Tasks", contents: { a!gridField( label: "", labelPosition: "ABOVE", data: 'recordType!Cases', pageSize: local!selectedPageSize, columns: { a!gridColumn( label: "Case Id", sortField: 'recordType!Cases.fields.caseId', value: a!richTextDisplayField( value: a!richTextItem( text: if( rule!AAA_CMN_IsBlank( fv!row['recordType!Cases.fields
Hi all.. New to Appian here. I've got a general question regarding applications in Appian. What is the use of an application apart from its ability to group related design objects? Also I'm able to refer rules from a different application in current application. What are the boundaries and best practices of an application? Can there be circular references between applications and What are it's impacts?
My teammate found a bug when using proper() to display a label; a word preceded by a non-alphabetic character will not be converted to proper case. If the 11th floor is home to the HR department. Floor.id = 11 Floor.department.name = "human resources" We would expect: Floor 11 (Human Resources) but instead get: Floor 11 (human Resources) To reproduce the issue, I used this expression to check capitalization: proper( "I am reporting that ""proper() coNverts each [alphabetic] cHaRacter into ProPeR caSe " & "(unless a non-alphabetic character precedes it)""" ), Where I would expect: I Am Reporting That "Proper() Converts Each [Alphabetic] Character Into Proper Case (Unless A Non-alphabetic Character Precedes It) It's returning: I Am Reporting That "proper() Converts Each [alphabetic] Character Into Proper Case (unless A Non-alphabetic Character Precedes It) Is proper() working as designed? Side note: 22.4 documentation reads, "Converts each character i
short lived record centric process are preferred over long running processes , why?
I am having some trouble with sending an email through the process model. There's html tags being sent as part of the body of the email. I even tried using the fn!stripHtml to send just text instead of HTML. Is there a way to send an email with just text in its body. Do note that I have a process variable being called inside the email body. Any feedback/ideas would be greatly appreciated!
Hello Appian people, local!arr:{1,2,null,3,null} loca!val:{1,2,3,4,5} I have a function that gets null indexes in an array local!arr then used that indexes to remove the value from the local!val array. and also remove the value found in the local!arr. /*Get null indices */ local!getNullIndices: a!forEach( items: local!arr, expression: if(isnull(fv!item), fv!index, null()) ), local!removeNullIndices: remove( local!getNullIndices, where( a!forEach( items: local!getNullIndices, expression: if(a!isNullOrEmpty(fv!item), true, false) ) ) ), /* Removed found null in data item array */ local!data: remove( local!arr, where( a!forEach( items: local!arr, expression: if(a!isNullOrEmpty(fv!item), true, false) ) ) ), local!updatedVal:remove( loca!val, removeNullIndices ) expected value for updatedVal is: {1,2,4} Do you have any ideas to optimize this implementation? Thank you
I am creating a text file with the multiple pipe delimiter data. H|Header1|Header2|Header3D|Column1|Column2|Column3D|Data1|Data2|Data3D|Data4|Data5|Data6D|Data7|Data8|Data9T|Trailer1|Trailer2|Trailer3 In the above format "H" means Header, "D" means Data and "T" means trailer I am fetching the data and using the expression rule to create the data in the above format. Then using Text Doc From template smart service to pass the Header, Data and Trailer separately in the smart service. Right now, I am performing test with 200 rows it is working fine but in the UAT the data will be around 25000-30000 rows of data. I am thinking it can create the performance issue.Can anyone suggest me the best approach by which I can get the expected data format with good performance, Thanks in advance
Hello, Am getting this error for the below code that am using to build the task interface.Need your inputs and suggestions. query: a!query( filter: a!queryFilter( field: "c5", operator: "=", loggedInUser(), value: local!statusFilter, applyWhen: not(isnull(local!statusFilter))) ) Thanks.
HI Everyone, I am opening an interface through the process start form in process model, when the process starts the form gets opened, but other nodes do not execute. Can anyone please help me out, how to execute the other nodes as well at the same time.
Can anyone help on how we can check the scorecard for Appian Associate Developer as i havent received the email. Thanks in advance.
I have a primary data source schema, mapped to a Linux dev(ex: dev01) environment. From another Linux server(ex: dev02). I installed new Appian and provided same primary & secondary data source in tomcatResources.xml and custom.properties. dev02 works fine when started. This seems to be multi-gateway installation but we are not trying to setup distributed environment. The purpose to do this is to have a separate Appian installation instance where we can do some POCs for upgrade. Q1. How Appian differentiates same primary data source for these two servers? Q2. Will there be any impact on dev01 if we shutdown dev02 and don't use it anymore? Thanks in advance.
Hi, Does anyone know of any plug-ins or perhaps connected system integration approach through external service which might support the capability to convert a Flattened PDF to a fillable PDF? This can be done manually using Adobe editor. Have a requirement to consume a PDF produced by external system which cannot be modified which is flattened but need to unflatten form fields and a signature field. Would prefer not to have to go down develop of custom plug-in approach. Regards, Bob
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.