-
Recently active
Is there anyway can we show all the currently logged in users in the interface
Team, We have HTML output and we want to convert that output to pdf for showing the same in UI via document viewer component. Any idea how to ? Please Note: i have html output not html document.
I have a flow in process model where each and every subprocess of export to sql runs in sequence(synchronus also) following activity chaining . Once flow is done(when it is success and taking fv!processinfo as a reference) i will show a link to dowload document which has data generated from sql .But, strangely i am seeing that without completiion of process model in backend that document link is enabled for users where some data is missing beacuse of that. What makes that document download option is enabling though process model is still running in backend? What makes onsuccess parameter of a!startprocess is not working though i am saving fv!processinfo to know when to enable that dowload option? Can someone pls help on this?
a!fileUploadField( label: "File Upload", labelPosition: "ABOVE", target: cons!TI_SAVEDFOLDER_CONSTANT, fileNames: "Test1", maxSelections: 1, saveInto: local!file ) use above code to upload file in folder inside Appian using constant.
I am using Record type to show the selectable Grid and I need to take action after selecting multi records. I can do it by capturing selected values and pass it to start process via button but want to know if it is possible to do it via Record configurations like record action?
Hi Everyone , I need to convert Appian document to base64 . How can i achieve this . thanks in Advance
Hello, I'm in Japan and my time zone is : Osaka, Sapporo, Tokyo (UTC+09:00). I'm planning to take the Appian Associate Developer Exam. When I try to schedule the exam, I need to select the time as shown below. I'd like to know does it refer to my local time or standard UTC time. Thanks
a!cardLayout( contents: { a!columnsLayout( spacing: "DENSE", columns: { a!columnLayout( contents: { a!sideBySideLayout( items: { a!sideBySideItem( width: "2X", item: a!richTextDisplayField( value: a!richTextItem( text: " Validate Lead Viable", style: "STRONG", size: "MEDIUM_PLUS" ) ) ), } ) } ) } ), a!columnsLayout( columns: { a!columnLayout( contents: { a!dropdownField( label: "Does this lead have INN Facility Privileges?", helpTooltip: "Privileges not applicable if its a PT/OT/PCP", labelPosition: "ABOVE",
Hello, I'm new to Appian, and I'm trying to build main page report which is quite similar to this "Form steps". However, each step has to show specific interface by using rule!tInterface1. My question is how can I check the validation for all of these steps at the end of the report and show a summary for all of the errors, e.g. "Step1 has an error". P.S. an error sign appears by "default" in the section that contains an error, Can I check if the section has this sign or not? Thank you in advance!
By clicking on relation action button present on summary page, user should redirect to summary dashboard of newly created record . Is there any possibility like this? Can anyone pls suggest me a solution for this?
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?
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.