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

0 comments
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

0 comments
Show all comments

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

Like 0

Like

0 comments
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

Hello
Im trying to set the self registration for external users but the license is not distribution automatic can you help me to know how can I configure that?

Like 0

Like

3 comments

I believe this is set in the web.config SspUserRegistrationLicPackage key (unless that has changed at some point). 

If this is an on-site application modify web.config file in Terrasoft.WebApp folder:

<add key="SspUserRegistrationLicPackage" value ="License name here" />

If this is cloud application contact creatio support and they can add that.

Ryan

Hi Ryan, thank you 

Ryan Farley,

Do you think, we'll get nocode capabilities at some point to change these webconfig settings ? 😏

Damien

Show all comments

Does anyone know if Creatio works with LTI or how to use it?

Like 1

Like

3 comments
Best reply

Hello, 
 

Unfortunately, we don't have such functionality, but you can use our training, where all videos are recorded along with instructions on how to use the system:
 

https://academy.creatio.com/docs/training

Regards,

Orkhan

Hello, 
 

Unfortunately, we don't have such functionality, but you can use our training, where all videos are recorded along with instructions on how to use the system:
 

https://academy.creatio.com/docs/training

Regards,

Orkhan

Orkhan,

Thank you

Licia Moura,


Greetings,
 

Unfortunately, we don't have such examples of realization, as well as we don't have such applications created by our partners in the marketplace.

 

Show all comments

hi guys i have an error in ssms when i add user as a local then add a log in user then when i execute in iis its appear an error say's that user id error?? any help 

Like 0

Like

1 comments

Hello,

 

Please contact our support team directly at support@creatio.com and describe the issue in detail there so we could help you resolve this.

Show all comments

Hey, everyone! 
I've been trying to mass update a property (Column) from a table in a Demo envoyrement. 

I've asked Gemini and gpt. Bolth returned me that there should be a "Quick Update" button, but it's nowhere to be found... 

Asked a coleague and he sent me this app (https://marketplace.creatio.com/app/mass-updating-creatio)... still.. nothing. 
I don't want to create a Business Process to do it ...

Does anyone have a solution for this?

Thanks ! 

Like 0

Like

1 comments

Hello,

 

Please note that there is no basic functionality to mass update the records in the system. The "Mass updating for Creatio" marketplace addon or a business process are the best choices to achieve your goal. Alternatively, you can create an SQL script to update the values directly in the database. 

If you are having issues with the addon, you can contact the developer of the solution directly at support@inforce.kz and describe the issue to them.

Show all comments

Hi, 

 

Any ideas why the code below is not working? I get an 'Object reference not set to an instance of an object.' here /0/DataService/json/SyncReply/SelectQuery 

I checked that the getUsersInRole function that I wrote is working. It returns an array of Contact Ids.

Thanks in advance,
Jose

{
    request: 'crt.LoadDataRequest',
    handler: async (request, next) => {
        if (request.dataSourceName === 'PageParameters_UsrLookupParameter1_13p73tg_List_DS') {
            var roleId = request.$context.attributes.PageParameters_UsrLookupParameter1_atde2dj?.value;
            var users = await UsrC2CUtilitiesV2.getUsersInRole(roleId);
            const usersFilter = new sdk.FilterGroup();
            await usersFilter.addSchemaColumnInFilterWithParameters(sdk.ComparisonType.Equal, "Id", users);                            
            request.parameters.push({
                type: "filter",
                value: usersFilter
            });
        }
        return await next?.handle(request);
    }
}

Like 0

Like

0 comments
Show all comments