-
Recently active
Hi I am using the group function to get the attributes related to the group group(<groupId>, <property>) I am using this in an interface used on my site. But what I have come to notice is when logging into my site as a basic user, there seems to be an issue where in the user has insufficient privileges for group() function Can anyone please help me in this ? Error Screenshot
Hello I'm trying to get the task id from my read only grid with selection function of grids. I'm trying to store the task id in rule input, but what this is doing now is when I select one row it's storing all task id's in the rule input not only the single which I have selected and it's not updating the selection in the UI it's refreshing and the selection is gone. And when I load the interface by default it's showing 1 selected.I want to be able to select one row pick the task id store it in rule input and show in the UI that the row is selected, then the same if I select another one save the task id and update UI if something is unselected remove that value from the rule input and update the UI.pageSize: 20, selectable: true, selectionValue: local!report.data[1]["c19"], selectionSaveInto: a!save( saveInto: ri!test, value: local!report.data["c19"] ), showSelectionCount: "ON", rowHeader: 1
Hello, I am having trouble getting validations to show up using a multiple dropdown component. When I pass in "Show Validation" for validations, nothing is shown on the component. When I do this for a dropdown component, it works as expected: My message is displayed with red text underneath the component. How can I show validations underneath the multiple dropdown component? Thank you, Nicholas
Is there any way to get the list of all the process model ids in an application.
Hi Everyone, I'm currently working on a group of applications that represent different departments of the same company. We've also implemented a Landing Page for unifying the access to a single link. The challenge I'm facing is a request to be able to return to the Landing Page from each department site. Since for each department we're using different Site objects, it's not possible to have a 'Home' on the top ribbon that allows to return to Landing Page. We can return to the interface but the other pages/page groups remain visible and the request is to have them hidden. Obviously we can create a custom link or button somewhere in the site to allow the users to return to landing page but I haven't found any good front end ideas to do this in an organic manner. By the way, the users don't prefer the icon that shows the different sites on the top right, they even requested it's removal but I don't think that's possible. Thi
Hi, I have a word template in which Signature is a field. I am capturing all the fields of this template in an Appian form. I am capturing signature using signature field, I am using the XML functionality to populate the fields in the word template. I am able to populate all the fields, but how can I populate the signature which is stored as a document in Appian. Can you please help me? Thanks
Hello Team, Here i'm trying to display record data in read-only grid. Interface Definition: Expression evaluation error at function a!gridField [line 2]: An error occurred while retrieving the data for "MS Typology". Details: Record type is marked as synced, but its data has not yet been synced or its existing synced data has been invalidated. Contact your system administrator. Can someone suggest what steps would i need to take
I have a grid where i implemented custom check box, a!gridrowLayout { contents:{ a!richTextDisplayField( label:"", labelPosition: "COLLAPSED", value: { a!richTextIcon( icon: "square-o", link: a!dynamicLink( saveInto: { a!save({local!selectedIndex},fv!index), a!save(local!selectedrows, append(local!selectedrows,fv!item)) } ), linkStyle: "STANDALONE", showWhen:{if(and(local!editProcedures,tointeger(local!selectedIndex) <> fv!index),true,false)}, color: "SECONDARY", size: "MEDIUM" ), a!richTextIcon( icon: "check-square-o-alt", link: a!dynamicLink( saveInto: { a!save(local!selectedIndex,null), a!save(local!selectedrow, remove(local!selectedrow,wherecontains(fv!item[ recordtype!fields.id],local!selectedProcedure[recordtype!.feilds.id))), } ), have drop downs and text fields below } Now , if i edit the row and select teh check box, it saves the updated value from the row to local!selectedrow, bu
Hi When i am trying to access one particular interface in dashboard options getting the error like below could you please suggest on it Error: Error Evaluating UI Expression Expression evaluation error [evaluation ID = f4ac9:0c850] in rule 'amd_pendingtaskgrid' (called by rules 'amd_dashboard' > 'amd_dashboard_requests') : Rule 'CS_joinassigneearray' has 1 parameters, but instead passed 5 parameters. a!gridTextColumn( label: "Assigned To", field: "c23", data: if( local!datasubset.totalCount = 0, {}, apply( rule!CS_joinAssigneeArray, local!datasubset.data.c23 ) ), alignment: "LEFT" ), code in rule!CS_joinAssigneeArray: joinarray(rule!CS_getTaskOwnersNames(ri!assignees)," | ") in data local variable we are getting process report in that one particular column called Assigned to details we are getting and passing that to rule available in apply condition. Tried checking in process report in
for the text field need to give validation, when user enters the value along with text,number,special character then need to show the validation like only alpha/letters but how can i show this, text field will allow alpha numeric and special character as well
ValidationGroup is not working as expected, when applied against a file component. It is validating entire form and not restricted to fileUpload component only. Requirement: When user clicks on "Upload File" button it should only validate file specific validations. PS: I did try setting Validate: false for button component. But it did not work. Thanks for help in advance a!fileUploadField( labelPosition: "COLLAPSED", target: tofolder(ri!appianFolderId), instructions: "Please click on ''Upload File'' button to upload the file in system", validationGroup: "UPLOAD_VALIDATE", validations: { if( and( a!isNotNullOrEmpty(fv!files.extension), contains(cons!VALID_FILE_EXTENSIONS, upper(fv!files.extension)) ), "", "File extension is not supported" ), if( fv!files.size > cons!FILE_SIZE, "Attachment file size is more than 10 MB", "", ), }, value: ri!uploadedDocument, saveInto: { ri!uploadedDocument }, maxSelections: 1, ), a!buttonArrayLayout( buttons: { a!buttonWidget( l
What is the best way to study for the Appian development process models section ot the exam. I have score very low in this section of the exam, Thank you for your help.
I want to update a specific row in my recordtype with data in one of the columns as follows: Here I am using my id (the primary key of the table) to specify which row I wish to update, in this case i want to update case number 80 and update the casestatus column with "accepted", however upon doing so I get the following error: I am guessing that my syntax is incorrect, but I can't seem to figure out what I am doing wrong exactly.
Hi i am new to appian , I have been working on a activity where I have to generate document through ms doc from template smart service. This document generation was happening in a subprocess from there I am greeting the generated document id to parent process I am not sure whether this flow going right or not .Now I need to update this id to record for particular user like based on their profile id I need add this document which they will be able download through interface which will be another big task for a beginner . Can anyone guide me?
.
I have a record type list - saved in local!displayitems it has 9 items and i am displaying it in the grid when I select the rows in grid it gets saved in the local!selectedrow variable now, i am doing some manipulation and updating few fields in the selected rows and then wanted to save them to the local!display items upon button click , here is teh code, can you tell me what is wrong , since displayitems is nested , i flattened it a!forEach( items:a!flatten(ri!displayItems), expression:{ a!save(fv!item[recordtype.fields.preparedBy'], a!update( fv!item[recordtype.fields.preparedBy'], { index( fv!item[recordtype.fields.procedureReferenceId'], ri!selectedrows[recordtype.fieldsprocedureReferenceId'] ) },{ri!selectedrows[recordtype.fields.preapredby]} ) ) error:
I am using Export Data Store Entity to Excel smart service node. Could anyone please let me know if there is any way that queried value can be inserted into custom cells where the text is "Pull from variable".
We need your suggestions/inputs to implement the following use case: - Send confirmation link in email to Appian user - Without login, when the user clicks on the link in the email, we need to update the status in the Appian database (without opening any Appian pages) Please let us know the approach to implement this. Also, let me know in case you need any other details.
hi, I have a custom check box written for my grid as i have nested loop , i a unable to implement the appian default selection check boxes. here is the code, a!richTextIcon( icon: "square-o", link: a!dynamicLink( saveInto: { a!save({local!selectedIndex},fv!index), a!save(local!selectedProcedure, append(local!selectedProcedure,fv!item)) } ), linkStyle: "STANDALONE", showWhen: tointeger(local!selectedIndex) <> fv!index, color: "SECONDARY", size: "MEDIUM" ), a!richTextIcon( icon: "check-square-o-alt", link: a!dynamicLink( saveInto: { a!save(local!selectedIndex,null), a!save(local!selectedProcedure, difference(local!selectedProcedure,fv!item)),} linkStyle: "STANDALONE", showWhen: tointeger(local!selectedIndex) = fv!index, color:"SECONDARY", size: "MEDIUM" ), This code actually , appends the index in the local!selectionprocedure but when i unselect it , it actually removes the last
hi, I have a child interface , that has a rule input just to update the data base. I am basically trying to select the rows from an editable grid and save them in this rule input which is not dependent on parent interface. it is handled internally in child interface. Child interface rule inputs - ri!id and ri!selectedrows I am trying to configure this interface in the Landing Page ( Parent Interface ) , now from parent interface I wanted to pass only the id. how do I achieve it . I get an error, if I pass only id from parent .
Hello I've used the open task reports to get all the tasks assigned to a user, but the problem is if the user is assigned to multiple application they can see all the tasks in that report.Is there a way to show only tasks specific to application or specific to all the process models from that application and if you can provide some example would be much appreciated.Thanks in advance.
I came accross a behaviour where an appian object(integration) accessed by two different users having parameters data type in two different format Eg: user1 gets the data type format as "mm/dd/yyyy" and user2 gets the data type as "dd/mm/yyyy". Though their internationalisation settings are same and both users are accessing same object . What else could be the scenario for such behaviour? Above are images from two different users using the same objects.
Hi, We have on-premise environment. We`ve switched from Apache Tomcat to IIS as web server. Since then, when trying to open a site: .../suite/sites/hr-application/group/organization/page/employee-directory/record/...id.../view/summary we`re getting an error: DOCTYPE "... is not valid JSON appian Any idea, why this started / how to solve it? Kind regards, Nejc
When starting a process model from the web api, the process variable is []. Below I have attached the result for your reference.
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.