Hi, 

I have construct this select query in script task and got the attached  error !

var UserConnection = Get("UserConnection");

var mangager = (DataValueTypeManager)UserConnection.AppManagerProvider.GetManager("DataValueTypeManager");

var currentDate = DateTime.Now;

var select = new Select(UserConnection)

                 .Column("Id")

                 .From("UsrAlpha")

                 .Where("UsrStatusId").IsEqual(Column.Parameter("82f4864d-3c3b-46a7-93dc-318695dc90ec")) as Select; 

                 

var up = (Update) new Update(UserConnection,"UsrAlpha").Set("UsrCurrentDate",Column.Parameter(currentDate)).Where("Id").In(select);

                    

up.Execute();

return true;

 

 

Please help ! 

Many thanks.

Like 0

Like

1 comments

In 7.15 with PostgeSql this code work

Guid contactId = ......
Select select = new Select(UserConnection)
				.Column("ScpSNILS")
				.Column("INN")
				.From("Contact").WithHints(new NoLockHint())
				.Where("Id")
				.IsEqual(new QueryParameter(contactId)) as Select;

 

Change Column.Parameter to QueryParameter

Show all comments

I try to override in CommunicationPanel the index property but it doesn’t work :

define("CommunicationPanel", ["terrasoft", "CommunicationPanelHelper"],
	function(Terrasoft, CommunicationPanelHelper) {
		return {
			messages: {},
			attributes: {},
			methods: {	},
			diff: [
				{
					"operation": "merge",
					"name": "centerNotification",
					"index":  1,				
				}

How can I change the position of the icon?

Like 1

Like

1 comments

Hello Grigoriy,

 

You can only move elements defined in the "diff" of the CommunicationPanel schema, for instance to move esnFeed use:

{

    "operation": "move",

    "parentName": "communicationPanelContent",

    "propertyName": "items",

    "name": "esnFeed",

    "index": 6

}

 

Best regards, 

Olga. 

Show all comments

Hi, 

 

How to develop the functionality of updating multiple selected records using custom button or section action on creatio mobile application side?

 

I have developed the above functionality in the main application (creatio server) side.

 

Please respond to this.

Many thanks.

Like 0

Like

5 comments

Dear Akshit, 

 

You can implement this by creating an action that will display a lookup with multi-select choice, similarly to how it is implemented in the section filters. After that, you would be able to perform some action on chosen records. You can look into how filters in a section are implemented and implement similar functionality. 

Also, you can create an action that will take the filters in the section, send a request to db with those filters, and perform some action with the received records.  You can get the section filter in getFilterPanel method that you can find in the view that you can get from current page controller. 

 

Best regards, 

Dennis 

Hi Dennis Hudson,



Is there any documentation or way to implement custom action on creatio mobile application.

I have already gone through this https://academy.creatio.com/documents/technic-sdkmob/7-16/creatio-development-guide but creating a custom action (creatio mobile application) is not a development case here.



Thanks.

Dear Akshit,

 

Here is a community article on creating custom actions: 

https://community.creatio.com/articles/adding-custom-user-action-mobile-application

 

Best regards, 

Dennis 

Hi Dennis Hudson,

 

I am not able to open this page It says that I am not authorized. Did you know why?

Any other option? 



Thanks.

Dear Akshit, 

 

Unfortunately, I am not aware of any other article on creating custom actions. I've checked this one and it seems to open without an issue. Please try clearing the cache and logging in once again.  

 

Best regards, 

Dennis 

Show all comments

When drilling into a detail record from an edit page, the URL shown for the page in the address bar does not update to match the record shown by default. Is there any way to make this happen in client-side code? Or perhaps a setting which can be enabled? An important part of the application I'm currently working on is the ability for users to share the links to pages externally, and being able to do so by copying the URL sometimes (e.g. when drilling into a Section record to get to the edit page) but not other times isn't good UX for the client.

 

We know we can add an action bar button to copy the link, but this also isn't what he client would like if avoidable, for the above reason (consistency).

Like 0

Like

1 comments

Hello Harvey,

 

Unfortunately, there is no way to retrieve a direct URL when opening a record from the detail since Creatio is a single-page application, the navigation is stored in operative memory and could not be obtained. This is done to enhance system speed.

 

We do have a problem registered for our R&D team in the "Accepted" status regarding the possibility to dynamically change the link once the record from the detail is opened and it is planned to modify the current logic in one of the future releases. As for now the only way to retrieve the direct link is to open the detail record in another tab by right-clicking on it and selecting the "Open in another tab" option.

 

Best regards,

Oscar

Show all comments

Hello,

 

Is there a way to make the feed post text box a rich textbox like the image i have attached?

Like 0

Like

3 comments
Best reply

     Hi Michael,

 

    Yes, it can be implemented via additional development.

    

    You can create a module (e.g. GlbExtendedHtmlEditModule) extending ESNHtmlEditModule with the template (tpl) from ExtendedHtmlEditModule:

 

define("GlbExtendedHtmlEditModule", ["ESNHtmlEditModule"], function() {
 Ext.define("Terrasoft.controls.GlbExtendedHtmlEditModule", {
 extend: "Terrasoft.ESNHtmlEdit",
 alternateClassName: "Terrasoft.GlbExtendedHtmlEdit",
 tpl: [
 //jscs:disable
 /*jshint quotmark: false */
 "<div id=\"{id}-html-edit\" class=\"{htmlEditClass}\" style=\"{htmlEditStyle}\">",
 "<div style=\"display: table-row;\">",
 "<div id=\"{id}-html-edit-toolbar\" class=\"{htmlEditToolbarClass}\">",
 "<div id=\"html-edit-toolbar-undo\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'undo' || tag == 'redo'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-family\" class=\"{htmlEditToolbarButtonGroupClass}\" style=\"{htmlEditFo" +
 "ntFamilyStyle}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontFamily'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-size\" class=\"{htmlEditToolbarButtonGroupClass}\" style=\"{htmlEditFont" +
 "SizeStyle}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontSize'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-style\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontStyleBold' || tag == 'fontStyleItalic' || tag == 'fontStyleUnderline'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-color\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontColor'\">",
 " <@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-highlight\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'hightlightColor'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-list\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'numberedList' || tag == 'bulletedList'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-justify\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'justifyLeft' || tag == 'justifyCenter' || tag == 'justifyRight'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-indent\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'outdentList' || tag == 'indentList'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-image\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'image'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-link\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'link'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-justify\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'htmlMode' || tag == 'plainMode'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-tools\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'maximized'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"{id}-html-edit-toolbar-table\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'table'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-addTemplate\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'addTemplate'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-addMacros\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'addMacros'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "</div>",
 "</div>",
 "<div style=\"display: table-row;\">",
 "<div id=\"{id}-html-edit-htmltext\" class=\"{htmlEditTextareaClass}\">",
 "<textarea id=\"{id}-html-edit-textarea\" style=\"border: none\"></textarea>",
 "</div>",
 "<div id=\"{id}-html-edit-plaintext\" class=\"{htmlEditTextareaClass}\" style=\"margin-bottom: 24px;\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'plainText'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "</div>",
 "<span id=\"{id}-validation\" class=\"{validationClass}\" style=\"{validationStyle}\">" +
 "{validationText}</span>",
 "</div>"
 /*jshint quotmark: true */
 //jscs:enable
 ]
 });
});

 

And replace SocialFeed (ESN):

 

define("SocialFeed", ["GlbExtendedHtmlEditModule"], function() {
 return {
 diff: /**SCHEMA_DIFF*/[
 {
 "operation": "merge",
 "name": "SocialMessageEdit",
 "values": {
 "className": "Terrasoft.GlbExtendedHtmlEdit",
 }
 }
 ]/**SCHEMA_DIFF*/
 };
});

Please find the result example attached.

Thank you for choosing Creatio!

     Hi Michael,

 

    Yes, it can be implemented via additional development.

    

    You can create a module (e.g. GlbExtendedHtmlEditModule) extending ESNHtmlEditModule with the template (tpl) from ExtendedHtmlEditModule:

 

define("GlbExtendedHtmlEditModule", ["ESNHtmlEditModule"], function() {
 Ext.define("Terrasoft.controls.GlbExtendedHtmlEditModule", {
 extend: "Terrasoft.ESNHtmlEdit",
 alternateClassName: "Terrasoft.GlbExtendedHtmlEdit",
 tpl: [
 //jscs:disable
 /*jshint quotmark: false */
 "<div id=\"{id}-html-edit\" class=\"{htmlEditClass}\" style=\"{htmlEditStyle}\">",
 "<div style=\"display: table-row;\">",
 "<div id=\"{id}-html-edit-toolbar\" class=\"{htmlEditToolbarClass}\">",
 "<div id=\"html-edit-toolbar-undo\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'undo' || tag == 'redo'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-family\" class=\"{htmlEditToolbarButtonGroupClass}\" style=\"{htmlEditFo" +
 "ntFamilyStyle}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontFamily'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-size\" class=\"{htmlEditToolbarButtonGroupClass}\" style=\"{htmlEditFont" +
 "SizeStyle}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontSize'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-style\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontStyleBold' || tag == 'fontStyleItalic' || tag == 'fontStyleUnderline'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-font-color\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'fontColor'\">",
 " <@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-highlight\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'hightlightColor'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-list\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'numberedList' || tag == 'bulletedList'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-justify\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'justifyLeft' || tag == 'justifyCenter' || tag == 'justifyRight'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-indent\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'outdentList' || tag == 'indentList'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-image\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'image'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-link\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'link'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-justify\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'htmlMode' || tag == 'plainMode'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-tools\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'maximized'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"{id}-html-edit-toolbar-table\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'table'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-addTemplate\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'addTemplate'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "<div id=\"html-edit-toolbar-addMacros\" class=\"{htmlEditToolbarButtonGroupClass}\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'addMacros'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "</div>",
 "</div>",
 "<div style=\"display: table-row;\">",
 "<div id=\"{id}-html-edit-htmltext\" class=\"{htmlEditTextareaClass}\">",
 "<textarea id=\"{id}-html-edit-textarea\" style=\"border: none\"></textarea>",
 "</div>",
 "<div id=\"{id}-html-edit-plaintext\" class=\"{htmlEditTextareaClass}\" style=\"margin-bottom: 24px;\">",
 "<tpl for=\"items\">",
 "<tpl if=\"tag == 'plainText'\">",
 "<@item>",
 "</tpl>",
 "</tpl>",
 "</div>",
 "</div>",
 "<span id=\"{id}-validation\" class=\"{validationClass}\" style=\"{validationStyle}\">" +
 "{validationText}</span>",
 "</div>"
 /*jshint quotmark: true */
 //jscs:enable
 ]
 });
});

 

And replace SocialFeed (ESN):

 

define("SocialFeed", ["GlbExtendedHtmlEditModule"], function() {
 return {
 diff: /**SCHEMA_DIFF*/[
 {
 "operation": "merge",
 "name": "SocialMessageEdit",
 "values": {
 "className": "Terrasoft.GlbExtendedHtmlEdit",
 }
 }
 ]/**SCHEMA_DIFF*/
 };
});

Please find the result example attached.

Thank you for choosing Creatio!

Bohdan Zdor,

Does this wok on Creatio hosted environments?

Michael Dorfman,

 

    Unfortunately, we do not have an experience of such functionality implementation.

     Though, it should work on Creatio hosted environments.



    Thank you. 

Show all comments

Is it possible to delete a replacing schema when you have also created inheriting schemas based on that schema? I've tried this, and it seems to turn the inheriting schemas into being read-only, showing the following message when trying to edit them:

 

Here is an example set up for this issue:

  1. Create a replacing schema of FileDetailV2 (called FileDetailV2, as it as to be)
  2. Create a schema inheriting from FileDetailV2 (any name)
  3. Delete the replacing schema created in step 1

Once these steps have been performed, it appears the inheriting schema created in step 2 is now read-only for some reason. My expectation would be that, because the OOTB FileDetailV2 still exists, there should be no issue. Does anyone know how to resolve this?

 

Thanks,

Harvey

Like 0

Like

3 comments

Hello Harvey,

 

We do not recommend to delete schemas that are set as [Parent object] for some other schemas. It could lead to unexpected system behavior and further errors. 



Furthermore, we suggest performing  [Compile all items] and [Compile modified items] actions when deleting schemas and packages from the [Configuration] section. 

 

Best regards, 

Olga. 

Olga Avis,

 

Thanks for your reply. I think the same issue could be reached by doing step 2 first, and then creating a replacing schema of the schema that inherits from, and then realising this wasn't what you wanted so you delete the replacing schema. In this case, you could break things without knowing, since on a larger project you may not be aware of every schema which inherits from another schema.

 

Is there any way to bypass this warning message, since it doesn't describe the situation (the schema isn't 3rd party and wasn't installed from a file archive)?

 

Thanks,

Harvey

Harvey Adcock,

It seems that your schema and the package of this schema is locked and as a result you are not able to modify it. We cannot provide you with the script that unlocks the package and the schema, but you can email us at support@creatio.com and provide us with the link to the app, the name of the package and schema and we will unlock it for you.

 

Best regards,

Oscar

Show all comments

Hi Team,

 

We were trying to generate a report based on the service section. We created an Excel report to generate the number of cases created for last year along with some other filters. However, when we try to generate the report we are getting the below error. This error pops up only for certain filters and for some filters the report seems to be working. Like if we get the report for month it works while if we try for last one year it pops with an error.

Like 0

Like

2 comments

Hi Gokul Krishan,

 

this error relates to configuration or data. Set up all columns from the report in the 'Cases' section, use similar section filters, and try to export data using a basic functionality 'Export to Excel'. Come back with results.

Thank you 

Show all comments

Hello, I am creating a custom section for employees to submit access requests. I created a custom package called ITrequests which I've been building the custom section and all associated objects in. I've somehow run into this error when I try to save the Case, it says "Package sequence contains cycle: "ITrequests-->Custom-->ITrequests". This error is preventing me from saving this case. Can someone point me in the right direction for where to look to resolve this error?

 

Like 0

Like

7 comments

Check the dependencies for your package. Just guessing, but I assume it has something to do with that. Or a package that has your package as a dependency. Possibly a dependency that has your package as a dependency or something along those lines. (so check both the depends on packages and the dependent packages for your ITrequests package)

 

Ryan

Ryan Farley,

 

I thought that too, but Custom depends on all packages, and ITrequests can't depend on Custom, nothing can depend on the Custom package as far as I understand it. I had looked at them and at first glance it looked fine, but I will go through them again and see if I can find a "loop".

Mitch Kaschub,

Try checking what the dependency tree on the Package Dependencies tab shows for your package, anything weird about how that looks? Custom still shows at the bottom of the tree?

Ryan Farley,

 

Yes, the tree and the dependencies look as expected to me best I can tell.

 

The only other thing I can think of is I may have changed the "Current Package" system setting to "Custom" for a brief moment and inadvertently saved a change to one of the objects or pages in my "ITrequests" package before I set the system setting back to ITrequests. I think I'll recompile the system to see if that resolves it.

 

Ryan Farley,

No luck after recompiling. Same error. Probably have to be a support ticket? Anything else you can think for me to check?

Hello Mitch, 



Can you please check and make sure that package indicated in the system setting with code CustomPackageId is set to "Custom" and not to "ITrequests" or any other? 



Kind regards,

Roman Brown

Roman Brown,

Thank you! That was the issue!

Show all comments

I'm trying to configure a modal lookup window by following Example 2 in this academy page https://academy.creatio.com/documents/technic-sdk/7-15/creating-detail-selection-lookup and everything works as described, but I cannot figure out how to add a default sort to the modal lookup window - are there some parameters which can be added to the config object passed to the this.openLookup method call?

 

While on that subject, are there any other potential parameters which can be added to this config object which might be useful for other tasks?

Like 0

Like

1 comments

Dear Harvey, 



There is no description for all parameters of the lookup config. The possible way is to check the existing openLookup calls. 

Sorting can be specified in sortedColumns parameter. 

You can find the example in method selectPeriod in the ForecastTab. 

Collection of columns with sorting parameters is passed to it this way: 

var config = {

    entitySchemaName: "Contact",

    multiSelect: false,

    columns: ["Name", "Account.Name"],

    sortedColumns: [{

        name: "Account.Name",

        orderPosition: 0,

        orderDirection: this.Terrasoft.core.enums.OrderDirection.ASC

    }]

};

this.openLookup(config, this.lookupCallback, this);



Kind regards, 

Roman

Show all comments

Hello Community

 

I need to know if the image here http://prntscr.com/ruapy1 is the same I need to upload on System Setting to “Logo - Thank you for your feedback / ImageThanksForRaiting”?

 

If not, which is the system setting I need to change?

 

Which specifications size must have the image?

 

Thanks in advance

Like 0

Like

5 comments

Hi Julio,

 

After a customer evaluates the quality of service, they will be redirected to the special “Thank-you” page where the customers can leave additional comments. Both the customer’s grade and comments will be automatically added to the [Feedback] field block on the [Closure and feedback] tab.



 

A “Thank-you” page

scr_section_service_requests_thanks_page.png 

The page displays a corporate logo according to the value of the [Logo - Thank you for your feedback] system setting. Corporate logo setup is covered in a separate article.



Please let us know if it fits your query.



Thank you!

Bohdan Zdor,

Thanks @Bohdan, I know it, but what I need is to change the background image and I need to know wich is the System setting I will to change to do it, this image 

http://prntscr.com/ruoyul, I did it on "Logo - Thank you for your feedback" System Setting uploading an image of 1280x900px and what I get is a page with the image, but loose the objects over them, like the message "Your feedback has been..", the edition control to introduce comments and also the "POST COMMENT" button http://prntscr.com/rup3xj, this what I get http://prntscr.com/rup581

 

What I'm doing wrong?

 

Also, where can I change the text of the tittle and in the edition box "We are always looking at improving...."?

 

Thanks again

Julio.Falcon_Nodos,

This system setting is currently not in use it will not change the image as you need. The only way to completely change this page is to apply changes to "CaseRatingFeedbackPage" schema (replace it and modify Background resource).

 

Best regards,

Angela

Thanks Angela

Show all comments