-
Recently active
What to know if we can prevent multiple schedulers from firing when the server is down and then restarted? In our case we are using End User Reporting module, which has a time interval based Scheduler which runs every 15 mins. Our application servers are down outside office hours. If there is an notification schedule during the outage time, then on server startup the notifications get sent out 100 or more times, due to all the missed schedulers firing again on startup. For the fixed time schedulers we have used Advanced Condition on the timer to fix this problem. But we cannot use the same for a time interval based scheduler.
am encountering the following issue when attempting to start the Appian server as a local instance for plugin development: Error when running engine scripts ERROR com.appian.komodo.engine.KLicenseVerifier - Error starting K: null As per the possible solutions mentioned in the KB article, I have already: Requested and applied a new long team license to my local instance. Verified that there have been no changes in the following: The operating system. The CPU count. The Fully Qualified Domain Name (FQDN). Ensured that no more than one hostname resolves to the local network IP of the machine where the license is installed.
Good morning. Is there any way to know, using the ID of an object, what its dependencies are and which application it belongs to from a rule? Thank you very much.
On an interface, I am setting the following validation using regular expressions. The format is [3-digit number] - [4-digit number]. Therefore, for example, if I enter a phone number like "080-0000-0000" here, a validation error will occur as shown below.Naturally, when I press the button, it doesn't submit and it stays on that page. However, a phenomenon occurred where nothing was submitted and the page changed.Since it cannot be reproduced, it is difficult to determine the cause.Do you know the cause? (Sorry for the screenshots written in Japanese.)
I have a documentDownloadLink, when user click on the link, it always calls a white screen and last for few seconds, after white screen disappear, the document starts download. Is the white screen expected? Or can it be overcame somehow?
Hi all - We're Using Reactivate User to procedurally reactivate accounts for re-hired contractors - but we also need to reset their passwords, as they're all accounts that previously utilized SSO. In the past, the old accounts would have been left by the wayside and we would have just created them new ones (thus adding to the clutter-pile of disused accounts), but now we're able to change their username, which is a strong positive in general. The problem: Our customer / stakeholders are STRONGLY against forcing users to undergo the multiple clicks necessary to do a manual "forgot password" request on the sign-in page, and to be fair, nothing was "forgotten" in this case. The days of having the "change password" smart service via plug-in are sadly long-gone, but we don't even have a way to procedurally kick off an automated password reset for a particular user. Why? Edit: this issue is now satisfied thanks to the newer plug
I would like to know the different ways to start a process in Case Management Studio. For example, If I would like to create cases from an excel upload with different records, would it be possible to do so?
Can we leverage Appian as the backend for our external application developed using Blazor, enabling access to all Appian resources through APIs, including the standard Appian login, password reset, and password recovery functionalities
Hi All, Can you please help me how to get the intersection of Lists of array (number array). So I have a list of number array which I construct in the interface. I need to only pick the common element present in all the number array . I tried with loop and reduce function but not getting the actual result . It has been achieved by taking an array element and loop over other other array and check if present in all array then keep it or remove it which I feel is very dirty way of doing . Any suggestion would be appreciated. Thanks Manish
two different users with the same interface and with the same input values ...the output is showing different. what could be the reasons for this ? please help logic built- input type used is date field - user will be able to select date and from that selected date onwards it will exclude public holidays and weekends and will return the date of first 20 business days. for most of the users the output is as expected BUT for some users it is showing wrong output.
Hi,I've two interfaces, On selecting one row (Read only grid) then dependent interface(Read only grid) is displaying data based on the selection of rows.The issue is when I'm selecting the grid rows one by one the total count is 27. but when I select all rows quickly then the dependent interface count is reduced to 16. here is the code snippet of dependent interface. a!gridField( data: local!calculatedMetricList, initialSorts: { a!sortInfo(field: "adherence", ascending: true) }, secondarySorts: { a!sortInfo( field: "employeeFullName", ascending: true ) }, pageSize: 20, borderStyle: "LIGHT", spacing: "DENSE", selectable: true, disableRowSelectionWhen: false, selectionValue: ri!selection, selectionStyle: "ROW_HIGHLIGHT", selectionSaveInto: { ri!selection, a!save(ri!selectedSupervisorRow, save!value), a!save( ri!selectedSupervisorHierarchy, if( length(fv!selectedRows) > 0, append(
List of task is represented from which I can deactivate particular required task Before deactivating task, I need to check if that task is present as precedent task for any other task or that itself should not have any precedent taskcurrently after clicking on deactivate icon I am getting validation msg but its for all task, but i want it for only particular task that has been used as precedent taskI need to give show When condition to validation msg for that I need task name, but due to submit link used for deactivate icon all values saved are getting refreshedis it possible to retain that values and used to show validation msg
Can someone explain why datetext() is returning 2022-11-30 given the input of the date 12/1/2022. I came across this thread which states datetext() is no longer supported however it appears within the latest (24.4) All Functions list within Appian. community.appian.com/.../issue-with-using-datetext-function-in-appian-portals
Hello Community, Following situation: handover didn't go smoothly, so the password for the main Appian Oracle user which holds all tables was lost. The password was changed, and somehow the Data Source for the old configuration was gone in the Admin panel. Not sure how that happened, but I added it on all environments with the correct connection strings again. However, the Data Stores had to be configured anew. This luckily was no problem on Prod, but I am now facing an issue on Dev with a few distinct ones. When I select the Data Source and try to verify, I get this message: "An error occurred while attempting to verify the data store: Type definitions could not be found in the Appian data source for the following type ids: 5504 (APNX-1-4047-008)" So I tried checking the CDTs that are connected to it, and for each one I try I get this error: "HTTP Code: 500 APNX-1-4198-000 Error Evaluating UI Expression Expression evaluation error [evaluation ID = HCBTYGS5
Hello, How can I download a document that is stored in Appian from an external system?Currently, I am document(documentId, "url") to get the document's URL, then storing that URL to a table. My external system is grabbing that URL and attempting to CURL the url to download the file. An HTML document requesting the user to sign in is returned, so I am assuming that I must authenticate to Appian. Is there any documentation that can be pointed out on this process? I could not find anything in the docs. Thank you
I´m just starting in Appian and I want to create a process in which I upload an Excel with some registers and for each register the process create a task. Is it possible to do it easily?
I have requirement to deactivate task with following requirements: 1. A list of Task is displayed and each task has Deactivate icon next to it 2. Clicking on Deactivate icon, check if task is used as precedent for other task 3. If that task is used as precedent task then deactivate action should not proceed and Validation msg should appear on UI 4. If task is not used as precedent task, then task should be deactivated and update action is executed where record column isDeleted as marked as true 5. Currently for this Deactivate icon Submit link is used, which proceeds deactivation action on click I am facing issue for showing up Validation msg in UI - with Submit Link/Button: it executes the Deactivation action for non Precedent Task but fails to show validation msg on UI(in Design interface validation msg is showing up) -with Dynamic Link: successfully shows the validation msg on UI if task is used as precedent task, but fails to deactivate task which is
How can we create a rich text display menu as showing in the attached format having sub list too.
Hi All, We have requirement to provide one offline mobile form as a site visit task. There engineer needs to search the customer from synched customer record. just want to know is this synched record available offline to query? if not available what is the best way to achieve the same. Thanks is advance.
I am new to the Appian platform and am currently exploring the Appian Portals. I have created a portal, but I am unable to publish it as I am being prompted to add a service account. However, I don't have access to create one. To create a service account, I believe I need access to the Administration Console, but I cannot see it in the menu. Is this limitation due to the fact that I am using the Community Edition? Does the Community Edition not provide access to the Administration Console?
I need to change the name of a field of an existing CDT to match database field. The CDT is backed by database entity whose data store has the automatically update database schema option disabled. The old column name is EMPLOYEEID and the new column isEMPLOYEE_ID.how to proceed further. 1. Download the CDT as XSD, make the appropriate changes, and re-upload the XSD, verify and publish the data store. 2. Rename the field in the record type in appian to automatically update the CDT field. 3. Rename the field in the CDT in appian. Verify and publish the data store.
Hi All, I have expression rule which contains HTML Code. How to insert Image into this HTML code which is stored Appian Folder without using HTML Template / converting image into base64 / passing web URL? Thanks, Ganesh.
Hi, I have a requirement to display a helpTooltip for a few of the controls like below "Upload any documents of type : internal / external : Draft / Final " If I place this text in the helpTooltip, everything is appearing in one row. I want the message to be displayed as is. Can anyone suggest on this? Thanks.
I am currently using Smart Service "Import Excel to Database". The process works fine if I upload an Excel file with correct column headers and data values. In the excel file I purposefully changed the data values like changing a date value to a text value XYZ, changing Text value to a date value. When I upload this modified excel file: 1. The process does not error out. Process Model is showing everything as success. 2. The incorrect data did not get inserted. But my question is, how do I catch such data errors? I thought the Smart Service "Import Excel to Database" is going give some information on the errors. Please advise this. In the real world we will not have perfect data all the time. Hence trying to figure this out. Regards, Mahesh
I am just looking at this rule and find this unsupported function can anyone tell me that what is the behaviour of this function .reduce( update_unsupported(_,_,_),{},{} )what we can use instead of update_unsupported to remove (_,_,_)
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.