How to make a field in the expanded list read-only by default or by a condition

Like 0

Like

0 comments
Show all comments

Hello Community!

 

I'm trying to fill a field with the result of a simple calculation (e.g. field A - field B).

 

However, when I create the business rule and select "set field" as action, I can only provide a constant value and not a formula...am I missing something?

 

Here is a screenshot of the 

 

I know that I can use a business process to achieve this, but this would be much more simpler and elegant I think.

 

BR,

Robert

Like 0

Like

3 comments
Best reply

It's not yet available in Freedom UI --> Creatio Roadmap indicates for Q4 2023 https://academy.creatio.com/docs/release/creatio-roadmap?check_logged_i…

I forgot to add that I use version 8.0.10.4735

It's not yet available in Freedom UI --> Creatio Roadmap indicates for Q4 2023 https://academy.creatio.com/docs/release/creatio-roadmap?check_logged_i…

Damien Collot,

Thanks Damien, at least I know that I did overlook something.

Show all comments
Question

Hello, is there a way to build a reports scheduler in Creatio platform? or is there an free product in marketplace that does this requirement??

Like 0

Like

1 comments

Hi Anas,

Yes, we have created scheduled process with [Process file] element. It can generate reports.

Kind regards,

Vladimir

Show all comments
Hello. 
Hello.

I need to send an image through an API to convert it to base 64, I tried to do it using the Web service tool but it does not allow me to place an image or file field to use it from the bpm, I was looking for some information and I saw that it could be done using a script, I just haven't found a way to do it. Could you help me with some example or idea so I can do this please?

 

 

 

Like 0

Like

1 comments

Hello Laura, 

 

Please refer to this article for more detailed information about such functionality.  

Also, similar questions have already been discussed in the below posts, please review them for the detailed information:

https://community.creatio.com/questions/there-option-send-image-file-re…
https://community.creatio.com/questions/file-type-request-parameter-res…

Please inform us in case of any questions!
Best regards,
Anastasiia

Show all comments

Dear Community,

 

We are having an issue while connecting to our plateform's mobile application for all users. An error occurs when we try to test it after setting up workplaces, list of sections, pages and details in the mobile app wizard config and binding workplaces data.

 

below is the error displayed in the message log:

Model Name: SM-A525F
Platform: Android
Platform Version: 12
Resolution: 412x867
IsHybridMode: true
RootAppDirectory: creatio
ApplicationVersion: 8.1.0
ApplicationMajorVersion: 8.1
UseNativeSynchronization: true
UseNativeImport: true
UseNativeExport: true
UseNativeLogout: true
UseNativeMetadataSync: true
UseNativeFullSynchronization: true
UseDataService: true
IsDevMode: false
CurrentDateTime: 2023-09-22T16:53:52.064Z
ServerUrl: Url
ContactId: 96b911ed-39f0-4ca1-b828-d816b829d145
CultureName: en-US

ApplicationRevision: null
WorkplaceCode: Chartering
ProductInfo: {"ProductName":"Creatio","ProductEdition":"studio","CustomerId":"111","Version":{"Major":8,"Minor":0,"Build":6,"Revision":3439,"MajorRevision":0,"MinorRevision":3439}}

Type: Terrasoft.ServerException
Message: Server request returned error
AdditionalInfo: {
"statusCode": 500,
"url": "platformUrl/ServiceModel/MobileMetadataService.svc/Load/Chartering/en-US"
}
Stack trace:
Class.getServiceFailureException(terrasoft-all-combined.js:34788:29)
Class.getExceptionFromResponse(terrasoft-all-combined.js:5953:19)
Function.getExceptionByType(terrasoft-all-combined.js:53101:41)
Function.getException(terrasoft-all-combined.js:53156:21)
Function.processFailure(terrasoft-all-combined.js:36719:55)
terrasoft-all-combined.js:36791:20
Object.callbackFromNative(cordova.js:295:52)
processMessage(cordova.js:1081:17)
processMessages(cordova.js:1104:9)
pollOnce(cordova.js:973:9)
pollOnceFromOnlineEvent(cordova.js:960:5)

 

Any help would be appreciated.

 

Thank you in Advance,

Mouna.

Like 0

Like

1 comments

Hello,

 

To resolve your issue please go to advanced setting -> Action -> generate source code for all schemas. Then make the "compile all". In case, if this issue continues to reproduce please send us the letter or register request via the portal with a detailed description of the problem. Add the information about the instance on which you have this issue and provide external access to this website. Also, please send the credentials for the mobile application. 

Show all comments

Hi everyone, 

I have a question regarding filters within the Campaign feature. Here is the scenario.

We have an email that we want to send as part of a campaign, we will call it "Email A". Now, we only want to have "Email A" sent to our customers if:

A) They have not received "Email B" in the past 45 days.

AND

B) They have not received Email C this year.

 

How could this be setup as a filter within this campaign? Thanks in advance for any assistance. 

Best,

Lucas

Like 0

Like

1 comments

Hello,

 

To implement your filtering logic please set up the filter like in this screenshot to the "Add audience" element: 

Show all comments

Hi all,

Does anyone have experience using batch updates via the API and atomicity function. 

 

I have followed the documenation similiar to the below, both with and without the prefer header. My understanding is that if one of the requests below fail, then any successful ones in the array will be rolled back. However, this doesn't seem to be happening. 

On use of the below, if the second POST fails, the first POST still appears in the database.

 

Any help greatly appreciated 

 

{
	"requests": [
	{
		"method": "POST",
		"atomicityGroup": "g1",
		"url": "City",
		"id": "t3",
		"body": {
			"Id": "62f9bc01-57cf-4cc7-90bf-8672acc922e3",
			"Name": "Spokane"
		},
		"headers": {
			"Content-Type": "application/json;odata=verbose",
			"Accept": "application/json;odata=verbose",
			"Prefer": "continue-on-error"
		}
	},
	{
		"method": "POST",
		"atomicityGroup": "g1",
		"url": "City",
		"id": "t2",
		"body": {
			"Name": "Texas"
		},
		"headers": {
			"Content-Type": "application/json;odata=verbose",
			"Accept": "application/json;odata=verbose",
			"Prefer": "continue-on-error"
		}
	}
	]
}

 

Like 0

Like

2 comments

Hello Harry,

Batch request is simply a set of separate requests for optimization of a call process. If the first transaction succeeds but the second fails, the database updates made in the first transaction aren’t rolled back. Here you can find useful information how to use batch in the right way:

http://docs.oasis-open.org/odata/odata/v4.0/errata02/os/complete/part1-…

Best regards, Anhelina

Anhelina,

Thanks Anhelina, I'm not sure that's quite right though... Here is an extract from the link you provided:

 

The value of atomicityGroup is a string whose content MUST NOT be identical to any value of id within the batch request, and which MUST satisfy the rule request-id in [OData-ABNF]. All request objects with the same value for atomicityGroup MUST be adjacent in the requests array. These requests are processed as an atomic operation and MUST either all succeed or all fail. Requests within an atomicity group that may have otherwise succeeded but are rolled back due to failure of another request in the same atomicity group MUST return a status code of 424 Failed Dependency.

Show all comments

How to add new icon in the icon list for Freedom Ui

Like 1

Like

2 comments

Not possible to add.
It would be great to be able to use any mat-icon. For now, I would love to at least get a complete list of the icons available. I’ve noticed that the list changes depending on the context of what the icon is for, although you can change the icon name in the viewConfigDiff to any available and it works (as long as you know the available icon names)

Ryan

Hello,

Unfortunately, there is currently no way to add a new icon in the icon list for Freedom UI.

However, a task has already been registered in our R&D team to consider and implement such a feature in future releases. In case you would like to check what stage this task is at, I am sending you the task number: PR-28339. Feel free to share this number with us at any time and ask your questions.

Show all comments

Greetings, 

I am relatively new to CRON expressions and trying to get a grasp on it through reading on Quartz.net. Basically, I would like to add a timer element to time an email to launch every two weeks on Friday at 9:00 AM. 

What would be the best way to write this expression since Creatio only allows 7 parts max? Thanks in advance for any guidance provided.

Lucas

Like 0

Like

2 comments

 Hello Lucas,

 

If the CRON expression cannot be created using this quartz generator then this CRON expression won't work in the app. Indeed, expressions like this:

0 0 * * Fri [ $(expr $(date +%W) \% 2) -eq 1 ]

won't be processed by the designer stating that there are more than 7 parameters in the expression. But I will ask our core R&D team to add suppoting of complex expressions that will make it possible to use expressions like the one above.

 

Thank you for this idea and helping us in making the app better!

Oleg Drobina,

Hi Oleg, thank you for the feedback. Also, adding the ability to add a frequency of every 2 weeks, 3 weeks, 4 weeks, etc. to the timer campaign element can help as well.

Show all comments

Is there any way  to change the color of all tabs on all the  record pages across the system by using low code

Like 0

Like

3 comments

Hello,

 

There is no such functionality for now. 

But we've registered it in our R&D team backlog for consideration and implementation in future application releases. 

 

hank you for helping us to improve our product. 

 

So now if we have to use this functionality how we can achieve  this using by code?

Surbhi Garg,

 

We don't have an example of it's implementation for now.

Show all comments