-
Recently active
I have a data-driven interface... An array of some data is passed to the interface, a foreach loop renders controls on the screen (including a drop-down list) based on the input data. The problem I see is the control focus is lost whenever a value is selected from a drop-down list. There are two "flavors" of this issue. First, if I use the mouse to select a value from the drop-down, the control focus (which should be on the drop-down) seems to revert to the top of the page. Pressing <tab> focuses on controls at the top of the page. Second, if I use the keyboard, arrow down to the choice, then press <tab> to select the value and move to the next control, the control focuses on the next control for an instant then it goes away. Pressing <tab> at this point places the focus on the drop-down control I just used. Third, if I use the keyboard and press enter to select the drop-down item, it behaves as if I were using the mouse..
Hello everyone, I am facing this while trying to display group members in an interface within Appian. when we open any group, a specific grid is displayed which shows the members' names, user IDs, and membership types. I am trying to replicate this same grid inside an interface in Appian, but without storing the values. I have a constant that stores all the groups using a multiple dropdowns. When I select any group, I want the members present inside that group to be displayed in a grid along with their details such as membership type and their user ID. However, I am unable to achieve this and would like to request your assistance in resolving this issue. Please let me know if you require any additional information or if any specific configuration needs to be done to display the group members in the desired manner. Thank you for your time and assistance.
I have an idea for a SaaS application business. I would like to develop the application to be B2B for organizations in the financial sector. Can I use Appian as the platform to sell B2B in a SaaS subscription model?
Can we change the page order in site object based on groups?. Let's say we have 5 tabs in my site like A,B,C,D,E . Can we change the order like B,C,A,E,D only for a particular group ? and E,A,C,B,D for another group using the same site object ?
Hi, I have created a process report. I was able to see the list of the task assigned to the group in the report but I wanna use this report in my interface to allow the supervisor group to approve the leave. but I encountered the error message as Empty context passed in for report LM Supervisor Task Report [id=4256]. (APNX-1-4156-000)] anyone can guide or teach me how to do ?
Hi! I'm trying to realize a menu, as in the picture, but using my icons loaded as images and not Appian Icons. what is the best way? Now I'm using A!timeStamp but it can manage only icons and text and not images. Should I create cards ? how can I have rounded cards as stamps? thanks
Hello everyone, When a process model sends out email notifications to everyone it is configured to send said notifications to, is there a way to configure the address it comes from? It is currently "admin@<ourSiteAddress.com>, but we'd ideally like it to be something like noreply@<ourSiteAddress.com>. Is there an easy way to change this?
Is there any "off the shelf" IDP model available to use for document extraction in any scenario (with either vendor)?
Hi All, I am trying to upload appian file to CMIS. I'm using CmiCopyDocumentFromAppian as AppianDocs suggests. =load( local!appianDocument, local!cmisFolderId, local!cmiCopyDocumentFromAppianWriter: bind( null, a!cmiCopyDocumentFromAppian( scsExternalSystemKey: cons!CMIS_SCS_KEY, usePerUserCredentials: true, atomPubUrl: cons!CMIS_URL, repositoryId: cons!CMIS_REPO_ID, objectId: local!cmisFolderId, properties: {name: "Example Document"}, appianDocument: _ ) ), { a!textField( label: "Folder Id", instructions: "The object id of the CMIS folder into which the Appian document will be copied", value: local!cmisFolderId, saveInto: local!cmisFolderId ), a!pickerFieldDocuments( label: "Select an Appian Document", instructions: "The selected document will be copied to the target CMIS site", maxSelections: 1, value: local!appianDocument, saveInto: local!appianDocument ), a!buttonArrayLayout( buttons: { a!buttonWidget( label: "Copy Documen
Hi I have scenario to create a chat bot in my application can any one help me how to do this?
I am trying to update particular values of a CDT from one process model to another active instance process model using Set External PVs plugin. When I try to give the same CDT type, it is showing the following error - "Invalid Cast: Cannot cast from type 'Text' to type 'CDT name' (Data Inputs)". I tried giving text datatype that didnt work as expected. It is working fine for primitive data types but not for CDT. Can anyone please let me know how to do that?Thanks in advance
Hi, Is there a way to show validation textbox message even if the attribute type required: false -> set to false? The process should be when button is clicked and textbox has an empty value, will show a message. See sample codes below. Seems that I could not show the message in local!er in textbox validation. Thanks ahead guys!
I'm facing the priority changing of a process and task to others different from 0,1,2 (low, normal, and high) priorities, is any way to create others like "critical"?, or if there exist others, where can I see them?
Hi , I have text as well as integer data in the PDF while retrieving the data from the start Doc smart service, the data is displayed as Square box... its original data is not visible..?
Hi, Is there a way to change or customize texbox outline color?
Hi, I would like to return an error if the user inputs some text instead of email. I have the below regex and textField. Can someone guide me how to link these two to perform the required validation. regexmatch( pattern: "^[A-Z0-9\'\+\&\%_-]+(\.{0,1}[A-Z0-9\'\+\&\%_-]+)*[@]{1}[A-Z0-9.-]*[A-Z0-9-]+[.]{1}[A-Z]{2,6}$", searchString: ri!employee.email, regexFlags: "si") a!textField( label: "Email", value: ri!employee.email, saveInto: {ri!employee.email}, inputPurpose: "EMAIL" )
So, I have a record action to delete a "contractor" from a list of contractors I've created with a record type. After deletion is complete, it displays this: Ideally, I'd like it to display something else, like: "Contractor successfully removed", or "Contractor successfully deleted." Is that something that's possible? This message is displayed on a site that a read-only grid is displayed on.
It is my understanding that the "Appian" way is writing state-full applications - where the processes model instances hold the state of the application. The main drawback is of course that being state-full means vertical scalability only. However, given current state of the horse power provided by standard hosting and the nature of Appian application this is a non issue. However being state-full means that long lived running processes cannot easily be upgraded in order to introduce new functionality. Reading the documentation, I am aware about an upgrade process which requires developing per upgrade plug-in which needs to be submitted and approved by APPIAN. Development of such a plug-in requires Java and Appian internals know-how, as well as locally deployed instance. This is of course beyond the rich of an average Appian developers. What is your stance ?
Hi , I want to know what the relevant links or the paths and the topics which are priority for the preparation of RPA +IDP Badge. Also want to know the percentage that need to be achieved in order to get the Badge.
Hi All, I have this cast function cast( 'type!{urn:com:appian:types:TLT}TLT_VEHICLEDETAIL?list', ri!data ) and I'd like to change TLT_VEHICLEDETAIL with a dynamic input using ri!inType. I thought to fix this problem with concat function ex. but it doesn't work. and my result was this one who can help me?
I am getting this error when I am trying to train the Appian IDP. [title=Could not perform action, message=Could not perform requested action, verify that the inputs are valid., detail=io.grpc.StatusRuntimeException: PERMISSION_DENIED: The caller does not have permission] I have uploaded 2 sets of docs in the extraction 1. Valid docs with 20pdfs and Invalid docs with 10 pdfs. Thanks in advance.
Hi all I am able to save a local variable defined in an interface into a ri! in the submit button buttons: a!buttonLayout( primaryButtons: { a!buttonWidget( label: "Submit Request", value: local!hiringmanager, saveinto: { ri!record['recordType!NJW NewJoiner.fields.hiringmanager'] }, submit: true, style: "PRIMARY" ) How is the syntax to do the same for multiple local variables that have to be saved into some ri!record.Recordtype.field any suggestions really appreciated thank you Cate
Hello, I want to be able to retrieve my Records in an a!hierarchyBrowserFieldColumns, including the record relationships. I already created a Query Recordtype retrieving my data including the relationships data. Is there a simple way to display the record type list in a a!hierarchyBrowserFieldColumns. in the firstColumnValues i'am using a the id of the record. what is the next step? ( nextColumnValues). any examples using a record? Here is a example from: docs.appian.com/.../Columns_Browser_Component.html a!localVariables( local!path: {4,2}, local!selection: 2, a!hierarchyBrowserFieldColumns( firstColumnValues: enumerate(9), nodeConfigs: a!hierarchyBrowserFieldColumnsNode( id: fv!nodeValue, label: "Node" & fv!nodeValue, image: a!documentImage(document: a!iconIndicator("PREVIEW")), isDrillable: 1 - mod(fv!nodeValue, 2), isSelectable: mod(fv!nodeValue, 3), nextColumnCount: fv!nodeValue ), pathV
Hi Everyone, I'm using ADT plugin to generate Docx dynamically. I'm using the given adtDocxtemplate (attached) as a sample in my process model. All texts and tables are displaying fine. However, when I use images, it throws following error. "freemarker.core.NonSequenceOrCollectionException: The value you try to list is an extended_hash+string (fr.opensagres.xdocreport.document.images.ByteArrayImageProvider wrapped into f.e.b.StringModel), thus you must specify two loop variables after the "as"; one for the key, and another for the value, like <#... as k, v>).----FTL stack trace ("~" means nesting-related): - Failed at: #list logo as logo [in template "fr.opensagres.xdocreport.document.docx.DocxReport@29b865ac!word/document.xml" at line 4, column 5608]----" I'm passing images={logo:pv!document} in the data input tab, where pv!document is an image. I have also added the bookmark in the hyperlink of the Docx template as suggested in th
I want to update a row when save to data store entity instead of generate a new row with a new id.I cofigured write to data store entity of output tab (plz check my attached screenshot) When In debug and check my Id did not get id value.
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.