-
Recently active
We have a requirement to build the scheduler process to run 3 days before every quarter. The Logic has been built in the expression rule . When I am trying to call the rule in the timer to get the specific day to run, the process is not running whereas when I implicitly paste the logic, it works. Is there any limitations that expression rule can't be evaluated inside the timer.
Hello, We have a problem when uploading a document with a webApi, to do the test we are using postman, we pass the document to it, we pass it the name and the extension as follows: We see that it goes up to the folder that we have indicated in appian, but when we try to download it to open it, it tells us the following: I have tried with jpg and the same thing happens to me: code: a!localVariables( /*Check whether the request body contains a document*/ local!success: not(isnull(http!request.body)), if( local!success, /*If a document was uploaded, return a successful response*/ a!httpResponse( statusCode: 200, headers: {}, /*Print the document id, name, and extension of the uploaded document*/ body: concat( "Upload Successful: ", document(http!request.body, "id"), " - ", document(http!request.body, "name"), ".", document(http!request.body, "extension") ) ), /*If no document was uploaded, return an error code*/ a!htt
After i click on a particular record in a list , i get this record summary page . So, i inserted back button to go back to the list . But when i click on the button , it goes back to the list but it contains the record summary header ( like seen below , with the record title and related action). Can anyone suggest how to solve this ! I tired using the safe link as well , but it didnt work.
Hello, I am using the appian selenium api library for my tests and my problem is: How can I locate a textbox that does not have a name? I am currently using: fixture.populateFieldWithValue("", ""); but I don't know how to use if the element doesn't have name. ¿There are a way to use xpath us selenium? ¿There are another option that i can use?
Is Apian Mobile app iOS 15 Compliant ?
We are using MySQL DB, we have a use case where a text column in the DB table is having a UNIQUE constraint that accepts NULL, all values apart from NULLs have to be unique.While using write to DSE smart service, Appian product by default is converting the NULL value to empty value/empty string and mapping to table, due to which we are facing issues due to unique constraint while inserts.Please suggest a solution to overcome this issue.
if( fv!success, if( /*In the response, if the resultCode parameter is "Error," or the errors parameter is not null, return false*/ or( fv!result.body.messages.resultCode = "Error", not( isnull( fv!result.body ) ) ), false, true ), false) The API response I am getting HttpResponse statusLine: "HTTP/1.1 200 OK" statusCode: 200 headers: Dictionary Cache-Control: "no-store" Pragma: "no-cache" Content-Type: "application/json; charset=utf-8" X-OPNET-Transaction-Trace: "9d4ed313-4f4e-4699-9a26-8192fc4fabcb-3288-74350853" Access-Control-Allow-Credentials: "true" Access-Control-Allow-Headers: "x-requested-with,cache-control,content-type,origin,method,SOAPAction" Access-Control-Allow-Methods: "PUT,OPTIONS,POST,GET" Access-Control-Allow-Origin: "*" Strict-Transport-Security: "max-age=31536000" X-Cnection: "close" Date: "Tue, 26 Oct 2021 08:59:16 GMT"
Hello, In a project we have to do an appian update from version 19.2 to 21.3 and therefore we are reviewing the pugins.Until now we had a service exposed in appian in which the service that called us passed us a string in base64 in a json and we converted it to a document with the smart service base64todoc, it seems that this plugin is deprecated for the new version.Does anyone have any idea how to supplement this functionality? I was looking and I saw the integration object but in this case it would not help us because they consume us and they already pass this chain to us at the entrance. Greetings and thank you
I have one CDT where a single field which stores date and time. Now i am selecting a date from datefield component. I have a grid in the same interface where i am selection date from datefield. Once i select a date from this datefield, then the grid should filter all the dates from the grid .How can i do that?
For a short period of time, perhaps since we upgraded to 21.3, I've noticed a strange behavior with Dropdowns. When I pass a null value, I get a pink box that says I need to provide a placeholder text. This is expected. However, now, when I DO provide the placeholder text, it still complains in a completely different error that simply states that it has received a null value. But dropdowns with placeholder text are SUPPOSED to accept null values. I haven't found a way around the issue except to trick it into working by making sure the value is never null, and providing a value to replace null if it is. Basically, placeholder text now seems to be useless. Is this an Appian bug? Does it work differently now? Are placeholders redundant? Is it the 21.3?
Hi i have a dropdown where i am selecting a date value from calendar , I have a date field in cdt with datetime type value .How can i make a comparision?
Hi, I'm working with Appian Selenium api library in a Maven project for integrate in jenkins. I need to set the ChromeOptions to run browser but I don't now how to do with this library. I have this code that is how I do with selenium but with Appian selenium doesn't work: prop=new Properties(); FileInputStream fil=new FileInputStream(".//configs//users.properties"); prop.load(fil); String user=prop.getProperty("admin.user"); String pass=prop.getProperty("admin.pass"); String url=prop.getProperty("admin.url"); ChromeOptions chromeOptions = new ChromeOptions(); chromeOptions.setHeadless(true); chromeOptions.addArguments("--remote-debugging-port=9222"); chromeOptions.addArguments("--no-sandbox"); fixture = new SitesFixture((),chromeOptions); fixture.setTakeErrorScreenshotsTo(true); fixture.setupWithBrowser(TEST_BROWSER); fixture.setAppianUrlTo(url); fixture.setTimeoutSecondsTo(TEST_TIMEOUT); fixture.set
Hi Team, I am not able to change a record of datetime to year in Appian. This is what I am trying This is error I am getting : Can someone help, I want to change that date into year for Product records on the screen
Good afternoon, We have a question, what log file shows a similar trace to monitoring? In other words, if we have a process that has a start node, a task script and an email sending node, what would be the log file in which the execution of these three steps would be seen? A greeting and thanks in advance
An error occurred while evaluating expression: workflowDetails:rule!CNAM_GC_qeForAllTables(Flag:"WorkflowbyWorkFlowId",wfid:pv!workflowDetails.workflw_id) (Expression evaluation error in rule 'cnam_gc_qeforalltables' at function a!queryEntity [line 254]: An error occurred while retrieving the data. Details: Memory threshold reached during output conversion (rule: [queryentity expression], type: [CNAMGCWORKFLOWDT41204], threshold: [1,048,576 bytes], objects successfully converted: [12,000])) (Data Outputs)
Hi,how can i convert the xml into base64 and send it in the request body,i get the output in base64 i need to convert it into pdf and have to preview the pdf. Any suggestion would be helpful.
Hi. I was attempting to use the toDateTime function. In its documentation it says When i enter the expression from the above: I get back the following Why is this?
Hi All, When i try to upload a document "MyDocument.txt_TEST", document extension is being converted to lower case. (MyDocument.txt_test) Could you please suggest how can we keep the document extension unchanged? Thanks in advance. Regards, Satya B Andra.
Hi, question re the maximum file size that can be handled by Appian The scenario I have is that files are generated on a daily basis by our data warehouse and stored in an azure blob storage area. We have two integrations, one returns a list of the newly created file names (between 5 and 7 files depending on day of week), and the second to download an individual file (repeated for each file in list) Once all the files are downloaded I create a single encrypted zip file and a task is generated to allow users to download the zip file. Are there any restrictions on the file size that is downloaded from azure blob storage, or the zip file which is downloaded by an operator? Thanks Simon
Hello, I would like to access the Import log files for one of our applications. It looks like we cannot extract for the ones which are deployed beyond 30 days and i don't see them in Private KC either. Any one has idea where are they stored ? Thanks!
Hello, There is a function that I want to use from the "Contnet tools"(link: https://community.appian.com/b/appmarket/posts/content-tools# ), But, cannot Download it. Getting error message like below. What might be the problem?
Hi , I have a list of 5 text values returned by a rule like names as { "abc","def","ghi","jkl","mno" } , I want to compare a name as "def" in this list without using any loop. is there any function in Appian which can perform comparison without using any loop?
I get the following error expression evaluation error at function 'split' [line 2]: A null parameter has been passed as parameter 1. local!docOCR: split( index( rule!DMX_ScanImagenes(idDocumento: ri!idDocumento).result.responses.textAnnotations.description, 1 ), char(10) ), how to solve it?
Can we trigger a process model every minute? When i was trying to set in start node trigger, time occurrence at an interval of every 1minute it is showing me an error
Hi All, We have requirement to store large file like 30mb - 60mb file for long time period. Which tool would be good in this case. Thanks in advance.
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.