Hello,

 

Is anyone aware of a direct integration to Azure AD for OU and User setup? Or is it on the product roadmap?

 

The current LDAP solution will not work.

Like 0

Like

0 comments
Show all comments
Question

Hello community,

 

I couldn't found in the academy documentation on how to use the freedom UI page parameters, can you help me?

 

Like 0

Like

0 comments
Show all comments

New error generated by Parent Account exercise:

Two Use Cases for Lists in Creatio’s Freedom UI (techadv.com)

 

Like 0

Like

1 comments

Hello!

 

Could you please provide a screenshot of the component settings?

Show all comments

New error introduced after Contact exercise:

 

Two Use Cases for Lists in Creatio’s Freedom UI (techadv.com)

 

 

Like 0

Like

1 comments
Best reply

This was resolved by deleting the related object - it was missing a field.

This was resolved by deleting the related object - it was missing a field.

Show all comments

Hi there - I'm trying to figure out where to put this schema in Creatio configuration to allow for a button in mobile.  I've found this article but it isn't clear how/where to apply this:

 

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/mobile-development/customization/freedom-ui/customize-page/references/common-components

 

Thank you!

Like 0

Like

1 comments

Hi!

Please contact our support team at support@creatio.com and describe your situation to us. We will be happy to help you. 

Best regards,
Anton

Show all comments

Hi. 

 

Can you help me to know if there is a way to add more options to this menu? 

I add new results in the lookup, but those options don't appear here. 

Like 0

Like

1 comments

You can add/modify those in the Activity results lookup. However, those values are tied to specific Activity categories. If you select a row in the Activity results lookup there's an icon you can click to define which Categories it is for - see https://share.customerfx.com/QwuoY8RK

Ryan

Show all comments

Unable to login to creatio with below errors .

 

GenerateViewModuleScripts?v=8.1.1.3635:1 Could not load file or assembly "CrtFeatureToggling, Version=8.1.1.3635, Culture=neutral, PublicKeyToken=null" or one of its dependencies. The system cannot find the file specified.

Like 0

Like

1 comments

Hello!

 

Please create a case for the Support Team via support@creatio.com and provide all necessary details for the investigation (screenshot with errors, instance, external access to it).

 

Best regards, 

Mariia

Show all comments

I've built a demo in a Creatio cloud server, and I wasnt to continue working on that package, but now on my dev environment. Is there a way to extract package contents from the zip file to convert it to a file system installed package?

 

thanks in advance.

Like 0

Like

1 comments

Hello!
Absolutely, you can export the package:https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…;
Then install it in your local environment. 
Once the package is installed and unlocked, you can download the package contents into file content: https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…
 

Show all comments
Hi All,
 
I am trying to apply quick filter in the contact section under "All Email" Tab such that is should show all the mails related to the current user 
 
Below is the handler code:
 
	handlers: /**SCHEMA_HANDLERS*/[
	{
		request: "crt.LoadDataRequest",
		handler: async (request, next) => {
	/*if (request.dataSourceName === "ByOwnerQuickFilterInTimeline_ComboBox_List_DS") 
		{
		  const userId = Terrasoft.SysValue.CURRENT_USER.value;
		  console.log(userId);
		  //Create a filter to match the owner field with the current user's ID
			const filter = new sdk.FilterGroup();
			await filter.addExistsFilter("[SysAdminUnit:Contact:Id].Id");
		   //workaround for filters
			const newFilter = Object.assign({}, filter);
			newFilter.items = filter.items;
			request.parameters.push({
						type: "filter",
						value: newFilter
					    });
			console.log("testing");
			request.$context.attributes.ByOwnerQuickFilterInTimeline_Value[0] = [
 					 {
    				checkedState: true,
    				displayValue: "Lori Espinoza",
    				value: "ccb53f93-d5ab-4121-8598-63a8a694eeb"
  					}
					];
 
				console.log("Test");
				return await next?.handle(request);
			}
	}
		
Like 0

Like

0 comments
Show all comments

Hi,

 

We have multiple different fields when we are creating a record. Forexample Time 1, Time 2, Time 3, Name 1, Name 2, Name 3.

 

We know that all 3 name fields can be merged together through a process and the result could be one name fields such as Name with "Name 1 / Name 2 / Name 3".

 

I want to know if this is possible for Time fields too? Can we merge those 3 fields into one field but show all 3 of them in that single field?

Like 0

Like

2 comments

Bump

 

Hello!

Thank you for bringing this matter to our attention.

Regarding the limitation you've mentioned, where the time field can only display one value at a time.
As a workaround, we propose implementing a detail where all time values are stored. 
This approach ensures that when merging the primary record, all associated records in the detail will also be preserved.

Show all comments