You can change the parent object for the detail list schema (step 2 in the article) as shown on the below screenshot:
Also, in case the changes are not reflected straight away once all the required steps from the instruction are done, generate a source code and compile a system.
You can change the parent object for the detail list schema (step 2 in the article) as shown on the below screenshot:
Also, in case the changes are not reflected straight away once all the required steps from the instruction are done, generate a source code and compile a system.
Now the interface works but the list is not working propertly
it allow me create records, but when i refresh the page, i can't see my records and the debugger show the error in the pic , but the records are persisted, i've check it in the DataBase,
The error message indicates that there is an issue with a column: it is either incorrectly added to the schema page or is renamed/deleted.
I would suggest to double-check the article and re-add the custom Attachments detail anew following the guidance so this way it will be properly added to the needed section.
In case the issue still persists or occurs with your custom columns added to the detail afterwards, please approach us at support@creatio.com, so we will be able to check the configuration on the instance and find the root cause of the issue.
You can set up a default value for an 'Assignee' column of your object. However, the object should be in the Custom package. You will not be able to set a default value for the base objects. Apart from that, in this particular example, the case assignee will be the save for all the cases.
But we recommend you double-check the business rule. Please feel free to find the information about business rules in our Creatio Academy article.
The boolean field “IsRead” on the ESNNotification object shows whether the message has been read and whether it needs to be read on the counter (the number on the CTI panel).
Please specify if you are trying to get the photo from the contact or post the photo to the contact. It's not clear from the description of the question.
what you need to do is to call /0/odata/SysImage({Id here})/Data endpoint. And Id should be received from the "PhotoId" column value received when calling 0/odata/Contact({{ContactId}}). Here is an example for accounts from my local app:
This screenshot gives no information on the actual reason for the problem unfortunately.
What you need to do is:
1) If this is a local app - check the WebSockets settings in the app (this article will be useful). This is the most probable reason why records cannot be deleted in any section as you state. Also check if the "WebSocket" feature is enabled in the IIS-server Windows features.
2) Check the MultiDeleteQueue table and which messages do you receive there (no matter which instance cloud or on-site you have).
3) Check the application logs via C:\Windows\Temp folder (if this on-site .NET Framework app or Logs folder in the root binary files if this is a .NET Core app). If this is a cloud-based app you can approach us at support@creatio.com and we will provide you with the logs needed.
Delete is very slow then it will pop up this generic error message "
Error occurred during the deletion of data. Please contact system administrator." Then after you refresh the section page for Example Account section, the record was already deleted.
OData cannot perform such an operation in one action if calling /0/odata/Account endpoint. You can retrieve data from related entities (that are specified in lookup columns), but not from details. Or you need to perform OData request to AccountAddress collection and retrieve data on the related accounts there in the following manner:
OData cannot perform such an operation in one action if calling /0/odata/Account endpoint. You can retrieve data from related entities (that are specified in lookup columns), but not from details. Or you need to perform OData request to AccountAddress collection and retrieve data on the related accounts there in the following manner:
Can i increase the timeout ? for an external request :
var request_user = WebRequest.Create(XMLUrl) as HttpWebRequest;
request_user.Credentials=new System.Net.NetworkCredential(XMLUserParameter, XMLPasswordParameter);
var response_user = request_user.GetResponse();
is an XML file 40mb, it will be increase the size ,
In your code sample you posted, you're using a HttpWebRequest for the call to the external service. For WebRequest, you can set the timeout like this:
var request_user = WebRequest.Create(XMLUrl) as HttpWebRequest;
request_user.Timeout=500000;// set timeout here
request_user.Credentials=new System.Net.NetworkCredential(XMLUserParameter, XMLPasswordParameter);
var response_user = request_user.GetResponse();
Note, the Timeout property is in milliseconds - I believe the default is 100000 ms, or 100 seconds)
In your code sample you posted, you're using a HttpWebRequest for the call to the external service. For WebRequest, you can set the timeout like this:
var request_user = WebRequest.Create(XMLUrl) as HttpWebRequest;
request_user.Timeout=500000;// set timeout here
request_user.Credentials=new System.Net.NetworkCredential(XMLUserParameter, XMLPasswordParameter);
var response_user = request_user.GetResponse();
Note, the Timeout property is in milliseconds - I believe the default is 100000 ms, or 100 seconds)
So the idea is if I import a contact with name Dean, the existing contact with the name Dean will be updated with data from file and no duplicates will be created.