-
Recently active
Hi, I am Getting Error on User Creation Node in Process Model - "The user creating this account doesn't have enough privileges to perform this action"
Hi, Could someone please help me understand the reason for the error I am getting in Process Model? JAXB failure trying to convert value ProcessInfo to Appian type ProcessInfo Thanks Faisal
a!localvariables(local!leadData: rule!TRO_qrtLead(leadId: 244).data, local!credentiallingTypes: if( a!isNullOrEmpty( local!leadData['recordType!TRO Lead.fields.credentialingTypeLookupRefId] ), {}, local!leadData['recordType!TRO Lead.fields.credentialingTypeLookupRefId] ), a!dropdownField( label: "Type", choiceLabels: local!TRO Lookup.fields.label, choiceValues: local!TRO Lookup.fields.lookupRefId, placeholder: "---Select Credentialling Types---", value: local!credentiallingTypes, saveInto: local!credentiallingTypes )) how to handle null over here ?
Hi, I have a dropdownfield in the edit screen. Initially when I open existing record, by that time this field will not having any data and based on the user search in another field, this dropdown will load the data. When I try to set ChoiceValue to null it is not accepting. Can some one guide me how to handle this when there is no data in initial load. Thanks ERROR:
local!readData: rule!PRO_qrtdata(lid: 244).data, local!selectedCounty: if( isnull(local!readData), {}, local!leadData['recordType!PRO Read.fields.countyuniqueid ), it is giving the error of "Invalid index type: Record field uuid: 6225c036-92c6-4200-a11f-fb68f362b1a2 Record type uuid: 9c9d5cd6-8a4b-435b-88c3-6aa310c89afc Relationship path: null".
Hello, I'm working on project and using the same form steps as "https://docs.appian.com/suite/help/21.2/form-steps-pattern.html", I'd like to change the color for the stamp field to be red if there's an error in the step. I added "validate: true() " to the next button.Is that possible to moving forward to the next step and just change the color if the step contains an error. Thank you for your help!
the latest version v22.4 seems to have a bug; The object identification fails for drop-down. On New version 22.4 the element definition for dropdown is as below; <span id="9d114c989f45ddbdab069168cd461dae_value_span">Value</span> .Whereas for older version of appian the definition was as below; <span id="4c85c14d61e4e58a2a354fc2a6e88f8d_selectedChoice" class="DropdownWidget---accessibilityhidden">Corporate</span> the newest version (v22.4) of cucumber tries to find the object with the following Xpath; //span[contains(@class, 'DropdownWidget---accessibilityhidden')]" This works on older version on newer version it fails
Hello Guys,I am trying to move the story and its individual components from on phase to another. So in the diagram story is Go to School by tomorrow and its sub task are GTC task2 and GTC task 1. The problem is when I tried to move the story all its subtask are also moving and when I moved the subtask its not moving only the phase change is written in the database. I need to show the sub task below the story.So I used below code to achieve also I think the problem is here. Can you please help me to solve this issue.--rule!APM_bcklogItemCard calls the single story card.--and I am again calling the APM_backlogItemandSubtask interface to get all the items on APM_backlog interface. { rule!APM_backlogItemCard( onlyStory: ri!onlyStory, backlogItem: ri!backlogItem, showEditView: ri!showEditView, document: ri!document, selectedBacklogItem: ri!selectedBacklogItem, refresh: ri!refresh ), if( ri!onlyStory, null, a!localVariables( local!data:a!refre
I want to implement this milestone pattern, but with a slight twist. i.e. I want to add names to those milestones. Such that below each stampfield I display the name (like below airplane icon I display a rich text saying airplane). 1 implementation would be to use a rich text display and display only 1 text at a time. But my use case is different. I need to display text below each stampfield may it be complete / not. I tried using a sideBySideLayout below the sideBySideLayout of stampfield, but then the allignment is getting messed up badly. Can anyone help me with this. How do I achieve this ?
There is a new column added to the table and accordingly made changes in the CDT.I am receiving this error while saving data to the table. Can Anyone help with this? Thanks in Advance.
Hi, Is there a way in Appian to show an interface as pop-up inside the main interface?The requirement is when I click on a button, it will show the other interface as pop-up/modal/overlay which contains data grid and other components .Thank you!
Can I import CSV files with Appian without using any sort of plugin?I know that there are plugins that allow for this, but I'm in an Appian cloud environment and plugins are not always capable/available. What I need to do is allow the end user to import any one of six different CSV files all with different headers and data.Based on the data in the files I need to do different calculations.I have no problems running queries against the data after it's been imported. If this is possible without a plugin, can you point me in the direction of documentation/tutorials to help me out with this? Thanks,pete
I have a doubt that, If two CDT's are created for the same table(TCDT without new column and previous cdt with new column) and how can we write to the db that CDT which is new cdt data and moved from existing table and taking primary key as a output and writing it to db? I am doing this Bcoz having a issue with the new column added to the table which is required. Thanks in Advance.
Hi, I'm using the WebField element to display videos uploaded to Appian. This works, but there's a problem: it's impossible to move from one point of the video to the other. In other words, clicking on the progress bar of the video does absolutely nothing. Tried using the Advanced Video Player, and the same problem occurs. While testing the example of the documentation, this functionality works, so I don't know if there's something I'm not getting right. https://docs.appian.com/suite/help/22.2/Video_Component.html Maybe this functionality doesn't exist when the videos are from within Appian? My code is: a!videoField( label: "Vídeo", labelPosition: "ABOVE", videos: { a!webVideo( source: document(ri!document, "url") ) } )
Hi, I tried to log in to the Appian designer page but got below the attached page.
Hi all, need some help with the user's configuration. Is it possible enable by defaultthe user's accessibility option? I mean before to create it. Thanks for reading
HI , In my usecase, i have to open the interface form and upload a excel file to load data in editable grid. Then on pressing submit button the flow goes to Process model where doing some business logic inserting that data to db tbl. I am able to display data in form after uploading and reading it from excel the problem is updating rule input cdt which is having blank values as not able to set the values read from excel to ruleinput. . Flow as of now PM--> Interface form--> PM --> Same Interface form (User to view and edit data if needed the submit)-
Hi everyone, apologise if this question has been asked before as I couldn't find the it anywhere :) I want to update date time value of 2 columns (createdDateTime and updatedDateTime) in my data table by using Write To Data Store Entity. I already have a CDT that has primary key matching with my data table. For configuring Write to Data Store smart service node, I want to config this node to update the 2 columns (createdDateTime = pv!createdDateTime and updatedDateTime = pv!updatedDateTime) where Id (primary key column) = pv!id. How do I achieve that? Thank you! P/s: I tried Execute Store Procedure smart service but not sure why it updated only 1 column with my input date time, but the other column was not updated, and I couldn't find the reason for that. That's why I tried to change to Write To Data Store Entity to see if this works
Is there anyway can we show all the currently logged in users in the interface
Hi, I have a read-only grid and loading the data using a recordType. I am trying to implement "delete" functionality to delete each row of data/db record by having "Delete" in each row. I am trying to implement by using a Related Actions. But, when I click on "DELETE" it is opening a popup (DIALOG BOX) and closing automatically. Is there a way I can avoid popup window which is not useful in this scenario. Thanks
I researched and checked theres known issues for a!update so I was hoping that someone may have solutions for this particular scenario.The output for the following code just returns a 4 instead of 4 Current a!update( remove( {1,2,3,4,5,6,7}, remove( enumerate(0,1,2,3), 1 ) ), 1, ri!application.projectYears & " Current" )
can we save xls file which we are getting from fileupload interface component to our local PC drive? can we do it without any process model ? if process model is required then how we can do it?
Hi, I have a "DELETE" button in an interface where I have a readonly grid and the grid is loading the data using a RecordType. Now, when the user selects multiple rows of data, I am calling "deleteFromDataStoreEntitites" and passing required parameters and in the background data is getting deleted. But, the issue, the deleted row data is still showing in the readonly grid. Is there any way, I can do page reload or grid load to call after "Delete" button click.
I have my own data or CDT called "Clients" and i have a relationship with other CDT called "Vendor" I have this editable grid created with the CDT called "Clients" (red square image bellow) this works great. Now i want add the related data or relationship of the CDT called "Vendor" (blue square image bellow) into the editable grid Its possible? How do I call that data?, what expression should I use? Here is my relationships between my data
Team, We have HTML output and we want to convert that output to pdf for showing the same in UI via document viewer component. Any idea how to ? Please Note: i have html output not html document.
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.