Время создания
Filters
Sales_Creatio_enterprise_edition
8.0

We are currently using CLASSIC UI  Enterprise 8.2.3  and make use of LEADS Section as the source of audience for a Bulk Email.

Can we still use the LEADS section in FREEDOM UI  ?  

The FREEDOM UI documentation only makes reference to CONTACT section.
 

Thanks for your help !

 

Like 0

Like

0 comments
Show all comments
#GlobalSearch
global search
Sales_Creatio
8.0

Hello

If new records (for example Accounts, Contacts, Opportunities, Orders, etc.) are added to Creatio via SQL commands, they are not indexed for Global Search.

I've already tried to set the value of some fields of the new records via Business Processes but they are not indexed.

How can I force the new records to be indexed for Global Search?

Thanks

Like 1

Like

0 comments
Show all comments
Extra_space_appearing_in_the_header_section_of_the_contact_page

Hello,

I’ve noticed an issue on the contact page: there’s an unusually large empty space in the header area (see the area marked with the red arrow in the attached screenshot).
This issue occurs for only one user, and when they refresh the page several times, it happens that the problem disappears.
Could you please tell me why this empty space might occur?

.

Like 0

Like

0 comments
Show all comments

I’m trying to filter a lookup in Freedom using the SDK, but this error occurs.

Here’s my code snippet:

await filter.addSchemaColumnFilterWithParameter(
   sdk.ComparisonType.In,
   "RecordId",
   dokumenIds
);

From the log, the dokumenIds look like this:
['283bfe2a-cbe9-4b4c-8baf-2959cd30b84d', '2693a56e-c6a4-40a9-a16e-429db38a9e09', '58f1338c-e20d-4662-93c1-a9da27633a00', '69658b3a-77f6-4d42-ae1f-c0e2dcdd7049', 'fbb5a32b-1a25-4c17-8945-d8c7c264b5f7', '1df81ea2-025f-4a19-9963-da5461c80507']

 

Like 1

Like

1 comments

sdk.ComparisonType.In does not exist. For a "column value is in list" type filter, you need to use filter.addSchemaColumnInFilterWithParameters instead of filter.addSchemaColumnFilterWithParameter (note the "In", and "parameters" instead of "parameter") and use the Comparison Type Equal. e.g. adapting your example:

await filter.addSchemaColumnInFilterWithParameters(
   sdk.ComparisonType.Equal,
   "RecordId",
   dokumenIds
);
Show all comments

How can i get the data Name from selection of multi select lookup?

Like 0

Like

0 comments
Show all comments