-
Recently active
I am trying to open Acme Automobile Reference Application (AA) in the community edition portal. But I am getting "403 - Access denied. you don't have permissions to view this page." I need this to complete the activities in Appian Community's self paced course. Any help is appreciable. Also noticed that I got the same error for all the applications in the community edition Env. except "Community Edition Home"
Hi Team, I'm new to Appian, which i completed some of the content of Appian Developer learning path, and i reached to the creating application exercise, I tried requesting for cloud environment to practice building my first application but i couldn't, any solution to get an access ASAP? Appreciate your help. Thanks,
Hi all, I have a scenario where i am using google chat integration to send the message also i am receiving this message perfectly but i need to make the message body more dynamic where i can send some respective link,issue is that appian links are not supporting in the message body
Following all the steps in 23.3 Exercise 5_ Records Part 1, Accessing Your Data.pdfPage 12, In the Expression Editor, delete all text, and enter the following expression:if(a!isNullOrEmpty(fv!row[recordType!AXVehicle.fields.image]), a!EXAMPLE_DOCUMENT_IMAGE(),fv!row[recordType!AX Vehicle.fields.image])I enter that, make sure it's formatted well, but the "OK" button does not get enabled. The red triangle says Invalid index operator ''vehicle'' (expecting comma).
a!documentViewerField( label: a!defaultValue(value: ri!label, default: "Document"), labelPosition: a!defaultValue( value: ri!labelPosition, default: "COLLAPSED" ), document: local!document ), Hello All, How can I open document in new window with the above code and the document names are in grid.
Hi, I wanted to return the rows from cases table which are not in mail poller. But for somereason the following query is not giving me the expected result. Can someone help what mistake I am doing here. SELECT * FROM `Cases` WHERE `fk_caseTypeRef_id` = 53 and case_id not in (SELECT fk_case_id FROM `MAIL_POLLER`);
Hi, Can anyone please let me know, how to find out the number of vowels in a string? Thank you in advance
Hi, In foreach loop I am fetching some value. So the requirement is at current index of foreach loop I am updating some default value and then at the proceeding indexes i want to increment by one in the default value. Here is how I am doing it. a!forEach( items: local!rawData_at, expression: if(fv!index = 1, a!update(fv!item,"KeyTaskModel",ri!KeyTaskModel_StartingOrder_int), a!update(fv!item,"KeyTaskModel",fv!index+1) )) What it is doing is i have saved the value from rule input ri!KeyTaskModel_StartingOrder_int at the first index but the subsequent indexes is adding value to the index value not the rule input value. How can I achieve that? attaching the output below.
Hi, I have a read only grid with below parameters. Now when we select the rows those are appearing with a default color. How and where I can customize the color which I want. Is there any parameter for doing this? selectable: true, selectionStyle: "ROW_HIGHLIGHT", selectionValue: local!selection, selectionSaveInto: local!selection,
How to display the milestone status of 3 branches running in parallel ?
a!columnChartField( label: "Année", labelPosition: "JUSTIFIED", categories: a!forEach( items: local!periodes[local!selectedPeriod].weeks.week, expression: "S" & fv!item ), series: a!forEach( items: local!uPerWeekPeriode, expression: a!localVariables( local!cBrandId: fv!item.cBrandId, a!chartSeries( label: fv!item.cBrand, data: if( contains(fv!item.cBrandId, ri!selectedUs), fv!item.uPerWeeks, {} ), links: a!forEach( items: local!periodes[local!selectedPeriod].weeks, expression: a!dynamicLink( saveInto: { a!save(ri!filteredYear,tointeger(fv!item.year)), a!save(ri!filteredWeek,fv!item.week), a!save(ri!filteredStatus,cons!STATUT), a!save(ri!filteredCBrand,
Hi, How can I group e-mail’s received and sent from appian and to Appian. For eg I have a request comes from customer to abc@gmail.com That should be in request inbox and appian user will use send reply button from appian. Again customer will send a reply and appian user will send reply. Like this to and from communication should store against that request. so here my question is how can i group or map e-mail’s receiving. Can anyone pls advise some suggestions to achieve this functionality.
Hello, I am new in Appian, want to practice more and polish my skills. Has anyone give me a chance to practice with them?
Hello, Relatively new to Appian. I am wondering is there a way to programmatically / automatically export record data to an excel in csv format? I know there is the out of the box export link/button on record type, but that is a manual process. We want something that happens automatically. Thank you
I have 5 columns configured in Kanban field, when I moving the upper tickets in "TO DO" column it works,But when I am scrolling down to the bottom parts to move further tickets in "TO DO" columns it doesn't work,reason because the container for "TO DO" column is too short(if their is less tickets in columns ), and not extended till max length of the column. If anyone can help me with the solutions. Thank you.
I have a query regarding editable grid, I have seen your video of editable grid. I want to remove data on single click from the interface. And wouldn't be reflect on the grid after deleting it. But it should be soft delete not hard delete.
Can someone please provide screenshots of how and where I can find this option in my lap environment? In the Build view of your application, click New > Group. 2. In the Create Group dialog, configure the following properties: ● Name: Enter AX Users. ● Description: Enter Parent group for all roles in the AX application. ● Parent Group and Group Members: Leave these fields empty because this group does not have a parent or group member yet. I have been struggling to find the option to create groups in BUILT view. Please let me know if you need any additional information about my instance. Inatace link Applications • Appian Designer Working on Exercise 3: Manage Users and Groups Manage Users In Appian, application security is configured with groups, which contain your application’s users. Do I need to Create users first before the groups? Please help!
I am trying to check the version of the appian community environment. This is to verify if it is a compatible version to do the exercises that i have in the courses.
Hello, I’m new to Appian building and process. I do have extensive knowledge from a business analyst view and have worked within an actual build and gathered criteria. I’m looking over the optional IT project in the learning path and although I’ve gone through the courses, I am completely lost on where to start. They do have the example AIS build but no step by step guides. Any suggestions on how to approach this? I feel like I didn’t learn anything, which I know is untrue, but the level of “lost” is real! I would love to practice with this build but not sure how to go about it. I learn best by seeing and hands on or watch and do as I go. Thank you in advance.
I want to keep documents from each speaker in a separate folder. I create the folder in a separate process and store the name of the folder in a field the Record Type of Speaker. Now when I want to upload documents, I need to set the Folder parameter in the a!fileUploadField(). When I set the target to the field, i get an error that Appian cannot cast the value of Record Field into a type of folder. I guess that I have to use the Cast() function to do that. However, I can not figure out how to format the Cast function to do that. I read the documentation for Cast() and TypeOf(), but I am still lost. target: cast( typeof("folder"),'recordType!PMSO Speaker.fields.folder'), Could someone please let me know how to proceed?
/*fetch the data group by colour and for each colour how many vechicles are there in that record type*/ a!queryRecordType( recordtype:recordType!AA Vehicle, fields:a!aggregationFields( groupings: { a!grouping( field:recordType!AA Vehicle.fields.color, alias:"color" ) }, measures: { a!measure( field:'recordType!AA Vehicle.fields.vehicleId', function:"COUNT", alias:"countofvehicles" ) } ), pagingInfo: a!pagingInfo( startIndex: 1, batchSize: 100, sort: a!sortInfo( field:"countofvehicles" ) ) )
I am new to Appian and I have recently started the Appian Developer learning path. When I go to request my site, I get an email saying I cannot be provided with an environment at this time. Not sure how I will be able to progress in the course without my environment. I started this learning path yesterday. Any help would be appreciated.
Dear Appian Community, I hope this message finds you well. I am reaching out to request assistance from the Appian community regarding the urgent need for an Appian environment for training purposes. as I am student and I want to learn this technology so I can apply for the appian Developer post but I just received mail from appian community saying :- Dear Raj,The popularity of Appian Community Edition continues to soar. In light of this, we have continued to prioritize access to Appian Community Edition for learners, small teams, and prospective customers of Appian. Unfortunately we are unable to provide you with an environment at this time, but we are developing a new offering to provide Appian Community members on-demand access to the Appian platform. We appreciate your patience, and please stay tuned for updates on the new offering.For any questions, please contact CommunityEdition@appian.com.Best,Appian Community Edition Support
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.