Hello Community,

I am a new bee with here and not much familiar with Creatio Studio as well. I have created a demo environment of creatio studio from downloadable. I created a new application where I am creating a list and detail page. 

The issues I am facing are:

  • The list view page shows that its continuously loading, because of which I am not able to hide or create a new column which is obvious.
  • on the Form page when I try to save my form elements/objects It is showing an error as Failed to update the structure for following schema and the schemas are my form objects which I am trying to save.
  • I found one solution on the community here that by updating the objects showing error on Workspace explorer page (System designer->advanced settings->configuration. I see my objects showing error in the status column. I did try updating the DB objects from there but showing the DB error. I think the above issue and this one is related and due to the same reason(Screen shot2)
  •  When I try to compile all in configuration, I get an error. (screenshot 3) I tried uninstalling and reinstalling the SDKs(The solution again I found here) but it doesn't seem to be working for my case.

I really Appreciate if someone could help me to figure this out.

Thanks

File attachments
Like 0

Like

1 comments

Hello,

 

I've reviewed the screenshot shared and to understand what happens with the object the actual error message from the SQL server logs should be shared. If this is MS SQL you need to take a look at the extended evens logs, if this is PostgreSQL - find the logs using this article. In the SQL server logs there will be an actual database query that fails to execute. Try executing it manually in the database and let's see which error message we face.

Show all comments
approval
visa
Studio_Creatio
8.0

I want to filter the change approver lookup based on some conditions. I tried to find the module that is responsible for this but couldn't find it. Can anyone help me on this?

Like 2

Like

1 comments
Best reply

Hello,

 

When clicking the "Change approver" button the ApprovalDashboardItemViewModel module onChangeApproverButtonClick method is called. This onChangeApproverButtonClick method calls the changeVizierAction method from the BaseVisaProvider module. Lookup opening is performed in this part of code (inside the checkRightCallback callback method):

LookupUtilities.OpenLookup({
						sandbox: sandbox,
						lookupConfig: lookupConfig,
						renderTo: renderTo || Ext.get("centerPanel"),
						cancelCallback: cancelCallbackFn
					}, lookupUtilitiesCallback, this);

Unfortunately filters cannot be added at this point based on the OpenLookup method from the LookupUtilities.

Hello,

 

When clicking the "Change approver" button the ApprovalDashboardItemViewModel module onChangeApproverButtonClick method is called. This onChangeApproverButtonClick method calls the changeVizierAction method from the BaseVisaProvider module. Lookup opening is performed in this part of code (inside the checkRightCallback callback method):

LookupUtilities.OpenLookup({
						sandbox: sandbox,
						lookupConfig: lookupConfig,
						renderTo: renderTo || Ext.get("centerPanel"),
						cancelCallback: cancelCallbackFn
					}, lookupUtilitiesCallback, this);

Unfortunately filters cannot be added at this point based on the OpenLookup method from the LookupUtilities.

Show all comments
channelprovider
Studio_Creatio
8.0

Hello community,

 

Is there any possibility to add an icon to custom channel provider? When creating new  channel provider lookup value, it is impossible to specify icon there, as well as if we import channel provider data from excel file. So we wonder if it is possible at all (so this icon would be displayed in the chat when a new chat for this provider would be created)? 

Like 0

Like

1 comments

Hello Community, 

Is it possible to create a native application that runs on a PC using creatio?

Like 0

Like

1 comments

Hello,

 

Could you please describe your business need in more detail and elaborate on how exactly you would like this to work?

Show all comments
database
SQL_Console
sql
query
Studio_Creatio
8.0

I want to update MaxFileSize and ActiveFileContentStorage using a query to save time. But whenever I tried to run the query from SQL Console it successfully update the values in the database but they are not reflected in the Creatio Portal.

 

When I add the query in the SQL file in advanced settings and run it, it updates the data in the database and in the portal as well. The problem is that it's not dynamic which will kill the purpose of using the query.

 

In other words, if I have to go and change the value in that file and run it again then we can do the same for the system settings as well.

 

Can anyone help me with that?

 

Thanks in advance.

Like 0

Like

1 comments

Hello Syed,

 

The issue here is that these values are also storred in cache and direct updating of these values are not reflected in the cache. That's why you have old values after updating values from the database directly.

 

What should be done after updating values in the database is Redis flush. But this will lead to all users to be logged out from the system and obviously cannot be performed during business hours for the application (or users should be notified that the Redis will be flushed soon). After Redis flush new system settings values will be used when working in the application.

Show all comments
Studio_Creatio
8.0

Hi team

 

I created on account page a detail using ContactCareer entity,

I added a custom add button which opens the contact mini page for adding a new contact.

My problem is when the user add the new contact, the contact career entity does not reload 

 

What is it my mistake?

Like 0

Like

1 comments

Hello Stefano,

 

I recommend checking if you have properly connected the account with the new contact. Specifically, please verify the "Which column values to set?" button parameter and ensure that you are transferring the necessary values correctly.

By ensuring that the account and contact settings are properly aligned and the appropriate values are being transferred, you can resolve the issue and achieve the desired functionality.

 

Best regards,

Kate

Show all comments
FreedomUI
HideTaskProperties
Studio_Creatio
8.0

Hello Community, 

 

I wanted to hide Task Properties button in the pre-Config page.

Any suggestions in achieving it is really helpful.

Thanks

Gargeyi.G

File attachments
Like 0

Like

2 comments

To hide the task properties button in particular pre configured page 



- Create a module for css "UsrPreConfiguredPageCSS" and add the code in LESS :



#{{PageCode}}TaskDetailsButtonContainerContainer{

    display: none;

}



- Add the CSS file in the page client module.





Here {{PageCode}} will be UsrClientUnit_d105110

Hope this helps.



Regards

Goparna Nasina

It would be best to uncheck the "Create activity" checkbox in the pre-configured  page settings in process designer.

https://academy.creatio.com/docs/release/release-notes/7182-release-not…

Solving it with CSS styles is wrong and could stop working at any moment. It uses parts of CSS that are not publicly documented or checked for backward compatibility.

Show all comments

Hi,

we have a Freedom UI page with an editable list component connected to an object. If the user has changed any record, the "Save all" button should be pressed to apply updates (see screenshot). Now we want to implement objects saving on "Apply changes button". Is it possible? We thought about similar handler as for refresh data, but for saving datasource:

const handlerChain = sdk.HandlerChainService.instance;
await handlerChain.process({
    type: "crt.LoadDataRequest",
    $context: request.$context,
    config: {
        loadType: "reload"
    },
    dataSourceName: "DataSourceNameHere"
});

 

Like 0

Like

1 comments

Hi,

If I'm not mistaken, you can use crt.SaveRecordRequest (example here) or crt.SaveDataRequest (example here)

Show all comments
Studio_Creatio
8.0

Hi all, 

 

Sometimes the requirement is to import a single column of data to an object - for example "Email" of "Contacts". 

 

However, if you have multiple required columns in the object, you must import all those columns again.

 

Is there a way around this? curious if I am missing a simple setting or if anyone deals with this differently.

 

Thanks

Like 4

Like

5 comments

Yes would love to temporarily pause rules on some fields at import

Hello Harry,

 

As of now it's expected oob behavior. The required columns cannot be disregard as it may affect the import results.

We'll register a corresponding query for responsible R&D team to consider applying changes to this behavior in future releases. 

 

Best regards,

Anastasiia 

 

Anastasiia Zhuravel,

any news on this?

We would really need the freedom to decide which fields to provide during import... 

Hi, 

Any news ?

Damien

Having a separate field setting for "required on import" would be hugely helpful. Thanks!

Show all comments
elasticsearch
Studio_Creatio
7.15

Hello, I am working on the customer's requirements, in which it is necessary to perform a global search not only by application attributes, but also by the content of a text document (doc, pdf).

Is it possible to implement using elasticsearch?

Like 2

Like

5 comments

Hello Dmitriy,

 

Unfortunately Global Search functionality cannot be applied to the attachments for now.

We've registered a query for our responsible R&D team to implement such functionality in the upcoming releases but due to complexity of the task there is no specific ETA as of now.

Best regards,

Anastasiia

Hi Anastasia,

Our prospect is also demanding this functionality! Can you provide an ETA?

luis.goncalves@imdigital.pt,

 

Unfortunately for now we don't have any ETA for when this functionality will be implemented.

There used to be an addon able to handle this (not sure what was the mechanism used though, elasticsearch or something else), so I guess there somehow a possibility. It is an often requested feature indeed.

Is there any news regarding this functionality, maybe an ETA? Or any suggestion or workaround on how to search in documents in Creatio would be much appreciated

Show all comments