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

I am looking to set up Creatio cloud based version controlling using SmartSVN as I am on a Mac (TortoiseSVN does not support Mac devices). 

As such, when exporting a package, I get a .gz that only contains a text file after unzipping it. This will not work as I need the actual folders and files to manage a repository from.

I noticed that when exporting the OOTB applications (Service Creatio, Customer365, etc), it correctly exports into the file based format I am looking for.

What is the work around to version controlling custom applications built in the cloud on a Mac Device?

Like 0

Like

0 comments
Show all comments

Hi, 

I wrote a customer webservice and returning a simple string message (screenshot below). But customer don't like this page and want something like Thank you page or pop up. Can anyone suggest how to solve this?

Thanks in advance. 

Like 0

Like

1 comments

You can return an HTML page from a web service as shown here: https://customerfx.com/article/returning-an-html-page-from-a-creatio-configuration-service/

Ryan

Show all comments

We have different users doing different read process on objects that should result in more then 5000 records being read. It is impossible to start creating and extra column for every businessprocess on every object to filter out the records already processed. Is there a way get the next 5000 records, without having to update a dedicated flag for that business proces? Some of those business processes should run simultaneously, so in that case a dedicated flag to trace the already processed records doesn't work.  Is there another way to bypass that?

Like 1

Like

0 comments
Show all comments

Hi!

I’m working on a Freedom UI Activities page where I display a registry of certificates as an editable list. One of the columns in this list is an Activity lookup, and I need to restrict that lookup to show only the current Activity (i.e. the one tied to the page).

So far, I’ve tried:

Implementing handlers for crt.OpenSelectionWindowRequest and crt.LoadDataRequest to log requests, but these only fire for fields outside the editable list.

Inspecting the Network tab: when I open the lookup dropdown, I see a SelectQuery against rootSchemaName":"Activity" with a filter, but I can’t find where to inject my custom filter for the editable list.

Question:
Does anyone have an example or best practice for applying a filter to a lookup column inside an editable list on a Freedom UI page? Specifically, I need the Activity lookup to return only the activity record corresponding to the parent page when the user clicks the field.

Thank you in advance for your help!

Like 0

Like

0 comments
Show all comments

Hi Team,

I'm calling the custom web-service on the Customer Portal to fetch the role of the currently logged-in user: <strong>UsrUserInfoService/GetCurrentUserInfo</strong>. But the request is responding with 404 - Page Not Found error.

However, this service works as expected on the Employee Portal with the following endpoint: https://my.creatio.com/0/rest/UsrUserInfoService/GetCurrentUserInfo

I observed that the Requested URL differs slightly due to the presence of an additional path segment <strong>ssp</strong>, as shown below: `https://my.creatio.com/0/ssp/rest/UsrUserInfoService/GetCurrentUserInfo`

 

Thank you in advance

 

Like 0

Like

3 comments
Best reply

Add these attributes to your service class: 

[DefaultServiceRoute]
[SspServiceRoute]

Ryan

Add these attributes to your service class: 

[DefaultServiceRoute]
[SspServiceRoute]

Ryan

Hi Ryan,

After adding attributes, still getting compilation error below:


I am providing you with source code of service:


using Terrasoft.Web.Common;

using System.Web;

using Terrasoft.Core.Factories;

using System;

using System.Data;

using System.Data.SqlClient;

using System.Collections.Generic;

using System.ServiceModel;

using System.ServiceModel.Web;

using System.ServiceModel.Activation;

using Newtonsoft.Json;

using Terrasoft.Core;

using Terrasoft.Core.DB;

using Terrasoft.Common;

using Terrasoft.Core.Entities;

namespace Terrasoft.Configuration.UsrUserInfoService

{

    [ServiceContract]

    [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]

    [DefaultServiceRoute]

    [SspServiceRoute

    public class UsrUserInfoService : BaseService

    {

       [OperationContract]

        [WebInvoke(Method = "GET", UriTemplate = "GetCurrentUserInfo", ResponseFormat = WebMessageFormat.Json)]

        public string GetCurrentUserInfo()

        {

            // Fetching Current Logged-in User Role

        }

    }

}

souresh khandelwal,

Sorry, forgot to also mention to add these usings: 

using Terrasoft.Web.Common;
using Terrasoft.Web.Common.ServiceRouting;

Ryan

Show all comments