-
Recently active
So, i want to update a related field of a record, that contains an array of records. Im trying to do it by using append, but no values are stored into the field. Anyone knows if there is a way to achieve this? Doing it in the initialization of the object works, but i need to update it on demand. thank you very much!.
Hi All, I am looking for any pointers that anyone can provide from their past experience of handling OPERATE work for Appian platform, including bug fixes. Lets assume the platform hosts around 5 High complexity applications and 5 Medium complexity applications. what would be the parameters we should be looking out for in structuring the team for such operate work. Really appreciate any advice / inputs from anyone. Thanks in advance.
.
I have a requirement where I need to send an Image ID using users data(his profile pic in Appian) through an API. (plz don't question the reason)user(), document() and some other image related functions were unhelpful.There are components that can be used to get the image and display it such as userImage, but its useless to me in an expression(rule).I also looked up discussions.. nothing for this specific case.Another note: a process is involved, so smart services can be used(I don't know if there is one to help in this case) any suggestions?extra:wataheck is this? this gibberish happened when I added ('), and it stayed that way
Hi everyone, just wondering why the string is not being typecasted to both user and group and being checked which one is valid since the type is userOrGroup?
Hi All, While writing the data to records via a pm , i am getting the below error Unable to write to or delete from the source due to system error.Error Details: Incorrect date value: '292278994-08-17' for column Can anyone guide me on this issue .. Thank You
When I open the site it should show tasks assigned to me by default.
What does the below warning mean in AI skills document extraction? Files with pages with too many tokens These files contained pages with too many tokens (token limit: 512) for the model to process. Labeled entities on these pages may not be included in training if they fall beyond the token limit.
I want to show customized confirm dialog box (instead of the Appian default "The Task Couldn't be submitted" message) whenever the user input task is timed out (in our case the exception timer we have kept for UI task is 20 mins). Also at present when the user clicks OK button in the default dialog box, then the page stays there and either the user have to press F5 to restart the process or have to click on any of the SITE tabs to come out of the screen. Instead, I have a requirement to come out of the current UI and the system should redirect the user to the page where the process was called from eg., if the process was a related action and one of the UI task timed out, on click of OK button the system should redirect the user to the page where the process was triggered i.e., record summary page.
Description: rule!OE_QueryOneRecordTypeByForeignKey(recordType, fkField, value) Gets a record based on its foreign key field value recordType (RecordType): queried record type fkField (Record Field): foreign key field value (Number (Integer)): integer value searched a!localVariables( local!queryData: a!queryRecordType( recordType: ri!recordType, filters: { a!queryFilter( field: ri!fkField, operator: "=", value: ri!value, ), }, pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 1) ).data, if( a!isNotNullOrEmpty(local!queryData), local!queryData[1], null ) ) if it was OE_QueryRecordTypeByForeignKey, then you simply remove the [1] indexing
I have a read-only grid that uses an expression rule as its data source. Now, I want to implement manual pagination. When a user clicks on the 'Next' button, it should trigger a request to the API to fetch the next set of data, which will then be displayed on the interface. Is this doable in Appian?
I'm sending a document to this web API and i need to retrieve another document that is going to be generated in the process model. It gets to make the process run but the API does not wait for it to finish i have every node in my process chained and is a short process with less than 25 nodes.
Once i clicked on any left section like general , programetic i am getting out from task, if i see in process instance task is there only ,i how to resolve this ?
Hi, I am currently receiving an error when trying to convert free text from a paragraph into an html, simply because the single apostrophe (') does not convert to a special character when trying to create html formats used to create a microsoft document and convert it to pdf. The document either shows the escape character of ' or we receive an exception error in the process model. I am using the smart service Configure DocX From Dynamic Template. I have been using the toHtml() function to convert all text into html format, but only receive this error for sing apostrophes. Any help would be useful. Thank you.
Hi Team, I have a query to refresh the data in interface. The data gets updated through web api in cloud db. How to reflect this updated data in the interface without any refresh button. I am displaying the data through records in interface.
here we have multiple section as i highlighted for that sections am using expand link so it will expand inside the layout, but those are reusable one but how can i control expand all bool for one section currently when i click on expand all it is expanding for all the section but it should happen for which section we click how can i do that
Hi All, is there way we can show the preview on mouse hover on any image or link like the one in below in SAIL interface? Otherway is it possible to Section layout collapse/expand on Mouse hover instead of click.? Thanks in advance.
Hello,so currently I am attempting to utilize the SFTP Smart Services plugin to read files from a remote virtual machine hosted on AWS. However, I am encountering difficulties in configuring the plugin properly to achieve this task.The documentation provided lacks sufficient detail for someone at my level, as I am a beginner certified developer. i want to ask on what are the steps to configure it in order to acheive the goal which is send or receive file from aws server is there any third application credentials to be configure?and how cna i configure the node plugin? thank you
I am trying this piece of code but it is just executing while loading the interface and it is never getting refreshed after that. local!refresh: a!refreshVariable( value: rule!NGS_queryMerGenerationData( executeWhen: true, pagingInfo: a!pagingInfo(startIndex: 1, batchSize: - 1) ) , refreshInterval: 0.5 ) Can you please help regarding this?
i have a post web API which receives an XML file and with this files it triggers a process model. but unfortunately when we get the file we just get the XML file content. it's like we where getting just the content of the XML and this is a signed file that should not be modified that's why i hesitate on just cutting the text and paste it in a new file. my web API This is what we are getting in the body of the httprequest is there a way on turning this into the sent xml file again ? just for letting you know the a!httpresponse.formData is empty because we are not using the xx-www-form-urleenconded
Hi All, I have got a small question while using a!tagField. I wanted to add 2 tag items separator with a "/".When I use like below, I am getting an error. I tried using concat, & but both didn't work, Can someone help here. a!tagField( labelPosition: "COLLAPSED", tags: { concat( a!tagItem( text: "t1", backgroundColor: "#aaa9ad", textColor: "#ffffff" ),& "/"& a!tagItem( text: "t2", backgroundColor: "#990099" ) ) }, size: "STANDARD")
Hi teamHere is my scenario:I am busy changing my application to get rid of CDTs and use Record Types instead. As I understand it this means I have to change any query using queryEntity to queryRecordType.Here is an example of an existing expression:{ a!entityData( entity: cons!SAM_DSE_SOFTWARE_STATUS, data: reject( fn!isnull, a!forEach( items: { { uuid: cons!SAM_UUID_SOFTWARE_STATUS_APPROVE, name: "Approve", order: 1 }, { uuid: cons!SAM_UUID_SOFTWARE_STATUS_BACKLIST, name: "Backlist", order: 2 }, { uuid: cons!SAM_UUID_SOFTWARE_STATUS_REJECT, name: "Reject", order: 3 }, }, expression: a!localVariables( local!status: rule!SAM_getSoftwareStatusByUUID(uuid: fv!item.uuid), if( isnull(local!status), 'type!{urn:com:appian:types:
Hi guys, Encountered an interesting behaviour today in a workflow that encompasses a multitude of different process models. Each PM is a step in the process, and some steps are performed by different teams. E.g. Team A would perform a relevance check, then Team B would check if all is in order and either approve or send it back. What I noticed is that sometimes Team A will not receive an automated email by Appian with their task, although they are the assignee in Appian and can navigate to it from there. And it seems that it has to do with how Activity Chaining and the checkbox for "Override assignment for the next attended activity even if the current user is not an assignee" in the flow properties is set up? I tried to check the documentation for information / best practices in this regard, but didn't find anything pertaining to this problem. Would someone happen to know what the rules are and what pitfalls I should avoid when modelling such a workflow? Best,
Hello, i have to find out a document using Document Name which is uploaded in the past. (which is no longer available). I have looked into different System Logs like 'deletion.log', file_attachment_download, blocked_files.csv and unscanned_files.csv but no luck. Surprisingly there is no documentation available for Uploaded Documents in system logs. Could you please suggest if I am missing anything here? Thanks in advance.
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.