Hi All,

 

Is there any way to configure the comboboxes inside the Grid in a similar way we configure the ones in a page?

 

I'd like to be able to configure these 2 properties:

  • "showValueAsLink" 
  • "isAddAllowed"
     
  • Thanks!
     
Like 0

Like

1 comments

Hello,
 

Thank you for your question. To provide a more detailed analysis, could you please clarify the following:
 

  1. 1. We need screenshots of the specific functionality you require.
  2. 2. Please specify whether this functionality is needed in the Freedom UI or the Classic UI.
     

Your cooperation will help us assist you more effectively.
 

Thank you!

Show all comments

Добрий день.
Допоможіть, будь ласка, відфільтрувати записи у кастомному розділі в мобільному додатку.

Потрібний фільтр "Створив = поточний користувач"

Створив фільтр 

Terrasoft.sdk.Module.addFilter("UsrMyNotes", Ext.create("Terrasoft.Filter", {
   type: Terrasoft.FilterTypes.Group,
   logicalOperation: Terrasoft.FilterLogicalOperations.And,
   subfilters: [
       {
           property: "CreatedBy",
           comparisonType: Terrasoft.ComparisonType.EQUAL,
           value: Terrasoft.sdk.CurrentUser.getContactId()
       }
   ]
}));

та зберіг у файл UsrMobileNotesModuleConfig та додав файл до маніфесту робочого місця. 


},
"UsrMyNotes": {
   "RequiredModels": [
       "UsrMyNotes"
   ],
   "ModelExtensions": [],
   "PagesExtensions": [
       "UsrMobileUsrMyNotesActionsSettingsBlyzenkoWS",
       "UsrMobileUsrMyNotesGridPageSettingsBlyzenkoWS",
       "UsrMobileUsrMyNotesRecordPageSettingsBlyzenkoWS",
       "UsrMobileNotesModuleConfig"
   ]
}
Але фільтр не працює. Допоможіть, будь ласка. 
 

Like 0

Like

1 comments

Доброго дня,
Наведений вами приклад актуальний для класичних секцій мобільного додатку, однак, вочевидь ви використовуєте інтерфейс Freedom UI для мобільного розділу вашого об'єкту. 
Для реалізації вашої задачі в даному випадку необхідно змінити схему Mobile[Object]GridPageSettings[Workplace].
В цій схемі всередині масиву [ ] необхідно додати блок з кодом фільтру:
{
    "operation": "merge",
    "name": "settings",
    "values": {
        "viewModelConfigDiff": "[{\"operation\":\"merge\",\"name\":\"Attribute_Items_ModelConfig\",\"values\":{\"filterAttributes\":[]}},{\"operation\":\"insert\",\"name\":\"MyFilter\",\"values\":{},\"parentName\":\"Attribute_Items_ModelConfig\",\"propertyName\": \"filterAttributes\"},{\"operation\":\"merge\",\"name\":\"Attributes\",\"values\":{\"MyFilter\":{ ВАШ ФІЛЬТР }}}]"
    }
}
Для отримання самого фільтру варто використати наступний метод:
1) В дизайнері Freedom UI для довільної сторінки додаєте новий список на ваш об'єкт 
2) В цьому списку налаштовуєте фільтр, який який ви хочете застосувати в мобільному додатку
3) Зберігаєте фільтр і саму сторінку
4) Відкриваєте код самої сторінки і всередині неї можете знайти повний код фільтру:
5) Цей код і треба вставити всередину {\"MyFilter\":{ ВАШ ФІЛЬТР }}.
Важливо, в ньому треба екранувати символи " за допомогою штриха \, тобто таким чином \" і код фільтру не повинен містити табуляцій.
В результаті ваша сторінка Mobile[Object]GridPageSettings[Workplace] має виглядати приблизно наступним чином:
[
{
    "operation": "merge",
    "name": "settings",
    "values": {
        "viewModelConfigDiff": "[{\"operation\":\"merge\",\"name\":\"Attribute_Items_ModelConfig\",\"values\":{\"filterAttributes\":[]}},{\"operation\":\"insert\",\"name\":\"MyFilter\",\"values\":{},\"parentName\":\"Attribute_Items_ModelConfig\",\"propertyName\": \"filterAttributes\"},{\"operation\":\"merge\",\"name\":\"Attributes\",\"values\":{\"MyFilter\":{\"value\": {\"items\": {\"154ca683-b9f9-4359-88ca-e9dfbd10481a\": {\"filterType\": 4,\"comparisonType\": 3,\"isEnabled\": true,\"trimDateTimeParameterToDate\": false,\"leftExpression\": {\"expressionType\": 0,\"columnPath\": \"Status\"},\"isAggregative\": false,\"dataValueType\": 10,\"referenceSchemaName\": \"CaseStatus\",\"rightExpressions\": [{\"expressionType\": 2,\"parameter\": {\"dataValueType\": 10,\"value\": {\"Name\": \"In progress\",\"IsFinal\": false,\"Id\": \"7e9f1204-f46b-1410-fb9a-0050ba5d6c38\",\"Image\": \"\",\"StatusColor\": \"#FFAC07\",\"value\": \"7e9f1204-f46b-1410-fb9a-0050ba5d6c38\",\"displayValue\": \"In progress\"}}}]},\"d819453a-7122-4f49-92e8-3b0d7e4601f5\": {\"filterType\": 4,\"comparisonType\": 3,\"isEnabled\": true,\"trimDateTimeParameterToDate\": false,\"leftExpression\": {\"expressionType\": 0,\"columnPath\": \"Status\"},\"isAggregative\": false,\"dataValueType\": 10,\"referenceSchemaName\": \"CaseStatus\",\"rightExpressions\": [{\"expressionType\": 2,\"parameter\": {\"dataValueType\": 10,\"value\": {\"Name\": \"New\",\"IsFinal\": false,\"Id\": \"ae5f2f10-f46b-1410-fd9a-0050ba5d6c38\",\"Image\": \"\",\"StatusColor\": \"#0058EF\",\"value\": \"ae5f2f10-f46b-1410-fd9a-0050ba5d6c38\",\"displayValue\": \"New\"}}}]}},\"logicalOperation\": 1,\"isEnabled\": true,\"filterType\": 6,\"rootSchemaName\": \"Case\"}}}}]"}
}
]
Після цього зберігаєте зміни і синхронізуєте мобільний додаток, в результаті розділ має бути відфільтрованим.

Show all comments

Hi all,

 

Is there a settings to notify user when a ticket is open directly in the Case section?
 

We are basically registering cases through email, and it works fine, but if I register a case directly in the Case section there is no notification to the user.

 

User only receive email if I send an email from the case, meaning not automatically.

 

Any thougths?

Like 0

Like

2 comments

Hello,

 

This behavior can be achieved using the OOB functionality.

This article will help you with the setup: https://academy.creatio.com/docs/8.x/creatio-apps/products/service-tools/service-cases/case-settings/set-up-email-notifications

 

Please, pay attention to this block: https://academy.creatio.com/docs/8.x/creatio-apps/products/service-tools/service-cases/case-settings/set-up-email-notifications#set-up-contact-case-notification-rules

It will guide you through the necessary settings.

 

Hanna Skalko, 

Thank you, I will take a look on them

Show all comments

Добрий день. Намагаюсь зробити БП для створення нового Ліда з вхідного повідомлення на електронну адресу, але не можу зрозуміти до якої умови я маю причепитись в об'єкті Email повідомлення? 

Like 0

Like

2 comments

Добрий день!

Ви можете створити бізнес-процес для створення нового ліда на основі тригера — створення нового запису в об'єкті "Emil повідомлення".
 

Ви можете зчитати дані з пов'язаної з ним "Активності", щоб отримати відповідну інформацію, таку як тема, пов'язаний контакт/обліковий запис (якщо такий є), і включити це в процес створення ліда як параметр.

Класичним випадком було б перевіряти, чи є у темі повідомлення ключові слова для створення ліда.

На зображеннях нижче я надав приклади того, як буде виглядати такий тригер.

How to select activity subject

Email trigger

Дякуємо!

 

Andrii Kurta,

Добрий день. Дякую. Необхідний лист через Активність Кому отримую. Далі питання, як я з нього отримаю Тему листа - Хочу зробити її назвою Ліда наприклад. Контакт, хто надіслав створити контакт з його данними.

Потім вичитую дані з листа

 

Show all comments

Hello,

I'm in the process of migrating our classic Creatio pages to FreedomUI mode.


I'm having issues with the "Add New" option in some selector widgets:


for example, on the Order page, with the Contact entity, if I enter "a name" on the widget then select "Add new", a new contact is created but with an empty Account field.

If the "Add new" option is selected without any text, a "Full name field must be filled" error is raised.


in both cases I would expect a modal window to enter information about the contact.

 

The problem also happens with other entities (tried with AccountAddress).

 

did I miss something?


Greetings,
Patrice
 

Like 0

Like

1 comments

Hello!

Please contact support@creatio.com to analyze the situation in more detail. 

Best regards,
Anton

Show all comments

Hi Team, 
I want to style my dropdown which has element code : "Usrcodedropdowncode" 
Can you please provide your inputs to achieve this?
Thank you, 
Asif

Like 0

Like

1 comments
Best reply

Hello Asif,

I've found an excellent article by Ryan Farley that explains how to add custom CSS style sheets in Creatio. It may help you to understand how styling works.

P.S. Logic in Classic and FreedomUI is quite the same for this task. 

 

Hello Asif,

I've found an excellent article by Ryan Farley that explains how to add custom CSS style sheets in Creatio. It may help you to understand how styling works.

P.S. Logic in Classic and FreedomUI is quite the same for this task. 

 

Show all comments

Hi,

I'm developing my own custom Angular component for Creatio. I would like to use some of the standard components within it, such as a lookup field. How can I achieve this?

Is it possible to create a custom component that acts as a container for other elements, similar to crt.FlexContainer, which defines an items property for child components?

 

Like 1

Like

1 comments

Hello Eryk,

Unfortunately, it's impossible to reuse components in custom angular components for now, but Creatio plans to add such functionality in future releases.

Show all comments

Добрий день. Робимо запрошення на портал через автоматичну реєстрацію (Налаштування-Налаштування порталу-Організаційні ролі на порталі-Обираємо організацію - На вкладці "Основна інформація" натискаємо на "+", обираємо "Додати нові контакти"-Вказуємо email і надсилаємо запрошення). У зв'язку з великою кількістю запрошень необхідно розуміти кому запрошення на портал вже були надіслані. Яким чином можна вивести цей параметр (запрошення надіслане) в контактах?

Like 0

Like

2 comments

Доброго дня!

На жаль, в контактах не зберігається подібна інформація, тому і вивести її не буде можливим. 

Ми вже зареєстрували побажання на додавання такого функціоналу в майбутніх версіях системи, тому сподіваємось на скорішу реалізацію цього функціоналу. 

Дякуємо, що допомагаєте нам покращувати нашу систему. 

З повагою,
Антон

Дякую за відповідь. Дуже чекаємо на дане доопрацювання.

Show all comments

Hello,

I'm getting  "The system setting ExchangeListenerURI is not populated" error when I add new email account.
I'm using 8.1.1 version and postgre SQL database.

Thanks,

Asif Shaik

Like 0

Like

1 comments

Hey, everyone. 
I've been on this for a while now, but I can't figure it out. 

 

I've got this workflow from my print, and it has the following function: 

  • Get the information from a newly created entry on the object "Class"
  • Reading the information from "Class level" (it has the quantity of classes said level needs and what's the starting "Class number" that it must have),
  • Create "classroom" entries based on the "starting date" (it's a property from "Class") and "days of the week with time" (I've made it so that my object "Class" had a boolean for each day and a "time" for each day too ).

 

Does anyone knows how to construct a "Scripted task" (I belive that it is the ONLY way I can make it work) to do that? 

 

 

Business process:

 

Class table information, regarding how I've constructed the Day of the week + hour;

Like 0

Like

2 comments

Hello,

 

There is no need to use a script task here. A simple sub-process call with mass creation of records using the "Add data" element will also work as expected. 

 

If you want to use the code:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/back-end-development/data-operations-back-end/orm/examples/manage-the-database-entities

 

See example 6

EntitySchema contactSchema = UserConnection.EntitySchemaManager.GetInstanceByName("Contact");
Entity contactEntity = contactSchema.CreateEntity(UserConnection);
contactEntity.SetDefColumnValues();
contactEntity.SetColumnValue("Name", "User01");
contactEntity.Save();
 

 

The things to change here are the entity name and the column values (and column names).

Hey, Kalymbet! 
Many thanks for the response. 
I'll try it and come back here later today to coment! 

Show all comments