We want to add a button in communication panel through which cases section should open in the side pane ( opens on clicking of buttons in communication panel) through with cases can be created quickly without closing the current section page opened in the tab.
We have created button in communication panel but we are finding references to open the page in side pane.
if anyone of you can help on this ,I will really appreciate it.
For Classic, it's doable, but definitely not as easy (there is not a no code approach for classic shell, only for Freedom shell). If you're using classic shell, best approach is to look at the code for the other panels and duplicate for your needs.
Thank you for your question. First of all, are you using the Shell of Freedom UI in the section from which you are opening the side panel? Secondly, while I believe that creating a case from the side panel is possible, I'm not sure if your logic can be fully implemented. Also, would it be easier to create the case using a modal page in your section?
I'll be happy to assist you and will be waiting for your response.
Thankyou you your reply currently we are using the classic UI,we are not using Shell of Freedom UI in the section.
The requirement is to create a quick access option for creating cases without needing to jump on another page and also in a way that the information from the current open page can be visible properly as it is going to help in case creation.
The best that we thought of was using side panel for case creation while the user can see all information in the current open page.Is there any way you can help me achieve that?
Answering question for Ryan - I am almost certain that, unfortunately not. That's why I was asking if you are using shell or freedom ui. However it is still possible to create a modal/minipage regardless.
For Classic, it's doable, but definitely not as easy (there is not a no code approach for classic shell, only for Freedom shell). If you're using classic shell, best approach is to look at the code for the other panels and duplicate for your needs.
Case Management platform has being configured and distributed to one of our clients. They had a request to change the page that appear after the customer provides a feedback through email. Image of the page provided below.
The Logo and text in the page need to be changed.
Can someone please provide me a method configure this?
The only way to customize this page using out-of-the-box tools is the system setting called "Logo - Thank you for your feedback" that is described in the Academy article here.
The only way to completely change this page is to apply changes to "CaseRatingFeedbackPage" schema (using additional development). Bogdan is already CC'd to this email so I hope he will be able to find a developer who can adjust this page base on your needs in terms of advisory hours.
At the same time we have two problems registered to our R&D team so to make the possibility to change this page more user-friendly (using standard tools such as section wizard), but unfortunately there is no ETA on this task. Once it is done - we will update all our clients and partners about it in our official release notes.
I need to remove the "Actions" button from the Case record page, I have tried the following codes in the DIFF array, to do remove the button but none of them seem to work:
There is an out-of-the-box Creatio behaviour by which, whenever a Case is saved without a Contact and Account filled in, a validation pops up on saving the Case record that says, "Please fill in either Account or Contact to proceed".
According to the application logic, each case has to have selected contact or an account. They are required by default and this logic is implemented with code, regardless the section wizard settings.
It can be changes in CasePage schema of the Case package by overriding
“validateAccountOrContactFilling” function.
In order to override the “validateAccountOrContactFilling” function please do the following:
1. Create a replacing client module of the “CasePage” schema. It is possible to use section wizard for it.
2. Add the following code to the “methods” property:
Please note the method should return the “result” object that contains the “success” property with the “true” value. This will allow the “result” object to successfully complete a validation in the "ValidateResponse" method
According to the application logic, each case has to have selected contact or an account. They are required by default and this logic is implemented with code, regardless the section wizard settings.
It can be changes in CasePage schema of the Case package by overriding
“validateAccountOrContactFilling” function.
In order to override the “validateAccountOrContactFilling” function please do the following:
1. Create a replacing client module of the “CasePage” schema. It is possible to use section wizard for it.
2. Add the following code to the “methods” property:
Please note the method should return the “result” object that contains the “success” property with the “true” value. This will allow the “result” object to successfully complete a validation in the "ValidateResponse" method