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

Hi there,

 

Im workin in a demo and are looking to strict contract approval so only system administrators can be choosen as approver and no one else?

 

Where can i do this if it even is possible

Like 0

Like

1 comments

Hello,

 

Approvals have the same access set up as any other object in the system. If you want to specify who can and who cannot see approvals go to the "Object permissions" section and specify roles for record permissions for Contract  Approvals object: 

Show all comments

We're trying to create a chart to analyse Lead progression through the different Lead Stages, but the only sorting options are alphabetically by the grouping column or by the measure value. We want this to be sorted by an additional column on the Lead Stage that defines the order within the Lead progression rather than alphabetically or by the value to keep a consistent and logical order to the data, but cannot see an option for this unless there's a trick we're missing. Could someone please advise on how this might be done? We're mostly working with Freedom UI pages and therefore charts.

Like 2

Like

6 comments

Vladimir Sokolov,

it may be related, but that question is discussing combo boxes in pages, whereas I’m looking for chart sorting (e.g. in a bar graph) so I expect any solution would be fairly different.

Harvey Adcock,

 

Good day,

 

Could you please provide more details about your business task?



Perhaps you could take a screenshot with a description of your requirements so that we can better understand them and offer advice.

 

We are looking forward to your feedback.



Best regards,

Pavlo

Hi Pavlo,

 

Sure, what the business is asking for is to be able to sort a chart's columns by the lead stage through the process, rather than by the stage's name alphabetically or by the total number of leads in each stage as can be selected by default in the chart options. For example, see this chart available in the Home section of the Sales workplace in a clean CRM trial environment:

 

It is currently sorted by the stage name alphabetically, which doesn't align with the progression you actually get through the Opportunity stages. Looking at the sorting options, we can see that the only ones available are to sort by the grouping name alphabetically, or by the measure value:

 

So we are unable to sort by another field on the Lead Stage lookup that we've created - Stage Number - which would order it correctly. What we'd like is to be able to use that additional field for sorting without using it as the labels for the x axis.

 

If there are any workarounds for this besides numbering the stage names themselves, we'd love to hear about them!

 

Many thanks,

Harvey

Harvey Adcock,

Good day,

 

Unfortunately, it's not possible to implement this with the current basic functionality. However, we have registered the idea for our development team to consider implementing this feature.

Perhaps the "Full pipeline" dashboard type may work for you, where stages are grouped according to their placement in the DCM field?





 

Thank you for reaching out!

Hi Pavlo

 

Would you know if more advance sorting of dashboards has been enabled in any further Creatio releases? 

 

Thanks,

Jacek

Show all comments

Hello everyone,



I have tried sending test emails to the personal emails of myself (an iPhone owner) and another co-worker (an Android owner). When I viewed the email on my phone it looked perfect, but my co-worker showed me what his email looked like (see below).







As you can see, though the image is set to left alignment, it appears centered on the Android device. Can anyone provide insight on why this is happening, and possible solutions? Thanks in advance.



Best,



Lucas

Like 0

Like

1 comments

Hi all! please tell me which application helps with renaming printed forms. For example, I want the name of a Word document (invoice) to change to invoice number + client? Previously, such an application was on the marketplace. Perhaps now this can be done in the system itself? Thank you in advance

Like 1

Like

1 comments

Hello,



Unfortunately, at the moment it is not possible to set up dynamic name change by a print form in the system with basic tools. 



However, a task has already been registered in our R&D team to consider and implement such a feature in future releases. In case you would like to check  what stage this task is at, I am sending you the task number: PR-4191. Feel free to share this number with us at any time and ask your questions.

Show all comments

Greetings,



I have a question regarding the Product List 2 Columns Title+Image+Text+Button module in the email designer.





Is there a way to remove the border around the article pieces? Thanks in advance.



Lucas

Like 0

Like

1 comments
Best reply

Hello Lucas,

 

Yes, it's possible in clomn configurions:

 

Please find more infromation here:

https://academy.creatio.com/docs/user/marketing_tools/email_marketing/e…

Hello Lucas,

 

Yes, it's possible in clomn configurions:

 

Please find more infromation here:

https://academy.creatio.com/docs/user/marketing_tools/email_marketing/e…

Show all comments