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

2 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

Hello,

In this article, you can find the description of the page, on which the button component should be added.

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

1 comments

Hello,

 

Currently there is no tool to set the default filter in the Freedom UI Timeline component, but our R&D team has a task for implementing this functionality in one of the future application releases. Thank you for reporting this to us and helping us in making the app better!

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

Hi Everyone,

 

We have created a custom Report of a application but when we use the button to download a report it requires us to select records but we don't want to select records we want to download report with date fields for example for this week. Is that possible?

Like 0

Like

2 comments

Bump

Dear Hassan,

 

You can use of the following 2 options:

1 - Create a dynamic folder 

2 - Create a list dashboard to export the list to Excel

 

For your case, the first option would suit best. This way you can easily filter out records by any column (in your case start date) and print this list.

 

You can read more about dynamic filters in the following article:

https://academy.creatio.com/docs/8.x/creatio-apps/creatio-basics/business-data/folders#title-753-3

 

Have a great day!

Show all comments

How could I print the Organizational Roles Chart in PDF of Word?

Like 0

Like

2 comments

Hi Adrian,

 

To print the Organizational Roles, we recommend creating new list dashboard, with the following settings:

Dashboard set up

 

Then you will be able to export this list to Excel:

 

 

Export to Excel

 

Have a great day!

Thank you very much

 

Show all comments

Getting this error while calling the web service from Process . Has changed the maximum execution time also but  still getting. Any suggestions?

System.Net.WebException: The operation has timed out.
  at Terrasoft.Services.Runtime.ServiceClient.<GetResponseData>d__8.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  at Terrasoft.Services.Runtime.ServiceClient.Execute(IServiceClientRequest request, TimeSpan timeout, CancellationToken cancellationToken)
  at Terrasoft.Services.WebServiceUserTaskImplementation.Execute(ProcessWebService userTask, ProcessExecutingContext context)
  at Terrasoft.Core.Process.ProcessFlowElement.CallInternalExecute(ProcessExecutingContext context)
  at Terrasoft.Core.Process.ProcessActivity.RunInCultureScope[T](Func`1 action)
  at Terrasoft.Core.Process.ProcessActivity.ExecuteElement(ProcessExecutingContext context)
  at Terrasoft.Core.Process.ProcessActivity.ExecuteItem(ProcessExecutingContext context)
  at Terrasoft.Core.Process.ProcessFlowElement.Execute(ProcessExecutingContext context)
Like 0

Like

4 comments

.

Vladimir Sokolov,

???

 

Hello!

The error indicates that we couldn't receive a response due to the timeout from the host to which the request was sent. And it's not an issue with the application because, in that case, we would get something like "Thread was being aborted" (if it's a problem with the Web layer - compilation, restart, thread locks in the Entity layer) or a message about a lock (if it's a database issue) or some specific error. But a timeout exclusively indicates that within N (as you configured) seconds, the host to which we sent the request couldn't respond. Hence, the web service element timed out. Most likely, it's because the host to which we sent the request temporarily became unavailable.

Thank you!

Andrii Kurta,

 
Thankyou for your reply, But when i user postman it is working fine and also when manually click on the webservice "send request" it is working fine. Issue only arises in BP .

 

Show all comments