-
Recently active
Has anyone successfully installed Appian on a Mac that uses the M1 Chip (Apple Silicon)? Currently I am having an issue as the Dockerfiile is using centos7 which is created for Intel chips, and its resulting an error because of the M1. Getting this error when doing a docker-compose build: failed to solve: rpc error: code = Unknown desc = failed to solve with frontend dockerfile.v0: failed to create LLB definition: no match for platform in manifest sha256:691c55aabb3c4e3b89b953dd2f022f7ea845e5443954767d321d5f5fa394e28c: not found Another example of the error: https://stackoverflow.com/questions/67911250/cant-build-docker-compose-on-m1-chipset I know this is not an Appian issue but anyone that has been through the same thing and managed to find a solution would help a lot!
Hi, How to prevent running of truncate and delete query accidentally on database table. Is there any role and access setup can be done to prevent this considering having "System Admin" access in APPIAN. Regards Bihitak
So I would like the user to click a link or a button in a UX and that launches a process model. The process model will determine a url that needs to be opened in a new tab. I only want the process model to run when the user clicks the button or link.I have tried a!startprocess with success: but im not sure how to get the url opened in a new tab. It successfully runs the process but nothing else seems to happen.Trying various things on the OnSuccess. Httpreponse etc
Hi, I have a requirement, where invoice documents from multiple vendors will be sent to Appian as a single PDF (page number around 250 - 300) file. As the invoice documents for each vendor needs to be processed using IDP, we need to split the PDF document into multiple PDFs. The pages for each vendor invoice documents will not be static, it can vary depending upon the content on the documents. Kindly share your thoughts on how to proceed with splitting the PDF file to send them further for processing. Regards, Deepak Devarajan
Hi All, We are trying to display the tasks count in the navigation panel as dynamic label.It works as expected in web browser .But when we access the same from custom mobile app the tab name is not updating dynamically and it updates only after logout-login. Solutions tried: 1.We have tried to remove the count if the site is accessed from mobile device using a!isnativemobile() function .Which throw the error mentioned below 2.We have tried converting the label from external expression rule which didnt help much. Please suggest.
I want to use the function numprocessesforprocessmodelforstatus(id, status, includeSubProcessData), but I don't understand how to get the ID of the process model I want to reference. The documentation doesn't give an example that incorporates fetching the ID of a model, the example just says "numprocessesforprocessmodelforstatus(processModelId,"completed")" but doesn't explain how to get the id. The documentation has been giving me a headache since day one. If I look up "process model id" I get zero results in the documentation search.
{1,2,3}, {56,76,54,32}, {12,23,45,54,32,54}, {1,2,3,4,5,6,7}, {8,9,10,11,12,13,14,15} Please suggest how do this using foreach function get output like this, "length of array 1 is 3" "length of array 2 is 4" "length of array 3 is 6" "length of array 4 is 7" "length of array 5 is 8"
Hi all, we've been confronted to a strange case. For a better understanding we've reproduced the behavior in a expression rule : if({ 1 } = 1, { 2, 3, 4 }, {}) returns 2. Obviously, comparing a list with an integer is the error here. But, then, the result should be either the empty list or null or an error message. For more fun, you can test : if({true, false, true},{2,4,6},{3,5,7}) In our mind, a type error should be returned. Regards.
Hi Everyone, I have a requirement where i can reuse local variable array. For Example a!localvariable( local!iterations:{1,2,3}, local!value, a!foreach( items:local!iterations, expression{ append( local!value, fv!index )})) The output i need is 1st Iteration 1 2nd Iteration 1 2 3rd Iteration 1 2 3 But the output the code is generating is 1st Iteration 1 2nd Iteration 2 3rd Iteration 3. I thought that local variable should be append with the value and can use for next iteration but it is initializing every time with null value rather than appendvalue. Could you please help me to get the output i need Thanks In Advance!!!
Hi There, We have a requirement to show each detail on new line in Hierarchy Tree Component. Fo example in the below attachement when we hover the cursor each detail coming on new line since we used char(10). However, we would need to show the same way on the node itself without hovering the cursor. Please let me know your thoughts on this. Thank you.
My process models were developed and tested when Primary (and the only) Locale was English (US) by default. I now need to change the Primary Locale to English (UK) - to get the dates appearing in correct format (as I am in New Zealand, and here we use date format as dd/mm/yyyy; and not the American mm/dd/yyyy format). When I change my Primary Locale to "English (UK)" - the date formats work well; but my Process Model names are showing as "???". I do understand that somehow I need to redefine Process Model names in the new English (UK) language (which BTW seems strange, as the process model names would be exactly same in these two "languages" :-) ). However, I don't know how to do it. Are there any other properties that I need to update for the new locale? Any thoughts, for a proper solution to this? Thank you in advance.
this is my cdt i dont know how can i delete a username for the usernames field in the db.
Hi Everyone, I have two interfaces, interface 1 and Interface 2. The interface 2 is inside interface 1, interface 1 is having a button which is calling exp rule to call web service to update DB. Now when I click on button the interface 2 is not refreshing latest data. Could you please suggest how to achieve this?
Hi everyone, One of the process models that I'm working on is using a Timer Event node, which is having a scheduled delay setting as shown below: (the constant returns 2 (integer)) I think the node supposes to delay for 2 minutes, then will activate the next node (Merge document) to run. However, this Delay node has stuck there for much longer than 2 minutes, and when I check Process History, the node is Cancel. The Merge Document node does not have any setting for Scheduling either I haven't worked with Timer Event before, and couldn't find the reason for this behaviour from documentation. Could anyone help me with this? Thanks a lot,
Hi All, I have a requirement where i have to add validation on a text field and the validation is like + and three integer. please help me out with this. thanks.
Hi, I have an interface and I would like to change the Parent folder for the interface to a different folder. Any idea how I can do this.
I have a grid (in SAIL) that displays a number of rows. When one row is selected, the details for that row are displayed below. Any edits the user makes to the details need to flow back to the grid and be displayed. This grid is not tied to a record set, but CDT data obtained from other parts of my application. NOTE: An editable grid will not work for my scenario. A greatly simplified version of my need is.... a!localVariables( local!data: { { name: "Springs", qty: 4, unitCost: 1.27 }, { name: "Sprockets", qty: 1, unitCost: 2.50 }, { name: "Gears", qty: 7, unitCost: 1.98 } }, local!selection: null, { a!sectionLayout( label: "Order Summary", contents: a!gridField( data: local!data, columns: { a!gridColumn(label: "Qty", value: fv!row.qty), a!gridColumn(label: "Item Name", value: fv!row.name), a!gridColumn(label: "Unit Cost", value: fv!row.unitCost), a!gridColumn(labe
Hi, I want to use the API of JavaScript in Appian, but I dont found a lot of information about it. Anyone has use it or have more details about it? This is the link that I found: https://docs.appian.com/suite/help/22.4/reference-js-api.html#api-reference Thanks in advance and regards.
Hi Everyone, I am quering the data from table and stroing it into local variable. On button click I am refreshing the data using refresh varibale parameter refreshonvariablechange , but the variable gets changed and data is not refreshing. Could you please help me out?
i want to convert json (text format data) into excel sheet data which Componentes or plug in i use ?
Hi All, Is it possible to read the data in the word document or PDF file, and perform some actions based on that data ? Thanks in advance. Warm Regards Vineeth
Unable to login suddenly (not sure why, the user does not seem to be locked). Click [Forgot Password] sends a reset link, pressing (immediately) the link fails witn "Your Link Has Expired" message. Weird!
i Wanted to add few alerts like after submitting form i need custom alerts and after filling some fields i need to display alerts or info messages.
Hi, in the grid one row need to populate by default is it possible to do? based on the id.. if the id is in db then populate row automatically else no Thanks
I am very new to Appian. I just wanted to know that is there any otp related out of the box service available to connect with other messaging services?.
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.