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

I noticed the Matomo connector is no longer in the Marketplace.  Is there something else we should be using, or can we still use Matomo?  Is the connector still required?

Like 0

Like

0 comments
Show all comments
8.3.3
Sales_Creatio

Hello,

I am trying to set up record permissions for the Account object based on the record owner. In particular, the business developers of our company should see ONLY accounts they personally own, but not records of their peers. The manager role should retain all access.

However, there is only an option to "Grant permissions based on the record author" out of the box. Is an optimal solution to achieve the above using a business process?

Like 0

Like

0 comments
Show all comments

Dear Creatio Support Team,

I am considering registering for a basic Software Developer certification worth $150 and would like to clarify your policies regarding exam failure for my consideration before I proceed with the purchase.

According to the Creatio Certification Rules and Procedures Guide, a score of no less than 85% is required to pass . If an applicant scores less than 85%, the certification is considered failed .

Before I complete the registration and payment process, could you please clarify the following points :

  • How many retake attempts are allowed if the initial exam is not successful?
  • Is there a mandatory waiting period required before I can schedule a second attempt?
  • Does a retake require a new payment, or is there a specific fee structure for subsequent attempts?
  • If a candidate fails, are they required to redo or re-present the individual practical assignment ?

The guide suggests reaching out to this address with additional questions, and I appreciate your assistance in helping me understand these procedures .

Thank you for your time and I look forward to your response.

Like 0

Like

0 comments
Show all comments

Hello all,
What I'm trying to achieve is to find a way to create new record in one of my Custom tables utilizing OData.
Have found this post usefull, but still not really there... https://community.creatio.com/questions/cannot-convert-primitive-value-…

The story: 
As above, need to create new record in, lets say CustomTableA. My table is with couple of mandatory columns and in between the others, two of which are of a lookup type, and to make it a bit more funny both are references to other custom tables, lets say B and C.

The issue I'm facing is as ihe subject - Cannot convert the literal '0000....00' to the expected type 'Edm.Guid'

Below are already tested options, trying to use Postman at the moment. Would appriciate any advice/guidience?
Obviosly trying to POST this to ... /0/odata/CustomTableA.

Please help, and thank you in advance.

"CustomTableBId": "000000",
"CustomTableCId": "000000",

"CustomTableBId": "guid000000",
"CustomTableCId": "guid000000",

"CustomTableBId": "guid'000000'",
"CustomTableCId": "guid'000000'",

"CustomTableB": {"Id": "000000"},
"CustomTableC": {"Id": "000000"},


"CustomTableB": {"Id": "guid000000"},
"CustomTableC": {"Id": "guid000000"},

"CustomTableB": {"Id": "guid'000000'"},
"CustomTableC": {"Id": "guid'000000'"},

Like 0

Like

2 comments

For creating a record via POST you only need to provide the guid in the payload as: 

"UsrMyLookupColumnId": "ddb65043-b662-4762-9a0a-6f325f65ad03"

However, is the value you're passing a guid? It's not "000000" but a real guid ID value, correct? Can you post what your payload looks like?

 I've just go this working. Unbelievable, but had a typo in the GUID, one digit more in front. 
Thanks for your help. 
As you were saying, it is just:
"UsrMyLookupColumnId": "ddb65043-b662-4762-9a0a-6f325f65ad03"

Show all comments

Hello,

our Field Sales users utilize records on the Account object (OOTB) and Affiliate object (custom solution). Account and Affiliate objects are related by one-to-many relationship (one Account can technically hold several Affiliates). Every Affiliate record has their associated account specified on a field.

End users schedule activities (calls, visits) for Accounts, but they would like to see these on the related Affiliate page. Is there a way to get the Activity object of Accounts to the Timeline component on related Affiliates?

Like 0

Like

2 comments

Hello!

There is no out-of-the-box automatic migration or display of Timeline data (such as Activity records) from an Account to its related Affiliate records. 
The Timeline component in Creatio displays only records directly linked to a specific object instance. To show Account Activities on the Affiliate Timeline, you must implement additional customization: identify all Activity records associated with the Account and update or additionally populate the Affiliate reference field in each Activity record. 
This requires extending the standard logic or creating a custom business process, as it cannot be achieved through UI configuration alone. 

Alona Dolya,

Hello Alona, thank you for the quick response. Do you reckon this could be achieved with a no-code approach, using a business process only?

Show all comments