I am syncing contacts and orders with their products via a webservice. I am syncing about 100k records. It goes very slow and just stops iterating without an error message. In the execution diagram I see nothing odd. It just hangs on 'Running' and nothing happens.
Please report this issue directly for our support team at support@creatio.com so we could work on the problem directly, since it cannot be resolved over Community.
Is it possible to generate an excel report from within a process?
I have looked at this and this post, but have not been able to get the solution suggested to work (specifically I get a 'You do not have permission to view this directory or page using the credentials that you supplied.' error). I've also tried a process element web service call using basic authentication with the same error.
I am able to retrieve an authentication cookie. I am also able to retrieve a filter key. However when I attempt to download the spreadsheet the WebRequest `GetResponse` call results in "The remote server returned an error: (401) Unauthorized." It works when I query the API using Postman, but not from within a Creatio script task for some reason.
The C# code I am using to download the excel spreadsheet is as follows:
void TryForData(){
var url = _authServiceUrl3 +"/"+ _excelReportName +"/"+ _key;// This would be for example, "https://130417-crm-bundle.creatio.com/0/rest/IntExcelReportService/GetExportFilteredData//Test_Report/ExportFilterKey_7e4a40f3-2e89-495d-9a66-91bd4a206dc4"
HttpWebRequest request =(HttpWebRequest)WebRequest.Create(url);
request.Method="GET";
request.CookieContainer=new CookieContainer();
string[] cookiesAry =new string[_authCookie.Count];int i =0;
foreach (Cookie cook in _authCookie){
cookiesAry[i++]=(cook.Name+"="+ cook.Value);}
_cookieHeader = string.Join("; ", cookiesAry);
request.Headers.Add("Cookie", _cookieHeader);
request.Accept="*/*";
request.AutomaticDecompression= DecompressionMethods.GZip| DecompressionMethods.Deflate;
request.KeepAlive=true;using(var response =(HttpWebResponse)request.GetResponse()){if(response.StatusCode== HttpStatusCode.OK){}else{
_output = _output + response.StatusDescription+"\n\n";}}}
The full C# code for the script task is as follows:
I'm trying to add an object in my local account and add a parent object to the object, but when I try to add it, I get the error that the menu does not appear. I tried typing any name, it still comes up blank. What can I do?
If you are trying to create an object that should inherit properties from other packages, and nothing is being inherited, make sure you have added dependencies to those packages.
To do this, you can open the "Dependencies" section on the package creation page and add dependencies to the packages from which you want to inherit properties. If the package has dependencies, the installation of these dependencies is checked during package installation, so make sure you have added all the necessary dependencies for inheriting properties.
To add to what Alla said, whatever object it is that you want to select as your parent, find what package that object is in and then add that package as a dependency to your package. If you're wanting to select BaseEntity, I believe that package is Base.
Hi Mykhailo, I was referring to a chat "widget" or in this exact instance a widget that the team can use to report bugs in Creatio (implementation) or request features.
and in your custom button you can either use already implemented callMailTo method (so your users could report bugs or features via email) or create your own method (to open some URL or oepn some page). As a result this button will be available on any page and your business task will be achieved.
I am actually just simply looking to allow an external script to be run, so my widget can appear at the bottom right of the screen. I am using https://gleap.io , but this is similar to any third party chat app.
Is there anything stopping this from working as it seems like Google is picking up the G-tag.
Not sure if I missed it, or if it is not implemented yet. Where can I find the equivalent of "field filter values" in standard UI business rules (image below) for a Freedom UI Form page ?
Oleg outlines how to set it up like a business rule. I also outline how to handle the lookups request to load it's data source and then create the filter t that time (which makes it easier to refer to other values in the page that you want to use in the filter).
just read the 8.0.7 release notes ""Advanced business rule conditions. It is now possible to set up more advanced business rules using system settings and system variables in business rule conditions. For example, you can set up a rule that displays the [ Results ] field if the current user is the record owner.""
I have specified conditions for filtering record for printable. Until I select any record printable is inactive (unable to select it from PRINT list). Does it work only that way? Is it possible to make it active without selecting records as I have filtering conditions.
One more question. When I select several records and choose my printable I receive as many files as records selected. Is it possible to have only one file instead of several?
The system cannot recognize what has to be printed. Thus, it is necessary to click on the record in the section, so that it would be selected in the section list and the report button will become active.
As for one printable instead of multiple ones, unfortunately, it is not possible to implement your business task using custom methods of printables at the moment.
Word printables are uploaded this way: 1 document per 1 section entry.
Our development team already has a registered issue with your question. We have registered your idea of unloading Word Printables on several section records and it may be implemented in future releases.