-
Recently active
Though I am mapping correctly, I am not getting generated document file from aspose service. I also storing the result of smart service into document data datatype. GeneratedDoc ID comes empty. Can anyone help?
in a paragraph field i will provide input as test1 test2 test3 How this data will be stored in db ,is it will be in line by line as separate string or as a single string
I am having an array like {22,10,12,11, 8, 17}. I need an expression which return the index where individual array value or sum of previous values is greater than or equal to 20. For example: The output should be {1, 3, 5, 6}. 22 (22-20) => 2 (index = 1) 2 (remainder from previous value) + 10 + 12 (24-20) => 4 (index = 3) 4 (remainder from previous value) + 11 + 8 (23-20) => 3 (index = 5) 3 (remainder from previous value) + 17(20-20) => 0 (index = 6) As there is no while/do-while loops in Appian so it seems bit difficult to get the desired output with foreach loop.
I want to introduce in an interface a series of fields that will collect text, with rounded edges, but I can't find any property that allows me to do so. Would anyone know how to do it or if another component is more useful?
a!localVariables( local!emails, local!invalidEmails: if( isnull(local!emails), {}, joinarray( reject( isnull(_), a!forEach( items: split(local!emails, " "), expression: if( validateemailaddress(fv!item), null, fv!index ) ) ), "," ) ), local!validation: if( isnull(local!invalidEmails), {}, "Invalid email at " & local!invalidEmails & " position(s)" ), a!textField( label: "Enter emails", value: local!emails, saveInto: local!emails, validations: local!validation ) ) I want my email addresses validation each mail should be in one line otherwise throw an error and email format should be correct other wise throw an error. ( test@test.com test2@test.com test3@test.com ) can someone help me with the code and how to store this email address in line by line in db
I want to implement the Chat bot in my interface but I am not getting Records chat input component.
Hi, If I update an existing CDT in dev, do I need to deploy data store too while deploying CDT in Test or other regions?
Requirement: To address issues where emails sent through the Email Smart service are marked as junk or trigger warnings when received by clients, I've implemented a custom sender in the "from" address. However, in the admin console, the verification status is not confirmed. When attempting to verify, I encounter an error prompting the creation of DNS records. Can someone provide guidance on creating these DNS records? Thanks,Shashank
How can we achieve this
Whenever theres's a CDT not found in the namespace it has been given, appian reverts its components to the previous version automatically:- CDT with propper namespacing - CDT without propper namespacing (notice the upper case PEOPLEFUNCTION at line 2 and the alert the interface is showing already) - When we save the file, then the code changes the components to the previous version (notice richTextItem_18r1 at line 7): This behavior works with Buttons and RichTextItems as far as we found it CODE for replicating ita!localVariables( local!a: 'type!{urn:appian:ps:PEOPLEFUNCTION}SecurityRoleMap'(), { a!richTextDisplayField( labelPosition: "COLLAPSED", value: { a!richTextItem( text: "Some text", color: "ACCENT", size: "MEDIUM_PLUS", style: "STRONG" ) } ) } ) Special thanks to: [mention:2817a4e7a26c4849b30fddb9463db79d:e9ed411860ed4f2ba0265705b8793d05] , [mention:2095d
Hi, I have a user input task within a process model, in which I activated the "save draft" funcionality...My doubts are: How much this draft will live in Appian?If the form has attached documents, what happen with them? Thanks in advice
Hi, I have a concern about the text() function after Appian Upgrade 23.4. The code: text( gmt(todatetime("01/09/2023"), timezone()) + intervalds(12,00,00), "dd-mmm-yy hh:mm:ss") & " AM'" The output: "01-Sept-23 12:00:00 AM'" /resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/Screenshot-2024_2D00_01_2D00_02-at-6.08.20_2F20_PM.png The output keeps returning "Sept" instead of "Sep" and this is only happening for the month of September. The other months are returning the first 3 letters. Does anyone know how to resolve this?
Hi, Currently have a rule containing the following where the rule input is a list of documents and constant has text "DOCX" return true if all document extensions in a list have the extension "DOCX" otherwise return false. and( a!forEach( items: ri!receivedDocumentsList, expression: document( fv!item, "extension" ) = cons!DOCUMENT_EXTENSION_DOCX )) Which works fine but is there a more elegant way to do this? Regards
I want to build functionality where when user lands to my Appian site , Show Dialog Box upon login with following details: 1. Message in the Dialog Box - “Please set your local time zone in Settings. Ignore if already done.” 2. There needs to be checkbox after the above saying "Please dont show this again" 3. Ok Button - If the user clicks on the checkbox in Step2 before clicking on the Ok button then the dialog box should appear again when the user logs in next time.
Hello. My question is: Is there a possibility of authenticating to sites in an Appian application with systems other than Appian. I know that users with Appian accounts can enter Appian sites, but is there no way to enter these sites through authentication with other systems? Thank you.
if( ri!actionTypeId_int = cons!CR_CREDIT_ACTION_TYPE_IDS[1], rule!CR_APP_CA_PDF_genericRuleForNtb( cif_int: ri!cif_int, requestId_int: ri!requestId_int, duRequestId_int: ri!duRequestId_int ), if( ri!actionTypeId_int = cons!CR_CREDIT_ACTION_TYPE_IDS[11], rule!CR_APP_CA_PDF_genericRuleForContractExtension( cif_int: ri!cif_int, requestId_int: ri!requestId_int, duRequestId_int: ri!duRequestId_int ), if( ri!actionTypeId_int = cons!CR_CREDIT_ACTION_TYPE_IDS[12], rule!CR_APP_CA_PDF_genericRuleForRemedialAndSAMHandoverManagement( cif_int: ri!cif_int, requestId_int: ri!requestId_int, duRequestId_int: ri!duRequestId_int ), if( ri!actionTypeId_int = cons!CR_CREDIT_ACTION_TYPE_IDS[2], rule!CR_APP_CA_PDF_genericRuleForCashCollateral( cif_int: ri!cif_int, requestId_int: ri!requestId_int, duRequestId_int: ri!duRequestId_int ), if(
a!formLayout( label: if( ri!isUpdate, "Update Assessment", "Create Assessment" ), contents: { a!columnsLayout( columns: { a!columnLayout( contents: { a!richTextDisplayField(label: local!consequence), a!dateField( label: "Perform Date", labelPosition: "ABOVE", required: true, value: ri!record['recordType!{c09e0e7e-5af6-43ec-b8ba-7fae37884015}PVS Assessment.fields.{d5ec6e7b-3eb6-4ff9-80d8-e8d66785f8a5}performDate'], saveInto: ri!record['recordType!{c09e0e7e-5af6-43ec-b8ba-7fae37884015}PVS Assessment.fields.{d5ec6e7b-3eb6-4ff9-80d8-e8d66785f8a5}performDate'] ), a!radioButtonField( label: "Assessed", choicelabels: "People", choiceValues: { 1 }, value: ri!record['recordType!{c09e0e7e-5af6-43ec-b8ba-7fae37884015}PVS Assessment.
I am unable to request to restart my community edition site. After clicking on the Restart the site, if check for the status i am getting the same page with restart, get new site, upgrade to paid version. After requesting for a restart i am getting this And if i click the check status i am again getting this instead an any mail.Can anyone help me out..?
After rebooting the server we tried to start our engines but we could see the "process-design in CRASHLOOPBACKOFF state, REPLICA mode" issue can someone please help me to resolve this issue, I have validated the License
Hello, I have installed appian 21.4 on my windows 10 machine. after getting temp license I started engines all engines are going into CRASHLOOPBACKOFF state, Replica mode. Is there any debug guide available for this. Appreciate any response. Waiting for services to start... analytics00 in CRASHLOOPBACKOFF state, REPLICA mode analytics01 in CRASHLOOPBACKOFF state, REPLICA mode analytics02 in CRASHLOOPBACKOFF state, REPLICA mode channels in CRASHLOOPBACKOFF state, REPLICA mode content in CRASHLOOPBACKOFF state, REPLICA mode download-stats in CRASHLOOPBACKOFF state, REPLICA mode execution00 in CRASHLOOPBACKOFF state, REPLICA mode execution01 in CRASHLOOPBACKOFF state, REPLICA mode execution02 in CRASHLOOPBACKOFF state, REPLICA mode forums in CRASHLOOPBACKOFF state, REPLICA mode groups in CRASHLOOPBACKOFF state, REPLICA mode notifications in CRASHLOOPBACKOFF state, REPLICA mode notifications-email in CRASHLOOPBACKOFF state, REPLICA mode portal in CRASHLOOPBACKOFF state, REPLICA
Hi All, In a interface i am showing all the product details of a single order id getting from a record using a editable grid which is coming from the assistant buyer to Buyer , buyer should give his approval or rejection by selecting products in a editable grid along with his comments for each product in the grid how to achieve this product id product name quantity price assist buyer comments buyer comments 1 biscuit 1 20 please approve 2 chocolate 2 30 please approve 3 ice cream 2 50 please approve
Hello All, I have a requirement to display record types in an interface. We have around 20 record types and I should display in an interface in tiles. When we click on each tile respective record type should be open in same tab/Dialog box and perform the record actions. When cancel its should comeback to the home page. Please find the below screenshot for reference. Thanks in Advance
While I am working on RPA recording in excel file it's showing some error like unsupported element dataitem.interaction won't be recorded
My process has Start form setting 3 fields, Script task adding few more fields. but after the data is written to DB, Properties is limited to id only, other data is removed from Process variables. No error in process model and data is written to DB as well. Anything missed from my side ?
Hi Everyone, I have three fields in interface field A, field B and field C. I need to display the field C values only when the field B is checked. The values in fields are being populated using for each loop. Can anyone please help me on this.
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.