Hi all,

I am trying to Create New Record in a custom Section using an open edit page in Business Process but the section doesn't appear on the open edit page activity .

in atlas release.

Like 0

Like

1 comments

Hello Sayed,

 

at the moment in the atlas release the business processes do not support pages from sections customly created. That is why this section does not appear in the BPM.

 

At the moment the BPM only supports already existing sections.

 

Our R&D team is already working to develop this functionality and it will be available in further releases.

 

Best regards,

Dariy

Show all comments

Hi Community,

I have a requirement that in details once you created a record with a record number(for Ex:-800009),  you can't create another record with same record number. I have to restrict the duplicate creation of record number.

Can anyone help me to achieve this?

 

Like 1

Like

4 comments

Hello Jagan,

 

Unfortunately, at the moment, deduplication functionality can only be used for the main columns of the object, i.e. You cannot set up rules for searching for duplicates for details.

 

Details pull information from another section. It is necessary to search and merge duplicates in the section itself. 



We have already registered the idea for our R&D team to implement this functionality in further releases. I will assign your case to this project in order to increase its priority.

 

Best regards,

Bogdan

Hi Bogdan,

Can I get the script code for How to achieve the deduplication functionality for the  main columns of the object?

Regards,

Jagan

Jagan Nayak,

 

Hello,

 

Unfortunately, as of now we do not have any ready to use examples of such implementation done by code. 

 

Best regards,

Anastasiia

+ 1 for this functionality

Show all comments

I spent a couple of days looking at Creatio 8.  It's undoubtedly the way forward, however a few issues:

  1. With Creatio 7 it is possible to display a field on a Section form page with the value of a column from a linked object using a business rule, when the rule is triggered the field immediately updates.  With Creatio 8 it is possible to link a field to a column in another object however it does not update immediately, I had to save the record, close and reopen it to see the correct value of the linked column in the field.
  2. It's not possible to display a column with values of a column from a linked object in a Creatio 8 Section list.
  3. The List component is undoubtedly the way forward, however it is not possible as far as I can see to display the values of Lookup columns in the List component, or columns of values of columns linked to in other objects.
  4. Is it possible to create a calculated field any more (i.e., as was possible with a business rule)?
  5. A few instances of the Save button simply not responding, frustrating because of the lack of information on what the problem is.

Having said the above IMHO Creatio 8 is still undoubtedly the way forward, the UI is definitely more standard for this type of database application and less idiosyncratic than Creatio 7.  There are some useful minor improvements in Creatio 8 also, e.g., setting a flag to disable new records being added to a Lookup.  I am however I have to admit still developing with Creatio 7.

 

Like 1

Like

2 comments

We wait for 8.1

All important 7 features should be implemented there, I hope

Hi Gareth,



We have already registered the idea for our R&D team to implement this functionality in further releases. I will assign your case to this project in order to increase its priority.  

 

Best regards,

Bogdan

Show all comments

I'm trying to sync activities from multiple email accounts but I'm being prompted that my an account is active.

Like 1

Like

0 comments
Show all comments

I have a business process with a preconfigured page that collects a few pieces of data, creates some related entities and then opens an edit page for one of the created records.  Everything runs fine, but after process execution and after the record is loaded in the edit page, I get the message "another user has completed this task".  Nothing is set to run in the background and the process is not set to run as system user.

Any ideas on how to prevent this message from showing or what's causing it in the first place?

 

Thanks -Jeremy

Like 0

Like

1 comments

Jeremy, I have the same issue in 7.18 in a process calling subprocesses and all are for running in the front end. At the end I am opening a record created in the process with some information collected from existing records and from an auto-generated page.  Have you been able to solve this point?

It is not blocking but an extra click for the end user...

Thanks,

Franck

Show all comments
Question

Hi Team,

 

I tried installing a package form an instance to another instance and facing some SalesPackage related error. Kindly help me resolve this.

 

I'm also attaching the installationLog file for error for the reference.

The package that I'm trying to install has a dependent package SalesEnterproseSoftKey_ENU.

The production instance on which I'm installing the package does not have SalesEnterproseSoftKey_ENU . Instead has SalesTeamSoftkey_ENU.

 

I also tried changing the dependent package of the installation package to NUI, Uiv2,document and base but still it is not able to get installed.

 

Kindly help me resolve this issue as this package is to be moved to production site as soon as possible.

 

 

Like 0

Like

0 comments
Show all comments

Hi All,

I need to put validation to restrict the lookup column "Name" to a certain number of characters(not 50,250,500). Can anyone suggest how can i achieve that?

Like 1

Like

3 comments
Best reply

Hello rajat,

 

You can add an event on the object itself through the configuration:

https://prnt.sc/LIjTKY0mxzdz

 

Get the value of the Name field and make sure that it isn't longer than x characters.

 

 

Kind regards,

Yosef

Hello rajat,

 

You can add an event on the object itself through the configuration:

https://prnt.sc/LIjTKY0mxzdz

 

Get the value of the Name field and make sure that it isn't longer than x characters.

 

 

Kind regards,

Yosef

Hi yosef,

I am not able to add anything in that business process. Can you guide me how  to achieve the above objective

 

rajat patidar,

 

Make sure the object exists in your package (custom package is the default one) and then use an event subprocess.

Here's an example on how to work with server side code:

https://academy.creatio.com/docs/developer/interface_elements/record_page/field/add_auto_numbering_to_the_field#title-1349-12

 

You can then follow this logic:

https://academy.creatio.com/docs/developer/interface_elements/record_page/field/add_the_field_validation

 

 

Kind regards,

Yosef

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 Team,

 

Does Mobile Creatio app support two factor authentication?

 

Customers have SSO enabled on Creatio Web application.

Like 0

Like

1 comments

Hi Team,

 

I have applied a field validation on edit page of section field "Name" that is should allow only numbers and it is working fine.

But the same section is an editable detail on other section where the field validation is not working.

 

Need some help to achieve the same validation on this editable detail mode.

 

Many thanks in advance!

Like 0

Like

3 comments

Can anyone please help with this.

Hello Akshit,

 

You can investigate BaseCommunicationDetail and add your validator by analogy.

					this.addColumnValidator("Number", newItem.validateField, newItem);
					this.addColumnValidator("Number", newItem.checkCommunicationDuplicates, newItem);

Regards,

Marcin

Hello Marcin,

 

Could you please explain in detail?

 

Thanks

Show all comments