Hi Community,

In mobile, how we can assign default workplace per user so that after login mobile user don't need to go to Settings->Workplace and change it everytime.

Like 0

Like

3 comments

Hi Fulgen,

To have mobile workplace by default you should go to the system settings -> search for "Default workspace" -> Choose the lookup "Mobile application workspace" -> the field Default value should be filled by the name of the workspace you want to be by default.

Thanks Bohdan,

But I believe this setup will applicable for all users, I want something to be it like per user of per role 

Fulgen Ninofranco,

You can use Access rights tab when setting up a workplace to choose roles.

Show all comments

Hi Community,

Is there available report to Generate Licenses and its Corresponding Users in CRM?

 

Like 0

Like

1 comments

Dear Fulgen,

As for now there is no functionality to export license data via Excel. As a workaround you may use SQL queries and export data via SQL executor and SysLicUser&SysLicPackage tables. 

Best regards,

Angela

Show all comments

Hi Community,

On Change Log, how will I track who enabled the change log and added columns

 

Like 0

Like

1 comments

Dear Fulgen,

There is no mechanism to track who enabled the change log. However, by default it can do only the system administrators. To restrict the users from managing the change log, please use Can clear change log, Access to "Change log" section, View change log operation permissions.

Dean

Show all comments

Hi,

I added a detail in a portal section.

I added right permission to portal user for insert new detail.

When a portal user access to the section he can view the detail but he cannot add new item.

If a internal user add a detail, the portal user can't edit the item, the browser show the javascript error below attached

Please, can you help me ?

Like 0

Like

4 comments

    Currently, when the detail is added to the portal, the portal users cannot add the records. This is default application logic. We already had multiple requests from the customers to make this option possible and this idea has been accepted. It will be possible to add the records on the detail on portal in the nearest application releases.

    As for editing existing records, the logic of the portal affects overall detail functionality. It affects the existing records as well. Basically it is not quite possible to use details on portal since they do not have the corresponding records in the SysModuleEntity and SysModuleEntityInPortal to work properly on portal. 

 

Thank you Bohdan!

Bohdan Zdor,

Hello.  Has the ability to add new detail records for Self Service Portal Users been added to the latest version of Creatio?

Hello,

 

The data available for portal users is limited by the [ List of objects available for portal users ] lookup. Only the objects included in the lookup are accessible via the portal UI.

In addition, you should configure your object permissions according to your detail object.

 

Thank you,

Artem.

Show all comments

Hi Community,

In version 7.15.2 where I can find the access to object for external services?

Like 0

Like

1 comments

Dear Fulgen, 

The object name is External Access in the object permissions http://prntscr.com/qgcpjf If you are talking about missing tab in the advanced settings, you can use the operation permission CanUseExternalAccess to add the user who is allowed to access the external services http://prntscr.com/qkdszk and after that select the required permissions for him in the object permissions.

Best regards,

Dean

Show all comments

Hi Community,

In Mobile App Settings menu, is it possible we can allow user to change their password and language.

 

Like 0

Like

1 comments

Dear Fulgen, 

This is quite complex, task, but here is an idea of how you can do this. 

To add new action to the settings page you would need to create a new module and add it in the mobile application manifest to the CustomSchemas.

The code for adding custom action in the settings page is the following: 

Ext.define("Terrasoft.configuration.action.MyAction", {

    extend: "Terrasoft.core.action.AbstractAction",

  

    config: {

        myMessage: null,

    },

  

    execute: function() {

        this.executionStart();

        Terrasoft.MessageBox.showMessage(this.getMyMessage());

        var mainPageController = Terrasoft.util.getMainController();

        Terrasoft.Router.route("basepage", mainPageController, ["calleridsettingspageview", {direction: "left"}]);

        this.executionEnd(true);

    }

});

// Add action

Terrasoft.sdk.Application.addSettingsAction({

    name: "myItemName",

    caption: "MyMobileCustomSchemaTestActionCaption",

    actionClassName: "Terrasoft.configuration.action.MyAction",

    actionClassConfig: {

        myMessage: Terrasoft.LS["MyMobileCustomSchemaTestActionMessage"]

    }

});



MyMobileCustomSchemaTestActionCaption and MyMobileCustomSchemaTestActionMessage are 2 localizable strings. 

After that you can look what does the onChangePasswordClick in the ChangePasswordModuleSchema schema and implement the same logic in mobile when clicking your action. For changing language you would need to display lookup column of SysCulture object and populate the current user's culture with the result of the selection of this field. 

Show all comments

Hi Community,

Any idea how i can customize the image uploading to add validation. I need to restrict the image uploading to accept only png file type and limit the size and dimension of the image. Thanks

Like 0

Like

1 comments

Hello Fulgen,

Size of the file can be regulated using "Attachment max size" system setting (value is specified in megabytes). As for additional file format verification - here is the link to community article where same question was asked and resolved.

Best regards,

Oscar

Show all comments



Dear mates,

I'd like to change my opportunities case version. They use the case v1, i want them to use the case v2.

So i try to change the "DCM Version" from v1 to v2.

The stage did'nt change.

I tryed in SQL and with a process. The fields have well been updated but the opportunity case has not change in the user interface.

Is it possible to change the DCM for an opportunity ?

Thank you,

Nicolas

 

Like 0

Like

2 comments

Dear Nicolas,

If record fits the condition of case that was created it automatically switches to that case. Make sure that opportunities suits the condition you specified. 

Best regards,

Angela

Angela Reyes, even if the opportunities have already been opened in the previous case ? I tryed to switch the case with the "Version DCM" lookup but old opportunities stay in the v1 DCM Version even if it is set to v2.

Show all comments

Hi Community,

Is there a way to trigger automatic refreshment of list data in mobile. Currently in order for you to refresh, user needs to manually drag down the list.

Like 0

Like

2 comments

Hi Fulgen,



I did not really get the case where you need to refresh list automatically. Whenever user adds new record - it will be loaded immediately, and if someone else added a record and you refresh the list for everyone  - it may disturb someone's work. If for example someone was scrolling down the list to find a record and you refresh the page - it will interrupt him a lot.



Nevertheless, I found logic that triggers refreshing which I believe you can use:

if you open mobile emulator (which you can request from support@creatio.com) you can find it in debugger:

pull-refresh.js



Inside there is a class Terrasoft.PullRefresh. This class is used in list-pull-refresh.js: https://prnt.sc/qp2lfp



Regards,

Dmytro

 

Dmytro Smishchenko,

 

Thanks Dmytro. We are changing read permission after user modified a record that is why we need to the the auto refresh. What we wanted, once user will go back from preview page to list page, lists will be refreshed automatically. Any idea how I can do it?

Show all comments

Hi,

I've this query and i would like to translate to ESQ, so far i managed to create this:

but i'm having this error: "uncaught exception: Collection item with name SysUserInRole not found".

I would like to know, why i'm getting this error? Is there a way to fix it? And if there is a better way to do that?

Best regards,

Pedro Pinheiro.

 

Like 0

Like

1 comments

Hi Pedro,



Seems like in your snippet you are setting brackets '[]' in wrong order. Systems tries to add column 'SysUserInRole' to the query which does not exist. I assume that you need to change it for the following:

esq.addColumn("=[SysUserInRole:SysUser].SysRole", "Role")



To make it more clear I have put together an example:

 

var esq = this.Ext.create("Terrasoft.EntitySchemaQuery", {
					rootSchemaName: "SysAdminUnit"
				});
 
				esq.addColumn("Name");
				esq.addColumn("Contact.Name");
				esq.addColumn("=[SysUserInRole:SysRole].SysUser");
 
				var currentUserFilter = this.Terrasoft.createColumnFilterWithParameter(
						this.Terrasoft.ComparisonType.EQUAL,
						"=[SysUserInRole:SysRole].SysUser",
						Terrasoft.SysValue.CURRENT_USER.value);
 
				esq.filters.addItem(currentUserFilter);
 
				esq.getEntityCollection(function(response) {
					debugger;
				}, this);

This example generates following sql query:

 

exec sp_executesql N'
SELECT
	[SysAdminUnit].[Id] [Id],
	[SysAdminUnit].[Name] [Name],
	[Contact].[Name] [Contact.Name],
	[SysUserInRole].[SysUserId] [SysUserInRole.SysUserId],
	[SysUser].[Name] [SysUser.Name]
FROM
	[dbo].[SysAdminUnit] [SysAdminUnit] WITH(NOLOCK)
	LEFT OUTER JOIN [dbo].[Contact] [Contact] WITH(NOLOCK) ON ([Contact].[Id] = [SysAdminUnit].[ContactId])
	LEFT OUTER JOIN [dbo].[SysUserInRole] [SysUserInRole] WITH(NOLOCK) ON ([SysUserInRole].[SysRoleId] = [SysAdminUnit].[Id])
	LEFT OUTER JOIN [dbo].[SysAdminUnit] [SysUser] WITH(NOLOCK) ON ([SysUser].[Id] = [SysUserInRole].[SysUserId])
WHERE
	[SysUserInRole].[SysUserId] = @P1',N'@P1 uniqueidentifier',@P1='7F3B869F-34F3-4F20-AB4D-7480A5FDF647'

Hope it helps!



Regards,

Dmytro

Show all comments