Skip to content
Snippets Groups Projects
Commit 648e5f0d authored by Sebastian Pongratz's avatar Sebastian Pongratz :ping_pong:
Browse files

[Projekt: xRM-ContactManagement][TicketNr.: 2002777][Export - Einschränkung...

[Projekt: xRM-ContactManagement][TicketNr.: 2002777][Export - Einschränkung auf maximale Anzahl Daten] Comment
parent d7826767
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,9 @@ import("Context_lib");
import("system.vars");
import("system.neon");
let operatingsate = vars.get("$sys.operatingstate");
let operatingstate = vars.get("$sys.operatingstate");
if (operatingsate == neon.OPERATINGSTATE_NEW)
if (operatingstate == neon.OPERATINGSTATE_NEW)
{
// If the place of use of the export template is changed, the selected place of use no longer matches the parent.
vars.set("$field.PLACEOFUSE", null);
......
......@@ -508,7 +508,8 @@ ExportTemplateUtils.exportableEntities = function ()
}
/*
* The maximum number of records that can be exported at one time.
* The maximum number of records that can be exported at one time.
* This is necessary because more data can lead to performance problems.
*/
ExportTemplateUtils.maxExportRecords = function ()
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment