I need to have the total price with tax (Quebec taxes) but it doesn't work. I can see the tax amount but it's not added to the total amount of the order. 

1. I defined the tax value in "Taxes lookup" (See screenshot)

2. I have Price includes taxes set to have the tax in the total 

3. I defined quebec taxes as default tax in system settings

 

I'm I missing anything ??

Like 0

Like

4 comments

Sanae ADRAR,

 

Hello,

 

Seems that due to your business task you need to disable the system setting. Please disable the system setting, relogin to the system, create new order, add a product there and check the result.

 

Best regards,

Oscar

Oscar Dylan,

Wow it's working !! Thank you Oscar !

Show all comments

Hi Community, 

I have two questions about mobile app usage : 

1. Where can we have access to emails using the mobile app

2. Same question about changing lead or opportunity stages, We don't see them in the mobile app. How can we have the same view of stages in the mobile app as in the web page. 

 

Thank you 

 

Like 0

Like

2 comments

Hello!

 

1) As far as I know, the mobile app is not the best option for working with emails since email app could handle this task much better. You can create a detail from the activity object to view them. If you want to send emails it will be better to use mailbox application.

 

2) To see or edit stages you can add "stage" field to the edit page in the mobile app. If you mean DCM panel then, unfortunately, this functionality is not supported, however, this functionality may be added in the upcoming releases

 

Best regards,

Angela

 

Clear. Thank you !!

Show all comments

Hi everybody,

 

I'm trying to introduce a method that when selecting an element from the grid, it saves the id of an attribute in a variable I created and when I delete that same record it has to start a process.

However, when I run all this pops up this error.

This is the code i implemented in order to achieve this.

Thanks in advance.

 

Best regards,

Pedro Pinheiro

Like 1

Like

2 comments
Best reply

The order of the modules at the top doesn't match/line up. You have this:

define("imdSchema10Detail", ["ConfigurationGrid", "ConfigurationGridGenerator", "ConfigurationGridUtilities", "ProcessModuleUtilities"] function(ProcessModuleUtilities) {

You're actually getting ConfigurationGrid loaded into the ProcessModuleUtilities param since it's the first AMD module listed, which will go into the first param. You need to change the order to this:

define("imdSchema10Detail", ["ProcessModuleUtilities", "ConfigurationGrid", "ConfigurationGridGenerator", "ConfigurationGridUtilities"] function(ProcessModuleUtilities) {

Ryan 

The order of the modules at the top doesn't match/line up. You have this:

define("imdSchema10Detail", ["ConfigurationGrid", "ConfigurationGridGenerator", "ConfigurationGridUtilities", "ProcessModuleUtilities"] function(ProcessModuleUtilities) {

You're actually getting ConfigurationGrid loaded into the ProcessModuleUtilities param since it's the first AMD module listed, which will go into the first param. You need to change the order to this:

define("imdSchema10Detail", ["ProcessModuleUtilities", "ConfigurationGrid", "ConfigurationGridGenerator", "ConfigurationGridUtilities"] function(ProcessModuleUtilities) {

Ryan 

Ryan Farley,

​​​​​​The solution you provided is working. 

 

Thank you.

 

Best regards,

Pedro Pinheiro

Show all comments

If we change the status of an activity to closed, it still shows up in the related account as not completed (in the DCM part). How do we make the system see these activities as closed? 

 

Right now they only dissapear when they go to the account and click complete.

 

I tried looking at the complete request in the network console, but all I see is that it sets the activity status to the same status it had before: https://prnt.sc/rj40so 

Like 0

Like

5 comments

Hi Jonas!

 

How are your completing activities? Can you record a video of this behaviour? 

Angela Reyes,

Not really. We have created a second lookup that is more granular and maps to the Activity.Status in client code. When they select a value from this lookup, we set Activity.Status behind the scenes. However, when I check the database after these operations, Activity.Status is set to Closed.

 

This is the same status that I can see being used by the Dcm module. We want to have the same behaviour as when you would click the complete button in this screen: https://prnt.sc/rj5a24 and then click save.

Jonas Van der Aa,

and how is the status changed to Closed then? 

Angela Reyes,

This code in ActivityPageV2

 

syncActivityAndVisitStatus: function() {
				if (this.isVisit() === false) {
					return;
				}
 
				var visitStatus = this.get("UsrVisitStatus").value;
 
				this.console.trace("Visit status = " + this.get("UsrVisitStatus").displayValue);
				const tracePrefix = "Set activity status to ";
 
				switch (visitStatus) {
					case "33e7d31f-9e8b-4e36-b716-8b49370a6b1e": //Visit Scheduled
						this.set("ActivityStatus", this._createLookup("Not started", "384d4b84-58e6-df11-971b-001d60e938c6"));
						this.console.trace(tracePrefix + "Not Started");
						break;
					case "3e023a20-474d-426d-9a3e-73e25db47ea3": //Close & Notify
						this.set("ActivityStatus", this._createLookup("Completed","4bdbb88f-58e6-df11-971b-001d60e938c6"));
						this.console.trace(tracePrefix + "Completed");
						break;
					default: // everything else
						this.set("ActivityStatus", this._createLookup("In Progress", "394d4b84-58e6-df11-971b-001d60e938c6"));
						this.console.trace(tracePrefix + "In Progress");
				}
			},

This method is triggered by the following attribute:

			"ActivityStatus": {
				dependencies: [{
					columns: ["UsrVisitStatus"],
					methodName: "syncActivityAndVisitStatus"
				}]
			},

 

Dear Jonas,

 

In order to provide you with a proper solution, please tell us how the “_createLookup” function works. I could not find the source code of the function, so it should be your custom function. Looking forward to your reply.

 

Best regards,

Norton

Show all comments

Right now when I make a rule, my users can click past the screen that tells them they are making a duplicate. I want to make one of the contact rules not overridable. I don't see how to do that on the duplicate rule set up screen. 

 

Any thoughts?

Like 0

Like

3 comments
Best reply

Dear Heather,

 

Thank you for clarification.

It is not possible to prevent users from ignoring this message. The only option is to run the duplicate search later to find all duplicates created by users and merge them.

 

Regards,

Dean

Dear Heather,

 

Unfortunately, there is no such feature that would prevent the users from editing some particular duplicates search rule. However, you can restrict your users from accessing the rules section. You need to remove the user from CanManageDuplicatesRules operation permission. After that, when trying to access the duplicate search rules section, the user will not be able to open it and will see this notification:

Note, if your different user is a member of the System Administrators role, he will still be able to access the section since it is not possible to restrict the administrators access level.

 

Regards,

Dean

Hi Dean- 

I'm not worried about someone editing my rule. I am trying to make users stop making duplicates. 

Right now when the system senses a duplicate - it creates a pop-up that says its a duplicate. My users have two options at that point. They can keep going and still create the duplicate or go back to the starting screen. I don't want them to be able to ignore the duplicate warning. 

 

 

 

 

Dear Heather,

 

Thank you for clarification.

It is not possible to prevent users from ignoring this message. The only option is to run the duplicate search later to find all duplicates created by users and merge them.

 

Regards,

Dean

Show all comments

I'm using  CRM Version 7.15.3.1649(latest) cloud login and installed 'Zoom Meeting Connector for Creatio' plugin before meeting schedule as well. (Sales --> Activities -->New Task)

I created the task with 'Create Zoom Meeting'  and once it saved this error is popped up 'Unexpected character encountered while parsing value: <. Path '', line 0, position 0.'  as in below screenshot. Could you please help me to fix the issue.

Like 0

Like

3 comments

Hi Anusha,

 

the error has appeared in the 7.15.3 version. Zoom users weren't automatically imported to Creatio and a Zoom meeting can't be exported correctly. Please use the Creatio product of the 7.15.2 version. The responsible team needs time to fix the issue on the 7.15.3 version.

Thanks for the quick response. Could you please instruct me how to revert 7.15.2 version. I'm using could login of the CRM enterprise trial version.

Dear community,

I got this error while I was configuring the API Secret of Zoom App. 

 

 

I've just inserted the value but it didn't work. 

I'm using a 7.18.1 version of Creatio to test the integration, but in this way I'm not able to configure it. 

 

What's wrong?

 

Thank you in advance. 

 

Show all comments

Hi everyone,

 

I'm having trouble installing the Excel Reports application ( https://marketplace.creatio.com/app/excel-reports-builder-creatio ) on my local machine.

Everytime, I tried to add the Excel Reports section to my workplace I got this error:

I've not gotten this error before, even after compiling the machine, logging out and clearing the cache, the error persists.

 

Thanks in advance.

 

Best Regards,

Pedro Pinheiro

 

Like 1

Like

2 comments

I get this often as well, always with this specific add-on (the Excel reports package). I always play around with it and eventually get it to work where I can add it to a workspace, but never really sure how to get it to work. Hoping to se reply on this.

Hi Pedro,

please specify the Creatio product and version to reproduce the issue. Try to add first any basic section to the workplace and after that the 'Excel reports' section. 

Show all comments

Hi everyone,

 

I would like to know how can i add quick filters for a detail, like the ones used for section pages. (check print bellow)

 

I've tried to implement this Quick Filter in the same way i implemented the section pages one, without success.

 

 

 

File attachments
Like 1

Like

1 comments

Hello Pedro,

 

Similar questions were previously reviewed on the Community here https://community.creatio.com/questions/quick-filters-detail and here https://community.creatio.com/questions/prefilter-detail-grid-page-load. Please use these articles I've mentioned so to resolve your business task.

 

Best regards,

Oscar

Show all comments

In dashboards, I can sort only by grouping field or by it's result:

 

When I sort by grouping field I get a meaningless order:

The lookup field I group by:

I want to sort it by the Days start value. So the expected order would be the following:

Is there a way to sort by a particular field?

 

Like 2

Like

1 comments

Hi Yuriy,



Unfortunately, there's no possibility to sort by a particular field in Creatio dashboards now.



Our R&D is already working on improving the dashboard customization so the advanced sorting might be implemented in future releases.



Thank you.

Show all comments

Hi everybody,

 

Is there a way to apply CSS styles for this type of Dashboard?

I want to change the color of the field represented in the screenshot above, but I couldn't find the right methods to do it. Any idea on how to implement this?

 

Thanks in advance.

 

Best regards,

Pedro Pinheiro

 

Like 1

Like

1 comments

Hello Pedro,

 

Unfortunately, it is not possible to add the custom CSS styles to the dashboards. You can only create the custom widget that will may the  custom CSS styles. More details can be found here https://academy.bpmonline.com/documents/technic-sdk/7-12/adding-custom-dashboard-widget?document=&_ga=2.12020211.678650190.1567427398-650750588.1567427398

 

We already had similar requests from multiple customers, therefore this possibility will be available in the future application versions only.

 

Best regards,

Oscar

Show all comments