-
Recently active
Hello, A user has reported the following error in the attached screenshot. I tried to open tomcat from the system logs to analyze the error but I could not. Can you please let me know how to resolve this error? is it in the process model/instance or somewhere else? Thank you Raj
While moving our environments from the Linux VM to Kubernetes, (Initial we are on Appian 25.3 version and recently we are moved to 26.3 but this issue remains) we started facing some issues with Appian like, or Note: This is not related to code. Does, anyone else also got these kind of issues and how you resolved this.
I have process model which run subprocess.Both main and sub process already set alert to specific user. However, when error occur on sub process, alert email was sent to all admin in environment (admin@xxx.appiancloud.com) Are there any workaround for this issue? ----- Following is main and sub process configuration. Main Process Sub Process
Just curious if CE will upgrade to 26.7 soon or it waits for 26.9
Hi,Could you explain me why the mix of relationShips and fields in “index/value”, does not work in a a!update() function please ?Do I have any other choice but to call 2 consecutive a!update()?/* Works fine: */a!update( data: local!data, index: { recordType!Project.fields.createdBy, recordType!Project.fields.createdOn } value: { "my.user", now() })/* Works too: */a!update( data: local!data, index: recordType!Project.relationships.Document, value: local!docs)/* Does not work: */a!update( data: local!data, index: { recordType!Project.relationships.Document, recordType!Project.fields.createdOn } value: { local!docs, now() })Regards
Currently, the videos only have subtitles in English, and as a Spanish speaker, having subtitles in Spanish would greatly facilitate my learning process.Is there a feature within the platform to enable subtitles in other languages, or do you have plans to offer this option in the future?I look forward to your response.Best regards,
ALTFTool is a platform that helps users discover, explore, and compare alternatives to software, AI tools, and online utilities. Find the right tools based on your needs, features, and workflow
Have questions or feedback on the Appian Dev MCP? This is a great place to ask them. Appian’s Dev MCP plugin can be found on the Appian App Market here (https://appmarket.appian.com/listings/appian-dev-mcp), as well as a read-only version intended for production use or other environments where it’s important to avoid any design object changes (https://appmarket.appian.com/listings/appian-dev-mcp-read-only). Documentation and installation guidance can be found here: https://docs.appian.com/suite/help/latest/devmcp.htmlAnd finally, our public repo of skills to install alongside the MCP can be found here. We welcome contributions if you’ve developed a skill or skill update you think would benefit other users. https://github.com/appian/dev-mcp-skills
We have requirement to automate Regression suit with end to end functionality testing of workflow.What could be the possibility with On premise version without having any Appian provided AI features etc.
Unsure if there is a place to provide feedback on the DevAgent/MCP capabilities, but I am putting it here for lack of anything else. I have been using this extensively the last week as I am trying to create a sales demo. In this process i have found a few issues.1 - AI Skills. DevAgent when it modifies them, actually messes them up and I need to re-create them. It changed the input parameters and needless to say the AI skill does not work after that. The visualization in the process model is also incorrect. Unsure how/why it does that, but it is an issue2 - Given #1, I asked it to fix some json output from the AI Skill but do not modify the AI skill. IT modified the AI skill anyway. It also thought there was an error in the AI Skill so ti tried to fix it and back to #13 - Many times it tried to fix a process model and gets stuck trying to fix it. It spent 7 hours tryiung to fix an issue. It should stop or ask for some guidance. But within Claude, using the DevMCP, it spent t
Hi, I have an URL of the format : https://www.google.com/<unique_id>_<fileName>_<remaining url> Now my requirement is I want to fetch the filename out of the URL ... the first part will always remain the same i.e. first is https ... till .com/ then comes an unique identifier then followed by '_' then followed by filename then followed by '_' and the remaining URL Can anyone help me fetch the filename ?
Hi, I am quite excited to finally use the AI Dev Agent in 26.6 which was installed for us yesterday. I asked the system to generate a simple expression rule as a test and was impressed with the plan, but it could not create and threw some errors on network connectivity. My AI engines are enabled (several of those), I tried to access with InPrivate browser just in case, but keep getting several of these errors in the Tomcat log: [Appian Timer - 2] WARN com.appiancorp.common.ObjectSynchronizer - 1 services were missing users Is there some configuration that remains (not sure where I would be specifying a service user)?
Hello All, I’m currently using a View-based synchronized Record Type in Appian to display data on the front end(Dash Board). While the underlying data in the source has been updated and the latest information is visible in the database view, the changes are not being reflected in the Record Type as expected. Could anyone share suggestions or best practices for ensuring that modified data is refreshed and synchronized correctly within the Appian Record Type? Any guidance on how to retrieve the latest updates efficiently would be greatly appreciated. Thank you in advance for your support and insights.
Hello Appian Support Team,I am using the Appian Community Edition environment for learning.When I try to create a new Record Type using the “From Scratch” option, I receive the following error:“The data source cannot be reached or its configuration is invalid. Please contact your system administrator.”Could you please check whether there is an issue with the database/data source configuration in my environment?I would appreciate your help in resolving this issue so I can continue with the learning exercises.Thank you.
In my form there is radio button and a drop down list due to which the process model is stuck
Hello, I am working on an automation process where I use Appian RPA to login to a website and download an excel file (XLS format).My initial plan was to use “Import Excel to Database” smart service (Excel Tools plugin) to import the data directly into the required table. Unfortunately, this is not working as this smart service only works on XLSX and not XLS. I then tried converting XLS to CSV and then use “Import CSV to Database” smart service (Excel Tools plugin). But even here the file type allowed in XLSX. Finally, since I have Appian RPA in the scene, I tried opening the excel using “Open Workbook” operation and use “Save Workbook As” operation to convert it into an XLSX file. But this was only changing the name of the file and not the type.Can anyone point me in the direction that I should be taking in Appian to get the data from the XLS file into the database table? Regards,Deepak
Hi Everyone,I’m doing some hands on practice by myself, where I face some issues while mapping the record type into a PV. As per the documentation it says we can map record type as PV however when I’m searching my record type while configuring the pv, I’m not seeing my record type. Can someone clarify and guide me whether the action which I’m doing is correct or wrong. Please refer to the SS I have attached. 1st one is my record type.
Hello,I would like to ask about passing context information from a shared interface to a Record Action create form.BackgroundWe have a common Record Type that is shared and used by multiple applications.We created a common maintenance interface for this Record Type. Interface: COMMON_recordTypeMaintEach application embeds this common interface to manage its own records. Interface: APP_recordTypeMaintFor example: COMMON_recordTypeMaint( appName: "APP1" )The calling application passes its application name (appName) to the common interface.RequirementWithin COMMON_recordTypeMaint, users can create, update, and delete records.When a user clicks Create, a Record Action is used to open the create form for the Record Type.The Record Type contains an appName field, and we would like this field to be automatically populated with the appName value that was passed from the calling application.For example:APP_recordTypeMaint↓XCOMMON_recordTypeMaint(appName: "APP1")↓Create Record Action↓Crea
I have been working hard to get get the AI development parts of 26.6 up and running and I am stuck on a simple thing but I have no direction. I have the Appian MCP setup; but it is a read only and limited query type of MCP. I learned of the DEvMCP and that is what I am working on. I Have also learned that Composer does not build interfaces, there is a fix coming soon for that. The Dev Agent does not work at all, seemly network errors but I have no idea what they are or what needs to be resolved I have no detail to know what to do. The documentation does not say we need to enable something (We are using Appian Cloud).Now the real question. When I set up the MCP for Claude, it is not using my user name. It is something thing else, that the best I can tell does not exist. The message is: INFO:lcp_mcp_server.server:Username: MikePrentice. While that is my name… that is not my user name. So where is it getting it. I have searched a few places and that string value does not reall
Using Appian 24.1. I have created a custom plugin.Let’s call the plug com.appiancorp.plugins.RaysClass.If I use log.error(“RAYS ERROR”), the entries are written to the tomcat log file.If I use log.debug(“RAYS DEBUG”) statements, those entries are NOT written.I have tried adding log4j.logger.com.appiancorp.plugins.RaysClass=DEBUG to the bottom of the appian_log4j.properties file. Still no debug statements.If I add log4j.logger.com.appian=DEBUG, as soon as I save the file, I get a bunch of debug statements in the log.I still don’t see “RAYS DEBUG” in the log file.What must I do to write debug statements from a custom plugin to the tomcat log file?
As an experienced Educational Lab Equipment Manufacturer we offer a comprehensive range of laboratory products designed to support modern education and practical learning. Our portfolio includes Technical Educational Equipment, with solutions for institutions looking for a reliable Technical Educational Equipment Manufacturer Technical Educational Equipment Supplier and Technical Educational Equipment Exporter.
My use case is I have a large PDF that is essentially a bunch of smaller PDFs stitched together. Each smaller PDF has a dynamic number of pages, and they’re split by a separator page, so a human can tell when an individual document starts. I know there’s a PDF Tools plug in, but it doesn’t seem like there’s functionality to split by a separator page or something similar - it’s all by a specified page range or by number of pages in a document. The best thing I can think of right now is to use AI or something to find out where the separator pages are, the page ranges of the individual documents are, and loop through the large document until the end, but that sounds like it might be complicated and I’m wondering if there’s a simpler solution? Thank you in advance!
Has anyone successfully connected Appian and Confluence?Our goal is to manage activities in Appian, such as approvals or sign-offs, and have the corresponding content in Confluence updated automatically. If you've implemented something like this, I'd appreciate any guidance or recommendations.
Hi,We have changed the default log in page to access appian via an idpfor accounts that are not set up as saml users I can login viahttps://<serverdomainname>/suite/portal/login.jspThis gets me to tempo.Is there a way i can get directly to https://<serverdomainname>/suite/design/monitoring/process-activity after logging in ? Thanks Tim
Hi, We are facing a production issue in an application with a large volume of data. We display case counts using Expression Rules (ERs) and category-wise metrics using a Record Type-based Bar Chart. Although we apply filters on a few columns, when users select a 1-year date range, the queries process a significant amount of data and the ERs fail with:"Memory threshold reached during output conversion"The bar chart performance is also impacted due to the large dataset. We are looking for best practices to handle large-scale reporting and dashboard aggregation in Appian. Has anyone implemented an effective approach for such scenarios in production? Any suggestions or recommendations would be greatly appreciated.
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.