I'm working with a business process, I have added a "Perfom Task" element, but I need to be able to set a custom parameter to it. The field already exists in the activity, but I'm not able to set it from them "Perfom Task" element.
According to your need you can use another approach of saving a record: you can call the save function directly (save method parent implementation can be found in the BaseEntityPage module):
this.save();
just add it at the beginning of the code for your button click handling. And also you can execute methods synchronously using Terrasoft.chain method (an example of the usage can be found in this community post).
Please study the logic of the SaveRecordButton element in the BaseDataView module and the logic of the onCardAction method and the "save" tag of the button and apply the same logic to your button.
I have created a button Generate Reference Price (marked with Red), which calls a web-service that populates the Collateral Price indicator detail(marked with yellow).
In the moment That I click the Generate Reference Price button i want that the information entered in the page is saved (just like clicking the Save button marked with brown). You can get a better understanding from the image below.
According to your need you can use another approach of saving a record: you can call the save function directly (save method parent implementation can be found in the BaseEntityPage module):
this.save();
just add it at the beginning of the code for your button click handling. And also you can execute methods synchronously using Terrasoft.chain method (an example of the usage can be found in this community post).
We are able to update the global search result for a few of the OOTB object schemas by replacing the corresponding module such as AccountSearchRowSchema and for contacts - ContactSearchRowSchema.
b)I couldn't find any schema as BankCardSearchRowSchema for the OOTB object
BankCard. How to get this XSearchrowSchema generated?
No details on BankCardSchema
Please note the indexing for the object BankCard is enabled and the results are retrieved but wanted to update the result for this object. Unable to find
You can track if the global search results for the section uses its own SearchRowSchema or the BaseSearchRowSchema using the query below (MS SQL):
SELECT
sme.Id, sme.ActionKindName, ss.[Name], ss.[UId]
FROM
SysModuleEdit sme
JOIN
SysSchema ss
ON
sme.SearchRowSchemaUId= ss.UId
WHERE
sme.SearchRowSchemaUId IS NOT NULL
But you can create a custom SearchRowSchema module for some section that doesn't have its own SearchRowSchema. The example below is for Documents section that also doesn't have its own SearchRowSchema module.
Here is the screenshot of the base result that the Global Search returns when searching a document:
Let's say we want to add the "Status" column to the search result (the one from the screenshot below):
To achieve this:
1) Create the "Page view model" in configurations with "UsrDocumentSearchRowSchema" code, "Document search row" name and select BaseSearchRowSchema as a parent:
3) Find the SysModuleEdit record related to the Documents section (for example using the query below):
SELECT
*
FROM
SysModuleEdit
WHERE
ActionKindName ='Document'
and then update the value for the "SearchRowSchemaUId" column in this record:
UPDATE
SysModuleEdit
SET
SearchRowSchemaUId ='63388eba-74f2-4bc4-85f2-e6c326adb3e5'
WHERE
Id
IN
(
SELECT
Id
FROM
SysModuleEdit
WHERE
ActionKindName ='Document')
4) Refresh the page and check the result. The "Status" column should appear in the SearchRowSchema for documents:
Same operation can be performed to any section needed.
You can track if the global search results for the section uses its own SearchRowSchema or the BaseSearchRowSchema using the query below (MS SQL):
SELECT
sme.Id, sme.ActionKindName, ss.[Name], ss.[UId]
FROM
SysModuleEdit sme
JOIN
SysSchema ss
ON
sme.SearchRowSchemaUId= ss.UId
WHERE
sme.SearchRowSchemaUId IS NOT NULL
But you can create a custom SearchRowSchema module for some section that doesn't have its own SearchRowSchema. The example below is for Documents section that also doesn't have its own SearchRowSchema module.
Here is the screenshot of the base result that the Global Search returns when searching a document:
Let's say we want to add the "Status" column to the search result (the one from the screenshot below):
To achieve this:
1) Create the "Page view model" in configurations with "UsrDocumentSearchRowSchema" code, "Document search row" name and select BaseSearchRowSchema as a parent:
3) Find the SysModuleEdit record related to the Documents section (for example using the query below):
SELECT
*
FROM
SysModuleEdit
WHERE
ActionKindName ='Document'
and then update the value for the "SearchRowSchemaUId" column in this record:
UPDATE
SysModuleEdit
SET
SearchRowSchemaUId ='63388eba-74f2-4bc4-85f2-e6c326adb3e5'
WHERE
Id
IN
(
SELECT
Id
FROM
SysModuleEdit
WHERE
ActionKindName ='Document')
4) Refresh the page and check the result. The "Status" column should appear in the SearchRowSchema for documents:
Same operation can be performed to any section needed.
I am sorry, but I don't need the BaseSearchRowSchema from your app (I do also have access to the BaseSearchRowSchema module from the bank bundle app), I need your custom SearchRowSchema code for the BankCard schema.
Please read my post with the instruction carefully. I've asked to create a replacing view module using the BaseSearchRowSchema as a parent and then connect it to the SysModuleEdit record of your section using the SearchRowSchemaUId column (and provided an example with the Documents section that also don't have its own SearchRowSchema).
I have followed the same steps as suggested and there needs a little update.
Step 1: Find the target object for GS result update (Here, it is BankCard)
Step 2: Create the "Page view model" in configurations with "CTZBanCardSearchRowSchema" code, "BankCard search row" name and select BaseSearchRowSchema as a parent
Step 3: Update the design of the schema and save.
Step 4: Find the SysModuleEdit record related to the BankCard section (for example using the query below):
SELECT
*
FROM
SysModuleEdit
WHERE
ActionKindName ='BankCard'
Step 5: update the value for the "SearchRowSchemaUId" column in the target objects record.
UPDATE
SysModuleEdit
SET
SearchRowSchemaUId ='XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'
WHERE
Id
IN
(
SELECT
Id
FROM
SysModuleEdit
WHERE
ActionKindName ='BankCard')
**Note: This Column's "SearchRowSchemaUId" value should be the UID of the newly created Page view model performed in Step 2.
UID can be obtained by using the below query,
select Id, UId, Name from SysSchema
where
Name like ('%CTZBanCardSearchRowSchema%')
I have a business scenario where let's say a user will first filter records for export(let's say export to excel) and if the records are more than 50 then before exporting the records user requires an approval from the department admin over email, Once the user receive an approval over email then only he/she will be able to export those records from system.
Note : Email for approval can be sent from the system, but approval email received will not come into the system.
Please suggest you solution how we can achieve this in Creatio.
This task can be achieved using the following scenario:
1) Create two boolean columns in the "System administration object" (SysAdminUnit) object. One of them will be called "Was approval sent?" the second will be "Was approved?"
2) The preparation method that is called when clicking the export to excel action is called exportToExcel and located in the BaseDataView module that then calls the exportToExcel method from the GridUtilitiesV2 that then calls exportToExcelFile method from the DataUtilities module (all according to the call stack of calls, you can debug it on your end).
You need to add additional check if the "Was approved?" and "Was approval sent?" booleans are checked for the user that initiated the export. To get the current user info you can use the user session (can be received using Terrasoft.sessionId) and then you can perform an ESQ select query to SysUserSession object to get the UserId and then perform another ESQ select query to get information from the SysAdminUnit object directly (we are interested in two boolean columns and the SysAdminUnit Id column value).
3) If the "Was approved?" and "Was approval sent?" booleans are not checked then you need to trigger a business process that will send an email (using ProcessModuleUtilities). You need to pass the SysAdminUnit Id column value as a parameter of this process and use it inside the process to form a link to either Reject and Approve "Call to action" buttons.
4) To either approve or reject the possibility of export an email with two options "Approve" and "Reject" should be sent. The link should lead you to the webservice on the Creatio side. This webservice should update the specific SysAdminUnit record with an Id that will be passed as a parameter to this webservice (and the parameter will be specified as a part of the link).
As for the link itself it can be formed as a text parameter (based on the Id passed from the UI using ProcessModuleUtilities) and passed to the HTML body of the custom template in the "Send email" element as:
Before sending an email the "Was approval sent?" checkbox should be checked for the SysAdminUnit record (using modify data for example).
5) The webservice will update the boolean columns "Was approved?" and "Was approval sent?" using the following scenario:
5.1) If the approval was rejected - uncheck both "Was approved?" and "Was approval sent?" checkboxes for the user
5.2) If the approval was approved - check the "Was approved?" boolean and uncheck the "Was approval sent?".
6) On the section module also add additional check for both boolean columns (as in step 2): if the "Was approved?" is checked and the number of exported items is greater than 50 - permit the export and uncheck the "Was approved?" checkbox for the user.
Please study the scenario I described above and use it when implementing the logic on your end.
Any idea how can I achieve this requirement. I am throwing a custom exception message from object validation. However, in mobile it is showing as generic error, user needs to click on "Send Report" to view the actual exception message I was throwing from object validation. How can I show it on mobile's pop dialog right away?
I am sure that your task can be achieved in another way. Please see this Academy article regarding push notifications where you can pass the validation message.
I want to override qualify button method in Leads section and check if some of the fields have appropriate value. If not, I want to stop the lead qualification process. Can someone help me in achieving the same?
As I already stated here the method that is called upon the "Qualify" button click is onLeadManagementButtonClick (for the LeadPageV2 module). In the LeadSectionV2 the method is onLeadManagementSectionButtonClick. You can override both methods in the replaced modules: in LeadPageV2 you can add additional this.get(Column)!= check and then call parent method and in the LeadSectionV2 you need to get ActiveRow and perform an ESQ select query to check if the record by ActiveRow has the data needed to start the process.
ESQ is asynchronous so you won't be able to call the parent method. But we can do it in another way. Try this code:
onLeadManagementSectionButtonClick: function(){
var gridData =this.get("GridData");
var activeRow =this.get("ActiveRow");
var activeRowGridData = gridData.get(activeRow);
var activeRowGridDataAccount = activeRowGridData.get("Account");
var activeRowGridDataEmail = activeRowGridData.get("Email");if(!activeRowGridDataAccount ||!activeRowGridDataEmail){
Terrasoft.showErrorMessage("error msg");return;}this.callParent(arguments);}
But in this case you will have to display both account and email columns in the lead section grid:
This approach works on my side, should also work on your end.
Not sure, the code should be debugged to find out the proper way of the customer's business task completeness. I just gave an example, the final implementation can differ.
How can I set up B2B2C hierarchy in CRM, think of it as a franchise based business where each franchise has its own employees, customers/leads/accounts/deals etc. Franchise employees can login and manage their leads, contacts and deals and we at the top of hierarchy can see all franchises and aggregated the data. Does Creatio CRM supports this by default and if not then can we customize and supports it. We need this B2B2C hierarchy for all marketing, sales and service. Please suggest.
Unfortunately, our platform does not have any presents for such projects.
Although, it is possible to achieve such configuration by setting up roles and distributing the access to the system between your customers.
For example: You can branch out the access in the way that only certain users will full access to all the data on your instance while "franchises" will be able to access the information only related to them.
Thanks for providing that information, but what is going to be name of entity/object which will represent a Franchise/Partner in creation CRM, I can see Partnerships, Accounts etc but not sure it can be used to represents a franchise or not. Also can we achieve the flexibility of assigning a lead, deal to a user where dropdown will only show the users/employees of that franchise not all users in system. We can filter by franchise, means can see all leads, contacts, deals etc for each franchise and so on. Can we customize the Creation CRM which means all sales, marketing and service to this much extent or its too much to do, I mean adding new tables/entities or columns in user tables etc. Please suggest.
Thanks for providing that link, I have installed this app but not sure what is entity for franchise in this app, can you please share some link to its documentation so that I can understand it.
Is it possible in a mass email to use the "CALL TO ACTION" block without "creatio" adding the tracking information in the "CALL TO ACTION" link in the email?
I have to send an email with a link to a web application and the parameters added for tracking in the "CALL TO ACTION" are causing some problems for the web application.
Parameters are added to links automatically and they cannot be turned off. They are needed in order to find out which recipient and which bulk email the review belongs to.
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.