I am trying to import large amount of data, around 7 million lines. I noticed that using an excel this is almost impossible. What are the alternatives?

Comparing this to inserting it in an SQL, I usually bulk insert batches of 5000-8000 and it will be done in 5 minutes. 

Like 0

Like

0 comments
Show all comments

In "old style" Creatio is possible to create different section pages depending on a lookup field, just like Activities out-of-the-box section (one page for Task, one for Email, one for Call).

In Freedom UI pages I cannot find the way to do the same thing: how can I setup different Freedom UI pages depending on the value of a lookup field of the record?

Thanks

Like 3

Like

6 comments

Dear, 



Unfortunately, this feature is really not available in the current release version of the app.

However, our development team i...MoreLess

Show all comments (5)

Dear Community,

I wish to create somewhat of a wizard to add a new order in our CRM. Similar to how you would order something online. Step 1 would be to check the adress for service availability, step 2 choose products, step 3 choose subscription type and discounts, step 4 personal info, contact info...MoreLess

Like 0

Like

1 comments

Hello,

You can create it by means of preconfigured business processes and creating a new method with the same logic as in the refreshAmount...MoreLess

Show all comments

Hi,

From Postman I am calling a REST API by passing some parameters in x-www-form-urlencoded format. Please see the screenshot below : 

Header - Content Type - application/x-www-form-urlencoded

From Creatio I am using Web service section to call this same API but can't understand how to send these parameters in x-www-form-urlencoded

I think I am making mistake in defining the Parameter type of the parameters I am passing.

Please help urgently!

Like 1

Like

1 comments

Thank you for your question.



Unfortunately, Creatio does cant parse x-www-form-urlencoded type of requests as of yet.

We have already...MoreLess

Show all comments

Hi all, I have created a web service for parsing a document which is taking two request parameters:

  • Header Parameter : 

Key : “Authorization”

Value : (xyz 123456)  // just an example

  • Body Parameter :

Key : “file”

Value : (Base64 data)

When I test it within the Web Service section b...MoreLess

Like 0

Like

2 comments

hi Prashant Jha

Creatio has its "JSON key parser" in a core assembly that works OOTB in the service section. Usually, it occurs in th...MoreLess

Show all comments (1)

Hi Community,

I want to hide the "System Designer" option from the hamburger menu on the left panel (highlighted in yellow). Any lead will be appreciated. 

Regards,

Sourav

Like 0

Like

6 comments

Hello,

It's not possible to hide the System Designer option with basic system tools.

Still, you may simply limit the access rights for this...MoreLess

Show all comments (5)

I was creating a button that runs a simple business process that sends a mail.

The problem is after altering the schema of the Portal user profile and adding a button the business process doesn't run nor gets mentioned in the process logs for tracing.

here are the codes used in the schema to run a bp...MoreLess

Like 0

Like

4 comments

Hello,

I've used the same code in the demo application and the process was triggered. Maybe the process is not logged in the process log ("Enable...MoreLess

Show all comments (3)

I want to build an 'add' client wizard for our customer service to make it easy for them and also to prevent mistakes.

The first step would be to insert zipcode and housenumber, then it will make an API call to see how many adresses match these two parameter. 

The list that is returned, if the...MoreLess

Like 1

Like

3 comments

Hi, take a look at this article, I believe that there you can find a piece of useful information. It is written for the Freedom UI page, however...MoreLess

Show all comments (2)

I have a lookup field on a detail (List of VAT options with an added column for the % values), im trying to use these now to calculate a value, how do I access the other column? I can access the VAT Code using this.get("UsrVatCode"), but want the associated column which as the % amount.

Like 1

Like

2 comments
Best reply
var lookupId = this.get("RecordColumn").value;
 
var esq = this.Ext.create("Terrasoft.EntitySchemaQuery", {
    rootSchemaName: "INSERTOBJECT"
...

MoreLess

Show all comments (1)

Im trying to create a calculated field to show a total of all records from a detail on a record, ive looked into using sql views, however I'm not sure if that would work as you cant filter by the record I don't think, are there any code solutions or anything similar?

Like 0

Like

1 comments

Hello,

You can try creating an integer column in the page (and in the object that this page represents) and create a business process that...MoreLess

Show all comments