-
Recently active
When I am trying to pass the Arabic characters into 'PDF from DOCX' smart service this is not displaying the Arabic text but displaying hash(#) instead. Also, even if its numeric characters! Same when I am uploading MS word document edited a text or added any text in Arabic or numeric chartacters by the user, then the generation process to save the uploaded document by a save button in the interface, I am using the PDF form DOCX plugin smart service in the process to convert pdf file from the uploaded MS Word document. Then, the user will view that pdf document in a document viwer in that interface but the text or the char added appears as HASH(#). The Generation PM: NOTES: I used SST Arabic TTF File as the font of the pdf file. I need the uploaded edted word document as it is to generate as a pdf saved in its folder with SST Arabic font as I put it in the smart servcie, not when the user donwnload the required file to edit it then upload. It
I am getting the below error when I click view record list on AX Vehicles record list. The Requested Record Type Is Not Available Expression evaluation error [evaluation ID = 6ETIO] at function a!recordList: A grid component [label="null"] has an invalid value for "columns". A grid column [label="Image"] has encountered an error. Expression evaluation error at function a!documentImage [line 56]: Could not cast from Rule or Function Reference to Document. Details: CastInvalidCould not cast from Rule or Function Reference to Document. Details: CastInvalid (APNX-1-4198-000)
In sync record smart service ,How can we sync more than 1000 identifiers list of primary key values?
Basiclly I follows the steps as mentioned in the document: https://docs.appian.com/suite/help/21.4/Appian_Plug-ins.html, However I runs into issues after deploy my plugin to Appian server. 1. I copied the log4j-core-2.17.1.jar and log4j-api-2.17.1.jar from /deployment/web.war/WEB-INF/lib folder to my laptop, and inlcude them to my project 2. In my code, i use LogManager.getLogger(MyClass.class) to get a Logger (org.apache.logging.log4j.Logger) 3. Use Logger object to log messages But when the code runs on Appian server, in log file shows exceptions about the org.apache.logging.log4j.Logger class is not defined. I am using Appian V21.4.
Hi All, How to reassign the task to specific group people only? how can we configure this. by clicking on the below option I cant find option to set a specific group. Set re-assignment privileges for assignees-->Can reassign the task within a pool of assignees If we have any solution for this please let me know.
I have a process model that generates a PDF. Is it possible to create a button in an interface that runs the process and then downloads the PDF to the user in one click?
Hi Everyone I have a grid field in which 3 columns are populated by the same DB column and I also want to set same sort Field value for them.Is there any way to set so because when I try it throws an error that Sort Field value must be unique.
Hi, Whenever I'm trying to enter 271.64 or 2**.65 where (** can be any number) it's getting converted to 2**.64 I'm using below expression for this: a!floatingPointField( label: "Test Decimal Value", value: todecimal(fixed(trunc(ri!value, 2))), saveInto: ri!value) Not sure, if this is an issue from Appian. Can anyone confirm this. Thanks in advance.
I am tasked with mapping data to a docX to generate a pdf. I have most of the data mapped properly, but I wanted to know if it's possible to generate a pdf download of a record list or read only grid. Is it possible to print off the entire record list? Mapping data to a pdf requires that you know how many fields you need to populate. How can I generate a pdf that has a dynamic amount of data?Thanks,
I want to use richTextBulletedList with Foreach on CDT type item, but Appian is giving incorrect result. Below is the code & image attached. a!richTextDisplayField( label:"Attachment", value: a!richTextBulletedList( items: if( rule!CMN_PLATTS_CheckNullOrEmpty( ri!attachments ), cons!CMN_PLATTS_TXT_NOT_AVAILABLE, a!forEach( items: ri!attachments, expression: { a!richTextItem( text: " " & index(fv!item, "documentName", null), link: rule!CMN_PLATTS_SEC_AWS_GetDocumentLink( filePath: index(fv!item, "attachment", null), documentDetails: fv!item ), linkStyle: "STANDALONE" )
The problem statement is: To create a username for a person by joining their Last name and first letter of their First name. Following is the code: a!localVariables( local!userList: { "derek.romeo@gg.com", "gloria.juarez@gg.com", "pearson.vue@gg.com", "stefan.price@gg.com" }, local!names, local!result, { a!forEach( items: local!userList, expression: { append(local!names,tostring(reverse(rdrop(split(split(fv!item,"@"),"."),2)))), local!result:{ index(split(local!names),";")&index(index(split(local!names,";"),2),1) } } ), } ) This code is throwing the below error: Expression evaluation error at function a!forEach [line 13]: Error in a!forEach() expression during iteration 1: Expression evaluation error at function 'split' [line 18]: A null parameter has been passed as parameter 1. When I run the code without lines 17 and 18, I get the below result: List of Variant - 4 item
Hi All, I want to create ERD Diagram for my Database schema in Appian database. What is the best way to do this? Regards, Ghanashyam
i need to convert encryptedTextField Value to TEXT values, "I am entering the data in encryptedTextField" while entering value the data is should be encryptedText but in DB it should be in TEXT format so i need to convert the encryptedTextField value to TEXT values, I used type! but it's not working if anyone know about any function can you please help me with it.
Hi all, In my record type I have a related action, this I am triggering from a UI grid column. The related action points to a PM that performs operations and has no UI associated, but as soon as I hit the related action I am getting a white dialogue box, as if there is a UI in the associate PM, and then closes automatically. Usually if there's a UI the dialogue box would make sense, but why is it coming in my case. It could create a kind of confusion if a UI is coming into picture. Is there any way to disable the dialogue box other than selecting its size?
100 people standing in a circle in an order 1 to 100. No. 1 has a sword. He kills the next person (i.e. No. 2) and gives the sword to the next (i.e. No. 3). All people do the same until only 1 survives. Which number survives at the last? There are 100 people starting from 1 to 100. can anyone please tell me how can i do it?
Hii All, i am trying to import the data in the excel sheet to the database using Import Excel to Database smart service plugin but the data is not importing to the database even the process workflow is working fine and executes without any error. I have used the upload file field in the interface then using the start process function i am triggering the process model. Can anyone please help me in this?
These two errors come in my a!queryEntity() function .What should I do to resolve these.
I'm looking for suggestions for an Authorized Use Policy for individuals granted admin permissions in our Appian site.
Hi all, I am trying to extract a data from PDF using the new AI SKILL feature. Attaching the screenshot of my PDF and Process Model. The Output is a stored in a CDT with the same field and name. This service does not give any data after execution and it takes 5 minutes of time for a simple process with 1 node. Kindly advice how to proceed.
Hi All, Is there any way to avoid multiple users triggering same related action if it is having start form? Thanks in Advance!
rule!PRO_qrtGap( isActive: true, pagingInfo: a!pagingInfo(startIndex: 1, batchSize: 2000))for now i kept batch size 2000 .Pls let me know how to fetch first 500 , den 501 to 1000 etc...
Hi Team, I have a requirement of converting time in seconds to days, hours, minutes and seconds. I am using function intervalds() to do the same but I find when I give time (in seconds) for 30 days then the function does not return me the correct value. My required format is ddd:hh:mm:ss Eg : I tried : intervalds(0,0,2592000) and in response I got : -19::17:02:47.296 (Interval (Day to Second)). I am using appian version 22.2. Can someone help me in fixing the above and suggest me if we have any OOTB functions to do the same. Any help is appreciated. Thanks in advance.
Hello team, I would like to ask you for an advice. In my tool there is one User Input Task which is assigned to a group "Processors". The users of this group accept the task and complete it. I set up an "Escalation" to reassign the task back to queue if some of the processors forget to complete it. My problem is that in some cases, I cant really explain why, the task is not released and its owner remains still the user who accept it. So I created a flow for business administrators who can reassign a task to somebody else from the pool using the "Reassign Task" smart service in Process model. But even if we select the "ICH Processors" as a group to assign the task back, the owner of the task will not change and the task will be not available to accept it. Any advice please on how to resolve this? How to change the owner correctly? Thanks
I can't access my account,this appears...why? help...!!!
Has anyone ever done a waterfall chart in Appian? Something like this, where the value of the following month starts at the point in the Y axis where the previous month ended.
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.