-
Recently active
Hi, I have a requirement to send certain email based on few business rules. Also based on some logic ,we need to send email by passing priority High or Low dynamically. But with the send email smart service which we have , its a dropdown and we can't pass this value via expression editor. Any way to achieve ?
On file upload I want to change [Document:1234] to fileName.png.Here is what I have currently I've tried various expression inBut whatever I do, I don't get the filename saved in a variable.Things tried include (but I may have done them wrong): using a a!map using the document(documentId,"name") however [Document:1234] is not a number using a!replace(pv!file,"Document:",""), and that did not work I simply need to get the Document Id value so that I can use the document() function.I feel that I'm running out of things to try.Here is my input
Any idea on how to cast cdt to record type
When should we re-deploy an application vs. using a patch?
Hi, Is there a function available to retrieve only direct members from a group. The a!groupMembers function returns both direct and rule based members when "direct=true" is passed, but I am looking for a way to specifically obtain just direct members. Thank you
I am trying to create nested CDT . As part of that one of the CDT needs to be created multiple times. I tried to use forEach in type! but it's throwing me below error. Expression evaluation error: Syntax error. Details: Expression evaluation error at function a!localVariables parameter 2 [line 7]: Keyword and non-keyword arguments must not be mixed. Used in: {urn:uk:aviva:appian:eow:createdocumentstoreanddistribute}EOW_coverLetterDetails.. Please find below code for reference, -- a!localVariables( local!customerNomineeDetails: {{Forename:"name1",Surname:"surname1",PercentageAmount:"45"}, {Forename:"name2",Surname:"surname2",PercentageAmount:"40"}, {Forename:"name3",Surname:"surname3",PercentageAmount:"45"} }, local!requestBody: 'type!{urn:uk:aviva:appian:eow:createdocumentstoreanddistribute}EOW_coverLetterDetails'( xcdBeneficiariesIndicator: "N", xcdCOBSchemeName: "
Hi everyone! [mention:6b9f80ff18f9420082d13ef2d5121d56:e9ed411860ed4f2ba0265705b8793d05] and I will be going live at 11:00AM Eastern to talk all thing Appian Records while building an app using the PokéAPI! Join us live to build with us and ask all your burning Records questions. Here is the see attachmentApp Information Packet that will provide you information on getting set up to build along with us and give you ideas for additional functionality you can build out. We can also use this thread as a "show & tell" if anyone would like to share what they've built!
I've been experiencing this since a couple hours. every time i submit a user input task in one process model it throws this error even though the process model that is giving me this error hasn't been modified since yesterday and everything was working fine.
once submit button is clicked .. a diologue box /pop box should open iwth cancel and submit button .. consist of dropdown "Yes " "NO"if user selects yes then user picker field should open ,, So how shud i achieve this in appian.. through record action or some other way ?
can we show any icon after label ... with caption
HI , I have a jira integration requirement and need to call jira from appian to create epic,story and read few data from jira. To handle integration errors and maintaining each jira int call before and after maintaining the logging in DB. Instead of having the error handling and logging in each of every process model , thinking to have a common routing process based on dynamic parameter it should that process and since error handling and logging db and email notifications are in common process no need to have in sub process alone. with this redundant code is reduced and can be used for any other workflow later since it is a common component. what is the best approach for this Thanks Soujanya
Hi Guys, I had some react Ui application I want to use it in the Appian interface how can I do that? without custom plugin is there any anyway? Many thanks in advance
Where to set reply-to in send email smart service?
Hi Appian People! I have this code that split the value inside the CDT. So for example I have a CTD: 'type!{urn:com:appian:types}T_Sample'( name: "Person", place: "City1,City2,City3" ) When splitting the value, the output should be like this in an array form: Expected: ["Person"; "City1,City2, City3"] But the actual result I got is: ["Person"; "City1"; "City2; "City3"] the place where split in different index where it shouldn't be. This is my current code local!splittedCDT:split( stripwith( tostring( ri!cdtVal ), "[] " ), "," ) local!updatedVal: a!forEach( items: local!splittedCDT, expression: replace(fv!item, 0, find("=", fv!item, 0), "") ), Is anyone could help me with this? Thank You ahead.
Can anyone please tell what does value column denotes for row 2 and 3 from the above image(Appian Health Check Report). In row two value is mentioned as 616383, Is that something related to total memory consumed or something else?
I have an interface with some dropdowns The idea is the user selects a drop down which then informs the next drop down list.i.e. drop down one changes the list shown in dropdown two - thats fine and working well,The issue I appear to be having is getting the rule input value to change at the same time for the second drop down (values are expression rule driven) it appears to only update a step late for example if the user selects xyz and this is value of 27 then the ruleInput value will not update until the user changes the selected value to say abc with a value of 88 and then the rule input updates to 27!!! My real annoyance with this is the local variables show the correct values which means that for whatever reason this is not being pulled into the Rule Input at the same time!!!I have taken the time to reconstruct this issue without any specifics below: - Rule inputs: "dropOneRI" as in int"dropTwoRI" as an int"problem" as an int a!localVariab
I know that Appian may not be the best environment for this, but I'm wondering if this is possible. It is possible to create a simple shopping site using Appian? The table design is simple enough: CATEGORY- categoryId- name- description ITEMS- itemId- name- description- price LOOKUP_CATEGORY_ITEM- itemId- categoryId CUSTOMER- customerId- firstName- lastName- street1- street2- city- state- phone- email CART- customerId- itemId I've done this many times before in different languages/environments.This has MANY TO MANY, MANY TO ONE, aggregations and design/ui considerations with this project.I've deliberately ignored the payment portion/part of the project.
Hi sample Input : {a,b,c},{100,200,300} sample output : a-100,a-200,a-300,b-100,b-200,b-300,c-100,c-200,c-300
in an a!imageField() is there a way to remove the white border that is put around the image when it's put in the interface?
Previously we were using a hyperlink as a record link to open up a summary view,as per the customer's requirement the design has been restructured (not using record and record link)and currently we are using dynamic link as a hyperlink to open up a summary interface.The Problem here is that,when we use appian's inbuilt export functionality, as we are not using the record link as a hyperlink,it is just appearing as a text instead of link.Is there is any other suggestion you would give here in order to get back that link in the exported data?
I am using the Write Records smart service in a process model to take the results of a stored procedure (using the Execute Stored Procedure smart service) and update a record and the source table. When I run the process model I get the error "The input "Records" cannot contain multiple records of the same type with the same identifier". In a separate expression rule I have called the same stored procedure, tested the data and verified that there are no duplicate ids created by the expression in the id field. Can anyone tell me why Appian is giving me this error? I have attached the contents of the Records input field in the Write Records smart service. pv!equipDataModified is a list of map with fields "equipNum", "serviceDays", and "serviceDaysPast" Thanks in advance!
HI, I am working on a daily log kind of project. So i need to 1. Take the start time and end time and calculate the number of minutes between them. eg. 6:15 am to 8:15 am -> 120 minutes. I tried using the function minute( todatetime(endTime)-todatetime(startTime) ) but this works only till 60 minutes. i.e. 6:15 am to 7:15 am ->0 min. Should give 60 mins Also 2. is there any way i can only take the time as input? I have to use a!dateTimeField() Where as i dont want to get concerned with date. Once the datetime is entered, i can use totime to get only the time. But i want the input itself to be time and not datetime.
Hello. I currently have a database table with thousands of news from different dates. I would like to create a query that brings me the news by days and by month, but not by year. For example, the news of July 4 from different years. Thank you for your help.
hii all, i have a requirement to store a request in draft , usually if i filled a form and given submit then only one request id will generate , before submit the form i want to save the form in draft mode , how would i achieve this please help me im new to appian. thanks in advance b ramesh
Hi, I have a rule input with multiple rows of data and I also have a local variable with few rows of data. Now I want to find the difference rows of data into a another local variable. Is it possible in appian. Any inputs please.
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.