-
Recently active
Hi can anyone send the beginner videos in the community am not able to find before i was using this https://academy.appian.com/#/curricula/4ec18f7b-604e-4473-b476-87279969c946 now it's not available
Hi all, Actually i have attached some interfaces through link:reportlink, but in the end of the code it was mentioned u can replace rich text with component or rule. Can anyone tell how to add This is the tab pattren code . Check at last there is comment starting with"replace". And tell me how to add rule there .Thanks in advanvce. { /* This is a lighter style of tabs that works well when you are on a page with record views or some other */ /* set of buttons right next to your custom tabs. */ a!localVariables( local!selectedTab: 1, { a!richTextDisplayField( labelPosition: "COLLAPSED", value: { a!richTextItem( text: "Summary", link: if(local!selectedTab = 1, null, a!dynamicLink(saveInto: a!save(local!selectedTab, 1))), linkStyle: "STANDALONE", style: if(local!selectedTab = 1, "STRONG", "") ), a!richTextItem( text: " | " ), a!richTextItem( text: "News", link: if(local!selectedTab = 2, null, a!dynamicLi
Hi, I am trying to save the values of an activity class parameter in a variable inside a node. In the expression of custom output AC!Variables.restaurant works and passes values correctly to the target process variable. However when I try the same with index(ac!Variables,"restaurant",null) it does not work and passes null values to the target process variable which subsequently errors out down the line. I have tried several times but 'dot' works and 'index' does not. Of course not a big deal but I would prefer using index than dot. Anything I am doing wrong? or shall I raise this with Appian Academy? thanks jaideep
How can we practise and make the same application mentioned in appmarket .? Is there any way of deploying the free application of appmarket to local dev environment and can practise by refferencing the code for learning purpose ?
Hi can anyone tell me what's syntax is wrong in this when i give like this it will not print any values in the table but when i give like this it will print the values
Is there any video recordings for webapi and integrations which are not the part of academy videos.
Hi everyone, I have a question related to write to data store entity many times inside a process model, I am new at Appian and I start to build a process model for a complex issue. in my application there is a submit form and a 5 reviewers who should accept or reject the submitted form, the reviewers should be in a specific order. for example : rev1 -> rev2->rev3->rev4-.rev5 as shown below: each time a reviewer click approve or reject i want to write to data store so that the next reviewer can view the previous reviewer decision and the related info. is there a best way to use less "Write to data store Entity" in my process model or using so mush to data store affect the process?
I am trying to edit someone else code to add more columns in a grid view, which takes data from appian cloud database. But I am not able to get the data configured properly. I edited the old code, and changed the constants (for new CDT), but still cant retrieve all the fields. I am not getting any errors, I get grid view with some of the old field populating data, while some old fields and the newly added fields not getting populated with the data. Can any one help with what steps should I follow and in which order to retrieve data from database and display in grid view in an interface? Thanks.
Hi , I am Using "Update Document Metadata Operation" to Updates metadata for the specified document. But facing below error. " SharePoint returned a 404 HTTP error error-result-guidance SharePoint returned the following error code: -2130575338, Microsoft.SharePoint.SPException The file /sites/DCT_SharePoint_Integration/Claims/CapacityForm/[Document:200681] does not exist." PFB Screeshot. Please suggest the solution to the issue Thanks
I have been trying to change my billboard image of interface, I have uploaded a image in my folder but dont know how to use that in my interface billboard.. can anyone please explain? thank you
Hello community, I am trying to save my local variable's data into the rule input. I use editable grid and use of CDT as a local variable. Also, I have taken CDT as a rule input in the array form. Now when I am trying to save these into rule input than after click on dynamic link, It is overriding the data and show the first time data I have and save data only one time in the rule input.
I have a requirement where I have to remove data from one database suppose abc and update the data of another database abc1 at the same time. These both CDT values are in different grid. After removing the values from first cdt then only 2nd cdt should update. Deleted values are getting stored in one ruleinput. By taking that as reference I have to update second cdt. Both these cdt have common cif. How can i implement this. My current implementation: a!save( ri!crAppGroupRelation_cdt, a!forEach( items: ri!crAPPGCDeleteSelection_cdt, expression: updatedictionary( cast( typeof( 'type!{urn:com:appian:types:abc}CR_APP_GroupRelation'()), ri!crAppGroupRelation_cdt ), { isJointUtilized_int: 0, } ) ) )
Hello Community, I am facing the problem in interface that I am not able to send the data form local variable to rule input. whenever I click the submit button, I wanted to that the data send into the rule input from local variable. please help me
Hi, in the interface we used checkbox to select multiple, now bcz of some reasons user wants to select one item at a time so am thinking to go with radiobutton is that right way or do we have any other options? and even i have checked with radio button but am getting this error, hope nothing difference b/w check box and radio button can anyone suggest me
I created a package out of our dev environment with two different process models that where updated. The package was imported into our test environment and now one of the process models shows 2 times with different versions in our test environment. When I open up the main process module and tell it to edit subprocess model it brings the old one up and not the new one, but the new one is there also with a different version. Has anyone seen this before and what would be a fix for it. Thank you
Hi all, I am importing my application first time on Appian and getting the errors as below screenshot. Kindly help me on this to resolve... Thank you in advance!
I have a grid and many rows. For each row there is 1 check box where when I click on check box value should go to localvariable and when I unselect the check box that particular value should be removed. a!checkboxField( label: "", choiceLayout: "COMPACT", choiceLabels:"yes", choiceValues: 1, value: if( fv!item.value = 0, null, fv!item.value ), required: false(), saveInto: { fv!item.value , a!save( fv!item.isJointUtilized_int, if( fv!item.value = 1, a!save( local!checkbox, append( local!checkbox, fv!item.othervalue ) ), a!save( local!checkbox, rdrop( local!checkbox, 1 ) ) ) }, ), Here value is getting appended into local!variable but while removing its removing last value in array. Not the one which is unselected. Can anyone help
This should be the easiest thing ever, I try to connect the images to the vehicles but something goes wrong with the "ri!vehicle" part of my expression. See below a screen shot. Who knows what I do wrong?
Hi There is an input form like the picture. The values showed on the form are reflected by the values received through local!TAF_CDT_TestRecord: rule!TAF_EQ_SelectTestRecord_ByTestNo(ri!taTestNo) . * rule!TAF_EQ_SelectTestRecord_ByTestNo(ri!taTestNo) is used to query newest Data From DB. Here, I want to make changes on "Comments" from [Test_Data 02_28 to Test_Data 02_29] and change the value by clicking the "save" button. When the save button is clicked, the "startprocess()" is executed, and the db is changed through the write to data store entity in the process. Also change the value of ri!refresh. If a!refreshVarible() for local!TAF_CDT_TestRecord is set as "refreshOnVarChange: ri!refresh". I expected, the local!TAF_CDT_TestRecord would be updated through refresh and qeury the newest data again. And have the new data of local!TAF_CDT_TestRecord displayed on the screen. But instead of the new data value, the
Getting this error when I try to save it to multiple data store entity at process model. Values are there in variables but still its giving error. Can anyone suggest solution
what will be the future of appian developer.
I made a duplicate copy of a process model and gave it a different name. I made changes to the new process model and now want to compare it to the process model I duplicated it from. Is there a way to compare the original process model to the new duplicated model to see what it shows the differences are now? Thank you
a!columnsLayout(columns: {a!columnLayout(contents: {if(isnull(local!exportDocId),/*This link field contains the link that starts the export*/a!richTextDisplayField(labelPosition: "COLLAPSED",value: {a!richTextIcon(icon: "file-excel-o",color: "#6aa84f",size: "MEDIUM")," ",a!richTextItem(text:"Export Customer Report to File",link:a!dynamicLink(label: "Export to Excel File",saveInto: {a!exportDataStoreEntityToExcel(entity: cons!FS_ORDER_ENTITY_POINTER,documentName: "Excel Export " & now(),saveInFolder: cons!FS_constant,onSuccess: a!save(local!exportDocId,fv!newDocument),/*This displays an error if there is an issue executing the the save*/onError: a!save(local!errorMessage,"Error Exporting File to Excel"))}),size: "STANDARD") }),{}),a!linkField(labelPosition: "COLLAPSED",links: a!dynamicLink(label: "<<<Back",value: null,saveInto: local!exportDocId,showWhen:n
Hi, am querying data from db, in that one col name as row_type will will have multiple values- like approved, proposed, out_standing i want to fetch approved and proposed data and show those values in different columns in UI i have to show approved row data in approved limit and proposed rows in allocated limit can anyone help with this
Hallo community, I am fairly new to Appian but spent a fair share of time with training and playing around with different use cases. Unfortunately I cannot get to understand how to correctly create a record type without the need to create a CDT and Datastore first. Since I have to configure a datasource (in my case: Database) I identified two options: Option 1 - Create a new table in the databsae In the process of creating a data model of the record type ("Tell us about your data"), I then select as datasource the newly created table Option 2 - Create a CDT and Datastore first Then again, in the process of creating a data model of the record type ("Tell us about your data"), I then select as datasource the newly created table Disadvantage: Once I create Actions for this Record type, CDT, Datastore and Data store entity are created new again and i Have duplicates in my application or completely ignore the wizard and configure the actions ma
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.