From de80d564b146fbc89b3adf3a7279f7bd0a8b7941 Mon Sep 17 00:00:00 2001 From: Developer01 Date: Thu, 2 Jul 2026 16:35:40 +0200 Subject: [PATCH] V 2.9.5 Logging Hotspots, --- app/TaskFlow/ControlCreator/GridControl.vb | 10 +- app/TaskFlow/My Project/AssemblyInfo.vb | 2 +- app/TaskFlow/frmValidator.vb | 40 +- app/TaskFlow/logtaskflow.txt | 3130 +------------------- 4 files changed, 27 insertions(+), 3155 deletions(-) diff --git a/app/TaskFlow/ControlCreator/GridControl.vb b/app/TaskFlow/ControlCreator/GridControl.vb index 1188900..fb49d12 100644 --- a/app/TaskFlow/ControlCreator/GridControl.vb +++ b/app/TaskFlow/ControlCreator/GridControl.vb @@ -114,9 +114,9 @@ Namespace ControlCreator ' *** DEBUG: Log VOR/NACH (nur beim ersten Aufruf) *** If LOG_HOTSPOTS Then - _Logger.Info("[ResolveSqlTemplate] BEFORE: {0}", + _Logger.Info("LOG_HOTSPOTS [ResolveSqlTemplate] BEFORE: {0}", beforeReplace.Substring(0, Math.Min(150, beforeReplace.Length))) - _Logger.Info("[ResolveSqlTemplate] AFTER: {0}", + _Logger.Info("LOG_HOTSPOTS [ResolveSqlTemplate] AFTER: {0}", resolvedSql.Substring(0, Math.Min(150, resolvedSql.Length))) End If Else @@ -843,14 +843,14 @@ Namespace ControlCreator ' Cache prüfen SyncLock _DynamicEditorCacheShared If _DynamicEditorCacheShared.ContainsKey(cacheKey) Then - _Logger.Info("[CustomRowCellEdit] ✓ CACHE HIT: [{0}]", cacheKey) + _Logger.Debug("[CustomRowCellEdit] ✓ CACHE HIT: [{0}]", cacheKey) e.RepositoryItem = _DynamicEditorCacheShared(cacheKey) Return End If End SyncLock ' Editor erstellen mit RESOLVED SQL - _Logger.Info("[CustomRowCellEdit] 🆕 MISS: Creating editor for [{0}]", e.Column.FieldName) + _Logger.Debug("[CustomRowCellEdit] 🆕 MISS: Creating editor for [{0}]", e.Column.FieldName) Dim realEditor = CreateRowSpecificEditor( e.Column.FieldName, resolvedSql, @@ -865,7 +865,7 @@ Namespace ControlCreator _DynamicEditorCacheShared.Add(cacheKey, realEditor) End If End SyncLock - _Logger.Info("[CustomRowCellEdit] ✓ Cached [{0}] editor (Type=[{1}])", e.Column.FieldName, realEditor.GetType().Name) + _Logger.Debug("[CustomRowCellEdit] ✓ Cached [{0}] editor (Type=[{1}])", e.Column.FieldName, realEditor.GetType().Name) e.RepositoryItem = realEditor Else _Logger.Warn("[CustomRowCellEdit] CreateRowSpecificEditor returned Nothing for [{0}]", e.Column.FieldName) diff --git a/app/TaskFlow/My Project/AssemblyInfo.vb b/app/TaskFlow/My Project/AssemblyInfo.vb index 23f0dc7..1c522ce 100644 --- a/app/TaskFlow/My Project/AssemblyInfo.vb +++ b/app/TaskFlow/My Project/AssemblyInfo.vb @@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices ' übernehmen, indem Sie "*" eingeben: ' - + diff --git a/app/TaskFlow/frmValidator.vb b/app/TaskFlow/frmValidator.vb index 3ff3b85..d00a58d 100644 --- a/app/TaskFlow/frmValidator.vb +++ b/app/TaskFlow/frmValidator.vb @@ -4150,7 +4150,7 @@ Public Class frmValidator If LOG_HOTSPOTS Then perfStart = DateTime.Now perfLastCheck = perfStart - MyValidationLogger.Info("[PERF LND] Load_Next_Document START") + MyValidationLogger.Info("[LOG_HOTSPOTS] Load_Next_Document START") End If _CachedSqlDataCache.Clear() @@ -4198,7 +4198,7 @@ Public Class frmValidator End If If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach Get_Next_GUID: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach Get_Next_GUID: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If @@ -4209,7 +4209,7 @@ Public Class frmValidator End If If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach GetDocPathWindows: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach GetDocPathWindows: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If @@ -4221,7 +4221,7 @@ Public Class frmValidator Load_IDB_DOC_DATA() If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach Load_IDB_DOC_DATA: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach Load_IDB_DOC_DATA: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If If IsNothing(IDB_DT_DOC_DATA) Then @@ -4235,12 +4235,12 @@ Public Class frmValidator End If If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach CreateWMObject/Load_IDB_DOC_DATA: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach CreateWMObject/Load_IDB_DOC_DATA: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If PRTF_PROFILE_FILES_WORK("InWork") If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach IN_WORK-UPDATE: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach IN_WORK-UPDATE: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If @@ -4268,7 +4268,7 @@ Public Class frmValidator End If If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach Windream_get_Doc_info: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach Windream_get_Doc_info: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If @@ -4285,9 +4285,9 @@ Public Class frmValidator If LOG_HOTSPOTS Then oMilliseconts = (DateTime.Now - perfLastCheck).TotalMilliseconds If oMilliseconts > 6000 Then - MyValidationLogger.Warn($"[PERF LND] ⚠️ LoadDocument_DDViewer lasted far to long: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Warn($"[LOG_HOTSPOTS] ⚠️ LoadDocument_DDViewer lasted far to long: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") Else - MyValidationLogger.Info($"[PERF LND] Nach LoadDocument_DDViewer: {oMilliseconts}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach LoadDocument_DDViewer: {oMilliseconts}ms") End If perfLastCheck = DateTime.Now End If @@ -4336,9 +4336,9 @@ Public Class frmValidator If LOG_HOTSPOTS Then oMilliseconts = (DateTime.Now - perfLastCheck).TotalMilliseconds If oMilliseconts > 6000 Then - MyValidationLogger.Warn($"[PERF LND] ⚠️ FillIndexValues lasted far to long: {oMilliseconts}ms") + MyValidationLogger.Warn($"[LOG_HOTSPOTS] ⚠️ FillIndexValues lasted far to long: {oMilliseconts}ms") Else - MyValidationLogger.Info($"[PERF LND] Nach FillIndexValues: {oMilliseconts}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach FillIndexValues: {oMilliseconts}ms") End If perfLastCheck = DateTime.Now @@ -4370,7 +4370,7 @@ Public Class frmValidator End If If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach LoadSQLData-Loop: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach LoadSQLData-Loop: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If @@ -4452,7 +4452,7 @@ Public Class frmValidator End Try If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach Currency-Format: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach Currency-Format: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If @@ -4464,9 +4464,9 @@ Public Class frmValidator If LOG_HOTSPOTS Then oMilliseconts = (DateTime.Now - perfLastCheck).TotalMilliseconds If oMilliseconts > 6000 Then - MyValidationLogger.Warn($"[PERF LND] ⚠️ Show_WF_Messages lasted far to long: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Warn($"[LOG_HOTSPOTS] ⚠️ Show_WF_Messages lasted far to long: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") Else - MyValidationLogger.Info($"[PERF LND] Nach Show_WF_Messages: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach Show_WF_Messages: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") End If perfLastCheck = DateTime.Now @@ -4480,7 +4480,7 @@ Public Class frmValidator Controls2B_EnDisabled_onLoad() If LOG_HOTSPOTS Then - MyValidationLogger.Info($"[PERF LND] Nach Controls2B_EnDisabled: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LOG_HOTSPOTS] Nach Controls2B_EnDisabled: {(DateTime.Now - perfLastCheck).TotalMilliseconds}ms") perfLastCheck = DateTime.Now End If MyValidationLogger.Debug("frmValidator: LoadNextDocument finished!") @@ -4500,11 +4500,11 @@ Public Class frmValidator CloseOverlaySafe() If LOG_HOTSPOTS Then ' ========== DIAGNOSE ENDE ========== - MyValidationLogger.Info($"[INFO] Load_Next_Document ENDE") - MyValidationLogger.Info($" frmValidator.IsDisposed: {Me.IsDisposed}") - MyValidationLogger.Info($" frmValidator.Visible: {Me.Visible}") + MyValidationLogger.Info($"[LHS] Load_Next_Document ENDE") + MyValidationLogger.Info($"[LHS] frmValidator.IsDisposed: {Me.IsDisposed}") + MyValidationLogger.Info($"[LHS] frmValidator.Visible: {Me.Visible}") ' ========== ENDE DIAGNOSE ========== - MyValidationLogger.Info($"[PERF LND] Load_Next_Document GESAMT: {(DateTime.Now - perfStart).TotalMilliseconds}ms") + MyValidationLogger.Info($"[LHS] Load_Next_Document GESAMT: {(DateTime.Now - perfStart).TotalMilliseconds}ms") End If End Try End Sub diff --git a/app/TaskFlow/logtaskflow.txt b/app/TaskFlow/logtaskflow.txt index ee113ab..5f28270 100644 --- a/app/TaskFlow/logtaskflow.txt +++ b/app/TaskFlow/logtaskflow.txt @@ -1,3129 +1 @@ -13:22:15.9572|MSSQLServer|DEBUG >> TestCanConnect -> Testing connection to [Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX;] -13:22:16.0322|DatabaseWithFallback|DEBUG >> .ctor -> Client exists: [False] -13:22:16.0322|DatabaseWithFallback|DEBUG >> .ctor -> DatabaseECM exists: [True] -13:22:16.0322|DatabaseWithFallback|DEBUG >> .ctor -> DatabaseIDB exists: [False] -13:22:16.0322|taskFLOW|DEBUG >> bw_DoWork -> SPLASH: Database successfully intitialized! -13:22:16.5349|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5359|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5359|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5359|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5359|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBPM_KONFIGURATION WITH (NOLOCK) WHERE GUID = 1] and Parameters [] -13:22:16.5359|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5359|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5359|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5359|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5359|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from tbdd_Modules WITH (NOLOCK) where SHORT_NAME = 'PM'] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBDD_CONNECTION WHERE AKTIV = 1] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select CAT_TITLE,CAT_STRING from TBDD_CATALOG] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [Select * FROM TBDD_3RD_PARTY_MODULES WHERE ACTIVE = 1] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [Select * FROM TBDD_SQL_COMMANDS WITH (NOLOCK)] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_GUI_LANGUAGE_PHRASE WITH (NOLOCK) WHERE MODULE IN ('PM','All Modules')] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBPM_PROFILE_SEARCH WITH (NOLOCK) where TYPE = 'DOC' AND ACTIVE = 1 ORDER BY PROFILE_ID,TAB_INDEX] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBPM_MAIN_VIEW_GROUPS WITH (NOLOCK) WHERE ACTIVE = 1] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBPM_CHART] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT LANG_CODE FROM TBDD_GUI_LANGUAGE WITH (NOLOCK) WHERE ACTIVE = 1 ORDER BY LANG_CODE] and Parameters [] -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_COLUMNS_FORMAT WITH (NOLOCK) WHERE MODULE = 'taskFLOW' AND GRIDVIEW = 'GridViewWorkflows'] and Parameters [] -13:22:16.5520|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.03 seconds || InitBasics -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5520|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5520|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5520|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5520|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM VWDD_USER_CLIENT WHERE USERNAME = 'svc.digitaldata'] and Parameters [] -13:22:16.5679|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.00 seconds || VWDD_USER_CLIENT -13:22:16.5679|taskFLOW|DEBUG >> InitUserLogin -> Username: svc.digitaldata -13:22:16.5679|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5679|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5679|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5679|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5679|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM [dbo].[FNDD_LOGIN_USER_MODULE] ('svc.digitaldata','PM',1)] and Parameters [] -13:22:16.5679|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.00 seconds || FNDD_LOGIN_USER_MODULE -13:22:16.5679|taskFLOW|INFO >> InitUserLogin -> Got a CheckUserDefintion for User [svc.digitaldata] -13:22:16.5679|taskFLOW|DEBUG >> InitUserLogin -> User Info: -13:22:16.5679|taskFLOW|DEBUG >> InitUserLogin -> Language: [de-DE] -13:22:16.5679|taskFLOW|DEBUG >> InitUserLogin -> Username: [svc.digitaldata] -13:22:16.5679|taskFLOW|DEBUG >> InitUserLogin -> Environment.MachineName: [SWEECM2] -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Params -> Refresh_Params starting ... -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Params -> SQL FROM SQLCommands DD: select T.* FROm VWPM_PROFILE_ACTIVE T where T.FILE_COUNT > 0 and T.GUID IN (SELECT PROFILE_ID FROm dbo.FNPM_GET_ACTIVE_PROFILES_USER (@USER_ID)) -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Params -> WF_MESSAGES-SQL FROM SQLCommands DD: SELECT - CONVERT(VARCHAR(30), A.ADDED_WHEN,20) + ' - ' + B.STRING1 as MSG,A.ImageIndex -FROM - TBTF_VALIDATOR_MESSAGE A INNER JOIN - (SELECt * FROM TBDD_GUI_LANGUAGE_PHRASE - WHERE MODULE = 'PM' AND OBJ_NAME = 'frmValidator' AND CAPT_TYPE = 'WF_MESSAGE') B ON A.GUI_LANG_TITLE = B.TITLE -WHERE - A.Active = 1 and (A.DocID = @DocID or A.DocID = 1) AND B.LANGUAGE = '@LANGUAGE' ORDER BY A.ADDED_WHEN DESC -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Params -> Refresh_Params BASEDATA_DT_TBDD_SQL_COMMANDS done! -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Params -> Refresh_Params USERCOUNT_LOGGED_IN 2 -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Params -> Refresh_Params WORKING_MODE PM.NO_MASS_VALIDATOR#PM.FORCE_LAYOUT_OVERVIEW#PM.NO_CHARTS#PM.COLORSCHEME=Purple#PM.MONITORING -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Params -> Refresh_Params ADDITIONAL_TITLE Stadtwerke Eschwege GmbH - Workflows (PROD) -13:22:16.5679|taskFLOW|DEBUG >> ProcessWorkingModeParameter -> Processing Working Mode Parameter: PM.NO_MASS_VALIDATOR -13:22:16.5679|taskFLOW|INFO >> LogParameterValue -> SHOW_MASS_VALIDATOR = False -13:22:16.5679|taskFLOW|DEBUG >> ProcessWorkingModeParameter -> Processing Working Mode Parameter: PM.FORCE_LAYOUT_OVERVIEW -13:22:16.5679|taskFLOW|DEBUG >> LogParameterValue -> FORCE_LAYOUT_OVERVIEW = True -13:22:16.5679|taskFLOW|DEBUG >> ProcessWorkingModeParameter -> Processing Working Mode Parameter: PM.NO_CHARTS -13:22:16.5679|taskFLOW|DEBUG >> LogParameterValue -> SHOW_CHARTS = False -13:22:16.5679|taskFLOW|DEBUG >> ProcessWorkingModeParameter -> Processing Working Mode Parameter: PM.COLORSCHEME=Purple -13:22:16.5679|taskFLOW|DEBUG >> ProcessWorkingModeParameter -> RIBBON_COLOR_SCHEME = PURPLE -13:22:16.5679|taskFLOW|DEBUG >> ProcessWorkingModeParameter -> Processing Working Mode Parameter: PM.MONITORING -13:22:16.5679|taskFLOW|DEBUG >> LogParameterValue -> MONITORING_ACTIVE = True -13:22:16.5679|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.00 seconds || Refresh_Params -13:22:16.5679|taskFLOW|DEBUG >> InitUserLogin -> User exists.... -13:22:16.5679|taskFLOW|DEBUG >> Refresh_Licence -> license initialized.... -13:22:16.5679|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.00 seconds || Refresh_Licence -13:22:16.5679|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5679|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5679|MSSQLServer|DEBUG >> ExecuteNonQueryWithConnectionObject -> ExecuteNonQueryWithConnectionObject: Running Command [INSERT INTO TBDD_USER_MODULE_LOG_IN (USER_ID,CLIENT_ID,MODULE,VERSION_CLIENT,MACHINE_NAME,LANGUAGE_OVERRIDE) VALUES - (2,1,'Process-Manager','2.9.4.0','SWEECM2','')] and Parameters [] -13:22:16.5840|taskFLOW|DEBUG >> LoginOut -> LOGIN of User successfully! -13:22:16.5840|taskFLOW|DEBUG >> InitUserLogin -> Count Users logged in: 3 -13:22:16.5840|taskFLOW|DEBUG >> InitUserLogin -> Init Userlogin successfull completed.... -13:22:16.5840|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.02 seconds || InitUserLogin -13:22:16.5840|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5840|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5840|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5840|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5840|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM VWPM_PROFILE_USER WHERE USER_ID = 2] and Parameters [] -13:22:16.5840|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:16.5840|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:16.5840|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:16.5840|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:16.5840|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT KEY_NAME, VALUE_TEXT1 - FROM TBDD_USER_KEY_VALUE_PAIR WITH (NOLOCK) - WHERE FK_USER_ID = 2 And [FK_MODULE_ID] = '3'] and Parameters [] -13:22:16.5840|taskFLOW|DEBUG >> InitBasics2 -> Loaded inheritance confirmation for column [ACCOUNTING_POS_PURCHASE_RECEIP] with count [0] -13:22:16.5840|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.00 seconds || InitBasics2 -13:22:16.6069|taskFLOW|DEBUG >> ConfigureGlobalLookAndFeel -> RibbonControl1.ColorScheme [PURPLE] -13:22:18.3880|taskFLOW|DEBUG >> frmMain_Load -> Initializing MainForm.... -13:22:18.3970|ConfigManager`1|DEBUG >> WriteToFile -> Saving config to: C:\Users\svc.digitaldata\AppData\Roaming\Digital Data\taskFLOW\1.0.0.0\TEST\UserConfig.xml -13:22:18.3970|ConfigManager`1|DEBUG >> Serialize -> Serializing config object -13:22:18.3970|ConfigManager`1|DEBUG >> Serialize -> Object serialized. -13:22:18.3970|taskFLOW|DEBUG >> frmMain_Load -> Initializing MainForm.... -13:22:18.3970|taskFLOW|INFO >> frmMain_Load -> Username: svc.digitaldata -13:22:18.3970|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.3970|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.4110|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.4110|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.4110|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM [dbo].[FNDD_LOGIN_USER_MODULE] ('svc.digitaldata','PM',1)] and Parameters [] -13:22:18.4110|taskFLOW|DEBUG >> GetBaseData -> VWPM_PROFILE_ACTIVE-SELECT used from DD-SQL-Config.. -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.4110|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.4110|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.4110|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select T.* FROm VWPM_PROFILE_ACTIVE T where T.FILE_COUNT > 0 and T.GUID IN (SELECT PROFILE_ID FROm dbo.FNPM_GET_ACTIVE_PROFILES_USER (2))] and Parameters [] -13:22:18.4110|taskFLOW|DEBUG >> GetBaseData -> ...NO ADHOC-WORKFLOW PROFILES! -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.4110|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.4110|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.4110|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBPM_PROFILE WITH (NOLOCK) where ACTIVE = 1] and Parameters [] -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.4110|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.4110|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.4110|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBDD_GUI_LANGUAGE_PHRASE WITH (NOLOCK) where LANGUAGE = 'de-DE' AND MODULE = 'PM' AND TITLE LIKE 'PROFILE_%'] and Parameters [] -13:22:18.4110|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.4110|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.4110|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBPM_PROFILE_SEARCH WITH (NOLOCK) where TYPE = 'DOC' AND ACTIVE = 1 ORDER BY PROFILE_ID,TAB_INDEX] and Parameters [] -13:22:18.4110|taskFLOW|DEBUG >> EnsureProfileSearchType -> BASEDATA_DT_PROFILES_SEARCHES_DOC: 8 rows with TYPE='DOC' after type guard. -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.4110|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.4110|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.4110|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.4110|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBPM_PROFILE_SEARCH WITH (NOLOCK) where TYPE = 'SQL' AND ACTIVE = 1 ORDER BY PROFILE_ID,TAB_INDEX] and Parameters [] -13:22:18.4280|taskFLOW|DEBUG >> EnsureProfileSearchType -> BASEDATA_DT_PROFILES_SEARCHES_DATA: 0 rows with TYPE='SQL' after type guard. -13:22:18.4280|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.4280|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.4280|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.4280|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.4280|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT [dbo].[FNPM_LANGUAGE_CONTROL_TEXT] (NAME,'de-DE',CTRL_TYPE,CTRL_TEXT) CTRL_CAPTION_LANG, 'de-DE' as LANGUAGE, * FROM TBPM_PROFILE_CONTROLS WITH (NOLOCK)] and Parameters [] -13:22:18.5050|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.5050|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.5050|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.5050|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.5050|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM VWPM_CONTROL_INDEX ORDER BY PROFIL_ID,Y_LOC, X_LOC] and Parameters [] -13:22:18.5050|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.5050|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.5050|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.5050|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.5050|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBPM_PROFILE_CONTROLS WITH (NOLOCK) WHERE LEN(ISNULL(SQL_UEBERPRUEFUNG,'')) > 0 AND CTRL_TYPE <> 'BUTTON'] and Parameters [] -13:22:18.5050|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:18.5050|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:18.5050|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:18.5050|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:18.5050|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBPM_PROFILE_FINAL_INDEXING with (NOLOCK) WHERE ACTIVE = 1] and Parameters [] -13:22:18.5050|taskFLOW|DEBUG >> Done -> PerformanceWatch 00.11 seconds || GetBaseData -13:22:18.5240|taskFLOW|DEBUG >> Load_Profiles_for_User -> Load_Profiles_for_User ... -13:22:18.5980|taskFLOW|INFO >> frmMain_Load -> NO ADHOC-WFs Blindfiles (0) or License AHWF_NoBlindFile not integrated... -13:22:18.6000|taskFLOW|DEBUG >> frmMain_Load -> No Charts: SHOW_CHARTS = False -13:22:18.7680|Windream|INFO >> NewSession -> Successfully created windream objects -13:22:18.7680|Windream|INFO >> NewSession -> Servername: swedms -13:22:18.7710|Windream|INFO >> NewSession -> Servername aquired from client: True -13:22:18.8060|Windream|DEBUG >> NewSession -> Trying to create a session... -13:22:19.2280|Windream|INFO >> NewSession -> Connected..Session created -13:22:19.2280|Windream|INFO >> NewSession -> Connection to swedms established! -13:22:19.2280|Windream|DEBUG >> .ctor -> ClientBasePath: [\\windream\objects\] -13:22:19.2280|Windream|DEBUG >> .ctor -> ClientDriveLetter: [W] -13:22:19.2280|Windream|DEBUG >> .ctor -> SessionServername: [] -13:22:19.2280|Windream|DEBUG >> .ctor -> SessionUserName: [] -13:22:19.2280|Windream|DEBUG >> .ctor -> SessionDomain: [] -13:22:19.2410|taskFLOW|DEBUG >> Create_Session -> windream-Server: 'swedms' -13:22:19.2800|taskFLOW|DEBUG >> Create_Session -> windream login successful -13:22:19.2800|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:19.2800|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:19.2800|MSSQLServer|DEBUG >> GetScalarValueWithConnectionObject -> GetScalarValueWithConnectionObject: Running Query [SELECT T.GUID FROM TBDD_GROUPS_USER T WITH (NOLOCK) INNER JOIN TBDD_GROUPS T1 WITH (NOLOCK) on T1.GUID = T.GROUP_ID WHERE T1.NAME = 'SERVER_USER' AND T.USER_ID = 2] with Parameters [] -13:22:19.2900|taskFLOW|DEBUG >> Create_Session -> windream-Server: 'swedms' -13:22:19.3140|taskFLOW|DEBUG >> Create_Session -> windream login successful -13:22:19.3140|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:19.3140|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:19.3140|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:19.3140|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:19.3140|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBPM_PROFILE WITH (NOLOCK) where ACTIVE = 1] and Parameters [] -13:22:19.3180|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:19.3180|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:19.3180|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:19.3180|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:19.3180|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [select * from TBDD_GUI_LANGUAGE_PHRASE WITH (NOLOCK) where LANGUAGE = 'de-DE' AND MODULE = 'PM' AND TITLE LIKE 'PROFILE_%'] and Parameters [] -13:22:19.3180|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:19.3180|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:19.3180|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:19.3180|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:19.3180|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM VWPM_CONTROL_INDEX ORDER BY PROFIL_ID,Y_LOC, X_LOC] and Parameters [] -13:22:19.3180|taskFLOW|DEBUG >> frmMain_Load -> MainForm initialized! -13:22:19.4200|taskFLOW|DEBUG >> MoveNext -> FormShown..Now Decide_Load... -13:22:19.4570|taskFLOW|DEBUG >> MoveNext -> Decide_Load: pIsFormLoad [True] - ForceReload [False] - GRID_LOAD_TYPE [OVERVIEW] -13:22:19.4930|taskFLOW|DEBUG >> Load_Profiles_for_User -> Load_Profiles_for_User ... -13:22:19.4930|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:19.4930|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:19.4930|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:19.4930|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:19.4930|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- MK // 07.12.2023 - -SELECT * FROM [DD_ECM].[dbo].[FNCUST_GET_TF_OVERVIEW](2) -ORDER BY [DocID] ASC - --- Dummy: [GROUP_TEXT]] and Parameters [] -13:22:19.5060|taskFLOW|DEBUG >> MoveNext -> Datatable CURR_DT_OVERVIEW loaded: 24 rows -13:22:19.5060|taskFLOW|DEBUG >> UpdateGridCaption -> UpdateGridCaption called - GRID_LOAD_TYPE: [OVERVIEW], CURRENT_CLICKED_PROFILE_TITLE: [], NO_WORKFLOWITEMS: [False] -13:22:19.5060|taskFLOW|DEBUG >> UpdateGridCaption -> Grid Caption updated: [Gesamtübersicht] -13:22:19.5940|taskFLOW|DEBUG >> UpdateGridCaption -> UpdateGridCaption called - GRID_LOAD_TYPE: [OVERVIEW], CURRENT_CLICKED_PROFILE_TITLE: [], NO_WORKFLOWITEMS: [False] -13:22:19.5940|taskFLOW|DEBUG >> UpdateGridCaption -> Grid Caption updated: [Gesamtübersicht] -13:22:19.5940|taskFLOW|DEBUG >> GetLayoutName_GridMain -> LayoutFilename is: DevExpressGridViewOverview_UserLayout_OVERVIEW_de-DE.xml -13:22:19.8710|taskFLOW|INFO >> GridLayoutChanged -> Following ViewColumn no longer exists in the view: [FULL_FILE_PATH] -13:22:19.8710|taskFLOW|DEBUG >> GetLayoutName_GridMain -> LayoutFilename is: DevExpressGridViewOverview_UserLayout_OVERVIEW_de-DE.xml -13:22:19.9240|taskFLOW|DEBUG >> UpdateGridCaption -> UpdateGridCaption called - GRID_LOAD_TYPE: [OVERVIEW], CURRENT_CLICKED_PROFILE_TITLE: [], NO_WORKFLOWITEMS: [False] -13:22:19.9240|taskFLOW|DEBUG >> UpdateGridCaption -> Grid Caption updated: [Gesamtübersicht] -13:22:19.9240|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:19.9240|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:19.9240|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:19.9240|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:19.9240|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_NOTIFICATIONS_SYSTEM NOTE WITH (NOLOCK) - INNER JOIN (SELECT * FROM TBDD_NOTIFICATIONS_SYSTEM WITH (NOLOCK) WHERE LANG_CODE = 'de-DE' OR LANG_CODE = 'ALL') LANG ON NOTE.GUID = LANG.GUID - where (CONVERT(DATE,GETDATE()) <= NOTE.DISPLAY_UNTIL or NOTE.DISPLAY_UNTIL IS NULL) AND NOTE.MODULE = 'PM' - AND NOTE.GUID NOT IN (SELECT NOTIFY_ID FROM TBDD_NOTIFICATIONS_USER_HISTORY WITH (NOLOCK) WHERE USR_ID = 2)] and Parameters [] -13:22:37.8502|taskFLOW|INFO >> MoveNext -> Starting Profile Loading -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> User clicked normal row. -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> Clicked ProfileId: [51], Started From: [CMROW] -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> Item_Scope: InDataRow -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> Item_Scope: GRID_LOAD_TYPE = OVERVIEW -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> Item_Scope: OVERVIEWgroupRowText GROUP_TEXT: SWE - ER 4.0 - Kontrolle Buchung und Zahlung -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> Item_Scope: Valid PROFIL_ID -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> Item_Scope: hitInfo.InDataRow... -13:22:37.8502|taskFLOW|DEBUG >> MoveNext -> Item_Scope: GotDocID 9270382 and DocGUID 325276 -13:22:37.8502|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:37.8502|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:37.8502|MSSQLServer|DEBUG >> GetScalarValueWithConnectionObject -> GetScalarValueWithConnectionObject: Running Query [SELECT [dbo].[FNPM_CHECK_DocGUID_Valid] (325276)] with Parameters [] -13:22:37.8762|frmValidator|DEBUG >> .ctor -> Initialize Components... -13:22:39.5002|frmValidator|DEBUG >> .ctor -> Initialize _frmValidatorSearch... -13:22:39.7063|frmValidator|DEBUG >> frmValidation_Load -> ###frmValidation_Load### -13:22:39.7063|frmValidator|DEBUG >> frmValidation_Load -> Current User Language: [de-DE] -13:22:39.7092|Cache|DEBUG >> .ctor -> Initializing DocumentResultCache with capacity of [104900000] bytes. -13:22:39.9637|FilesystemEx|DEBUG >> CreateDirectory -> Directory C:\Users\svc.digitaldata\AppData\Roaming\Digital Data\taskFLOW\1.0.0.0\DocumentViewer already exists. Skipping. -13:22:39.9637|FilesystemEx|DEBUG >> CreateDirectory -> Using path C:\Users\svc.digitaldata\AppData\Roaming\Digital Data\taskFLOW\1.0.0.0\DocumentViewer -13:22:39.9637|ConfigManager`1|DEBUG >> LoadAppConfig -> ApplicationConfig does not exist. -13:22:39.9637|ConfigManager`1|DEBUG >> LoadComputerConfig -> Computer config does not exist. -13:22:39.9637|ConfigManager`1|DEBUG >> ReadFromFile -> Loading config from: C:\Users\svc.digitaldata\AppData\Roaming\Digital Data\taskFLOW\1.0.0.0\DocumentViewer\UserConfig.xml -13:22:39.9637|ConfigManager`1|DEBUG >> LoadUserConfig -> UserConfig exists and will be used. [C:\Users\svc.digitaldata\AppData\Roaming\Digital Data\taskFLOW\1.0.0.0\DocumentViewer\UserConfig.xml] -13:22:39.9637|frmValidator|DEBUG >> frmValidation_Load -> Profile Data loaded -13:22:39.9637|frmValidator|DEBUG >> frmValidation_Load -> frmValidation_Load finished till Step 3! -13:22:39.9637|frmValidator|DEBUG >> frmValidation_Load -> Step 4 -13:22:39.9637|frmValidator|DEBUG >> frmValidation_Load -> Step 5 -13:22:39.9637|frmValidator|DEBUG >> frmValidation_Load -> Step 6 -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> Buttontext validation loaded -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> oProfileRejectionText: -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> oProfile_REJECT_SQL_REASONS: -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> oProfileNotResponsibleText: -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> oProfile_NOT_RESP_SQL: -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> !Keine Ablehnung und Nicht zuständig Funktion konfiguriert! -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> >> profiledata saved: -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> >> finalProfile: False -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> >> Move2Folder: -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> >> Right_Delete: True -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> PROFIL_sortbynewest: True -13:22:39.9740|frmValidator|DEBUG >> frmValidation_Load -> Right_Delete: True -13:22:39.9923|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:39.9923|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:39.9923|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:39.9923|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:39.9923|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT IIF(LANG.CAPTION IS NULL,T.SPALTEN_HEADER,LANG.CAPTION) SPALTEN_HEADER_LANG, T.* from TBPM_CONTROL_TABLE T WITH (NOLOCK) INNER JOIN TBPM_PROFILE_CONTROLS T1 WITH (NOLOCK) ON T.CONTROL_ID = T1.GUID - LEFT JOIN (SELECT * FROM TBPM_CONTOL_TABLE_LANG WHERE LANG_CODE = 'de-DE') LANG ON T.GUID = LANG.COL_ID WHERE T1.CONTROL_ACTIVE = 1 AND T.CONTROL_ID = T1.GUID AND T1.PROFIL_ID = 51 ORDER BY T.SEQUENCE] and Parameters [] -13:22:39.9923|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:39.9923|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:39.9923|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:39.9923|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:39.9923|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT T1.GUID As CONTROL_ID, T1.PROFIL_ID, T.CONNECTION_ID, T.SQL_COMMAND, T.SPALTENNAME,T.FORMATTYPE,T.FORMATSTRING, T.ADVANCED_LOOKUP from TBPM_CONTROL_TABLE T WITH (NOLOCK), TBPM_PROFILE_CONTROLS T1 WITH (NOLOCK) WHERE T1.CONTROL_ACTIVE = 1 AND T.CONTROL_ID = T1.GUID AND T1.PROFIL_ID = 51 AND LEN(T.SQL_COMMAND) > 0 ORDER BY T.SEQUENCE] and Parameters [] -13:22:39.9923|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:39.9923|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:39.9923|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:39.9923|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:39.9923|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT - T1.GUID As CONTROL_ID, - T1.PROFIL_ID, - T.CONNECTION_ID, - T.SQL_COMMAND, - T.SPALTENNAME, - T.FORMATTYPE, - T.FORMATSTRING, - T.ADVANCED_LOOKUP - FROM - TBPM_CONTROL_TABLE T, - TBPM_PROFILE_CONTROLS T1 - WHERE - T1.CONTROL_ACTIVE = 1 AND - T.CONTROL_ID = T1.GUID AND - T1.PROFIL_ID = 51 AND - LEN(T.SQL_COMMAND) > 0 AND - T.SQL_COMMAND LIKE '%{#CTRL%' - ORDER BY T.SEQUENCE] and Parameters [] -13:22:39.9923|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 563 - CtrlName: TXT_DOKUMENTTYP - CtrlIndex: Dokumententyp] - TXT Try to create control... -13:22:40.0085|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 563 - CtrlName: TXT_DOKUMENTTYP - CtrlIndex: Dokumententyp] - TXT Created!! -13:22:40.0085|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 563 - CtrlName: TXT_DOKUMENTTYP - CtrlIndex: Dokumententyp]: End of Select... -13:22:40.0216|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 529 - CtrlName: LBL_DMS erstellt - CtrlIndex: ]: End of Select... -13:22:40.0216|frmValidator|DEBUG >> Create_Controls -> [DTP#CtrlID: 520 - CtrlName: DTP_DMS erstellt - CtrlIndex: DMS erstellt]: End of Select... -13:22:40.0216|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 524 - CtrlName: LBL_Belegdatum - CtrlIndex: ]: End of Select... -13:22:40.0216|frmValidator|DEBUG >> Create_Controls -> [DTP#CtrlID: 519 - CtrlName: DTP_Belegdatum - CtrlIndex: Belegdatum]: End of Select... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 541 - CtrlName: LBL_S/H-Kennzeichen - CtrlIndex: ]: End of Select... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [CMB#CtrlID: 518 - CtrlName: CMB_S/H-Kennzeichen - CtrlIndex: Vektor String 101] - CMB Try to create control... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [CMB#CtrlID: 518 - CtrlName: CMB_S/H-Kennzeichen - CtrlIndex: Vektor String 101] - CMB CONTROL created -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [CMB#CtrlID: 518 - CtrlName: CMB_S/H-Kennzeichen - CtrlIndex: Vektor String 101]: End of Select... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 546 - CtrlName: LBL_Valutadatum - CtrlIndex: ]: End of Select... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [DTP#CtrlID: 522 - CtrlName: DTP_Valutadatum - CtrlIndex: Date 05]: End of Select... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 530 - CtrlName: LBL_Fälligkeitsdatum - CtrlIndex: ]: End of Select... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [DTP#CtrlID: 521 - CtrlName: DTP_Fälligkeitsdatum - CtrlIndex: Date 06]: End of Select... -13:22:40.0374|frmValidator|DEBUG >> Create_Controls -> [CtrlID: 548 - CtrlName: LINE_OBEN - CtrlIndex: ]: End of Select... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 537 - CtrlName: LBL_LieferantenNummer - CtrlIndex: ]: End of Select... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [LOOKUP#CtrlID: 555 - CtrlName: LU_LieferantenNummer - CtrlIndex: Personennummer]: End of Select... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 535 - CtrlName: LBL_KreditorName - CtrlIndex: ]: End of Select... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 567 - CtrlName: TXT_LieferantenName - CtrlIndex: Name] - TXT Try to create control... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 567 - CtrlName: TXT_LieferantenName - CtrlIndex: Name] - TXT Created!! -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 567 - CtrlName: TXT_LieferantenName - CtrlIndex: Name]: End of Select... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 536 - CtrlName: LBL_KundenNr-Lieferant - CtrlIndex: ]: End of Select... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 566 - CtrlName: TXT_KundenNr-Lieferant - CtrlIndex: Kundennummer] - TXT Try to create control... -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 566 - CtrlName: TXT_KundenNr-Lieferant - CtrlIndex: Kundennummer] - TXT Created!! -13:22:40.0517|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 566 - CtrlName: TXT_KundenNr-Lieferant - CtrlIndex: Kundennummer]: End of Select... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 526 - CtrlName: LBL_BestellNr - CtrlIndex: ]: End of Select... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [LOOKUP#CtrlID: 709 - CtrlName: LU_BestellNr - CtrlIndex: Nr.Intern]: End of Select... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 532 - CtrlName: LBL_Fremdreferenz_1 - CtrlIndex: ]: End of Select... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 565 - CtrlName: TXT_Fremdreferenz_1 - CtrlIndex: Nr.Extern] - TXT Try to create control... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 565 - CtrlName: TXT_Fremdreferenz_1 - CtrlIndex: Nr.Extern] - TXT Created!! -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 565 - CtrlName: TXT_Fremdreferenz_1 - CtrlIndex: Nr.Extern]: End of Select... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 527 - CtrlName: LBL_Bestell-Summe-Netto - CtrlIndex: ]: End of Select... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 561 - CtrlName: TXT_Bestell-Summe-Netto - CtrlIndex: Float 14] - TXT Try to create control... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 561 - CtrlName: TXT_Bestell-Summe-Netto - CtrlIndex: Float 14] - TXT Created!! -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 561 - CtrlName: TXT_Bestell-Summe-Netto - CtrlIndex: Float 14]: End of Select... -13:22:40.0692|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 542 - CtrlName: LBL_Skontierbarer-Betrag - CtrlIndex: ]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 570 - CtrlName: TXT_Skontierbarer-Betrag - CtrlIndex: Float 08] - TXT Try to create control... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 570 - CtrlName: TXT_Skontierbarer-Betrag - CtrlIndex: Float 08] - TXT Created!! -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 570 - CtrlName: TXT_Skontierbarer-Betrag - CtrlIndex: Float 08]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 539 - CtrlName: LBL_Rechnungs-Summe-Brutto - CtrlIndex: ]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 568 - CtrlName: TXT_Rechnungs-Summe-Brutto - CtrlIndex: Float 13] - TXT Try to create control... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 568 - CtrlName: TXT_Rechnungs-Summe-Brutto - CtrlIndex: Float 13] - TXT Created!! -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 568 - CtrlName: TXT_Rechnungs-Summe-Brutto - CtrlIndex: Float 13]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 540 - CtrlName: LBL_Rechnungs-Summe-Brutto-abzgl.-Skonto - CtrlIndex: ]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 544 - CtrlName: LBL_Bestell-Summe-Brutto - CtrlIndex: ]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 754 - CtrlName: TXT_Bestell-Summe-Brutto - CtrlIndex: Float 11] - TXT Try to create control... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 754 - CtrlName: TXT_Bestell-Summe-Brutto - CtrlIndex: Float 11] - TXT Created!! -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 754 - CtrlName: TXT_Bestell-Summe-Brutto - CtrlIndex: Float 11]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 543 - CtrlName: LBL_Skonto-Daten - CtrlIndex: ]: End of Select... -13:22:40.0832|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 571 - CtrlName: TXT_Skonto-Prozent - CtrlIndex: Float 09] - TXT Try to create control... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 571 - CtrlName: TXT_Skonto-Prozent - CtrlIndex: Float 09] - TXT Created!! -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 571 - CtrlName: TXT_Skonto-Prozent - CtrlIndex: Float 09]: End of Select... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 572 - CtrlName: TXT_Skonto-Tage - CtrlIndex: Integer 23] - TXT Try to create control... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 572 - CtrlName: TXT_Skonto-Tage - CtrlIndex: Integer 23] - TXT Created!! -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 572 - CtrlName: TXT_Skonto-Tage - CtrlIndex: Integer 23]: End of Select... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 569 - CtrlName: TXT_Rechnungs-Summe-Brutto-abzgl.-Skonto - CtrlIndex: Float 12] - TXT Try to create control... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 569 - CtrlName: TXT_Rechnungs-Summe-Brutto-abzgl.-Skonto - CtrlIndex: Float 12] - TXT Created!! -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 569 - CtrlName: TXT_Rechnungs-Summe-Brutto-abzgl.-Skonto - CtrlIndex: Float 12]: End of Select... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 755 - CtrlName: LBL_abzgl.-Skonto - CtrlIndex: ]: End of Select... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 756 - CtrlName: LBL_Zahlbed.-Bestellung - CtrlIndex: ]: End of Select... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 757 - CtrlName: TXT_Zahlbed.-Bestellung - CtrlIndex: Vektor String 240] - TXT Try to create control... -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 757 - CtrlName: TXT_Zahlbed.-Bestellung - CtrlIndex: Vektor String 240] - TXT Created!! -13:22:40.0987|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 757 - CtrlName: TXT_Zahlbed.-Bestellung - CtrlIndex: Vektor String 240]: End of Select... -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 758 - CtrlName: LBL_Zahlbed.-Rechnung - CtrlIndex: ]: End of Select... -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 759 - CtrlName: TXT_Zahlbed.-Rechnung - CtrlIndex: Vektor String 241] - TXT Try to create control... -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 759 - CtrlName: TXT_Zahlbed.-Rechnung - CtrlIndex: Vektor String 241] - TXT Created!! -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 759 - CtrlName: TXT_Zahlbed.-Rechnung - CtrlIndex: Vektor String 241]: End of Select... -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [CtrlID: 547 - CtrlName: LINE_MITTE - CtrlIndex: ]: End of Select... -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 560 - CtrlName: TXT_Beschreibung - CtrlIndex: Beschreibung] - TXT Try to create control... -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 560 - CtrlName: TXT_Beschreibung - CtrlIndex: Beschreibung] - TXT Created!! -13:22:40.1149|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 560 - CtrlName: TXT_Beschreibung - CtrlIndex: Beschreibung]: End of Select... -13:22:40.1442|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 562 - CtrlName: TXT_Buchungstext - CtrlIndex: Vektor String 054] - TXT Try to create control... -13:22:40.1442|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 562 - CtrlName: TXT_Buchungstext - CtrlIndex: Vektor String 054] - TXT Created!! -13:22:40.1442|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 562 - CtrlName: TXT_Buchungstext - CtrlIndex: Vektor String 054]: End of Select... -13:22:40.1513|frmValidator|DEBUG >> Create_Controls -> We got a DTGRID_COLUMNS definition for [TABLE#CtrlID: 700 - CtrlName: TB_Rechnungsaufteilung - CtrlIndex: Vektor String 421] -13:22:40.1513|frmValidator|DEBUG >> Create_Controls -> [TABLE#CtrlID: 700 - CtrlName: TB_Rechnungsaufteilung - CtrlIndex: Vektor String 421] - DisplayInSeparateForm is False. Creating an embedded grid. -13:22:40.1943|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[INVOICE_POS_COUNTER] – skipping. -13:22:40.1943|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[INVOICE_POS_MATCH_WORK_ORDER_NR]... -13:22:40.1943|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[INVOICE_POS_INTERNAL_NOTE] – skipping. -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[INVOICE_POSITION_AMOUNT] – skipping. -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[INVOICE_POS_SUM_NETTO] – skipping. -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[INVOICE_POS_TAX_RATE]... -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[INVOICE_POS_SUM_BRUTTO] – skipping. -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[INVOICE_POS_OK] – skipping. -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[INVOICE_POSITION_ARTICLE]... -13:22:40.2153|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumns -> CURRENCY column [INVOICE_POS_SUM_NETTO]: DisplayFormat wird von ConfigureViewColumnsCurrency gesetzt -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumns -> Applying currency summary format for column [INVOICE_POS_SUM_NETTO] -13:22:40.2253|GridControl|DEBUG >> ApplyCurrencySummaryFormat -> Applying currency summary format for column [INVOICE_POS_SUM_NETTO] with symbol [EUR] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumns -> CURRENCY column [INVOICE_POS_SUM_BRUTTO]: DisplayFormat wird von ConfigureViewColumnsCurrency gesetzt -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumns -> Applying currency summary format for column [INVOICE_POS_SUM_BRUTTO] -13:22:40.2253|GridControl|DEBUG >> ApplyCurrencySummaryFormat -> Applying currency summary format for column [INVOICE_POS_SUM_BRUTTO] with symbol [EUR] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] riTextEdit erstellt: DisplayFormat=[#,##0.00 EUR], HashCode=[50165743] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] pGrid.RepositoryItems.Count VOR Schleife=[0] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] [INVOICE_POS_SUM_NETTO] VOR ColumnEdit: RepositoryItems.Count=[0] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] [INVOICE_POS_SUM_NETTO] NACH ColumnEdit: RepositoryItems.Count=[0] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] Column [INVOICE_POS_SUM_BRUTTO] is a SQL formula column: -- HE, MK / 25.03.2026 - -SELECT {#TBCOL#INVOICE_POS_SUM_NETTO} / 100 * ([VAT _] + 100) -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ' -) WHERE [CONTENT_CONCAT] = {#TBCOL#INVOICE_POS_TAX_RATE}; - - --- Test --- 100 --- EB00021129 --- EB9999999 --- BAUL19 | BAUL0 | 19.00% -13:22:40.2253|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] Formel-Spalte [INVOICE_POS_SUM_BRUTTO]: DisplayFormat=[#,##0.00 EUR] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [INVOICE_POS_MATCH_WORK_ORDER_NR] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.2253|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [INVOICE_POS_TAX_RATE] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.2253|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [INVOICE_POS_SUM_BRUTTO] registered as FORMULA_SQL column. ReferencedColumns=[INVOICE_POS_SUM_NETTO, INVOICE_POS_TAX_RATE] -13:22:40.2253|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [INVOICE_POSITION_ARTICLE] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.2253|frmValidator|DEBUG >> Create_Controls -> [TABLE#CtrlID: 700 - CtrlName: TB_Rechnungsaufteilung - CtrlIndex: Vektor String 421]: End of Select... -13:22:40.3023|frmValidator|DEBUG >> Create_Controls -> We got a DTGRID_COLUMNS definition for [TABLE#CtrlID: 559 - CtrlName: TB_Rechnungskontierung - CtrlIndex: Vektor String 422] -13:22:40.3023|frmValidator|DEBUG >> Create_Controls -> [TABLE#CtrlID: 559 - CtrlName: TB_Rechnungskontierung - CtrlIndex: Vektor String 422] - DisplayInSeparateForm is False. Creating an embedded grid. -13:22:40.3023|GridControl|DEBUG >> CreateGridColumns -> Setting expression for column [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT]: [ACCOUNTING_POS_QUANTITY_DELIVERED] * [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] -13:22:40.3023|GridControl|DEBUG >> CreateGridColumns -> Referenced column [ACCOUNTING_POS_QUANTITY_DELIVERED] exists with DataType: Double -13:22:40.3023|GridControl|DEBUG >> CreateGridColumns -> Referenced column [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] exists with DataType: Double -13:22:40.3023|GridControl|INFO >> CreateGridColumns -> ✓ Expression successfully set for column [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT]: [ACCOUNTING_POS_QUANTITY_DELIVERED] * [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] -13:22:40.3023|GridControl|DEBUG >> CreateGridColumns -> Setting expression for column [ACCOUNTING_POS_AMOUNT_INCL_VAT]: [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] / 100 * (100 + [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP]) -13:22:40.3023|GridControl|DEBUG >> CreateGridColumns -> Referenced column [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] exists with DataType: Double -13:22:40.3023|GridControl|DEBUG >> CreateGridColumns -> Referenced column [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP] exists with DataType: String -13:22:40.3023|GridControl|INFO >> CreateGridColumns -> ✓ Expression successfully set for column [ACCOUNTING_POS_AMOUNT_INCL_VAT]: [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] / 100 * (100 + [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP]) -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_COUNTER] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_ITEM_TYPE] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[ACCOUNTING_POS_ITEM_NUMBER]... -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_VENDOR_ITEM_NO] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[ACCOUNTING_POS_WORK_ORDER_NR]... -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_DESCRIPTION] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_DESCRIPTION2] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_QUANTITY] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_QUANTITY_DELIVERED] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[ACCOUNTING_POS_QUANTITY_CODE]... -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_AMOUNT_INCL_VAT] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP]... -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_LINE_DISCOUNT_PERCENT] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[ACCOUNTING_POS_LINE_DISCOUNT_AMOUNT] – skipping. -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[ACCOUNTING_POS_PURCHASE_RECEIPT]... -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> ...has complex patterns!! -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> Working on SQL for Column[ACCOUNTING_POS_PURCHASE_RECEIPT_POS]... -13:22:40.3023|GridControl|DEBUG >> FillGridTables -> ...SQL contains #TBCOL# placeholders – skipping static caching, will be resolved per row. -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumns -> CURRENCY column [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT]: DisplayFormat wird von ConfigureViewColumnsCurrency gesetzt -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumns -> Applying currency summary format for column [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] -13:22:40.3023|GridControl|DEBUG >> ApplyCurrencySummaryFormat -> Applying currency summary format for column [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] with symbol [EUR] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumns -> CURRENCY column [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT]: DisplayFormat wird von ConfigureViewColumnsCurrency gesetzt -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumns -> CURRENCY column [ACCOUNTING_POS_AMOUNT_INCL_VAT]: DisplayFormat wird von ConfigureViewColumnsCurrency gesetzt -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumns -> Applying currency summary format for column [ACCOUNTING_POS_AMOUNT_INCL_VAT] -13:22:40.3023|GridControl|DEBUG >> ApplyCurrencySummaryFormat -> Applying currency summary format for column [ACCOUNTING_POS_AMOUNT_INCL_VAT] with symbol [EUR] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumns -> CURRENCY column [ACCOUNTING_POS_LINE_DISCOUNT_AMOUNT]: DisplayFormat wird von ConfigureViewColumnsCurrency gesetzt -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] riTextEdit erstellt: DisplayFormat=[#,##0.00 EUR], HashCode=[123050] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] pGrid.RepositoryItems.Count VOR Schleife=[0] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] VOR ColumnEdit: RepositoryItems.Count=[0] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT] NACH ColumnEdit: RepositoryItems.Count=[0] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] Formel-Spalte [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT]: DisplayFormat=[#,##0.00 EUR] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] Formel-Spalte [ACCOUNTING_POS_AMOUNT_INCL_VAT]: DisplayFormat=[#,##0.00 EUR] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] [ACCOUNTING_POS_LINE_DISCOUNT_AMOUNT] VOR ColumnEdit: RepositoryItems.Count=[0] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] [ACCOUNTING_POS_LINE_DISCOUNT_AMOUNT] NACH ColumnEdit: RepositoryItems.Count=[0] -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_ITEM_NUMBER] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_WORK_ORDER_NR] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_QUANTITY_CODE] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] registered as FORMULA_EXPRESSION column. -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_AMOUNT_INCL_VAT] registered as FORMULA_EXPRESSION column. -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_PURCHASE_RECEIPT] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.3023|GridControl|DEBUG >> ConfigureViewEvents -> [ConfigureViewEvents] Column [ACCOUNTING_POS_PURCHASE_RECEIPT_POS] registered as DYNAMIC_EDITOR column (has placeholders) -13:22:40.3023|frmValidator|DEBUG >> Create_Controls -> [TABLE#CtrlID: 559 - CtrlName: TB_Rechnungskontierung - CtrlIndex: Vektor String 422]: End of Select... -13:22:40.3323|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 531 - CtrlName: LBL_FOLGESCHRITTE - CtrlIndex: ]: End of Select... -13:22:40.3403|frmValidator|DEBUG >> Create_Controls -> [CtrlID: 549 - CtrlName: LINE_UNTEN_LINKS - CtrlIndex: ]: End of Select... -13:22:40.3403|frmValidator|DEBUG >> Create_Controls -> [CtrlID: 551 - CtrlName: LINE_UNTEN_RECHTS - CtrlIndex: ]: End of Select... -13:22:40.3493|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 643 - CtrlName: LBL_ER4.0-Status-Detail - CtrlIndex: ]: End of Select... -13:22:40.3643|taskFLOW|DEBUG >> ReplaceControlValues -> Control cache initialized with 49 controls -13:22:40.3643|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:40.3643|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:40.3643|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:40.3643|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:40.3643|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:40.3643|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:40.3643|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:40.3643|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:40.3643|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:40.3643|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- HE, MK // 06.03.2025 - -SELECT * FROM [FNCUST_SET_TF_DECISION_LIST_PROFILEID_51]() -ORDER BY 'Entscheidung' desc -] and Parameters [] -13:22:40.3643|frmValidator|DEBUG >> Create_Controls -> createControlsLU - Found 1 Controls which' enable state is depending on LU_Status-Detail -13:22:40.3643|frmValidator|DEBUG >> Create_Controls -> [LOOKUP#CtrlID: 557 - CtrlName: LU_Status-Detail - CtrlIndex: String 03]: End of Select... -13:22:40.3853|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 538 - CtrlName: LBL_Prüfer_Person - CtrlIndex: ]: End of Select... -13:22:40.3853|frmValidator|DEBUG >> Create_Controls -> [LOOKUP#CtrlID: 556 - CtrlName: LU_Person - CtrlIndex: Person]: End of Select... -13:22:40.3853|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 545 - CtrlName: LBL_Status-Detail - CtrlIndex: ]: End of Select... -13:22:40.3853|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 523 - CtrlName: LBL_Begründung - CtrlIndex: ]: End of Select... -13:22:40.3853|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 564 - CtrlName: TXT_Entscheidungs-Beschreibung - CtrlIndex: Fehlerbeschreibung] - TXT Try to create control... -13:22:40.3853|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 564 - CtrlName: TXT_Entscheidungs-Beschreibung - CtrlIndex: Fehlerbeschreibung] - TXT Created!! -13:22:40.3853|frmValidator|DEBUG >> Create_Controls -> [TXT#CtrlID: 564 - CtrlName: TXT_Entscheidungs-Beschreibung - CtrlIndex: Fehlerbeschreibung]: End of Select... -13:22:40.3963|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 534 - CtrlName: LBL_InfoMail - CtrlIndex: ]: End of Select... -13:22:40.3963|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:40.3963|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:40.3963|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:40.3963|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:40.3963|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:40.3963|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:40.3963|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:40.3963|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:40.3963|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:40.3963|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- HE, MK // 05.03.2025 - -SELECT * FROM [FNCUST_GET_USER_MAILADRESS_LIST] ('SWE') -] and Parameters [] -13:22:40.3963|frmValidator|DEBUG >> Create_Controls -> [LOOKUP#CtrlID: 554 - CtrlName: LU_InfoMail - CtrlIndex: Vektor String 031]: End of Select... -13:22:40.3963|frmValidator|DEBUG >> Create_Controls -> [CHK#CtrlID: 581 - CtrlName: CHK_Prüfer-Begründung - CtrlIndex: Vektor Boolean 020]: End of Select... -13:22:40.3963|frmValidator|DEBUG >> Create_Controls -> [LBL#CtrlID: 533 - CtrlName: LBL_HISTORIE - CtrlIndex: ]: End of Select... -13:22:40.4113|frmValidator|DEBUG >> Create_Controls -> [CtrlID: 550 - CtrlName: LINE_UNTEN_LINKS2 - CtrlIndex: ]: End of Select... -13:22:40.4113|frmValidator|DEBUG >> Create_Controls -> [CtrlID: 552 - CtrlName: LINE_UNTEN_RECHTS2 - CtrlIndex: ]: End of Select... -13:22:40.4113|frmValidator|DEBUG >> Create_Controls -> We got a DTGRID_COLUMNS definition for [TABLE#CtrlID: 558 - CtrlName: TB_Workflow-Historie - CtrlIndex: Vektor String 076] -13:22:40.4113|frmValidator|DEBUG >> Create_Controls -> [TABLE#CtrlID: 558 - CtrlName: TB_Workflow-Historie - CtrlIndex: Vektor String 076] - DisplayInSeparateForm is False. Creating an embedded grid. -13:22:40.4113|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[HISTORY_Username] – skipping. -13:22:40.4113|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[HISTORY_Decision] – skipping. -13:22:40.4113|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[HISTORY_Justification] – skipping. -13:22:40.4113|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[HISTORY_Date] – skipping. -13:22:40.4113|GridControl|DEBUG >> FillGridTables -> No SQL_COMMAND for Column[HISTORY_TF-ProfileTitle] – skipping. -13:22:40.4113|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] riTextEdit erstellt: DisplayFormat=[#,##0.00 EUR], HashCode=[10343879] -13:22:40.4113|GridControl|DEBUG >> ConfigureViewColumnsCurrency -> [ConfigureViewColumnsCurrency] pGrid.RepositoryItems.Count VOR Schleife=[0] -13:22:40.4113|frmValidator|DEBUG >> Create_Controls -> [TABLE#CtrlID: 558 - CtrlName: TB_Workflow-Historie - CtrlIndex: Vektor String 076]: End of Select... -13:22:40.4113|frmValidator|DEBUG >> Create_Controls -> Create_Controls finished! -13:22:40.4113|frmValidator|DEBUG >> frmValidation_Load -> frmValidation_Load finished! -13:22:40.5800|taskFLOW|DEBUG >> Load_Profil_from_Grid -> Overlay closed in Load_Profil_from_Grid -13:22:40.6236|frmValidator|DEBUG >> ShowOverlaySafe -> [Overlay] Geöffnet (RefCount: 0 → 1) -13:22:40.6402|frmValidator|DEBUG >> activate_controls -> Sub activate_controls - status = False -13:22:40.8559|frmValidator|DEBUG >> Load_Next_Document -> In Load_Next_Document -13:22:40.8559|frmValidator|DEBUG >> Load_Next_Document -> First Document -13:22:40.8559|frmValidator|DEBUG >> Load_Next_Document -> CURRENT_JUMP_DOC_GUID: 325276' -13:22:40.8559|frmValidator|INFO >> Load_Next_Document -> LoadNextDocument - Dokument-GUID: '325276' -13:22:40.8559|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:40.8559|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:40.8559|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:40.8559|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:40.8559|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT dbo.FNPM_GET_FILEPATH(325276,0) AS PATH0, dbo.FNPM_GET_FILEPATH(325276,1) AS PATH1] and Parameters [] -13:22:40.8559|frmValidator|DEBUG >> GetDocPathWindows -> First Checking file [\\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] exists?... -13:22:40.8669|frmValidator|INFO >> GetDocPathWindows -> 📄 Verwende Originalpfad: [\\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] -13:22:40.8669|frmValidator|INFO >> GetDocPathWindows -> GetWMDocPathWindows CURRENT_DOC_PATH: -13:22:40.8669|frmValidator|DEBUG >> CreateWMObject -> in GetWMDocFileString...' -13:22:40.8669|Windream|DEBUG >> GetNormalizedPath -> Normalizing Path: [\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] -13:22:40.8669|Windream|DEBUG >> GetNormalizedPath -> Path after RemoveInvalidCharacters: [\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] -13:22:40.8669|Windream|DEBUG >> GetNormalizedPath -> Path after converting slashes: [\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] -13:22:40.8669|Windream|DEBUG >> GetNormalizedPath -> NormalizedPath: [\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] -13:22:40.8829|frmValidator|DEBUG >> CreateWMObject -> CURRENT_WMFILE: [WINDREAMLib.WMObjectClass] -13:22:40.8829|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:40.8829|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:40.8829|MSSQLServer|DEBUG >> ExecuteNonQueryWithConnectionObject -> ExecuteNonQueryWithConnectionObject: Running Command [EXEC PRTF_PROFILE_FILES_WORK 9270382,51,2,'InWork'] and Parameters [] -13:22:40.8829|frmValidator|DEBUG >> Load_Next_Document -> AllDocInfo created... -13:22:40.8829|frmValidator|DEBUG >> Windream_get_Doc_info -> GetVariableValue [DMS erstellt]... -13:22:40.8829|frmValidator|DEBUG >> Windream_get_Doc_info -> DMS-Erstellt aus WD: 23.04.2026 -13:22:40.8829|frmValidator|DEBUG >> Windream_get_Doc_info -> GetVariableValue [DMS erstellt (Zeit)]... -13:22:40.9039|frmValidator|DEBUG >> Windream_get_Doc_info -> DMSErstelltZeit aus WD: 30.11.1999 16:00:53 -13:22:40.9039|Loader|DEBUG >> Load -> DRL Loader - Loading Document Load_FromWindream -13:22:40.9039|Loader|DEBUG >> Load_FromDisk -> Loading file [\\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] -13:22:40.9670|Loader|DEBUG >> Load_FromDisk -> Loaded file [\\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] successfully. -13:22:40.9670|Cache|DEBUG >> Add -> Adding document [9270382]. -13:22:40.9670|frmValidator|INFO >> LoadDocument_DDViewer -> LoadDocument_DDViewer - Current_Document.FullPath: \\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf -13:22:40.9740|DocumentViewer|INFO >> LoadFile_FromPath -> Loading file [\\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] from Filesystem -13:22:40.9740|DocumentViewer|DEBUG >> SetViewerMode -> Viewermode set to [GDPicture] based on extension [.pdf] -13:22:40.9740|DocumentViewer|DEBUG >> DoLoadFile -> Starting DoLoadFile with path [\\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf] and view override [] -13:22:40.9740|DocumentViewer|DEBUG >> LoadGdPictureFile -> Loading GdPicture: \\windream\objects\Test\Eingangsrechnungsworkflow\E-Rechnung\ERw202604231559256208640svcdigitaldata~Attm0.pdf -13:22:41.1400|DocumentViewer|INFO >> UpdateMainUi -> Updating main UI for viewer mode [GDPicture] -13:22:41.2160|frmValidator|DEBUG >> Load_Next_Document -> Kein PROFIL_CURRENCY_ATTRIBUTE konfiguriert → EUR -13:22:41.2160|frmValidator|INFO >> Load_Next_Document -> [FINAL] DocCurrency = [EUR] -13:22:41.2340|frmValidator|DEBUG >> FillIndexValues -> INDEX: Dokumententyp - CONTROLNAME: TXT_DOKUMENTTYP - LOAD IDXVALUES: True -13:22:41.2340|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [Rechnung] -13:22:41.2340|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_DMS erstellt - LOAD IDXVALUES: True -13:22:41.2340|frmValidator|DEBUG >> FillIndexValues -> INDEX: DMS erstellt - CONTROLNAME: DTP_DMS erstellt - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> DATE konnte umgewandelt werden -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Belegdatum - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: Belegdatum - CONTROLNAME: DTP_Belegdatum - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> DATE konnte umgewandelt werden -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_S/H-Kennzeichen - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: Vektor String 101 - CONTROLNAME: CMB_S/H-Kennzeichen - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [H] -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Valutadatum - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: Date 05 - CONTROLNAME: DTP_Valutadatum - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> DATE konnte umgewandelt werden -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Fälligkeitsdatum - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: Date 06 - CONTROLNAME: DTP_Fälligkeitsdatum - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> DATE konnte umgewandelt werden -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LINE_OBEN - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_LieferantenNummer - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: Personennummer - CONTROLNAME: LU_LieferantenNummer - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [182003] -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_KreditorName - LOAD IDXVALUES: True -13:22:41.2400|frmValidator|DEBUG >> FillIndexValues -> INDEX: Name - CONTROLNAME: TXT_LieferantenName - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [HTI Collin KG] -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_KundenNr-Lieferant - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: Kundennummer - CONTROLNAME: TXT_KundenNr-Lieferant - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [810 002910] -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_BestellNr - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: Nr.Intern - CONTROLNAME: LU_BestellNr - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [EB00021358] -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Fremdreferenz_1 - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: Nr.Extern - CONTROLNAME: TXT_Fremdreferenz_1 - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [1516252] -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Bestell-Summe-Netto - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: Float 14 - CONTROLNAME: TXT_Bestell-Summe-Netto - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [2671,5] -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Skontierbarer-Betrag - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: Float 08 - CONTROLNAME: TXT_Skontierbarer-Betrag - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [3446,56] -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Rechnungs-Summe-Brutto - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> INDEX: Float 13 - CONTROLNAME: TXT_Rechnungs-Summe-Brutto - LOAD IDXVALUES: True -13:22:41.2550|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [3446,56] -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Rechnungs-Summe-Brutto-abzgl.-Skonto - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Bestell-Summe-Brutto - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: Float 11 - CONTROLNAME: TXT_Bestell-Summe-Brutto - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [3179,09] -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Skonto-Daten - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: Float 09 - CONTROLNAME: TXT_Skonto-Prozent - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [3] -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: Integer 23 - CONTROLNAME: TXT_Skonto-Tage - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [11] -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: Float 12 - CONTROLNAME: TXT_Rechnungs-Summe-Brutto-abzgl.-Skonto - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [3343,16] -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_abzgl.-Skonto - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Zahlbed.-Bestellung - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: Vektor String 240 - CONTROLNAME: TXT_Zahlbed.-Bestellung - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [11 Tage - 3 %, 31 Tage netto] -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LBL_Zahlbed.-Rechnung - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: Vektor String 241 - CONTROLNAME: TXT_Zahlbed.-Rechnung - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [Zahlbar bis 14.05.2026 ohne Abzug] -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: - CONTROLNAME: LINE_MITTE - LOAD IDXVALUES: True -13:22:41.2730|frmValidator|DEBUG >> FillIndexValues -> INDEX: Beschreibung - CONTROLNAME: TXT_Beschreibung - LOAD IDXVALUES: True -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [ ] -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> INDEX: Vektor String 054 - CONTROLNAME: TXT_Buchungstext - LOAD IDXVALUES: True -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> Value from Source: [EB00021358_HTI Collin KG_Lagermat. AVK-Schieber] -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> INDEX: Vektor String 421 - CONTROLNAME: TB_Rechnungsaufteilung - LOAD IDXVALUES: True -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> Grid [TB_Rechnungsaufteilung]: 9 Spalten aus Cache geladen -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> getting Value for Attribute [Vektor String 421] - oIDBTyp [] - oIDBOverride [False]... -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> oValueType is [System.Object[]]! -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> DevExpressGrid: 9 Columns configured for control 700. -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> ValueFromSource contains System.Object[] items -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> vektorrow Value 1~A-99999999~~8~320,4~19 - INL - 19.00%~381,276~True~561390... -13:22:41.2860|frmValidator|DEBUG >> FillIndexValues -> Creating new row.. -13:22:41.3090|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.3090|taskFLOW|DEBUG >> ReplaceControlValues -> Control cache initialized with 62 controls -13:22:41.3090|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.3090|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[-295875827] -13:22:41.3090|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [INVOICE_POS_MATCH_WORK_ORDER_NR] -13:22:41.3190|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.3190|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.3190|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.3190|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.3190|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.3190|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.3190|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.3190|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.3190|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.3190|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] and Parameters [] -13:22:41.4450|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 57 rows for column [INVOICE_POS_MATCH_WORK_ORDER_NR] -13:22:41.4450|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created LookupControl3 with DisplayMember=[Arbeitsauftragsnummer], ValueMember=[Arbeitsauftragsnummer] -13:22:41.4450|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [INVOICE_POS_MATCH_WORK_ORDER_NR] editor (Type=[RepositoryItemLookupControl3]) -13:22:41.4450|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.4450|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.4450|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[598046085] -13:22:41.4450|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [INVOICE_POS_TAX_RATE] -13:22:41.4590|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.4590|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.4590|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.4590|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.4590|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.4590|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.4590|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.4590|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.4590|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.4590|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] and Parameters [] -13:22:41.4590|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 112 rows for column [INVOICE_POS_TAX_RATE] -13:22:41.4590|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created ComboBox with 112 items -13:22:41.4590|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [INVOICE_POS_TAX_RATE] editor (Type=[RepositoryItemComboBox]) -13:22:41.4590|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.4590|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.4590|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[-2054207360] -13:22:41.4590|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [INVOICE_POSITION_ARTICLE] -13:22:41.4740|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.4740|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.4740|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.4740|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.4740|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.4740|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.4740|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.4740|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.4740|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.4740|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] and Parameters [] -13:22:41.5260|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 2 rows for column [INVOICE_POSITION_ARTICLE] -13:22:41.5260|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created LookupControl3 with DisplayMember=[Artikelnummer], ValueMember=[Artikelnummer] -13:22:41.5260|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [INVOICE_POSITION_ARTICLE] editor (Type=[RepositoryItemLookupControl3]) -13:22:41.5260|frmValidator|DEBUG >> FillIndexValues -> vektorrow Value 2~A-99999999~~15~2351,1~19 - INL - 19.00%~2797,81~True~574041... -13:22:41.5260|frmValidator|DEBUG >> FillIndexValues -> Creating new row.. -13:22:41.5260|frmValidator|DEBUG >> FillIndexValues -> vektorrow Value 3~A-99999999~~1~150~19 - INL - 19.00%~178,5~False~... -13:22:41.5260|frmValidator|DEBUG >> FillIndexValues -> Creating new row.. -13:22:41.5260|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5260|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5260|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5520|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5680|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5860|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5860|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5860|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5860|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5860|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5860|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5860|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.5990|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_MATCH_WORK_ORDER_NR|-295875827] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POS_TAX_RATE|598046085] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 - -] -13:22:41.6300|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ CACHE HIT: [INVOICE_POSITION_ARTICLE|-2054207360] -13:22:41.6300|frmValidator|DEBUG >> FillIndexValues -> INDEX: Vektor String 422 - CONTROLNAME: TB_Rechnungskontierung - LOAD IDXVALUES: True -13:22:41.6300|frmValidator|DEBUG >> FillIndexValues -> Grid [TB_Rechnungskontierung]: 18 Spalten aus Cache geladen -13:22:41.6300|frmValidator|DEBUG >> FillIndexValues -> getting Value for Attribute [Vektor String 422] - oIDBTyp [] - oIDBOverride [False]... -13:22:41.6460|frmValidator|DEBUG >> FillIndexValues -> oValueType is [System.Object[]]! -13:22:41.6460|frmValidator|DEBUG >> FillIndexValues -> DevExpressGrid: 18 Columns configured for control 559. -13:22:41.6460|frmValidator|DEBUG >> FillIndexValues -> ValueFromSource contains System.Object[] items -13:22:41.6460|frmValidator|DEBUG >> FillIndexValues -> vektorrow Value 10000~Artikel~561390~~A-0043285~Flanschenmuffenstück E-KS DN 100~dn110 Epoxy,für PVC Druckrohre~8~8~STÜCK~40,05~320,4~381,28~19 - INL - 19.00%~55~176,22~EL00717287~5000... -13:22:41.6460|frmValidator|DEBUG >> FillIndexValues -> Creating new row.. -13:22:41.6460|frmValidator|DEBUG >> FillIndexValues -> ⚠️ Spalte [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] hat Expression → wird NICHT befüllt -13:22:41.6460|frmValidator|DEBUG >> FillIndexValues -> ⚠️ Spalte [ACCOUNTING_POS_AMOUNT_INCL_VAT] hat Expression → wird NICHT befüllt -13:22:41.6460|frmValidator|WARN >> FillIndexValues -> ⚠️ Grid [TB_Rechnungskontierung] Expression-Spalte: [ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] = [[ACCOUNTING_POS_QUANTITY_DELIVERED] * [ACCOUNTING_POS_PURCHASE_PRICE_WITHOUT_VAT]] -13:22:41.6460|frmValidator|WARN >> FillIndexValues -> ⚠️ Grid [TB_Rechnungskontierung] Expression-Spalte: [ACCOUNTING_POS_AMOUNT_INCL_VAT] = [[ACCOUNTING_POS_LINE_AMOUNT_WITHOUT_VAT] / 100 * (100 + [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP])] -13:22:41.6460|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~'); - --- Test mit: --- EB00015129 --- EB9999999 -] -13:22:41.6460|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 -] -13:22:41.6460|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[-1912953868] -13:22:41.6460|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [ACCOUNTING_POS_ITEM_NUMBER] -13:22:41.6460|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.6460|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.6460|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.6460|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.6460|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.6460|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.6460|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.6460|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.6460|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.6460|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- MK / 13.03.2026 - -SELECT [Artikelnummer], - [Fremd-Artikelnummer], - [Beschreibung], - [Beschreibung 2], - [Einheitscode], - [EK], - [VK] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~'); - --- Test mit: --- EB00015129 --- EB9999999 -] and Parameters [] -13:22:41.7150|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 2 rows for column [ACCOUNTING_POS_ITEM_NUMBER] -13:22:41.7150|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created LookupControl3 with DisplayMember=[Artikelnummer], ValueMember=[Artikelnummer] -13:22:41.7150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [ACCOUNTING_POS_ITEM_NUMBER] editor (Type=[RepositoryItemLookupControl3]) -13:22:41.7150|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','{#CTRL#LU_BestellNr}') - --- Test mit EB00015129 ODER "" -] -13:22:41.7150|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] -13:22:41.7150|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [ACCOUNTING_POS_WORK_ORDER_NR] -13:22:41.7150|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.7150|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.7150|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.7150|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.7240|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.7240|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.7240|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.7240|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.7240|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.7240|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- HE, MK // 26.03.2025 - -SELECT [No_] as 'Arbeitsauftragsnummer', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Description 3] as 'Beschreibung 3', - [WOStateValue] as 'Auftragsstatuswert', - [Level] as 'Level' -FROM [FNCUST_GET_MS-DYN365BC_WORK_ORDER_LIST]('SWE','EB00021358') - --- Test mit EB00015129 ODER "" -] and Parameters [] -13:22:41.8400|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 57 rows for column [ACCOUNTING_POS_WORK_ORDER_NR] -13:22:41.8400|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created LookupControl3 with DisplayMember=[Arbeitsauftragsnummer], ValueMember=[Arbeitsauftragsnummer] -13:22:41.8400|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [ACCOUNTING_POS_WORK_ORDER_NR] editor (Type=[RepositoryItemLookupControl3]) -13:22:41.8400|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK // 16.03.2026 - -SELECT DISTINCT [Einheitscode] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','{#CTRL#LU_BestellNr}','~') -WHERE LEN([Einheitscode]) > 0 -ORDER BY [Einheitscode] ASC; -] -13:22:41.8400|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK // 16.03.2026 - -SELECT DISTINCT [Einheitscode] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~') -WHERE LEN([Einheitscode]) > 0 -ORDER BY [Einheitscode] ASC; -] -13:22:41.8400|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[1891058037] -13:22:41.8400|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [ACCOUNTING_POS_QUANTITY_CODE] -13:22:41.8400|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.8400|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.8400|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.8400|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.8400|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.8400|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.8400|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.8400|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.8490|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.8490|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- MK // 16.03.2026 - -SELECT DISTINCT [Einheitscode] -FROM [dbo].[FNCUST_GET_MS-DYN365BC_ITEM_LIST]('SWE','EB00021358','~') -WHERE LEN([Einheitscode]) > 0 -ORDER BY [Einheitscode] ASC; -] and Parameters [] -13:22:41.9290|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 1 rows for column [ACCOUNTING_POS_QUANTITY_CODE] -13:22:41.9290|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created ComboBox with 1 items -13:22:41.9290|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [ACCOUNTING_POS_QUANTITY_CODE] editor (Type=[RepositoryItemComboBox]) -13:22:41.9290|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'{#CTRL#LU_BestellNr}', -' - ') - --- Test --- EB00021129 --- EB9999999 -] -13:22:41.9290|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999 -] -13:22:41.9290|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[2084721972] -13:22:41.9290|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP] -13:22:41.9290|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.9290|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.9290|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.9290|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.9290|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.9290|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.9290|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.9290|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.9290|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.9290|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- MK / 18.03.2026 - -SELECT [CONTENT_CONCAT] as 'Auswahl' -FROM [FNCUST_GET_MS-DYN365BC_VAT_LIST]( -'SWE', -'EB00021358', -' - ') - --- Test --- EB00021129 --- EB9999999 -] and Parameters [] -13:22:41.9440|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 112 rows for column [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP] -13:22:41.9440|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created LookupControl3 with DisplayMember=[Auswahl], ValueMember=[Auswahl] -13:22:41.9440|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [ACCOUNTING_POS_VAT_PRODUCT_BOOKING_GROUP] editor (Type=[RepositoryItemLookupControl3]) -13:22:41.9440|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE/MK 02.06.2026 - -DECLARE @LieferantenNummer NVARCHAR(50) = '{#CTRL#LU_LieferantenNummer}'; - -SELECT [Document No_] as 'Lieferschein', - [Line No_] as 'Liefer Pos', - [No_] as 'Artikelnr', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Unit of Measure] as 'Einheit', - [Quantity] as 'Menge', - [Order No_] as 'Bestellnr', - [Order Line No_] as 'Bestell Pos', - [Work Order No_] as 'Arbeitsauftragsnr' -FROM [FNCUST_GET_MS-DYN365BC_PURCHASE_RECEIPT_LIST]('SWE',@LieferantenNummer,NULL,90) - --- Test --- 280103 -] -13:22:41.9440|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE/MK 02.06.2026 - -DECLARE @LieferantenNummer NVARCHAR(50) = '182003'; - -SELECT [Document No_] as 'Lieferschein', - [Line No_] as 'Liefer Pos', - [No_] as 'Artikelnr', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Unit of Measure] as 'Einheit', - [Quantity] as 'Menge', - [Order No_] as 'Bestellnr', - [Order Line No_] as 'Bestell Pos', - [Work Order No_] as 'Arbeitsauftragsnr' -FROM [FNCUST_GET_MS-DYN365BC_PURCHASE_RECEIPT_LIST]('SWE',@LieferantenNummer,NULL,90) - --- Test --- 280103 -] -13:22:41.9440|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[1732955667] -13:22:41.9440|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [ACCOUNTING_POS_PURCHASE_RECEIPT] -13:22:41.9440|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:41.9440|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:41.9440|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:41.9440|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:41.9440|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:41.9440|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.9440|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:41.9440|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:41.9440|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:41.9440|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- HE/MK 02.06.2026 - -DECLARE @LieferantenNummer NVARCHAR(50) = '182003'; - -SELECT [Document No_] as 'Lieferschein', - [Line No_] as 'Liefer Pos', - [No_] as 'Artikelnr', - [Description] as 'Beschreibung', - [Description 2] as 'Beschreibung 2', - [Unit of Measure] as 'Einheit', - [Quantity] as 'Menge', - [Order No_] as 'Bestellnr', - [Order Line No_] as 'Bestell Pos', - [Work Order No_] as 'Arbeitsauftragsnr' -FROM [FNCUST_GET_MS-DYN365BC_PURCHASE_RECEIPT_LIST]('SWE',@LieferantenNummer,NULL,90) - --- Test --- 280103 -] and Parameters [] -13:22:42.1360|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 3731 rows for column [ACCOUNTING_POS_PURCHASE_RECEIPT] -13:22:42.1360|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created LookupControl3 with DisplayMember=[Lieferschein], ValueMember=[Lieferschein] -13:22:42.1360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [ACCOUNTING_POS_PURCHASE_RECEIPT] editor (Type=[RepositoryItemLookupControl3]) -13:22:42.1360|taskFLOW|DEBUG >> ReplaceAllValues -> input BEFORE replacing: [-- HE/MK 02.06.2026 - -DECLARE @LieferantenNummer NVARCHAR(50) = '{#CTRL#LU_LieferantenNummer}'; - -SELECT [Line No_] as 'Liefer Pos', - [Document No_] as 'Lieferschein' - -FROM [FNCUST_GET_MS-DYN365BC_PURCHASE_RECEIPT_LIST]('SWE',@LieferantenNummer,NULL,90) -WHERE [Document No_] = 'EL00717287'; - --- WHERE [Document No_] = '[ACCOUNTING_POS_PURCHASE_RECEIPT]'; - - --- Test --- 182003 --- EL00713358 -] -13:22:42.1360|taskFLOW|DEBUG >> ReplaceAllValues -> input AFTER replacing: [-- HE/MK 02.06.2026 - -DECLARE @LieferantenNummer NVARCHAR(50) = '182003'; - -SELECT [Line No_] as 'Liefer Pos', - [Document No_] as 'Lieferschein' - -FROM [FNCUST_GET_MS-DYN365BC_PURCHASE_RECEIPT_LIST]('SWE',@LieferantenNummer,NULL,90) -WHERE [Document No_] = 'EL00717287'; - --- WHERE [Document No_] = '[ACCOUNTING_POS_PURCHASE_RECEIPT]'; - - --- Test --- 182003 --- EL00713358 -] -13:22:42.1360|GridControl|DEBUG >> ResolveSqlTemplate -> [ResolveSqlTemplate] ✓ Cached SQL: Key=[-1136421931] -13:22:42.1360|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] 🆕 MISS: Creating editor for [ACCOUNTING_POS_PURCHASE_RECEIPT_POS] -13:22:42.1360|DatabaseWithFallback|DEBUG >> GetDatatable -> Client is empty, falling back to direct database access. -13:22:42.1360|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Fetching data from database [ECM] with Connection Id [ECM] -13:22:42.1360|DatabaseWithFallback|DEBUG >> GetDatatableFromDatabase -> Retrieving Connection String from Connection Id [1] -13:22:42.1360|MSSQLServer|DEBUG >> Get_ConnectionStringforID -> Getting ConnectionString for ConnectionId [1] -13:22:42.1480|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Server=SWESQL;Database=DD_ECM;User Id=svc.ecm;Password=XXXXX; -13:22:42.1480|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:42.1480|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [SELECT * FROM TBDD_CONNECTION WHERE GUID = 1] and Parameters [] -13:22:42.1480|MSSQLServer|DEBUG >> GetConnection -> The Following Connection is open: Data Source=swesql;Initial Catalog=DD_ECM;User ID=svc.ecm;Password=XXXXX -13:22:42.1480|MSSQLServer|DEBUG >> MaybeGetTransaction -> Transaction Mode: [WithTransaction] -13:22:42.1480|MSSQLServer|DEBUG >> GetDatatableWithConnectionObject -> GetDatatableWithConnectionObject: Running Query [-- HE/MK 02.06.2026 - -DECLARE @LieferantenNummer NVARCHAR(50) = '182003'; - -SELECT [Line No_] as 'Liefer Pos', - [Document No_] as 'Lieferschein' - -FROM [FNCUST_GET_MS-DYN365BC_PURCHASE_RECEIPT_LIST]('SWE',@LieferantenNummer,NULL,90) -WHERE [Document No_] = 'EL00717287'; - --- WHERE [Document No_] = '[ACCOUNTING_POS_PURCHASE_RECEIPT]'; - - --- Test --- 182003 --- EL00713358 -] and Parameters [] -13:22:42.3200|taskFLOW|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Retrieved 3 rows for column [ACCOUNTING_POS_PURCHASE_RECEIPT_POS] -13:22:42.3200|GridControl|DEBUG >> CreateRowSpecificEditor -> [CreateRowSpecificEditor] Created ComboBox with 3 items -13:22:42.3200|GridControl|INFO >> _Lambda$__2 -> [CustomRowCellEdit] ✓ Cached [ACCOUNTING_POS_PURCHASE_RECEIPT_POS] editor (Type=[RepositoryItemComboBox]) -13:22:42.3200|frmValidator|ERROR >> FillIndexValues -> System.Data.EvaluateException: Die Operation '*' kann nicht an System.Double und System.String durchgeführt werden. + \ No newline at end of file