-
Recently active
Hello, I found out that I can create Custom Mobile Applications in appian. link: https://docs.appian.com/suite/help/21.3/Custom_Mobile_Applications.html#enroll-in-a-mobile-developer-program It seems that both ios and android are created automatically. Is this done by react native? Thank you.
if i want to transport a value to a interface belongs to certain rule i can use rule(a:local!a), but how can i vice versa get a variable value belongs to its interface?
Hi, Is there any direct way to do similar to export to excel in read-only grid in Appian.
Hello Appian, Is the appian community site developed with appian? If so, I would like to know how to set the content to be displayed differently depending on the window size as in the example in the photo. also, other functions such as mouse over. Thank you. P.S.It seems that some advertisements have been posted on the bulletin board. Think that it needs management?
I have a dropdown in which the values are called from a constant. Will it be possible to customize which items will only come out? Let's say the status of the request is cancelled, then I should only cancelled in the dropdown. Then if the status is reviewing, I should only see reviewing and revising. etc Dropdown: Constant: Code for Reference: a!dropdownField( label: "Request Approval", labelPosition: "ABOVE", placeholder: "--- Select a Value ---", choiceLabels: cons!CRP_REVIEWSTATUS_LIST, choiceValues: cons!CRP_REVIEWSTATUS_LIST, value: ri!review.reviewStatus, saveInto: ri!review.reviewStatus, searchDisplay: "AUTO", required: false, validations: {} )
hi everyone i need help to understand something with saving an item in variable which use CDT , i create a variable with a CDT ( type document that i defined ) and i created a list which bring me some data , which is also use CDT now i create a for each because i want to to save data each time with the function save!() , but after that i click on test rule it doesnt show nothing everythin is null . what am i doing wrong ??? if i using a rule input i have the same issue ... what is the way to get the data in another variable .
local!a;type!table(), local!b:{a,b,c} local!c:{1,2,3} a!save(target:local!a.column1,values:local!b). a!save(target:local!a.column2,value:local!c). why my return on local!a only has{column1:a,column2:1} where the other two rows go?
Hi, I have a node where I want to update process variable at runtime. This is the expression I have written a!save(pv!Schedule_1_Temp_Value,pv!Schedule_1_Temp_Value + 1) but, I am getting this page (below) when I run this process model in debug mode.
Hello Appian, Where can I find documentation about how to manage process memory usage, and best practices of how to transport alot of data using process? Thank you.
as title the refreshalways:true for a a!gridLayout can't be realized as a!gridField, how to let data in a!gridLayout be refreshed?
Hi, I am trying to do a fuzzy search on a CDT field which is a string array. The array is { "One"; "Five"; "Seven"; "Ten" }. Input: {"Five","Seven"} Output: Array of all those CDT items where we have {"Five"} and {"Seven"} and ("Five","Seven") Please help me with it.
as title.
Our team in new to Appian, To start with Appian we have some doubts related to development methods as they are not clear in any training course. Can we use enterprise Git as source control repository, if yes how and how versions are managed for individual objects within Appian project? How we can manage CI/CD pipelines for Appian project when using third party source control repository? How we can manage different versions of same Appian project?
Hello, I have a requirement to create an approval/rejection form which takes in data from database and displays it in a grid. How should I fetch the data so that i can modify two of its field and return it to the database.
How to manage configurations for Appian objects like database connection string, as it would be different for different environments (dev/test/prod) or password may be changed frequently for database, so we can't hardcode database connection while adding connector? Also can we integrate with third parties provider for configuration management, for example if i am adding connected service (Azure SQL) for database, can we use Azure Key Vault to read connection string, user and passwords during runtime?
What are the best practices/tools to package and deploy an Appian application? How to manage different version of same Appian application?
I have some doubts related to component plugin and connector plugin. Can we create plugins in C# language instead of JAVA? Also can we extend an existing Appian component for example if we need a 3D style button or a complex chart for our application, can we extend existing Appian button component or chart to add new style or functionality? Also is there any place where we can refer code/java script being used for Appian provided components, so that we can create custom plugin by referring existing code?
I completed the Appian Developer online course and then attempted the Associate Developer practice exam at the end. I found a lot of the questions quite different and more detailed than what the course seemed to cover. And there were some terms and topics I'm sure weren't mentioned at all in the course. Is it expected that candidates get some practical experience first before seeking accreditation?
Any one know what reason cause "....invalid contentID..." when use processmodel's "import excel into database" function, though the value of Excel documents are clearly exist.
In java or python i can use for loops to check it underscore i such as for(i:0;i<100;i++){ for(j:i+1;j<100,j++){ if list[i]=list[j] list[i]="common value" } } if arraylist contains["common value"]{ arraylist.remove["common value"] } for java a!forEach, i can't find its underscore i, i don't know which way can express it fv!index like this way in the parenthesis? how to do it?
Hi Team, When I try to execute below command, I see an error. Can anyone help me on below. command: sh version-application.sh -action addContents -vc_username username -vc_password testPassw0rd -application_path "C:/Users/test-version-manager/tool_1645.zip" -commit_message “Automated Version Manager” version-manager.properties versionControlType=GITrepoUrl=bitbucket-prod.company.com/test-version-manager.gitlocalRepoPath=C:/Users/test-version-managerbranchName=developcommitMessage= "Appian Versioning Manager"applicationPath=C:/Users/test-version-manager/tool_1645.zip # THIS IS FULL PACKAGEapplicationName=Tool_1645 Error: java.lang.IllegalStateException: Error: the zip file cannot be committed to the repository. The zip file contains one or more application xml files and the versioning tool has been invoked with the parameter -UUID signaling that it should be a patch. at com.appiancorp.ps.automatedversioning.helper.RepoHelper.checkAppPatc
I have a PK field called requestId under request Entity. I want to pass the value of this requestId to the subprocess. I already tried making the subprocess synchronous and also tried putting stored values to a process variable but to no avail. context: requestId is a PK that gets auto-incremented in the db, whenever I call it on the subprocess, the value is null. But there are no problems when calling other fields
When I convert the ff. to text, the column name gets included. How will I be able to get the content only? I get this [projectName:Project Nature], when it should be Project Nature only Code used: a!save( ri!projectName, rule!CRP_ProjectName(ri!request.projectId) ), ri!projectName is a text variable See below for the expression rule CRP_ProjectName that I made:
I'm new to appian and hope people can help with my newb question. Tables Involved: Project, Request Project Fields: projectId (PK), projectName Request Fields: requestId (PK) , dateRequested, projectId (FK) I'm currently at the record type that I have for Request table. Now, I want to display the projectName field from the Project table in this Reqeust record type. How do I do that? Is the PK-FK relationship enough to do it?
Hi, I have a interface which has a read-only grid. Can we set default filter to the grid based on selected site.(site1, site2) Is there a way to know which site is selected by the user? Eg: I have to create site-1 which has page1 (interface - with read-only grid) where the status column is pending) I have to create site-2 which has page1 (interface - with read-only grid) where the status column is completed)
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.