Hi,

I have a problem with the new open Activity in an already created Lead.

I create a new lead, I add an activity on that lead and after that, I change the owner of the Lead. Unfortunately the activity owner changes too.

I want to know if it's a core functionality that changes the owner of the activity after I change the owner of it's Lead and if so, how can I deactivate it?

Thank you,

 

Rares

Like 0

Like

8 comments

Hi Ivan,

 

I think, this can be switched off with feature "ChangeEntityActivitiesAndProcessOwner"



Kind regards,

Vladimir

Vladimir Sokolov,

Hi! 

Thank you Vladimir for your response. 

I changed the state into 0 and nothing happens. I changed the code in "ActivityPageV2" and the I have the same result as before. 

Should I make other changes? 

 

Thank you, 

Rares

Could you please check if feature is switched off for every role and cache is cleared?



There is nothing to change in the Page, this functinality is implemented in the EventListener



And it would be nice if Creatio describes all implemented feature in the field 'Description'...



Kind regards,

Vladimir

Hi!

I have an older version of Creatio (8.0.0.5476) and the Feature Toggle doesn't  exists. Is there any possibility to change that from somewhere else?

 

Best regards, 

Rares 

Vladimir Sokolov,

Ivan Rares Marian,

You can find them in database and update:

Select * from "AdminUnitFeatureState" Where "FeatureId" = (Select "Id" from "Feature"

Where "Name" = 'ChangeEntityActivitiesAndProcessOwner')

 

Vladimir Sokolov,

 

Hi,

I checked and in the database the FeatureState is 1 for both of them.

What should I try now?

Best regards, 

Rares 

Update it with 0

Show all comments
Question

Hello, could anyone help how to add Print button on freedom UI page for MS word reports that we have

Like 0

Like

2 comments

Hello!

 

Unfortunately, the printables section in Freedom UI is not available now, but it will be available in the 8.1.1 version.



As for now, as a workaround, you can try to generate reports through the business process. We provided the following articles below.



Creating a business process: https://academy.creatio.com/docs/developer/integrations_and_api/business_process_service/overview?_gl=1



I am also sending you a link to a post in our community where you can also read the information that may help you: https://community.creatio.com/questions/generate-word-printable-outside

 

Best regards, 

Maria

Unfortunately, there's no exact date for this update yet. Our team is still working on the development of this update.

 

Best regards, 

Maria

Show all comments

Hi,

I am able to create the feed entry, but what I would like to include is the @user function. Simply using the Formula in the message and constructing the text in the following way does not work.

"Hey @" + [#variable for contact] 

 

Does anyone know a way to make this active notification work in a business process to the Feed message?

Like 0

Like

3 comments

anyone?

 

I really want to be able to @someone in a feed message created in a business process and I am sure others would love to be able to do this too.

Mark Roberts,



Probably you have to add record to the SocialMention object as well, as there are stored all @'s

 

Kind regards,

Vladimir

Show all comments

Hi all,

 

How would one add a boolean type static filter to a section (similar to the Active flag in the Process Library)?

 





I have a field called UsrActive in my section and I'd like to have this filter applied by default.

 

Nb. I'm not currently using Freedom sections.

Like 0

Like

1 comments
Best reply

Hello,

 

In order to implement such logic in the Classic UI additional development is needed. You may refer to the below post for an example of similar implementation:

https://community.creatio.com/questions/please-help-how-add-custom-filt…

 

Best regards,

Anastasiia

Hello,

 

In order to implement such logic in the Classic UI additional development is needed. You may refer to the below post for an example of similar implementation:

https://community.creatio.com/questions/please-help-how-add-custom-filt…

 

Best regards,

Anastasiia

Show all comments

Hello all,

 

Once we log into the Creatio, there is no name of the current user on the page.

I need to show the current user's name at the top of the page.

Does anyone know how to do it?

 

Thank you.

David.

 

Like 0

Like

2 comments
Best reply

Hi David,

 

User name of the current user can be reviewed in the user profile located at the top of the page:

and

If you still need this on the top of the page and the app version you have is greater than 7.18.0 you need to enable AllowCreateAngularSchema system feature for all employees, override MainShell, add container and string field inside it and create a hanler that will read Terrasoft.SysValue.CURRENT_USER.displayValue property and set this value to the string field.

Hi David,

 

User name of the current user can be reviewed in the user profile located at the top of the page:

and

If you still need this on the top of the page and the app version you have is greater than 7.18.0 you need to enable AllowCreateAngularSchema system feature for all employees, override MainShell, add container and string field inside it and create a hanler that will read Terrasoft.SysValue.CURRENT_USER.displayValue property and set this value to the string field.

Oleg Drobina,

Thank you, it works.

Show all comments

Hi community, 



I have created a detail and now I wanted to convert the detail into an editable list. The option that is provided in the detail setup is disabled. Then I added the required code in the client module. The detail has been converted to editable list but when I click on the record it is throwing the following error. 

The details regarding the issue are attached below.

Could you let me know how can I convert an already existing detail to an editable one?





Thanks in advance

Goparna Nasina.

Like 0

Like

1 comments

Hello,

 

Could you please provide the code you added and specify where exactly it was added?

 

Best regards,

Yuliya

Show all comments

Hello all,

 

I have a page detail that contains item transfer information.

Every item has 2 types of units (uom), big unit and small unit. Every unit has its own conversion to each other.

So, every time the user enters the "ship quantity", I want the system to calculate the big unit and the small unit, and then update it to the UI.

The "ship quantity" uses either the big unit or the small unit.

 

Currently I use a business process to calculate the big and small quantity. 

So, every time the user enters the "ship quantity", a request will be sent to call the business process. All of this is done in the detail page.

Then, once the business process has done the calculation, it sends the message to the UI, which will be captured by the UI script and shows it to the screen. 

The problem is after the "Ship quantity" of the first row is entered, the user clicks on the second row, the first row's big and small quantities are not updated.

Below is the snippet of my code that updating the row.

body is the return from the business process that the system called earlier.

How to solve this problem?

I wish Creatio has "row lost focus" event that might can help to solve this problem.

 

Any ideas will be appreciated.

 

Thanks,

David.

Like 0

Like

1 comments

Hello David,

Most likely your data isn't updating because it wasn't set. this.getGridData will not work on the edit page. I made the logic on the Order page, to do such:

Replace the OrderProductPageV2 module and write code there instead of a business process. Put the business process handler in the editing page module. Add the required parameters to BP and use them later in your custom module by get/set:

var currentPrice = this.get(“Price”);
this.set(“Price”, “some value”)

 

Show all comments

Dear colleagues,

 

I'm having a problem running my Creatio local environment when use PostgreSQL.

 

When start the app, I'm getting this error Exception Details: Npgsql.PostgresException: 28000: no hay una l�nea en pg_hba.conf para �fe80::1c5:206f:bef4:e3e9%13�, usuario �dev-toledano�, base de datos �Toledano8010�, sin cifrado

 

I have app and db in the same machine.

 

I saw I need to change the pg_hba.conf file, I did it, but get the same error. This is my file

# TYPE  DATABASE        USER            ADDRESS                 METHOD
 
#host all all 0.0.0.0/0 trust
 
# "local" is for Unix domain socket connections only
local   all             all                                     trust
#scram-sha-256
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
host    all             all             ::1/128                trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
local   replication     all                                     trust
host    replication     all             127.0.0.1/32            trust
host    replication     all             ::1/128                 trust

And my ConnectionStrings.config file looks like

<?xml version="1.0" encoding="utf-8"?>
<connectionStrings>
  <add name="db" connectionString="Server=NoCodeServicesT;Port=5432;Database=Toledano8010;User ID=dev-toledano;password=dev-toledano;Timeout=500; CommandTimeout=400;MaxPoolSize=1024;" />
  <add name="redis" connectionString="host=localhost; db=2; port=6379" />
  <add name="defPackagesWorkingCopyPath" connectionString="%TEMP%\%APPLICATION%\%APPPOOLIDENTITY%\%WORKSPACE%\TerrasoftPackages" />
  <add name="tempDirectoryPath" connectionString="%TEMP%\%APPLICATION%\%APPPOOLIDENTITY%\%WORKSPACE%\" />
  <add name="sourceControlAuthPath" connectionString="%TEMP%\%APPLICATION%\%APPPOOLIDENTITY%\%WORKSPACE%\Svn" />
  <add name="elasticsearchCredentials" connectionString="User=gs-es; Password=DEQpJMfKqUVTWg9wYVgi;" />
  <add name="influx" connectionString="url=http://10.0.7.161:30359; user=; password=; batchIntervalMs=5000" />
  <add name="messageBroker" connectionString="amqp://guest:guest@localhost/BPMonlineSolution" />
</connectionStrings>

Somebody have some idea?

 

I never worked with PostgreSQL before 

 

Thanks in advance,

 

Best regards

Like 0

Like

2 comments
local   all             postgres                                peer
 
# TYPE  DATABASE        USER            ADDRESS                 METHOD
 
# "local" is for Unix domain socket connections only
local   all             all                                     peer
# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
local   replication     all                                     peer
host    replication     all             127.0.0.1/32            md5
host    replication     all             ::1/128                 md5
host all all 10.0.0.0/24 trust

Here is Mine, maybe you need an "Host all all  "  and your local subnet?

Hello,

 

Here are some recommendations:

  1. Update your pg_hba.conf file with the following content:

local all all trust

host all all 127.0.0.1/32 trust

host all all ::1/128 trust

 

  1. Verify that your connection string in the ConnectionStrings.config file is accurate, including the Server, Port, Database, User ID, and Password settings.

  2. Restart PostgreSQL after updating pg_hba.conf using the command: sudo service postgresql restart.

  3. Test your connection to ensure the error is resolved.

Show all comments

Hello,

 

is it possible to set timezone for date/time field? 

By default Creatio displays date/time in current user timezone, but we need to display timezone and date/time in that timezone. And have these columns in the list as well.

Is it possible in Freedom UI?

 

Kind regards,

Vladimir

Like 2

Like

1 comments

Hello Vladimir, 

 

If I understood your request correctly, you'd like to implement the functionality close to real time time zone convertor. 

Unfortunately, such implementation is not possible using basic system tools, but we've registered a corresponding query for our R&D team to consider adding such functionality in the upcoming versions of the system. 

 

I would also suggest to check the below article, it won't cover your business task fully, but could be helpful:

https://academy.creatio.com/docs/developer/front_end_development_freedo…

 

Best regards,

Anastasiia

Show all comments

Hi,

I have created a business process, which is simply notifying a user that a new record has been created within a Project. I can create the notification in the way I want, however when clicking on the link in the notification window, it simply takes the user to the Project list page and not the Project page itself i.e. the detail page.

I have used the Parent entity ID column and set this to the Project ID value, as you can see in the screenshot below. This I expected it to work. Performing a trace shows the correct Project ID value for the record in question, so I am not sure what is wrong.



Thanks

Like 0

Like

3 comments

Hello,

 

In order to create an activity, please add this value to the business process in the Add Data element:

To = responsible

Title

Time

Object

Source (for example Owner)

Unique caption Id = Record Id (from the signal)

Hi Anastasia

 

Many thanks for your reply.

 

I have the following data structure in place within the 'Notification' object for creating a new record:

 

To       -       Lookup to specific contact

Object     -      Lookup.Section Object(View).Project

Time     -    System - Current Date & Time

ParentEntityID    -    Project ID

Source     -     (I have tried a number of sources - Lookup > Owner, Lookup > Contact, Specific User via Process Parameter causes a foriegn key constraint error)

Unique Caption ID     -    RecordID from signal



Before I added Source and Unique Caption ID clicking the Notification link in the notification panel took me to the Project summary page. Adding these two as indicated in your reply above causes no action i.e. no page change occurs.



The notification is being created, although it is in the System Messages section, but the link is just not taking me to the Project.



Anything else you can guide me with would be very much appreciated.

 

thanks

 

Mark



 

I have got it working!



For those that come along after this, this is how:

 

  • Title    -     What you want to display in the notification subject

  • To       -       Lookup to specific contact

  • Object     -      Lookup.Section Object(View).Project

  • Time     -    System - Current Date & Time

  • Unique Caption ID     -    RecordID from signal

 

The issue was that I had ParentEntityID included, which once I removed that allowed the link to work. I read a previous Blog on this subject which had this value.

 

 

 

 

Show all comments