Need_Material_for_Creatio_Analyst_Certification
Studio_Creatio
7.17

Hello Team,

  I want to do Creatio Analyst (Basic ) Certification. For that, I need guidance and Material like how to prepare for that and what I need to follow in order to crack the certification Exam.

Thanks in Advance...

Like

Like 0

Like

1 comments

Dear Naveen,



Unfortunately, we do not have any specific guidance or materials on how to prepare for the exam.

You can check community posts along with our academy to study all the information.



Best Regards,

Ivanna.

Show all comments
printables
Studio_Creatio

I need to set the background colour of a cell depending on its value.

I tried with a macro but the printable file becomes a "docm" file and Creatio only accepts "docx" files so it seems we cannot use macros in the printable files: is there some ways to embed and use MS-Word macros in Creatio printables?

Is it possible to bind formatting of a cell to a value coming from Creatio (for example the background colour of the cell could be a field coming from Creatio) ?

 

Like 1

Like

1 comments

Dear Massimiliano,

 

Thank you for your question!

 

We have double-checked this information with our developers and received an answer that currently, this functionality is absent in Creatio.

 

Nevertheless, we have created an improvement ticket in regards to this question.

 

Thank you!

 

Regards,

 

Danyil

 

Show all comments
I_NEED_GUIDANCE_FOR_CREATIO_ANALYST_CERTIFICATION
Studio_Creatio

Hi Team,

 

I want do Creatio Analyst (Basic ) Certification. How should i prepare for this, any body can guide  to me. 

 

Many Thanks.

Like 0

Like

1 comments

for basic certification you take it from the site directly and prepare for the module that you want to take the certification in it, understand all module features, functionalities, sections and have an overall view of the main sections that will be exist in all creatio modules .

good luck 

Show all comments
Creatio_Analyst_Certification
Need_Guidance_For_Creatio_analyst_certification
Studio_Creatio
7.17

Hello,

  I want to do Creatio Analyst (Basic ) Certification. For that, I need guidance like how to prepare for that and what I need to follow in order to crack the certification Exam.

 

Thanks in Advance...

Like 0

Like

2 comments

for basic certification you take it from the site directly and prepare for the module that you want to take the certification in it, understand all module features, functionalities, sections and have an overall view of the main sections that will be exist in all creatio modules .

good luck 

Ibrahim Nour El-Din,

The basic test is different from the main certification test..?

Show all comments
Studio_Creatio
7.17

Hi community,

I've a problem with PATCH method on Region Entity.

I receive a generic error when I try to update a record.

What am I doing wrong ?

 

Here the postman request.

1) Read the region record to update

 

2) The error captured on postman when I tried to update the same record founded before

Like 0

Like

4 comments

Hi Stefano,

 

There can be a problem with the Region object in configuration or another object and that's why an UPDATE fails. You need to:

 

1) Check the application logs to see the error message that is returned upon a request

2) Go to configurations and generate source code for all items and compile all items and try updating the record after that

 

Best regards,

Oscar

Hi Oscar

thank you for you suggestion.

About the first tip, the issues is on cloud creatio instance, how can I access to application logs ?

Stefano Bassoli,

 

Just email us at support@creatio.com to get the logs of the application for some date.

 

Best regards,

Oscar

Oscar Dylan,

I understood the problem.

The user associated to oauth did not have permission on operation "

CanManageLookups"

 

Show all comments
Studio_Creatio
7.15

Hi, 

 

I added a Check Menu Item on the Actions menu to one of my sections and it works fine, but I have not been able to set the Checked default value base of an attribute set on the init function.

 

This is what I have:

actionMenuItems.addItem(this.getButtonMenuItem({

                    "Type": "Terrasoft.controls.CheckMenuItem",

                    "Caption": { bindTo: "Resources.Strings.OpenImagesAutomaticallyFromInitialEntryCaption" },

                    "Click": { bindTo: "setOpenImagesAutomaticallyFromInitialEntry" },

                    "Checked": { bindTo: "OpenImagesAutomaticallyFromInitialEntrySetting" }

                }));

but when I go to the menu item, the menu is always unchecked regardless of the value of the boolean attribute OpenImagesAutomaticallyFromInitialEntrySetting. 

 

Any help on how to accomplish that would be greatly appreciated.

 

Thanks,

Jose

 

Like 0

Like

2 comments

Hello Jose, 

 

Please check my last answer on this post: 

 

https://community.creatio.com/questions/how-make-radio-button-mandatory…

 

Here I explained how to use attribute "Checked" correctly. Although there is a post regarding radio button, however the required logic for "Checked" attribute will be the same. 

 

Best Regards, 

 

Bogdan L.

Bogdan Lesyk,

Thanks Bogdan. I will try that.

Show all comments
Studio_Creatio
7.17



Hello Community! There is any way to get the cached syssettings in Mobile?

Equivalent to Terrasoft.SysSettings.cachedSettings in Web

Like 0

Like

3 comments

Dear Federico,



You can check Terrasoft.SysSettings in which you can see all stored information from the manifest

 

 

Best Regards,

Ivanna Yatsura.

Ivanna Yatsura,

 Yes I checked but Can't see the cached syssettings there. I dont know from where are coming those system settings.

Federico Buffa ,

 

Unfortunately, it is the only option here.



Best Regards,

Ivanna Yatsura.

Show all comments
details
Studio_Creatio
7.17

Hi community

is it possible to change the background color of a single cell on a detail conditionally ?

Like 0

Like

3 comments

Hello Stefano, 



Feel free to refer to this answer on out community: 

https://community.creatio.com/questions/how-add-custom-style-control-pa…



You'll need to implement such method in the detail page schema, and

change background color in your CSS module. 



Best Regards,

Yurii

Hi Yuril

thank you for you suggestion.

I know the suggested articles.

I need to change the background color of a cell in the detail grid based on the value of some fields of the detail row, but I don't know how to get it.

Stefano Bassoli,

You can conditionally style a list row based on conditions in the data, however, the list/grid in Creatio doesn't support adding style to specific cells. To style a list row based on conditions in the data of that row, refer to this article 

https://customerfx.com/article/styling-section-list-rows-based-on-condi…

Ryan

Show all comments
Studio_Creatio
7.17

Hello Community!

 

I need to read the roles of the user logged in the mobile app. I try with a query sql but I don't have any result (query is working from the sql console). There is any other better option for that?

 

var sqlText =
			"select u.contactid, u.name, rol.name from  sysUserInRole ur  " +
			"inner join sysadminunit u on ur.sysUserId = u.id inner join " +
			"sysadminunit rol on ur.SysRoleId = rol.id where u.contactid ='" + Terrasoft.CurrentUserInfo.contactId + "'";
		var me = this;
		Terrasoft.Sql.DBExecutor.executeSql({
			sqls: [sqlText],
			success: function(data) {
				if (data.length > 0) {
					var records = data[0].rows;
					for (var i = 0, ln = records.length; i < ln; i++) {
						var sqlData = records.item(i);
 
					}
				}
			}
		});

 

Like 0

Like

6 comments

Hello Federico,

 

And have you tried using ESQ select query using the Terrasoft.CurrentUserInfo.contactId as a value for the ESQ filter? Please try this approach as well.

 

Best regards,

Oscar

Oscar Dylan,

 Can you give me a example of this query using esq for mobile?

Federico Buffa,

 

I have no example, but the code should be similar to the one below:

var resultArray = [];
var esq = Ext.create("Terrasoft.EntitySchemaQuery", { rootSchemaName: "SysAdminUnitInRole" });
esq.addColumn("SysAdminUnit");
esq.addColumn("SysAdminUnitRole");
esq.filters.addItem(esq.createColumnFilterWithParameter(3, "SysAdminUnit", Terrasoft.CurrentUserInfo.userId));
esq.filters.addItem(esq.createColumnFilterWithParameter(4, "SysAdminUnitRole", Terrasoft.CurrentUserInfo.userId));
esq.getEntityCollection(function (result) {
	if (result.success &amp;&amp; result.collection.getCount() &gt; 0) {
		var item = result.collection.getByIndex(0);
		resultArray.push(item.get("SysAdminUnitRole"));
	}
}, this);

Best regards,

Oscar

Oscar Dylan,

 I tried to add the esq query but Im getting error in the filters looks filters not exist in the esq. Im trying to add this in a custom BR. Any idea of the correct syntax?

 

If I check the esq properties for filters is undefined. As well I tried create a group filter to add it later to the esq but with no luck.

 

Any another idea of how to know the roles of the user in the mobile app?

Federico Buffa,

Did you get your answer ? 

Show all comments

Hello community. By any chance somebody know how to localize the tag button in the filter panel of the section?

 

Thanks,

Like 0

Like

2 comments

Hello Federico,



You can localize the "tag" button on the "Translation" page of the system setup. The corresponding key is 

"Configuration:TagFilterViewModelGeneratorV2:LocalizableStrings.TagButtonCaption.Value"

 

Best regards,

Bogdan

There is any way to bound that lozalization to the package?

Show all comments