-
Recently active
Dear Appian Community, I hope this message finds you well. I am writing to bring attention to an issue that many of us have encountered and to encourage everyone to submit an enhancement request to prioritize its resolution. Issue: Saved User Filters Removed When Adding New User Filters #PreserveUserSavedFilters Many users, including myself, have experienced a significant inconvenience where saved user filters are removed when a new user filter is added to a record type and interface. This issue disrupts user experience, especially for those who have invested time in customizing their filters to optimize their reports. Example Use Case: ----------------------------------------------------------- * Description: In our application, users extensively utilize the feature to save and manage their filter settings on record type-based interfaces. Recently, we encountered an issue where adding a new user filter to the record type resulted in the removal of all previously saved user filter
Hi All, I created an RPA task and placed it in the process model, but it is not executing in the RPA instance. can anyone give me the solution.
Hi Everyone, am trying to show the comments history in a card layout to fetch the approval of the stage/comments added by the user /name. Requirement is to show the comments if user is added, if not need to remove the space of the comment. Below is my code and condition seems not working.. Thanks to help here and to learn more! local!isCommentAvailable: a!isNotNullOrEmpty(index(ri!audit['recordType!{77342a51-f497-4d5d-a8e5-d123d13967df}TMA Audit.relationships.{683d367a-af56-4cf5-af48-16fbd40c5dbb}tmaComments.fields.{719d7da1-f969-4e01-85ad-d4ffb6f37778}comments'],1,null)),
Hi Team, Validation should be triggered if the user enters two consecutive dots in the text field. How can we handle this?
Sorry if I'm missing something obvious/another tread on this topic, but I haven't been able to find anything related after digging for a while and banging my head against the wall on this. Is there a way to natively pass variables into an integrations relative path? The goal is to have some user input field for that variable to pass through to the external endpoint, who's required format is along the lines of: base_path / relative_path / {variable} / relative_path2 I'm looking to avoid as much custom code as possible, but any help/advice would be appreciated!
Hi everyone, I have a use case where a due date will be the 2nd Wednesday of the next month of given month and year.
I am trying to make a field unique by following these instructions - (source : 24.3 24.3 Case Mgmt Studio (CMS) Common Customization and Configuration Guidance) How can I navigate to the db table corresponding to CMGT_Agency? These are the options I see in source settings.
In Case Management Studio, the due date utilities, objects and interfaces are dependent on the SLA field that is configured when creating a case type. For my use case, I would like a user entered due date(from data intake form) to be set as due date( and connect to the calendar interface, show overdue message etc). What is the best way to achieve this? Similarly, I would like a user entered "Assignee" to be saved and used instead of the default field.
Hi, I was wondering if we can export the readonly grid to text file (.txt)? any suggestion on the user interface and process model? The current build in function can only export the data to excel. Thanks,
I had a related action which will update the form . Now Instead of related action I need to keep a button to update which should call same processmodel to update the form with . a!columnLayout( contents: { a!buttonArrayLayout( buttons: { a!buttonWidget( label: "Update Form", saveInto: a!startProcess( processModel: cons!_UPDATE_FORM_PROCESSMODEL, }, align: "END" ) } )when I click on that button ,It is calling the processmodel at backend but getting error and the form is not opening up like in relatedaction . If I do update from related action it is working as expected.Can someone pls help
Hi, We have a requirement from business asking is it possible to enter text and paste images/snips in a single field? We have a field called Notes, which is a Paragraph Component- accepts only text. Any leads here? Thanks in Advance. Keerthi
Hi, I am using a grid field and a rule input to save the selected rows, but all the selected row values are not saved in the rule input. Suppose I am selecting four rows only the value of 2 rows is saved in the rule input. When I select all the rows at once this is a problem. But if I select one row after other it doesn't create a problem.Attaching the code snippet for reference: Any help in this regard will be appreciated.
One of the requirements requested from our team is to add print button to print the whole request information available in the interface by the end user. Could you please give us the best approach to do this task and what is your suggestions to achieve such these requests putting in your consideration that the interface is a combination of multiple interfaces each interface has its own rule inputs while some interfaces retrieve the data from web service and the others from record type in deferent representations and formats like grids, labels and so on
Hi, If a user is part of 2 groups: Assistant and Manager. Same user who submitted a task as an Assistant shouldn't be able to access next task in the flow as Manager. Is there a way not to show/disable the accept and reassign buttons when the same user tries to claim the task? Or can we show an error message when trying to accept? Any help/ideas are appreciated. Thanks,Keerthi
Hello, I have a use case where a read-only grid displays a list of projects, with one column showing statuses such as Complete, Cancelled, Design, etc. I want to enable users to click on the status, which should then display a dropdown containing all available statuses. The user should be able to select a new status, and the update should be saved to the database accordingly. Requirements: Clicking on the status field should open a dropdown with all status options. Once a new status is selected, it should be immediately updated in the database.
We have four user roles: Admin, Manager, Supervisor, and Agent. The Agent performs certain actions that are accessible to all three higher roles (Supervisor, Manager, and Admin). The Supervisor performs some actions that should be accessible only to the Manager and Admin. The Manager performs specific actions that only the Admin should have access to. The Admin can perform exclusive actions that no other role can access.How to configure security?
Hello Everyone! We are using consume KAFKA plug-in, however the source system is publishing data to Kafka in Gzip format. In Appian we are reading data from consume KAFKA plugin able to store kafka messages in database. The body of the Json data is in Gzip format. Can anyone suggest how to decompress the data while reading data from database. Example: {"topic":"testTopic","partition":0,"offset":23,"key":"123","value":"\u001f�\b\u0000\u0000\u0000\u0000\u0000\u0000"} Thanks for your help!
Is there a way to identify the objects with more than certain lines or sort objects by lines count or characters count?
When the "index+1" script task is reached, I would like to wait 1 second and then execute the script task.I tried to solve the problem by setting the timer, but I don't know how, so I would like to know how.
Hi Appian Community - I am new to Appian and excited to use it for my use cases. I have searched in documentations and didn't find anything related to configuration management aspect of design what I meant is - if I am creating one application it will expose some feature flags, some configuration placeholders for end user customization. what is Appian recommendation, do you have any patterns with examples which newcomers can use as a reference? What are do and don't in that area? Also, base vs overrides configurations client wise - if your app is being used by multiple clients. Please provide guidance.
Hi,Having the below scenario,Having 2 different object lists as below. Now A type of object having 1,2,3 fields, similarly for B object list as well.A - 1,2,3 B - 1,2,3 Now in the first for each the Items will be A object list. foreach( items: ri!A, expression: foreach( items: ri!B, expression: { If(fv!item[B.2] = fv!item[A.2], "Hi", "Hello" ) } ) )Here, I am getting an error on below line for referencing the fv!item of A's object list in second for each.fv!item[B.2] = fv!item[A.2]Can anyone help me out this? Thanks in advance.
Hi Team, I want to create two columns in Interface, one column will have Calander and when we click on the date , it will display on the second column, anyone got the answer, plz share the code
Hi Appian community members, currently we are using a!columnChartField to display some columns in a UI. Recently there are many columns added, is there a way to make the column chart scrollable from left to right so all columns not squeezed? a!columnChartField seems don't have any parameters can control whether scrollable. Any suggestions? Thanks.
Hi! Has anyone implemented an interface with a similar visual style? A grid field with rows and the rows have an icon that when you click expands a section. I could be wrong, but I think Appian doesn't currently have an out-of-the-box component/layout for this, hence I'm trying to find a workaround. I am looking for ideas on how I can at least mimic a fraction of this style in Appian.
I have a requirement wherein I need to download multiple files (say 30 files) at a button click to the local system I have seen posts to try Zip plugins to add documents to zip and unzip the same. Please can someone suggest a way on how i can achieve that on a button click the files are downloaded to my local system. The number of files are dynamic.
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.