-
Recently active
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
I'm creating an Appian web API to retrieve documents from our Appian system and link them with our other systems. To that end, I'm utilising Appian's folder() function to gather information about the contents of a folder. folder( theCaseFolder, "documentChildren" ) The issue I'm facing is that, while this code works most of the time, we have some instances with over 1000 documents recorded against the case. I notice in the Appian documentation that: The documentChildren and folderChildren properties provide the top 1000 documents or folders that are direct offspring of the specified folder, accordingly. My issue is that we have a few cases where there are over 3000 papers attached. Is it possible to obtain a list of those kid documents, or am I completely out of luck?
Hi: I was trying to learn about web-integration using the credit card integration example (https://docs.appian.com/suite/help/23.1/Integration_Tutorial.html) and the currency function in the interface doesn't seem to be working - Error:Expression evaluation error at function a!currency: The function a!currency is unavailable. I tried the basic example from the a!currency documentation page (https://docs.appian.com/suite/help/23.1/fnc_text_currency.html) and it gives the same error. a!currency( isoCode: "USD", value: 1234.56) Looked to determine if this function is old - but it seems to be part of 23.1 release. Any ideas of what is going on? When it might be available? Or is this not available in the community edition? Thank you! Ma
Good Day Experts, Can anyone please help me how to configure/use the password encryption for Fitnesse for Appian ? We can configure the user name and password in the user.property file and we can use as a RULE in fitnesse script but I'm not looking for that. We wanted to use the encrypted username and password (at least password ). I've gone through below documentation but still I'm not able to figure out. http://fitnesse.org/FitNesse.UserGuide.AdministeringFitNesse.PasswordCipher Please let me know if you need more details. Thanks in advance. Cheers, Kalai.
Hi Team, Getting below error while trying to open downloaded document from Appian after merging with smart service DOCX Merge: Error: Word found unreadable content in "test 1.docx". Do you want to recover the contents of this document? If you trust the source of this document, click Yes. Regards,Sandeep
I want to run a Dynamic "Select" Statement in Oracle DB. So used a SYS_REFCURSOR output variable and used "OPEN FOR" Statement to execute it. While executing this stored procedure I got this following error Any suggestions or ideas would be greatly appreciated.Thank you ahead of time.
Hello, everyone. First of all: I'm new to Appian. I have several very complex views in a PostgreSQL database that I want to replace in some way with intermediary appian objects that allow me to build the views logic step by step. Is there a way to build some kind of record type that has in-built logic from other record types or data store entities? Is there a way to call the result of some query from within another query and to call any of those from an interface?
Is there any fast way to check if i have any of this functions in my app? Currency functions The following functions related to currency localization are deprecated and will be removed in a future release: dollar() euro() pound() yen() Calendar add functions The following functions related to date and time addition are deprecated and will be removed in a future release: caladddays() caladdhours() And also how can I check if this affects me? thank you!
Hi, inside an interface I have a safelink to download a document pdf from external system (Neoshare) with a safe uri. When I clcik the link the download starts but the file downloaded remains with the temporary name "not completed XXXX.crdownload" and the file is not usable. (XXXX numeric). The same link in the url of the borwser works fine, the pdf file is downloaded. What could it be the issue? thanks
Trying to create a group using smart service through a process model. However the group is getting created but the following groups are not showing not in the application. Also inherited to the administrator access parent process, security is correctly mapped as expected. If anyone through some light.
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.