Время создания
Filters
FreedomUI
Freedom_UI
minipage
Sales_Creatio
8.0

Hello. I'm trying to configure a button for Freedom UI that should open a page and pass a parameter (the ID of the page from which the button was clicked) to the new page. But none of the options I've found have worked. Maybe someone can help.

Here's what I'm trying to do:

When the button is clicked:

    handler: async (request, next) => {
      const recordId = await request.$context.Id;
      const handlerChain = sdk.HandlerChainService.instance;
      await handlerChain.process({
        type: "crt.OpenPageRequest",
        schemaName: "UsrAccountContactsForPortal_Minipage",
        $context: request.$context.Id,
      });
 
      return next?.handle(request);
    }

When the page is initialized:

	{
		request: "crt.HandleViewModelInitRequest",
		handler: async (request, next) => {
			const recordId = await request.$context.Id;
			console.log("Received Id:", recordId);
			return next?.handle(request);
		}
	}

Thank you.

Like 0

Like

0 comments
Show all comments
Service_Creatio
8.0

Hello,

We have several Mailboxes which serve as points of entry for email inquires (into Creatio).

I am looking for a way within Creatio to create a "Report" or "Dashboard" which will show the total number of emails Sent & Received by Mailbox for a given date range.

Thus far I am unable to locate an Out of the Box solution. Can this be accomplished via a Custom "Report" or "Dashboard"?
 
 

Like 0

Like

0 comments
Show all comments
Sales_Creatio
Studio_Creatio_free_edition

Hello everyone, I want to learn about creatio CRM. Could you please provide me any reference documents or vedios that hels me to understand from stratch that includes user setup, creating data modules, business process, etc., to Admin responsibilities.


Thank you,

Like 0

Like

0 comments
Show all comments
user
Mention
notification
via
Email

Hi Team,

I have implemented a Business Process that sends an email notification whenever a user is @mentioned in a Case feed. While the emails are sending successfully, they are not appearing in the Case Timeline tab.

How can I properly associate the Email activity created by my process with the parent Case object so that these notifications are logged and visible in the Timeline widget?

Like 0

Like

0 comments
Show all comments
Filters
lookup
dropdown
FreedomUI
handlers
Sales_Creatio_enterprise_edition
8.0

Hi Community,

We have a requirement where we need to create a filter for a specific lookup (“Responsável”) based on the value of another lookup (“Empresa Interna”). You can see both fields in the image below.

To achieve this, we tried implementing the filter using crt.LoadDataRequest, which works. However, the filter only executes once. This means that if we change the “Empresa Interna” value again, the “Responsável” lookup does not update accordingly.

So far, the only workaround we’ve found is to open the lookup in a Selection Window. In this case, the filter executes every time we open the lookup selection page.

However, this is not ideal, we need a way for the filter to execute multiple times when using the dropdown option.

Someone had an issue similar to mine https://community.creatio.com/questions/dynamic-lookup-filter-freedom-ui, but the solution is not clear enough.

How can we apply dynamic filters to a dropdown lookup in FreedomUI? 

Thank you.

 

Best Regards,

Pedro Pinheiro

Like 1

Like

0 comments
Show all comments