There is no place to see that in Creatio. But you can use SQL script that shows the size of all tables in the database, so you can see the size of AccoutnFile, ContactFile, OpportunityFile tables and so on.
SELECT
t.Name AS TableName,
s.Name AS SchemaName,
p.Rows AS RowCounts,
SUM(a.total_pages) * 8 AS TotalSpaceKB,
SUM(a.used_pages) * 8 AS UsedSpaceKB,
(SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB
FROM
sys.tables t
INNER JOIN sys.indexes i ON t.object_id = i.object_id
INNER JOIN sys.partitions p ON i.object_id = p.object_id AND i.index_id = p.index_id
INNER JOIN sys.allocation_units a ON p.partition_id = a.container_id
LEFT OUTER JOIN sys.schemas s ON t.schema_id = s.schema_id
You are correct. The most likely cause of the error is the Excel template itself. Please create a similar report without a template. Download the report and use the file as a basis for the template. Add one worksheet at a time to the file and test it.
We are trying to create a campaign and for that campaign when we try to add a flow.
In the flow, we have added “Add Data” for object “activity” as showed in the screenshot
When we click on the column values to set option, a list of fields are displayed but unfortunately “Contact” field is not available.
As activity is OOTB created object, by default it does contain contact and account fields but we are not sure on why it is not being listed in the dialog box
Any object created by the campaign (e.g. activity) is automatically connected to the contact entity via business logic of the campaign. There's no need to connect it manually.
In our Creatio CRM we have a number of email templates that display numbers related to currencies and other values. Our client has requested a specific format that requires to have certain thousand separator (10,000,000.00).
We haven't found any way to specify format in the email macros. Does anyone know of a way to achieve this in an email template?
The macros take the actual value in the database. If you have 10,000,000.00 on UI, in the db you will have 10000000.00. That's why macro value has no separators. Currently it is not possible to add comma separators in macros. We have active task in our backlog to implement this logic for macros as well, but it will be available in future application versions.
My requirement is to run a scheduler job on monthly basis, Which would retrieve all employee and then group by a specific conditions and do some calculations and update them.
To do calculation we need to retrieve the few more objects.
So that we can do this using C# in console application i can run in task scheduler as i am using OnPremise Creatio CRM.
To run this action once per month a business process with a timer can be created that will create a scheduler task. And then you can either add a script task to the process, or use read data and read a collection of records or implement any other logic required.
it is not possible out-of-the-box. However, there are some (paid) marketplace add-ons that enable you to do this.
Another way would be to programmatically add the functionality on your own, but you will need some SMS gateway to send the messages, which will usually cost something.
We are trying to automate the assignment of user/agent(Operator) in Queue when a queue item is inserted from a object using C#. When we are trying to debug the code on object onInserted mode it is not hitting the breakpoint.
Firstly please check the "QueueItem" object and set up checkboxes according to your further events
If you activate this checkbox (on Updating as you need) you will see new field below which was generated automatically. The value of that generated field will be used as trigger for the object process. In your case the override method will be "IsInserted" , where your logic is implemented.
We did the same thing here, but we are unable to debug the code in VS, We put a break point on method OnInserted() mode but it is not hitting the break point when a QueueItem record is inserting, but somehow it is inserting in DB.
We need to hide the "What can I do for you?" container whenever a communication panel module is loaded. This is to induce a responsive behavior when the screen resolution is >=1440PX.
Is there a way to trigger CSS change when a communication panel module is rendered?
When the right panel opens the command-line (what can I do for you?) will disappear. When it closes it will reappear. See https://share.customerfx.com/xQubRjWj
When a lead is created "Lead Management" process is called, wanted to know where this call is initiated. So that I can call this when a lead is created from mobile app. Thanks in advance.