Hi. I'd like to filter with parallel AND & OR filters in one and the same filter setup.

Is this possible? And is it possible everywhere?

https://prnt.sc/6oaNJPZRMrSd

 

Like 0

Like

1 comments

from another objet like account, it is possible... but you will retrieve only one contact by account...



Show all comments

Hi community,

does anyone have experience with IP warming with elastic email? The standard throttling mode for warming up cold audience is set to 25 E-Mails per day for the first 3 days, than 50 for the next couple of days ect.. From my experience with other tools and ESPs the warming was a bit faster. I am aware that the limits can be set individually, I am wondering if any of you already tried to warm up a bit faster starting with higher thresholds.

Thanks for your input & have a great day,

Jasmin

Like 2

Like

0 comments
Show all comments

Hi,

Q:   IS Creatio custom web service DDOS safe ?



In other words:   If I create a custom web service (Anonymous) for integration with external systems (of course with basic security logic to identify the source which is accessing my endpoint), Is creatio DDoS Safe? Or in this case i should use application firewall (like cloudflare) infront of creatio ?

Like 2

Like

0 comments
Show all comments

Hello 

 

As i was strugle on this issue and finaly figure this out... i belive that this will be helpfull for others...

 

We have 3 currencies that involve on our process.

US Dollar, ILS - Israel Shekel, and ERU

we neede to translate the relevant currency from 1$ into 3.2 ILS (3.2 as the current rate)

when we try to approach the currency table - the Rate field was 0.0

when we try to approach the Currency Rate Table - the Rate field showed unreasonble number.

 

so... we checked and we didn't understand why and what. and eventualy, with a GREAT help of creatio represntative, we got this solution:

 

Preparations:

1. setup the base currency to our currency - in our case is ILS

2. setup the other currencies as follows.

    example - US Dollar:   setup the Ratio = 1000,  setup the rate value to = 3289.000 (in case the 1$=3.289 ILS)

What happened on the back end is that the Currency Rate table is getting the values from this update, and setup the field "Rate" into 304.000 (in that case)

when we want to setup a calculation that uses this rate - whats needed to be done is:

A = get the ratio number from the relevant currency, from the currency lookup table.

B = get the Exchange Rate from the Currency Rate table, for this specific currency.

and do this math:  A/B   >>> and the result will give you the correct rate !

in this example the rate will be:   1000/304  =  3.289   (1000=Ratio from currency table, 304=Exchange Rate from currency rate)

 

Then we take the value from that result, and use it in the process.

actualy - when i come to think about it - we need to do this process in the currency table, and save this value for all uses... 

 

If someone has bump into this issue and would like to share her/his opinion... i will be happy to see... maybe we did it all so complex for no reason ... but it works :-) 

 

Thanks 

 

 

Like 0

Like

2 comments

Julius,

Thanks, I actually saw that article. i am not sure whether we need to integrate to this site of the the central bank in Israel... 

 

Show all comments

Hi Creatio community,

 

I am using Creatio sale. I want to ask that How can I manage my Sale teams KPI on Creatio sale?

 

For example: 

- I can set up the Target KPI to my Sale team members such as: Number of Call, Message, Mails; Revenue

- I can control the KPIs of my team members by seeing how each person has performed

 

Please help me on that

Like 0

Like

1 comments

Hi there,

 

Thank you for your question,

 

To control KPI of each member, we would recommend using Dashboards. With it, you display the results of each member of your team. More information you can find in the article here.

 

As for target KPI, at the moment there is no corresponding functionality to setup constant numbers in Dashboard section. Our R&D team works on implementing such tool in future releases.

 

As for now, we would recommend using Gauge dashboard to set up KPI requirements.

 

Please let us know if any additional questions arise!

 

Best regards,

Anastasiia 

 

Show all comments

Hi all,

we want the option for "Delete connected records also" to be disabled/hidden from the page.

 

Please suggest a way for the same.

Like 0

Like

1 comments

Hi,

 

Create a replacing module and select the MultiDeleteResultPageV2 module as a parent and add the following method in the replaced module:

getItemToolsConfig: function() {
						var deleteButton = {
							className: "Terrasoft.Button",
							imageConfig: this.get("Resources.Images.DeleteItemIcon"),
							classes: {wrapClass: ["constraints-icon-delete"]},
							markerValue: "tools-button",
							caption: this.get("Resources.Strings.DeleteRecordButton"),
							style: Terrasoft.controls.ButtonEnums.style.TRANSPARENT,
							menu: {
								items: [
									{
										caption: this.get("Resources.Strings.UnlinkRecord"),
										click: {bindTo: "callDeleteService"},
										tag: "CascadeUnlink"
									}
								]
							}
						};
						var ignoreButton = {
							className: "Terrasoft.Button",
							imageConfig: this.get("Resources.Images.IgnoreItemIcon"),
							hint: this.get("Resources.Strings.IgnoreHint"),
							classes: {wrapClass: ["constraints-icon-ignore"]},
							markerValue: "ignore-button",
							click: {"bindTo": "ignoreRecord"}
						};
						var toolsContainer = {
							className: "Terrasoft.Container",
							items: [deleteButton, ignoreButton],
							classes: {
								wrapClassName: ["constraints-item-tools-container"]
							}
						};
						return toolsContainer;
					},

and the following code to the schema diff:

{
						"operation": "merge",
						"name": "ByConstraintsContainerHeaderDeleteButton",
						"parentName": "ByConstraintsContainer",
						"propertyName": "items",
						"values": {
							"menu": {
								"items": [
									{
										"caption": {"bindTo": "Resources.Strings.UnlinkRecord"},
										"click": {"bindTo": "callDeleteService"},
										"tag": "AllCascadeUnlink"
									}
								]
							}
						}
					},

Save the replaced module and refresh the page, the option will be removed.

 

Best regards,

Oscar

Show all comments

Hi,



I tried adding System.Net in Business Process Using property and it is throwing me error "A namespace cannot directly contain members such as fields or methods".



Is there any workaround?



Best regards,

Solem A.

Like 0

Like

0 comments
Show all comments

Hi Team,

i have a scenario where i have to 2 lookups in a section - 

lookup 1 - which as fixed set up values (value1, value2, value3...)

lookup 2- whose values are dynamic and should be fetched from external api based on value from lookup 1. 

for example: if value1 is chosen, it hits external api and gets set of values that should be populated to choose from.

Please guide me in implementing the same.

Thanks,

Gokul

 

Like 0

Like

0 comments
Show all comments

Dear Community,

 

Has anyone figured out how to keep the instance in English but have a different way of writing decimals?

Right now it looks like this:

"1.000,00" https://prnt.sc/S9vrF_TQt1dF

But we would like it to look like this:

"1,000.00" https://prnt.sc/HkloU2ovQkeM

 

The only way so far is to change our language, but that's not an option.

 

Thank you in advance!

Yosef

Like 1

Like

1 comments

did you found a solution?, we need to maintain spanish, but replace comma with  point

Show all comments

Hi Team,

 

Does Mobile Creatio app support two factor authentication?

 

Customers have SSO enabled on Creatio Web application.

Like 0

Like

1 comments