-
Recently active
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)
Hi,I have a read-only grid and corresponding filters on that record-type.On the site, when I select a filter, then the records are filtered based on that on the same page.
When I create a view in the datastore entity, it always report following
Hi guys, We have a template document where i am tried to open it but its not opening correctly some data is missing. Is there anyway to open it.
I am trying to upload some files into processmodel, but the "export excel into database" function always report invalid contentID error, then i set a button with "submit:true()" in the interface expression model, each time i want transmit data into processmodel, i click the new set button first, after data being submitted, i clicked the second button which the elder one then it transport all excel files into processmodel successfully and transmit excel data into database without error. However!, interface is fine but if i put it on site or save it as action put on site, each time i click the first button perhaps it is submit:true, then all local!data saves documents are being cleaned up, then it is meanningless to click the second one. I am asking any way if i click the first button can save the data meanwhile not clean the local!documentdata? Thanks
Hi, I want to create an another dropdown on the header. Like how we display all the other sites. Can anyone please tell if there any way we can implement this?
As title the top one is interface without problem, bottom one as published on the site upload is not clickable, why? Thank you
My a!fileuploadField is doing well on interface, but once put on site, a!fileuploadfield is not clickable seems disabled, anyone know how to solve?
a!formLayout( label: "Create Incident Management", contents: { a!boxLayout( label: "Requestor Details", contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!textField( label: "Requestor", labelPosition: "ABOVE", value: loggedInUser(), saveInto: {}, refreshAfter: "UNFOCUS", readOnly: true(), validations: {} ) } ), a!columnLayout( contents: { a!textField( label: "Designation", labelPosition: "ABOVE", value: "Project Lead", saveInto: {}, refreshAfter: "UNFOCUS", readOnly: true(), validations: {} ) } ) }
How to code for "display values from drop-down depending of the selected values? Cany any one provide sample code using the rule inputs for this?
Pls answer the below questions 1.What is Record Filter? When do we use? Pls give some simple examples Thanks in Advance!
I has doing the new tutorial and in this exercice when a search for the table aavehicle it does not existe and were are the car images aviable to import to my enviroment. I dont know if i am the only one with this problem, if can help.
if i upload a file and submit to initiate the process model which contains import to database part, then it report "invalid contentID",but the upload file variable is there if check with process instance, then i reclick the button of submit, it goes into database successfully, why it always have such error at first time? Processing memory low?
a!formLayout( label: "Create Incident Management", contents: { a!boxLayout( label: "Requestor Details", contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!textField( label: "Requestor", labelPosition: "ABOVE", value: loggedInUser(), saveInto: {}, refreshAfter: "UNFOCUS", readOnly: true(), validations: {} ) } ), a!columnLayout( contents: { a!textField( label: "Designation", labelPosition: "ABOVE", value: "Project Lead", saveInto: {}, refreshAfter: "UNFOCUS", readOnly: true(), validations: {} ) } ) } ) }, style: "ACCENT" ), ri!subCategory: choose( if(isnull(ri!category),1,ri!category), {"Laptop Issue","Internet Issue"}, {"Cabs Issue","AC Issue"}, {"Salary Issue","Project Allocation Issue"}, {"Finance Planning","Fund Raising"} ), a!sectionLayout( label: "Incident Category", content
Hi everyone, I was trying to send an email from a process model (with the "send e-mail" node) where the text to be sent is a text variable that you write in a a!paragraphField. The problem is that in email that you recieve, the linebreaks of the text variable disappears. This is what you see in the a!paragraphField And this is what you recieve in the email In the setup of the email node, in the message body, I only put the process variable that I get from the interface with the text. So can anybody help me to see the same structure in the a!paragraphField and in the final email? Thank you! Sergio.
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.