-
Recently active
We want to display dynamic column values (e.g. if a field is a picklist, date, datetime, boolean, user picker, text, integer)
Hi All, How can we achieve DocuSign or Adobe Sign over email. we have a use case, where a mail will be sent to an user, and the user has to sign the document to confirm the receive of the mail. We are using On-Prem version 22.1. Thanks in advance. Warm Regards Vineeth
Hi I Am having value as "USA|UK|Canada" like this but i want to remove the "|" from the text and create a array as {USA,UK,Canada} so that i can write data into DB as each entry. Can someone help here
How to catch default error when invalid datetime format entered in dateTimeField?. If we catch the error it will be useful to validate for other dependencies like to enable/disable button. Eg: How to save the default error message in a variable which we found red colored text in the below screenshot?
I have to generate invoice using internationalized characters. Any one have any idea how to do this. Thanks in advance.
Hi all ,encounter below error when using Send Email smart service. `Failed to send email`, Then i go to check error log see above yellow part error message: `452 Too many recipients received this hour`wait for a while,it can work fine.looks like it can be configured in somewhere for recipient limitation.anyone has suggestions?
Hi All, One task is assigned to a group and it contains multiple user. If any one the user accept the task, whether the same task is visible to other members task inbox or not. kindly confirm. Thanks in advance.
Hi!I successfully sent a email via Send E-Mail node, the "To" (email main recipient) received the mail, but the "CC" (mail group from outlook) didn't receive a mail. There is no error in my monitoring .
Hi All, Is it possible to Zip a folder with multiple files and share the same to SAP. we are using on-prem version 22.1. Thanks in advance. Warm Regards Vineeth
In Python, how can I practise polymorphism? Assume we have a very basic version of the option pricing algorithm that requires just three inputs (option type, spot price, and strike price) to compute the intrinsic value of our option. Please see the example code below. from abc import ABC, abstractmethod import attr @attr.s(auto_attribs=True, frozen=True) class Option(ABC): strike_price:float @abstractmethod def price(self, spot_price: float): raise NotImplementedError("This method must be implemented in the subclasses.") class Call(Option): def price(self,spot_price: float) -> float: return spot_price - self.strike_price class Put(Option): def price(self,spot_price: float) -> float: return self.strike_price - spot_price def calculate_option_price(option_type:str, spot_price:float, strike_price:float) -> float: if option_type == "CALL": return Call(strike_price=strike_price).price(spot_price=spot_price) elif option_ty
Hi, I am planning to attend the appian world event, and would like to know the experiences of some people who have attended it in the past.
Hi, I would like to realize a site like this shown in Appian challenge in Europe. I need to understand how to set a billboard static and the footer at the end of the page. https://ae-lbc-ms.appianportals.com/97258e0e-81fa-4f9a-99fe-123f1e324fab-portal thx Matteo
Hi, On a entity backed record a related action has been defined to set a status flag on the record to canceled. When user choses the related action from a (summary) view, the related action is performed and returns to the same (summary) view. i.e. writes to db a status of canceledThe changes made by the related action are not reflected on the view. i.e. status is not set to canceled although the status flag in the database has been set correctly.Refreshing the browser page then correctly displays the view with the record at canceled status. Any help much appreciated Thanks
Hi, I found a code that explain how to display files in a grid, but my problem is that I can't create new columns with more information, for example the Description of the file. Please, can you give an advice? This is my currect code. Thanks a lot. load( local!data: { { id: 1, folderId: 4768/* Folder ids*/ }, { id: 2, folderId: 4947/* Folder ids*/ } }, a!gridLayout( label: "Documentación", labelPosition: "ABOVE", headerCells: { a!gridLayoutHeaderCell( label: "Nombre documento" ) }, columnConfigs: {}, rows: { a!forEach( items: local!data, expression: a!gridRowLayout( id: fv!index, contents: a!richTextDisplayField( value: a!forEach( items: folder( index( fv!item, "folderId", {} ), "documentChildren" ),/*Getting documents from folder*/ expression: { a!richTextItem( text: document( fv!item, "name" ), link: a!documentDownloadLink( document: fv!item ) ), a!richTextItem( text: char(10), showWhen: not( fv!isLast ) ) } ) ) ) ) }, selectionSaveInto: {}, validations: {}, shadeAlternateRows
Hi All, i have 2 tables. 1.project(id,requesttype,automationname,etc), 2.Task(id,projectid,workflowtype,etc) Project:{ { "",test,test}, {"",test,test},{"",test,test}} task:{{ "","",task}, {"","",task},{"","",task}} } for example After write to data store entity of my project data is{ { 1,test,test}, {2,test,test},{3,test,test}} once project data is created i want to create the task respectively before that i want to assign the PROJECT DATA (ID) which is 1,2,3 to Task Data(PROJECTID) finally after i write the task data into db i want my task data as: {{1,1,task},{2,2,task},{3,3,task}} can you please help how i can set the id of project to particular cloumn in the task data
Dear All, I have created a stored proc which is returning an output parameter 'caseid' and I would like to access the case id in stored proc smart service. But I am getting error incorrect number of argument passed. Please correct me if I am doing something wrong. I have attached the screenshots below:
Dear Team, Am using a!startProcessLink(),When User Click on Edit just am popule all values which we are passing through a!startProcessLink().But in interface am not getting values for a particular CDT.Getting two values out 13 columns. Sample Code: local!Billinfdetails:getting values from expression rule a!startProcessLink( processModel:Cons!ProcessModal, processParameters:{ billingDetails:local!Billinfdetails } ) when am mapping this billing Details to ruleInput in Interface not able to get the all values getting two columns values only. Can please help on this any one )
Is there an option / way to modify the a!documentBrowserFieldColumns to display the list of documents by "Last Modified Date" instead of Alphabetically?
If a Smart Service has a onError argument, can I capture the error message of what went wrong? For example, the createUser SmartService has an onSuccess and onError arguments. In the onSuccess, I can capture the created user with fv!user. Which is great. But in the onError, I don't see anything that will tell me what went wrong. I know the system knows what went wrong because if I happen to wrap the call to the createUser call in a WebAPI, I can see in the "Details" section of the "Smart Service Executed" response it says, "The username requested is not available". But I want to capture that text so that I can log/report it and I don't see a way to do that. I want to know more than "It failed". I want to be able to report what actually went wrong. Thanks in advance,Steve
Here I set a timer for a re escalation if the user is not active but it seems like it is not working. This is the group that i'm scalating this task to
What is max count of local variables can we use inside a interface or inside an expression a!localvariables()?
I created this update records-related action from the "Generate a Record Action" button. following is the auto-generated process model. Its having following wrror And following is an error on site : An error occurred while retrieving the data for "DDE Invoice Data". Details: Record type is marked as synced, but its data has not yet been synced or its existing synced data has been invalidated. Contact your system administrator.
Hello, I see in a log file named "db_PX..." a lot of error : [Activity Chaining] Could not chain to attended activity. No attended activity with compatible assignment was found." but the related process seem working fine and I do not see any specific. The process is called by a webAPI and the result of the process is returned as result by the WebAPI. The process is very simple. The sub process called is Have you already received a similar warning ? I suspect the complex gateway. Regards Jean-Alain
Context: To customise an appian-plugin, I use Java as the primary language. I have added codes into a class that belongs to the plugin working space, and anytime I run maven clean install, my codes will be removed throughout the clean process. According to my colleagues, it might be due to a.wsdl file that produces files automatically when it is redeployed. Please advise. Thank you very much. This is the code fragment I'm attempting to put. public static Comparator sortWageIncrementFinancialYr = new Comparator () { public int compare(DummyFormData u1, DummyFormData u2) { int compare1 = u1.financialYr.get(0); int compare2 = u2.financialYr.get(0); Boolean result = compare1 > compare2; return result ? 1 : -1; } }; .wsdl codes associated with 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.