-
Recently active
Dear Team, I had a query, what steps need to be followed for deploying application from one cloud to whole new different cloud.
Hi Team, I am working on the history table of my Appian application. I created a new table in the database having a similar column of my application in addition of 3 new columns modifyby, modifyat, and operation(create/update/delete). I created a corresponding record type/data type as well. The entity mapping on the Datastore is also successfully done. Now while I am updating my code on create/update/delete interface to fetch the action history of my app, I am getting errors. This is the code:- buttons: a!buttonLayout( primaryButtons: { a!buttonWidget( label: "Submit", saveInto: { a!save(ri!record['recordType!{031f0b84-9549-4b3a-942c-a8fd3d0dfa62}NH_Handover_History.fields.{b5d840ba-2408-425d-b829-510414356ac2}serialnumber']), a!save(ri!record['recordType!{031f0b84-9549-4b3a-942c-a8fd3d0dfa62}NH_Handover_History.fields.{d7f705b2-c020-47c9-95c4-cbe0e6df18a2}addedby']), a!save(ri!record['recordType!{031f0b84-9549-4b3a-94
Dear all, I'm finding a solution for a phone screen, when the user scrolls down then show an icon on the bottom right so when the user clicks on that icon the page scroll to the top .... ???
When converting docx to pdf using Arabic font, I want to prevent numbers to change to Hindi numbers.
Please forgive me if there is a way to do this already... I find cases where I have a fault in a process model during debugging. I track down the fault and fix it (either in the instance or in the process model itself) I then have to re-run the process BUT Sometimes one wants to have a live run of an older version against a newer version rather than looking at the static comparison view in Versions SO I would like to be able to: go to my instances in Appian Designer Monitor view be able to right-click (or other method) to select a different version of the process model (i.e. either a previous or an updated version) run the same instance through the newly selected process model
Hi, We are creating performance test scripts in JMeter, after recording the flows and running them, the scripts run fine for 1 day however they fail after 1 day, on inspecting I came across several dynamic values like CacheKey, SaveInto and Context which change often. Now the problem is there are several CacheKeys, SaveInto and Context in multiple responses before the requests where these values are used, how can I know which values to grab dynamically and use in the further requests. Can anyone please help as this is a blocking issue! PS- I have already handled the appian csrf token and I am able to login successfully.
Hi All, Trying to refresh using a refresh variable in grid. Facing issue with refresh. Please find below code and let me know if any changes are required. a!localVariables( local!refreshCounter: 0, local!startIndex: a!refreshVariable( value: 1, refreshOnVarChange: local!refreshCounter ), local!pagingInfo: a!pagingInfo(local!startIndex, 5), local!data: a!refreshVariable( value: rule!S_getAPI(), refreshOnVarChange: local!refreshCounter ), { a!buttonArrayLayout( a!buttonWidget( label: "Refresh", size: "SMALL", style: "SECONDARY", saveInto: { a!save( local!refreshCounter, local!refreshCounter + 1 ), } ) ), a!gridField( label: "Data", labelPosition: "ABOVE", data: local!data, columns: { a!gridColumn( label: "First Name", sortField: "firstName", value: fv!row.firstName ),
Hello! I'm currently having an issue where I make the selections in the dropdown, but when it saves to my DB it saves the first selection 2 times or 3 depending how many selections I make. Currently I'm using a local variable to save the selection. Any suggestions to make sure it saves correctly to the rule input? thanks in advance
Hi, I need to pull values from DB which does not starts with "ABC" for example. a!queryEntity(entity: cons!entity,query: a!query(filter: a!queryFilter(field:"office",operator: "not starts with", value:"ABC"),pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1))) But this is ignoring null values, I want null values also to be returned along with other values. So I just tried fetching only null values to see how it works. a!queryEntity( entity: cons!entity, query: a!query( filter: a!queryFilter( field:"office", operator: "is null" ), pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1) )) this is giving me 0 results. Nots sure what might be the issue. Can anyone please help? operator "not null" returns correct values, problem is with fetching null only.
Hi everyone, This is my process model, and I'm trying to find the cause for above issue: So the process starts with receiving the Excel file that user uploaded, then parse the file to get data into CDT type which looks like below: Then I use another script task to index and get all the case Ids. The problem is that when I run it in debug, the Parse File node generate multiple instances, however I check the output variable and the results are not duplicated. I didn't config the MNI either.
So I was finally able to get some phone number validation working. However, it only works in the interface and not when I'm actually using the record action. Here's the code the error message I'm getting. I think this is happening because the record action relies on user input and perhaps starts off as null. I'm just hoping there's a way to fix it.When I try to create a new contractor through the record action: Error Evaluating UI Expression Expression evaluation error [evaluation ID = 0932b:f622d] in rule 'ds_createcontractor' at function 'search' [line 65]: A null parameter has been passed as parameter 2. a!textField( label: "Phone Number ", labelPosition: "ABOVE", placeholder: "### - ### - ####", saveInto: ri!record['recordType!{d327a5dc-18d4-4ffd-8bdf-6a22b134677f}DS Contractor.fields.{f4c57b1e-a70b-4b5c-abfd-91fbfa77c38f}conPhoneNumber'], ref
I'm looking for function to open interface2 in new tab" not the same tab" by clicking a button in interface1
The audio of the video is fragmented..... what can I do about it?
I want to generate a report showing where list of users who are not logged in 30 days or 60 days or 90 days. How to do that?
How can I create the nested bulleted list in Appian
Hi everyone, I want to set a start timer for my process model, in which start date time will be provided in advance, and if the given start date time is within work hour (9-6pm Monday to Friday), the process model will send an error message stating it can not proceed during business hours, and the process model will not be run. I haven't had much experience working with process model, so really appreciated if anyone can give me some guidance :) Thanks a lot!
I have a requirement with one text field ,adjacent to the label of text field i need to have a check box of boolean type how can i acheive this? Thanks..
Hello,How I can transfer my Certifications from Previous Organization to current organization.
Hi Alll, I have a fileupload control allows multiple files to upload. I should write a validation should not allow duplicate file names uploaded and should not be there in database too. Does anyone had this situation. Your thoughts will highly help me.
Hi, Scenario: I am trying to make an interface where, there will be data coming from the database and I will be displaying the data in cards. eg: Database will contain data of Different courses offered by a university, and the cards will contain data like University Name & Course Name (the rest data will be displayed separately after clicking on the card) Now to avoid clutter, I want to display only 3 cards in a row. i.e. 1st 3 cards in 1 row, next 3 in the 2nd row and so on ... I am not quite sure how to achieve this goal. Can anyone help me on this ?
I cannot able to sort it out I am passing id that id is not having degree certificate document but still the document download link is showing
Regarding configuring an Appian Server, we are aware of the following configurations' default/recommended values: vm.max_map_count=262144server.conf.processcommon.MAX_EXEC_ENGINE_LOAD_METRIC=120 If we were to fine-tune these values, is there an ideal formula we can follow? Also, what possibly could be the merits in raising/lowering those values? Meaning which parts of Appian will be affected and how far will it improve Appian performance?
I am using Smart process smart service which is used to do load balancing and executing in Loop. Variable contains 500 rows As of now it is taking 40-50 min which is very high even loop number is not much. Is there any way we can optimize it further. We are passing few parameters into called process but as Start process smart service is asynchronous, so performance is not having any dependency on called process. Appreciate any quick suggestions.
EDIT: Got the value to save but the dropdown box doesn't show up when the correct value (boolean true) is selected a!radioButtonField( label: "Is Jira Access Required?", labelPosition: "ABOVE", choiceLabels: {"Yes", "No"}, choiceValues: {true, false}, value: ri!record['recordType!{d327a5dc-18d4-4ffd-8bdf-6a22b134677f}DS Contractor.fields.{2463d484-b544-48a5-813c-701935313606}jiraAccess'], saveInto: ri!record['recordType!{d327a5dc-18d4-4ffd-8bdf-6a22b134677f}DS Contractor.fields.{2463d484-b544-48a5-813c-701935313606}jiraAccess'], required: true, choiceLayout: "COMPACT", validations: {} ), a!dropdownField( label: "Which Department Requires Access?", labelPosition: "ABOVE", placeholder: "--- Select a Value ---", choiceLabels: cons!DS_deptChoice1,
Hi all, what is the difference between Build Apps Faster with Sync vs Disable sync and related features. Thanks & Regards, Kiran Sajjan
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.