Hi team,

 

Please suggest me some way to remove the decimals from currency data type.

 

Please note that I can not use integer data type in this case as the data input value range is very less in integer which does not allow huge numbers like 180000000000 to be entered which is why I'm using currency data type.

 

Kindly help

 

Thanks,

 

Sarika

Like 0

Like

1 comments

Dear Sarika,

 

Thank you for your question!

Please, consider using string data type to achieve what you want.

 

Best regards,

Anastasiia

Show all comments

Hi Team,

 

Please suggest me some way of sorting the lookup values in order.

 

For example, if the two values are 151 and 50, ideally 50 should appear first and then 151 should be there. but in creatio, sorting is done based on the first character or number which is why 151 is appearing before 50 in the list.

 

Similarly, I want to be display another lookup with values , A , A+S and S in the order A , S and A+S. but right now, it is sorting it as  A , A+S and S

 

To resolve this sorting issue, I already had tried numbering the values with 1, 2 and 3 as :

1. A

2. S

3. A+S

 

which is helping in sorting but the client is not satisfied with this approach as it is adding extra numeric values in the lookup .

kindly help!

 

Thanks,

 

Sarika

Like 0

Like

0 comments
Show all comments
Question

Hi Team,

 

I have applied red asterisk using CSS on the fields that are mandatory in a section edit page using a client module for CSS.

 

 

The asterisk are visible in the pre-existing records but not in the new record. Please help me resolve this issue.

 

New record page :

 

 

Previously saved Record:

 

 

Also I'm facing this error of amplitude not defined 

 

Many Thanks,

 

Sarika

Like 0

Like

2 comments

Hi Sarika,

 

It the fields are mandatory then make them mandatory in the section wizard directly, but not applying red asterisk via css. Using the wizard the fields will be mandatory even when adding a new record.

 

Best regads,

Oscar

Hi Oscar, the labels that you can see are field default values that is being used as field label which I have implemented for proper alignment of section fields layout.

The Label Group Name is itself a field and the blank space for the value for Group name is another field whose title has been hidden.

That is why, for applying style, I have used CSS.

 

Show all comments

Hi Team,

 

I urgently need to confirm if we can install the package with the development done on instance with version 7.18.5.1500 to the instance with the new version, i.e, 8.0.

 

Please confirm.

 

Best regards

 

Sarika

 

Like 0

Like

1 comments

Hello Sarika, 

 

We do not recommend transferring customizations with a package between instances with different versions as it may lead to the errors while applying customizations and as a result affect the system.

 

I'd suggest to first update the instances to the same version, double-check whether the customizations are still working properly and then proceed with transferring it from one instance to another.

Hope it clarifies!

Best regards,

Anastasiia

Show all comments

Hi Team,

 

I urgently need one solution for how we can highlight or apply background color to a specific word in the sentence that is modified.

 

For example : There is one string field in section. On record creation , the value is entered in the field - 'This is a example.' and record is saved.

 

Now, later if the user modifies the value to 'This is an example'., the changed field value should be highlighted in the following manner which means only the specific word that is changed is highlighted in color.

 

 

Please provide some solution for this.

 

Sarika

 

 

 

 

Like 0

Like

1 comments

Hello Sarika,

 

There is no such oob functionality, implementation of this idea will require development. Unfortunately, we do not have any ready to use examples of how it can be achieved with code. 

 

I have forwarded your idea to our responsible R&D team to consider it's implementation in the upcoming versions of the Application. 

 

Thank you for helping us to make our application better!

 

Best regards,

Anastasiia

 

Show all comments

Hi,



Any ideas how to change the order of Account and Contact in the "Customer" selection of opportunities ?





 

Like 0

Like

1 comments

Nevermind found it, but leaving the post as this can interest some people:

 

attributes: {
			"Client": {
				"multiLookupColumns": ["Account","Contact"]
			}

 

Show all comments

There is an item was purchased by this customer.

But when we search the accounts -> Solutions, The Asset Named 'The one they purchased' is not listed in the ‘Software-Licenses’ list.

Like 0

Like

1 comments

Hello Selva,



Please contact our support team (support@creatio.com). Please provide us with more details on the issue.

 

Best regards,

Bogdan

Show all comments

Hi,



How can we filter to left "client" field in opportunities to show only accounts for selection and not contacts or accounts ?



Damien

Like 0

Like

2 comments
Best reply

Hi Damien,

You can add this to the page attributes to remove the contact lookup option:

attributes: {
  "Client": {
    "multiLookupColumns": ["Account"]
  }
}

Ryan

Hi Damien,

You can add this to the page attributes to remove the contact lookup option:

attributes: {
  "Client": {
    "multiLookupColumns": ["Account"]
  }
}

Ryan

Ryan Farley,

 



Thanks, worked perfectly :)

Show all comments

Hi community!

I enabled Approvals in the case section and added Approval in the business process. The problem is that counter is not increased in the notification panel but approval itself is shown in the "Approval notification".

Best regards, 

Jana

Like 0

Like

2 comments

Hello Jana,

 

As we replied in your case, the most likely reason for this behavior is a missing piece of code that marks your notifications as read.

 

Please check if you have MarkNotificationAsRead in your custom code in order for notifications to properly display.

 

You can copy the code from the NotificationService object in configuration files.

 

Thank you,

Artem.

Hello Artem,

 

We are also facing the same issue. Ours is not a custom code, all we do is create an approval task via business process. While the approval task is seen in notification center, the counter does not get increased.

 

Please advise

 

Test process creates an approval task for current user

After process is triggered, task appears for current user, but no badge or counter is seen as highlighted in yellow.

Show all comments

Hi Team,

 

How can we clear the value of any decimal/integer/Currency field value.

I have tried using the below given approaches for achieving this :

 

1. I have applied one business rule through which when the checkbox adjacent to the decimal/integer/Currency field is unchecked, the value in the decimal/integer/Currency field becomes 0.

 

2. setting the field value as null by code on edit page of the section

(this.set("UsrFieldName"),null);

 

I want the field value to be absolutely cleared out and even there should not be any 0 by default value.

 

Please help me find any solution to this.

 

Many Thanks,

 

Sarika

Like 0

Like

1 comments

Hello Sarika, 

 

As of now, there is no way to replace "0" with empty/blank value for columns with Integer/Decimal/Currency type as it will contradict working logic of a column (unspecified/empty value is being converted to 0). 

We already have a corresponding query registered for our R&D team to implement such functionality in the upcoming versions of the application, I will assign your request to the project in order to increase its priority.

Thank you!

 

Best regards,

Anastasiia

Show all comments