Dear Community,



Is there a possibility to recreate the lookup section with the SAME functionality as the one in V7?

What I mean is that we're currently able to create a section based on the lookup object, but when clicking on a lookup, we don't get the relevant information in V8.

 

 

Kind regards,

Yosef

 

Like 2

Like

2 comments

Hello,

 

Please note that it is possible to create a Freedom UI section based on an existing object. You can find the instructions on this in the article below:

https://academy.creatio.com/docs/8.x/no-code-customization/customizatio…

 

If it's not quite what you need, please describe the issue in more detail.

Hello Mira,

 

Thank you for your comment. I wasn't able to post any screenshots but I already have a section based on the object "lookup". However, in V7 whenever you click on the name, you are represented with the data within this lookup.



If you create a new V8 page based on the "lookup" object, you'll only get the following fields:

Created on, Modified on, Name, Description, Created by, Modified by

 

You wont be able to see the data within this lookup.

Hopefully this helps?

https://scribehow.com/shared/Accessing_and_Configuring_Lookup_Section_i…

 

 

Kind regards,

Yosef

Show all comments

Dear community,

 

Has anyone been able to use the Excel Reports app in V8?

We installed https://marketplace.creatio.com/app/excel-reports-builder-creatio but the option is only visible in the old UI.

 

Kind regards,

Yosef

Like 6

Like

3 comments
Best reply

Hi Yosef!

The app does not support report download in Freedom UI sections.

As a workaround, you can set up reports that have "Custom report" report type. That way you can generate a report in the Excel reports section.

+1 Also really hoping this gets updated, or even better some enterprise level reporting functionality. 

Yes, I'd rather it become an OOTB functionality in Creatio 8.1 ... an enterprise grade tools requires enterprise grade reporting

Hi Yosef!

The app does not support report download in Freedom UI sections.

As a workaround, you can set up reports that have "Custom report" report type. That way you can generate a report in the Excel reports section.

Show all comments

I'm trying to add an object in my local account and add a parent object to the object, but when I try to add it, I get the error that the menu does not appear. I tried typing any name, it still comes up blank. What can I do?

Like 0

Like

5 comments





This is the area I mentioned on another computer, could it be related to the installation files?

Burak Toprak,

 

What is the product version you are using?

 

 

Sourav Kumar Samal,



8.0.6 

Hi!

 

If you are trying to create an object that should inherit properties from other packages, and nothing is being inherited, make sure you have added dependencies to those packages.

 

To do this, you can open the "Dependencies" section on the package creation page and add dependencies to the packages from which you want to inherit properties. If the package has dependencies, the installation of these dependencies is checked during package installation, so make sure you have added all the necessary dependencies for inheriting properties.

 

If the problem still persists, make sure you have added the proper object settings according to your requirements. If necessary, refer to the Creatio documentation https://academy.creatio.com/docs/7-17/developer/development_tools/packa….

To add to what Alla said, whatever object it is that you want to select as your parent, find what package that object is in and then add that package as a dependency to your package. If you're wanting to select BaseEntity, I believe that package is Base.

Ryan

Show all comments
Question

Hi all,

 

Have you played with Freedom UI Sdk yet ?

Have you any idea of how to execute an esq ?

 

Best regards

Like 1

Like

5 comments

Hello,

 

Thank you for reaching out.

 

Could you please clarify what issue do you have and what is your business task? 

 

Thanks in advance.

 

Best regards,

Anastasiia

 

 

Anastasiia Marushenko,

Hi need to be able to do the following, but in freedom UI : 

			setDefaultLieu: function(clientFinalId) {
					if(!this.get("UsrLieu")) {
						var esq = Ext.create("Terrasoft.EntitySchemaQuery", {
							rootSchemaName: "UsrLieu"
						});
						esq.addColumn("Id");
						esq.addColumn("UsrName");
						var esqAccountFilter = esq.createColumnFilterWithParameter(Terrasoft.ComparisonType.EQUAL,
						"UsrAccount", clientFinalId);
						esq.filters.add("esqAccountFilter", esqAccountFilter);
 
						esq.getEntityCollection(function(result) {
							if (result.success) {
								debugger;
								var collection = result.collection;
								if(collection.collection.length == 1) {
									var entity = collection.getByIndex(0);
									this.set("UsrLieu",{value: entity.get("Id"), displayValue: entity.get("UsrName")});
								}
							} else {
								this.showInformationDialog("Request error. Please contact your system administrator");
							}
						}, this);
					}	
			}

 

Hello,

 

Freedom UI allows to call esq query (for example using the code below when the esq call is connected to attribute change):

{
				 request: "crt.HandleViewModelAttributeChangeRequest",
				 handler: async (request, next) => {
					 if (request.attributeName === 'DateTimeAttribute_m2b4mok') {
						 var esq = Ext.create("Terrasoft.EntitySchemaQuery", {
							 rootSchemaName: "Account"
						 });
						 esq.addColumn("CreatedOn");
						 var esqFilter = esq.createColumnFilterWithParameter(Terrasoft.ComparisonType.EQUAL, "Id", "1e5d4e6e-13db-43c8-8b4e-fc04d514932b");
						 esq.filters.add("esqFilter", esqFilter);
						 esq.getEntityCollection(function (result) {
							 if (result.success && result.collection.getCount() > 0) {
								 result.collection.collection.each(function(item) {
									 request.$context.UsrEndDate = item.values.CreatedOn;
								 }, this);
							 }
						 }, this);
					 }
					 return next?.handle(request);
				 },
			 }

but the issue is that esq is async and we always get the value for the column after all the handlers are completed. I will ask our core R&D team to add esq support in Freedom UI. Thank you for helping us in making the app better!

Oleg Drobina,

There is already support for EntitySchemaQuery in the new Creatio DevKit SDK that returns a promise that you can await rather than using a callback as in the Ext version. I can't seem to get it to work yet although it's difficult when I'm just guessing at how it is used since there is no documentation on it yet - or by trying to figure it out by examining the code (which is very difficult since it's minified and transpiled from TS).

If you could get one of the devs to provide a small sample using ESQ from the DevKit SDK that would be fantastic.

Ryan

Jerome, 

I've been told the intended use on a Freedom UI page is to use the Model class for retrieving, adding, updating, deleting data from client-side code on a Freedom UI page (instead of using ESQ).

I've started some articles on this topic, the first one for retrieving a single record here: https://customerfx.com/article/retrieving-a-record-via-the-model-class-…

I'll have several more articles coming on doing queries with the Model class. I actually quite like using the model class so far, but there are for sure some things that I am not sure it can handle like ESQ - I hope we'll see ESQ become available in Freedom UI pages, the classes are all in the DevKit SDK - except for the one that matters (the QueryExecutor to actually execute the ESQ).

Ryan

Show all comments
Question

Hello Team, how is possible to select multiple fields and delete them in the new section UI?

Like 0

Like

1 comments

Hello Federico,

 

Unfortunately, there is no said functionality present yet.

We will create a request for our development team in order to bring this functionality in future versions of Atlas.

 

Thank you,

Artem.

Show all comments
Question

Hi Team, 

 

I have a new section with record access rights. I don't see any place to setup the access rights to the record in the new UI.

 

Like 0

Like

1 comments

Hello Fedetico,

 

Unfortunately, it is currently not possible to set up the "Actions" button in the Freedom UI. However, this task has already been assigned to our R&D team and they are actively working on implementing this functionality into the basic tools of CRM in the soonest releases.



Best regards,

Bogdan

Show all comments

Hello,

 

I'm not able to enable approvals in version 8.0.2

Does anyone know how to enable approvals in the latest version ? knowing that there's no View>Open section wizard in the section created with the newwest version

 

Thanks

 

Maarouf

Like 1

Like

5 comments

Hello

 

Could you please elaborate on the issue and explain what functionality exactly you are not able to find? How did you create the section exactly and how did the "Enable approvals" look in the older sections?

 

Kind regards,

Mira

Hello Mira,

 

In version 8, i've created a new section in the Application Hub > New Application > New page.

In the older version we used to create a new section in the Section Wizard. Also in the older version, in the section itself, we usually click on View > Open section wizard where we can find multiple section properties including the Enable Approvals checkbox.

Tha't what i'm trying to find in the newest version, as there's now View > Open section wizard in the page.

 

Maarouf

Hello,

 

I have checked this matter with our R&D team and unfortunately "Enable approvals" checkbox is not available in the Freedom UI yet.  It is planned to add it in future releases, but it is hard to tell when exactly it will happen.

 

Kind regards,

Mira

Hello Mira,

 

Thank you for your reply.

 

So what's the current workaround for that ? Supposed we're working on a new section developed using the version 8 and we wanted to enable the approval on it 

 

Maarouf 

Mira Dmitruk,



What is the current status of this feature. We need to add Approval for our custom section, but there is no Visa object for that.

Is it possible in 8.1 already?



Kind regards,

Vladimir

Show all comments

Hello Community!

 

I tried to download the setup files for an on-premise for the recent 8.0.1 release, but they are not available on the ftp server at ftp.creatio.com - /support/downloads/!Release/installation_files/

 

Is there a new/changed location to download these?

 

Thanks,

Robert

Like 0

Like

3 comments

Hello Robert, 

 

Please contact us at support@creatio.com for the installation files. 

As for now, the files for 8.0.1 were not released yet. 

 

Thank you, 

Igor

Ihor Skohariev,

Hi Ihor,

 

thanks, I will do that.

 

When will the files be available on the ftp server?

Not even the initial 8.0 Atlas release is hosted there and it has been released over three month ago!

 

BR,

Robert

Hi Robert, 

 

The 8.0 on-site version is available for the support team, but please, contact our support, so we can provide more details regarding your specific needs.

 

Thank you, 

Ihor

Show all comments

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