-
Recently active
DOCX table: Generated PDF table: /resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/Screenshot-2025_2D00_12_2D00_04-at-10.42.15_2F20_AM.png Hi everyone, I’m using the PDF from DOCX plugin to generate a PDF from my DOCX template. The issue I’m facing is that the table formatting is not preserved in the generated PDF. In the DOCX file, long text (e.g., email addresses) wraps correctly inside the table cell and does not overflow. However, in the generated PDF, the same text overflows outside the table cell, even though the DOCX appears perfectly formatted. Has anyone encountered this issue before? Is there a workaround or specific table formatting that the plugin requires so the PDF output respects cell boundaries? Thanks in advance!
Good Afternoon, I am utilizing the pdf doc from template smart service to generate a pdf that is a snapshot document of a form that has been filled out by a user on the site. The template I need to use in the smart service is an editable pdf template of the form that I then dynamically fill the inputs from the user into the template to generate the document. The Problem: The produced PDF document from the smart service is still an editable version while I need it to be a read only. Does anyone have a solution for converting the generated new PDF from the smart service from editable to read only before I send it to off site storage? Thank you
Are you a developer who uses Appian Composer? If so, we would love your input! Share the top ways you’ve used it by completing this brief questionnaire. Haven’t used Composer yet? Watch this video to learn more!
Dear all, we are facing an inspection error during the deployment process of the Case Management version 1.6 on Appian 24.3 as shown in the image below. We confused either the SYSTEM_GROUP_ROLE_STUDIO_EDITORS group should be present with the package zip file or must presents on our current Appian installation as system group so if its a system group why it's not available in our current Appian 24.3
Hello, I have a question related to End-User Reporting tool. In the Appian Community it is mentioned that this tool was last updated on May 2023. Since then this listing has been archived. I would like to know if there are going to be any new versions or upgrades related to this tool in the future. Can we use this utility for future application building. Thank you.
I want to collapse/Expand rows in read only grid by based on particular field and how can it will implemented
Receiving this error when I click on Clear Filters in the Monitoring Process Activity page: Appian version 25.4
{ { '1': { loggedInStatus: "Succeeded", timestamp: { sessionDeletion: "", lastActivity: "", login: "2025-12-03 07:43:17" }, sessionId: "abcb9532-b5f5-4e2f-8946-8f08a17e307f", status: "Active" }, '2': { loggedInStatus: "Succeeded", timestamp: { sessionDeletion: "", lastActivity: "", login: "2025-12-03 08:27:31" }, sessionId: "08ad7f98-85f6-4fd5-a072-6278731cbfef", status: "Active" } } }Here in this example I want to access a field "sessionId". I tried to wrap this using a!flatten () but still it doesnt work. Any help here ? Thanks in advance.
I'm currently doing step 5 of build an Application exercise, specifically in "Configure the Record list" sectionThere is no delete, move icon, or add column button.
Hi All, I'm trying to create a folder in external SFTP server and then send documents present in my appian folder to that sftp folder created. I have used SFTP Create Folder Smart Service. How do I map a customized folder name which is stored in a PV of type text to this SFTP Create Folder Smart Service? In the File path configurations, I don't see any parameter to which I can map the folder name. Please advise.
Some of the queryRecordTypes are working slow for us in prod. I am trying to monitor the performance and it has something 'performanceView.breadcrumb.recordQuery' highlighted. What does that mean and what part of the query/record it points to? Any idea Also, Appian do recommend using queryRecordType to get the data from the related records too but when I have filters and logical expressions applied to them they are performing slow.
Hi everyone, I’m currently experiencing an issue where the round() function does not return the expected results. Below are some examples. In case 2, the expected result is 512.93, but Appian returns 512.92. Additionally, in case 3, even when applying the workaround recommended in KB-1426, the output is still not correct. KB1426 document : community.appian.com/.../kb-1426-unexpected-results-on-decimal-calculations-and-rounding If the round() function cannot reliably produce correct rounding results in cases like these, is there any known alternative approach — such as a custom Expression Rule or reusable utility — to achieve accurate decimal rounding in Appian? I’m looking for: A method that consistently returns mathematically correct rounding results A reusable rule that avoids floating-point precision issues Any best practices other users may have implemented for similar cases Any suggestions, patterns, or examples would be greatly appreciated. Thank
Hi, I am having issues with the sync between Appian data types and corresponding Java plugin objects. In Appian, I have two CDTs called ‘AttachmentList’ and ‘AttachmentDescriptor’. They were generated from ‘AttachmentList.xsd’ and ‘AttachmentDescriptor.xsd’, respectively. As seen in the screenshots above, ‘AttachmentList’ contains one field called ‘Attachments’, where ‘Attachments’ is an array of ‘AttachmentDescriptor’ data types. These two CDTs share the same namespace. I have a custom Java plugin node that takes an AttachmentList data type as input. In the process model that uses this Java plugin node, I set up AttachmentList as shown below. /resized-image/__size/640x480/__key/communityserver-discussions-components-files/19/Screenshot-2025_2D00_11_2D00_28-at-1.54.52_2F20_PM.png Here is the code in the Java plugin source file for setting up AttachmentList as input: @Input(required =
Hello - I am looking for some details on what jars do we need from Appian to build a connected System & where do we get these jars from? Its a bit confusing from the documentation Can someone please let me know. Regards Naveen
I've created a process that utilizes the PDF Doc from Template Smart Service that was working correctly until this past weekend. There were no changes to the process model or to the template used to create our documents. I use to see a fully filled out pdf and now am seeing a blank page with empty boxes that display a value when clicked. Has anyone encountered this before?New behavior:[View:/cfs-file/__key/communityserver-discussions-components-files/14/20251124_2D00_2151_2D00_03.8000270.mp4:320:240] Previous behavior: [View:/cfs-file/__key/communityserver-discussions-components-files/14/20251124_2D00_2154_2D00_57.6194333.mp4:320:240]
Hi, I need to transform an image to base64 to be able to send via the Send E-Mail object. Is there a plug-in? thanks
Hi Team, Im trying a batch list of text items and prepare a query based on that. Below is my code snippet. With this code Im getting the last item of each list for the full batch of 50 items. local!getAgreementIds: if( rule!APN_isBlank( index( index(local!PartnersResult, "data", null), "agreement__cr.id", null ) ), index( local!AgreementResult.data, "agreement__cr.id", null ), index( local!PartnersResult.data, "agreement__cr.id", null ) ), local!agreementDocIds: touniformstring(rule!APN_distinct(local!getAgreementIds)), local!batchedDocIds: a!forEach( items: enumerate(ceiling(length(local!agreementDocIds) / 50)), expression: local!agreementDocIds[ (fv!item * 50) + 1 : min((fv!item + 1) * 50, length(local!agreementDocIds)) ] ), For ex: I have a list of 59 items, when I try to batch I should get 50 items in 1 batch and remaining 9 items in another batch
Is it possible to generate a diagram showing all dependencies of objects?
Hi Team, have case details and applicant details record and updating few details and storing via write record smart service for multiple record type in the process model but have to get output primary key of 2 records and how to fetch it? thanks
I have decision rule that's need to have output list of text and have more than 500 characters. I am using the output of desicion rule into multiple dropdown and store values into database that have limitation 1000 characters. How to increase this limitation?
Hello, I'm exploring AI Agent features in Appian 25.4 release and going through this tutorial https://docs.appian.com/suite/help/25.4/build-triage-agent-tutorial.html and trying to recreate this. For this, I tried calling the expression rule and save the result in output. While testing, it just shows processing for long time. Kindly help me with what I'm missing here. Is there is any specific prompt do we need to follow to map the inputs or the AI agent will automatically infer the data based on our prompt.
Hi Team, I have a requirement where I should not display test.admin user in suggestion This is my current condition which I have implemented to restrict a user, but it still displays the user in suggestion Users from Appian Directory, ri!user : User (Type) a!pickerFieldUsers( label: "Select User", maxSelections: 1, value: if(ri!user = "test.admin", {}, ri!user), saveInto: ri!user, required: true, ), Could someone please help us on this.
Hi , I am trying to setup new Azure connected system to upload document to Sharepoint , I have done all the setup as mentioned in the below appian link Integrating SharePoint with Appian's Connected System - Appian 24.4 now error I am getting admin approval required when I tried to authrize this connected system only access which I am not able to provide is this :- Click Application Permissions. Select the following permissions: Sites.Read.All Sites.ReadWrite.All My origination is a bank and they don't grant above 2 permissions to any app, is there any work around in Appian to resolve this as I am blocked due to this only and getting below mentioned error in Appian.
Hello Appian Community, I’m exploring Appian Case Management and came across some implementations described as “case management style.” However, when researching, I see references to Appian Case Management as a native framework. Observations from typical implementations: Short-lived processes triggered on UI submission Routing logic partly handled via staric Match() expressions State stored in database tables Audit/history maintained manually in tables My questions: 1. In Appian, is Case Management a native framework that you configure, or is it just a coding style/pattern? 2. How can we objectively distinguish a true case management implementation from a hybrid or DB-driven workflow that only simulates case management? 3. Are there official Appian guidelines or best practices confirming this? Thank you for your guidance!
Hi all, I am using Appian 25.4 environment. I have tried Appian Composer by uploading a pdf with application requirements. While clicking on the generate objects process models and expression rules (business rules) are not getting created. In the above picture, while hover over the caution nothing shows in the Interface. Can anyone help me with this issue.
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.