Hi Team,



I have followed a below setup to register a case automatically  from emails.

https://academy.creatio.com/docs/user/service_tools/service_cases/case_settings/set_up_case_registration_from_emails_from_mailbox_alias



I configured a mail box and when a mail received, a new case is Created.



I see that this business process runs to send a notification when a case is created.

BP - Incoming email registration process 



when a case stage is changed, I noticed that this business process triggers 

BP - Send email to contact on case status change, this is linked to another Sub-Process BP - Send email to case contact.



Here, I would like to send the email only to the contact from whom a mail is received to Creatio CRM instance. All the CC has to be removed?



How to achieve this?





Scenario : MAIL Notification is sent only to the sender not to the people in CC



STEP 1 : support@MyCreatio.com ---> configured in Creatio CRM Instance

 

STEP 2 : A user (From : TestUser@Company.com , CC : TestUser1@Company.com, TestUser2@Company.com) sends a mail to support@MyCreatio.com asking for a clarification/request.



STEP 3 : A new case is created and a notification is sent to the user who created a request (i.e., From : Support@MyCreatio.com, TO :  TestUser@Company.com, CC : TestUser1@Company.com, TestUser2@Company.com).



Here, I want to remove the CC and the notification is sent only to  TestUser@Company.com from whom the request is created.





Please find the attached image below for reference,

 

 

 

Best Regards,

Bhoobalan P.

 

Like 0

Like

4 comments

Hello Bhoonalan, 



Please enable Features CasesOnlyRespondToSender  and SendOnlyToContactEmail .  For MSSQL, use following script:



DECLARE @featureCode varchar(max) = 'Feature code',

 @featureId uniqueidentifier;

set @featureId = (select top 1 Id from Feature where Code = @featureCode);

IF @featureId is null

BEGIN

 insert into Feature

  (Name, Code)

 values

  (@featureCode, @featureCode);

 set @featureId = (select top 1 Id from Feature where Code = @featureCode);

END;

delete from AdminUnitFeatureState where FeatureId = @featureId;

insert into AdminUnitFeatureState

 (SysAdminUnitId, FeatureState, FeatureId)

values

 ('A29A3BA5-4B0D-DE11-9A51-005056C00008', 1, @featureId);



This script enables the feature , or creates the feature if it's not created on your instance 



Also, please enable sysSetting AutoNotifyOnlyContact.



Best Regards,

Yurii.

Yurii Sokil,

Thanks for the response!



I ran this query but I couldn't find the following two codes casesOnlyRespondToSender  and SendOnlyToContactEmail  in Feature table & AdminUnitFeatureState.



Kindly help me with where can I find the mentioned field values?

1.CasesOnlyRespondToSender  

2.SendOnlyToContactEmail  

Dear Bhoobalan, 



If you cannot find this codes, it means that the record for that feature doesn't exist in the Feature Table. 

Using the query i provided you can update the feature if it exists, or create it if it doesn't. So in your case the query will look like this(i'll only show the relevant piece of code, please use the full query mentioned above) : 



DECLARE @featureCode varchar(max) = 'casesOnlyRespondToSender',

.........

DECLARE @featureCode varchar(max) = 'SendOnlyToContactEmail ',

 ...........



Best regards,

Yurii.

 



​​​​​​​

Yurii Sokil,

Great, Appreciate your assistance!



This helps and also can you please help me with reverting the changes to the previous or existing ones.

Show all comments

Hi Community,

 

When we download a printable, first the printable is downloaded and later we are manually clicking on the downloaded printable to view the content.

 

Question : is there a way on clicking of the printable, we open the pfd/word document instead of downloading it/parallelly the printable is downloaded and viewed instead of manually clicking on the downloaded document?

Like 0

Like

4 comments

Hi Amritha,

 

There is no option to preview or open the printable report without downloading the file itself. Theoretically, it is possible to develop custom preview of the report in the application, but it would be quite a complicated development task. Unfortunately, we do not have any examples of such implementation.

I will register your idea in our R&D team backlog, it might be available in future application versions.

 

Regards,

Dean

Dean Parrett,

Is is possible to open the downloaded printable automatically post downloading it instead of manually going to downloads and clicking on the downloaded printable?

 

Amritha Mayan Gorky,

Yes, but this question relates more to your browser. For example in Chrome, there is an option to open files of some certain type automatically after the download. After downloading the file, select Always open files of this type option. Next time when downloading Word file, like in my case, it will be opened automatically.

 

Regards,

Dean

Hi Lori Keller,

 

We have already registered the idea for our R&D team to implement this functionality in further releases. I will assign your case to this project in order to increase its priority.  

Show all comments

NOTE: I though I already sent out a post on this but I think it may have filed to go through due to internet connection issues. So I'm posting the topic again.

Hello, I am trying to get another local development environment working on my machine. I followed the instructions and got to the point that the login page is being displayed, but when I input the Supervisor password and username I get taken to the browsers too many redirects error page.

What could be causing this?

Like 0

Like

6 comments

Dear Nick,

Please recheck the login that you are using, because there is a problem in bpm'online so if there are empty spaces after login or if there are special symbols in the login (like ę or e~), the system couldn't read them and can result in the page with the information on too many redirects.

Best regards,

Oscar

Dear Nick,

Please also check if your Redis is the latest version, because there can be a problem with logging if you are using Redis 2.4.6 for example.

Best regards,

Oscar

Oscar Dylan,

Hi, thanks for responding. My redis version seems to be 2.4.6. What version should I be using? The latest is 5.

 

Nick

Also, if I replace 2.6 with 5 will I need to re-setup he Redis or can I simply just install to the same folder and it will work?\

Thanks

Nick

Dear Nick,

You'll need to install the latest version of Redis that is 5.0.0 and use it from now on. It should work right after installation, but you'll need to re-setup Redis in order to work with the new version.



Regards,

Oscar

Okay, I installed a more recent version of Redis and that is now working. Thanks.

Show all comments