diff --git a/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json b/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json index 5c8ab7e..91f0dda 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json +++ b/backend/script_groups/ObtainIOFromProjectTia/scripts_description.json @@ -5,22 +5,22 @@ "long_description": "Este script utiliza TIA Portal Openness para exportar la lógica de un PLC en formato XML y SCL. Permite seleccionar un proyecto de TIA Portal y genera los archivos de exportación en el directorio configurado.\n***\n**Lógica Principal:**\n\n1. **Configuración:** Carga parámetros desde `ParamManagerScripts` (directorio de trabajo, versión de TIA Portal).\n2. **Selección de Proyecto:** Abre un cuadro de diálogo para seleccionar el archivo del proyecto de TIA Portal.\n3. **Conexión a TIA Portal:** Utiliza la API de TIA Openness para conectarse al portal y abrir el proyecto seleccionado.\n4. **Exportación:** Exporta la lógica del PLC en archivos XML y SCL al directorio configurado.\n5. **Cierre:** Cierra la conexión con TIA Portal al finalizar.", "hidden": false }, - "x4.py": { - "display_name": "2: Exportar Referencias Cruzadas desde Tia Portal", - "short_description": "Script para exportar las referencias cruzadas", - "long_description": "", - "hidden": false - }, "x2.py": { "display_name": "2: Exportar Lógica desde TIA Portal V20 en SIMATIC SD format", - "short_description": "export_logic_from_tia_v20_simatic_sd : Script para exportar el software de un PLC desde TIA Portal V20", - "long_description": "", + "short_description": "Script para exportar el software de un PLC desde TIA Portal V20 en el nuevo formato SIMATIC SD", + "long_description": "Script especializado para exportar bloques de PLC desde TIA Portal V20 utilizando el nuevo formato SIMATIC SD (Structured Data). Este formato proporciona una representación más estructurada y moderna de los datos del PLC.\n***\n**Características principales:**\n\n1. **Formato SIMATIC SD:** Utiliza el nuevo formato de exportación disponible en TIA Portal V20+\n2. **Detección automática:** Verifica compatibilidad con el formato SIMATIC SD antes de la exportación\n3. **Comparación dual:** Exporta tanto en formato SIMATIC SD como en XML tradicional para comparación\n4. **Estructura organizada:** Crea carpetas separadas para bloques, UDTs y tablas de variables\n5. **Timestamp único:** Evita conflictos con exports anteriores usando timestamp en nombres de carpetas\n\n**Estructura de exportación:**\n- `01_ProgramBlocks_SD/` - Bloques en formato SIMATIC SD\n- `02_ProgramBlocks_XML_Compare/` - Bloques en XML para comparación\n- `03_PlcDataTypes_SD/` - UDTs en formato SIMATIC SD\n- `04_PlcDataTypes_XML_Compare/` - UDTs en XML para comparación\n- `05_PlcTags_SD/` - Tablas de variables en formato SIMATIC SD\n- `06_PlcTags_XML_Compare/` - Tablas de variables en XML para comparación\n\n**Compatibilidad:** Requiere TIA Portal V20 o superior. Puede ejecutarse después de x1.py sin conflictos.", + "hidden": false + }, + "x4.py": { + "display_name": "3: Exportar Referencias Cruzadas desde TIA Portal", + "short_description": "Script para exportar las referencias cruzadas de un proyecto TIA Portal", + "long_description": "Este script exporta las referencias cruzadas (cross-references) de un proyecto TIA Portal, proporcionando información detallada sobre las interconexiones entre variables, bloques y componentes del sistema.\n***\n**Funcionalidad:**\n\n1. **Referencias cruzadas:** Extrae información sobre dónde se utilizan las variables y bloques\n2. **Análisis de dependencias:** Identifica relaciones entre componentes del proyecto\n3. **Documentación:** Genera reportes útiles para mantenimiento y debugging\n4. **Formato estructurado:** Exporta en formato legible para análisis posterior\n\n**Casos de uso:**\n- Documentación de proyecto\n- Análisis de impacto de cambios\n- Debugging y mantenimiento\n- Auditorías de código", "hidden": false }, "xTest.py": { - "display_name": "xTest", + "display_name": "xTest - Pruebas SIMATIC SD ExportAsDocuments", "short_description": "Test específico para exportación SIMATIC SD usando ExportAsDocuments()", - "long_description": "", + "long_description": "Script de prueba experimental para validar la funcionalidad de exportación SIMATIC SD utilizando el método ExportAsDocuments() de la API de TIA Portal Openness.\n***\n**Propósito:**\n\n1. **Validación de API:** Prueba diferentes métodos de exportación SIMATIC SD\n2. **Comparación de métodos:** Evalúa ExportAsDocuments() vs Export() estándar\n3. **Debugging:** Identifica problemas y limitaciones en la exportación SD\n4. **Desarrollo:** Base para mejoras en scripts de producción\n\n**Estado:** Script experimental - usar solo para pruebas y desarrollo\n\n**Nota:** Este script es parte del proceso de desarrollo y optimización de los métodos de exportación SIMATIC SD.", "hidden": false } } \ No newline at end of file diff --git a/backend/script_groups/ObtainIOFromProjectTia/test_simatic_sd_compatibility.py b/backend/script_groups/ObtainIOFromProjectTia/test_simatic_sd_compatibility.py new file mode 100644 index 0000000..8100e96 --- /dev/null +++ b/backend/script_groups/ObtainIOFromProjectTia/test_simatic_sd_compatibility.py @@ -0,0 +1,70 @@ +""" +Test script to verify SIMATIC SD compatibility detection +""" + +import os +import sys + +# --- TIA Scripting Import Handling --- +if os.getenv("TIA_SCRIPTING"): + sys.path.append(os.getenv("TIA_SCRIPTING")) + +try: + import siemens_tia_scripting as ts + + print("✓ TIA Scripting import successful") + print( + f"Available programming languages: {[lang for lang in dir(ts.Enums.ProgrammingLanguage) if not lang.startswith('_')]}" + ) + print( + f"Available export formats: {[fmt for fmt in dir(ts.Enums.ExportFormats) if not fmt.startswith('_')]}" + ) + print( + f"Available block types: {[bt for bt in dir(ts.Enums.BlockType) if not bt.startswith('_')]}" + ) + + # Check if SIMATIC SD is available + try: + simatic_sd_format = ts.Enums.ExportFormats.SimaticSD + print(f"✓ SIMATIC SD format available: {simatic_sd_format}") + except AttributeError: + print("✗ SIMATIC SD format NOT available in this TIA Scripting version") + +except ImportError as e: + print(f"✗ Failed to import TIA Scripting: {e}") + print( + "This is expected if TIA Portal is not installed or TIA_SCRIPTING env var not set" + ) + + +def analyze_simatic_sd_requirements(): + """Analyze and display SIMATIC SD requirements""" + print("\n=== SIMATIC SD FORMAT REQUIREMENTS ===") + print("Based on official Siemens documentation:") + print() + print("✓ SUPPORTED:") + print(" • Programming Language: LAD (Ladder) ONLY") + print( + " • Block Types: FB (Function Block), FC (Function), OB (Organization Block)" + ) + print(" • TIA Portal Version: V20 or later") + print(" • Target PLCs: S7-1200, S7-1500") + print() + print("✗ NOT SUPPORTED:") + print(" • SCL (Structured Control Language)") + print(" • STL (Statement List)") + print(" • FBD (Function Block Diagram)") + print(" • Graph programming") + print(" • CFC (Continuous Function Chart)") + print(" • Complex LAD elements (some advanced functions)") + print() + print("📋 COMMON CAUSES FOR XML-ONLY EXPORT:") + print(" 1. Block programmed in SCL/STL/FBD instead of LAD") + print(" 2. Block contains unsupported LAD elements") + print(" 3. Block is not compiled/consistent") + print(" 4. TIA Portal version < V20") + print(" 5. Wrong block type (not FB/FC/OB)") + + +if __name__ == "__main__": + analyze_simatic_sd_requirements() diff --git a/backend/script_groups/ObtainIOFromProjectTia/x2.py b/backend/script_groups/ObtainIOFromProjectTia/x2.py index dc5c6c9..e87cc5e 100644 --- a/backend/script_groups/ObtainIOFromProjectTia/x2.py +++ b/backend/script_groups/ObtainIOFromProjectTia/x2.py @@ -61,6 +61,154 @@ except Exception as e: # --- Functions --- +def verify_export_format(export_path, expected_format="SIMATIC_SD"): + """ + Verifies what format was actually exported by examining file extensions. + Returns (actual_format, file_extensions, file_count) + """ + if not os.path.exists(export_path): + return "NO_FILES", [], 0 + + files = [ + f + for f in os.listdir(export_path) + if os.path.isfile(os.path.join(export_path, f)) + ] + if not files: + return "EMPTY_FOLDER", [], 0 + + extensions = [os.path.splitext(f)[1].lower() for f in files] + extension_counts = {} + for ext in extensions: + extension_counts[ext] = extension_counts.get(ext, 0) + 1 + + # Determine actual format based on file extensions + if all(ext == ".xml" for ext in extensions): + actual_format = "XML_ONLY" + elif any(ext in [".sd", ".simatic"] for ext in extensions): + actual_format = "SIMATIC_SD" + elif ".xml" in extensions and len(set(extensions)) > 1: + actual_format = "MIXED" + else: + actual_format = "UNKNOWN" + + return actual_format, extension_counts, len(files) + + +def check_simatic_sd_block_compatibility(block): + """ + Checks if a block is compatible with SIMATIC SD export format. + Returns (is_compatible, reason) + """ + try: + # Check if block is consistent + if not block.is_consistent(): + return False, "Block is not consistent/compiled" + + # Check programming language - SIMATIC SD only supports LAD + try: + prog_lang = block.get_programming_language() + if prog_lang != ts.Enums.ProgrammingLanguage.LAD: + return ( + False, + f"Language {prog_lang} not supported (SIMATIC SD requires LAD)", + ) + except Exception: + return False, "Could not determine programming language" + + # Check block type - SIMATIC SD typically supports FB, FC, OB + try: + block_type = block.get_block_type() + supported_types = [ + ts.Enums.BlockType.FB, # Function Block + ts.Enums.BlockType.FC, # Function + ts.Enums.BlockType.OB, # Organization Block + ] + if block_type not in supported_types: + return False, f"Block type {block_type} may not be supported" + except Exception: + # If we can't determine type, assume it might work + pass + + return True, "Block appears compatible with SIMATIC SD" + + except Exception as e: + return False, f"Error checking compatibility: {e}" + + +def verify_export_format(export_path, expected_format="SimaticSD"): + """ + Verifies if the exported files are actually in the expected format. + For SIMATIC SD, looks for specific keywords like RUNG, END_RUNG, wire# + Returns (is_correct_format, file_count, sample_files, format_details) + """ + if not os.path.exists(export_path): + return False, 0, [], "Directory does not exist" + + files = [ + f + for f in os.listdir(export_path) + if os.path.isfile(os.path.join(export_path, f)) + ] + if not files: + return False, 0, [], "No files found" + + # Check first few files for format + sample_files = files[:3] + format_details = [] + + for file_name in sample_files: + file_path = os.path.join(export_path, file_name) + try: + with open(file_path, "r", encoding="utf-8", errors="ignore") as f: + content = f.read(2000) # Read first 2KB + + file_info = {"file": file_name, "size": len(content)} + + if expected_format == "SimaticSD": + # SIMATIC SD specific keywords and structure + sd_keywords = ["RUNG", "END_RUNG", "wire#", "NETWORK", "TITLE", "LAD"] + xml_indicators = [" 0 + file_info["is_simatic_sd"] = ( + len(found_sd_keywords) > 0 and not file_info["is_xml"] + ) + file_info["first_100_chars"] = ( + content[:100].replace("\n", " ").replace("\r", "") + ) + + else: # XML format + file_info["is_xml"] = ( + content.strip().startswith(" 0: + print(f" 🔍 UNKNOWN format - needs manual inspection") + else: print(f" {description}: Folder not found") + print(f"\n🔍 SIMATIC SD DIAGNOSIS FOR {plc_name}:") + if simatic_sd_working: + print( + f" ✅ SIMATIC SD is working: {total_sd_files} files in true SD format" + ) + else: + print(f" ❌ SIMATIC SD NOT working: All 'SD' exports are actually XML") + print(f" 📊 Total XML fallbacks: {total_xml_fallbacks}") + + if total_xml_fallbacks > 0: + print(f"\n 💡 POSSIBLE CAUSES:") + print(f" • TIA Portal version doesn't fully support SIMATIC SD") + print(f" • TIA Scripting version incompatible with SIMATIC SD") + print(f" • Project blocks contain unsupported LAD elements") + print( + f" • SIMATIC SD enum exists but falls back to XML silently" + ) + except ts.TiaException as tia_ex: print(f"\nTIA Portal Openness Error: {tia_ex}") traceback.print_exc() @@ -459,4 +786,4 @@ if __name__ == "__main__": except Exception as close_ex: print(f"Error during TIA Portal cleanup: {close_ex}") - print("\nScript finished.") \ No newline at end of file + print("\nScript finished.") diff --git a/data/log.txt b/data/log.txt index f8a8145..0ba8575 100644 --- a/data/log.txt +++ b/data/log.txt @@ -20890,3 +20890,2892 @@ [13:13:08] ========================================= LOG END ========================================== [13:13:08] Ejecución de x0_main.py finalizada (error). Duración: 0:00:14.652341. [13:13:08] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\XML Parser to SCL\.log\log_x0_main.txt +[13:24:04] Iniciando ejecución de x2.py en D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\ExportTia... +[13:24:05] --- TIA Portal 20 SIMATIC SD Exporter --- +[13:24:05] Exporting Blocks, UDTs, and Tags in SIMATIC SD Format +[13:24:05] ✓ SIMATIC SD format supported (enum value: ExportFormats.SimaticSD) +[13:24:11] Selected Project: D:/Trabajo/VM/45 - HENKEL - VM Auto Changeover/InLavoro/PLC/Second Test/93064_TL25_Q1_25_V20/93064_TL25_Q1_25_V20.ap20 +[13:24:11] Using Export Directory (Working Directory): D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\ExportTia +[13:24:11] Connecting to TIA Portal V20.0... +[13:24:11] 2025-08-23 13:24:11,615 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.Global OpenPortal - Start TIA Portal, please acknowledge the security dialog. +[13:24:11] 2025-08-23 13:24:11,631 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.Global OpenPortal - With user interface +[13:24:20] Connected to TIA Portal V20. +[13:24:20] 2025-08-23 13:24:20,786 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.Portal GetProcessId - Process id: 35200 +[13:24:20] Portal Process ID: 35200 +[13:24:20] Opening project: 93064_TL25_Q1_25_V20.ap20... +[13:24:20] 2025-08-23 13:24:20,963 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.Portal OpenProject - Open project... D:/Trabajo/VM/45 - HENKEL - VM Auto Changeover/InLavoro/PLC/Second Test/93064_TL25_Q1_25_V20/93064_TL25_Q1_25_V20.ap20 +[13:24:33] Project opened successfully. +[13:24:40] 2025-08-23 13:24:40,698 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.Project GetPlcs - Found plc PLC_TL25_Q1 with parent name S71500/ET200MP station_1 +[13:24:41] Found 1 PLC(s). Starting SIMATIC SD export process... +[13:24:41] --- Processing PLC: PLC_TL25_Q1 (SIMATIC SD Export) --- +[13:24:41] [PLC: PLC_TL25_Q1] Exporting Program Blocks (SIMATIC SD)... +[13:24:41] SIMATIC SD Target: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\ExportTia\PLC_TL25_Q1_SimaticSD_20250823_132441\01_ProgramBlocks_SD +[13:24:42] Found 233 program blocks. +[13:24:42] Processing block: ProDiagOB... +[13:24:42] Exporting ProDiagOB as SIMATIC SD... +[13:24:46] ERROR during export: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.OB'. +[13:24:46] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.OB'. +[13:24:46] The programming language 'ProDiag_OB' is not supported during import and export. +[13:24:46] Attempting fallback XML export for ProDiagOB... +[13:24:46] ERROR: Both SD and XML export failed: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.OB'. +[13:24:46] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.OB'. +[13:24:46] The programming language 'ProDiag_OB' is not supported during import and export. +[13:24:46] Processing block: Rt_Enable_RemoteFormatChange... +[13:24:46] Exporting Rt_Enable_RemoteFormatChange as SIMATIC SD... +[13:24:47] 2025-08-23 13:24:47,020 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_Enable_RemoteFormatChange exported successfully +[13:24:47] 2025-08-23 13:24:47,034 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_Enable_RemoteFormatChange exported successfully +[13:24:47] ✓ Successfully exported Rt_Enable_RemoteFormatChange in SIMATIC SD +[13:24:47] Exporting Rt_Enable_RemoteFormatChange as XML for comparison... +[13:24:47] 2025-08-23 13:24:47,080 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_Enable_RemoteFormatChange exported successfully +[13:24:47] 2025-08-23 13:24:47,080 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_Enable_RemoteFormatChange exported successfully +[13:24:47] + Also exported Rt_Enable_RemoteFormatChange in XML for comparison +[13:24:47] Processing block: Rt_PopUp_RemoteFormatChange... +[13:24:47] Exporting Rt_PopUp_RemoteFormatChange as SIMATIC SD... +[13:24:47] 2025-08-23 13:24:47,115 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_PopUp_RemoteFormatChange exported successfully +[13:24:47] 2025-08-23 13:24:47,126 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_PopUp_RemoteFormatChange exported successfully +[13:24:47] ✓ Successfully exported Rt_PopUp_RemoteFormatChange in SIMATIC SD +[13:24:47] Exporting Rt_PopUp_RemoteFormatChange as XML for comparison... +[13:24:47] 2025-08-23 13:24:47,166 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_PopUp_RemoteFormatChange exported successfully +[13:24:47] 2025-08-23 13:24:47,167 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_PopUp_RemoteFormatChange exported successfully +[13:24:47] + Also exported Rt_PopUp_RemoteFormatChange in XML for comparison +[13:24:47] Processing block: Rt_LoadRemoteRecipe... +[13:24:47] Exporting Rt_LoadRemoteRecipe as SIMATIC SD... +[13:24:47] 2025-08-23 13:24:47,208 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_LoadRemoteRecipe exported successfully +[13:24:47] 2025-08-23 13:24:47,209 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_LoadRemoteRecipe exported successfully +[13:24:47] ✓ Successfully exported Rt_LoadRemoteRecipe in SIMATIC SD +[13:24:47] Exporting Rt_LoadRemoteRecipe as XML for comparison... +[13:24:47] 2025-08-23 13:24:47,234 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_LoadRemoteRecipe exported successfully +[13:24:47] 2025-08-23 13:24:47,235 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_LoadRemoteRecipe exported successfully +[13:24:47] + Also exported Rt_LoadRemoteRecipe in XML for comparison +[13:24:47] Processing block: Rt_RestartRemoteFormatChange... +[13:24:47] Exporting Rt_RestartRemoteFormatChange as SIMATIC SD... +[13:24:47] 2025-08-23 13:24:47,255 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_RestartRemoteFormatChange exported successfully +[13:24:47] 2025-08-23 13:24:47,257 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_RestartRemoteFormatChange exported successfully +[13:24:47] ✓ Successfully exported Rt_RestartRemoteFormatChange in SIMATIC SD +[13:24:47] Exporting Rt_RestartRemoteFormatChange as XML for comparison... +[13:24:47] 2025-08-23 13:24:47,275 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Rt_RestartRemoteFormatChange exported successfully +[13:24:47] 2025-08-23 13:24:47,276 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Rt_RestartRemoteFormatChange exported successfully +[13:24:47] + Also exported Rt_RestartRemoteFormatChange in XML for comparison +[13:24:47] Processing block: CounterManagementQE1_D... +[13:24:47] Exporting CounterManagementQE1_D as SIMATIC SD... +[13:24:47] 2025-08-23 13:24:47,343 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CounterManagementQE1_D exported successfully +[13:24:47] 2025-08-23 13:24:47,350 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CounterManagementQE1_D exported successfully +[13:24:47] ✓ Successfully exported CounterManagementQE1_D in SIMATIC SD +[13:24:47] Exporting CounterManagementQE1_D as XML for comparison... +[13:24:47] 2025-08-23 13:24:47,376 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CounterManagementQE1_D exported successfully +[13:24:47] 2025-08-23 13:24:47,377 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CounterManagementQE1_D exported successfully +[13:24:47] + Also exported CounterManagementQE1_D in XML for comparison +[13:24:47] Processing block: CounterManagementQE1_G... +[13:24:47] Exporting CounterManagementQE1_G as SIMATIC SD... +[13:24:48] 2025-08-23 13:24:48,068 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CounterManagementQE1_G exported successfully +[13:24:48] 2025-08-23 13:24:48,071 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CounterManagementQE1_G exported successfully +[13:24:48] ✓ Successfully exported CounterManagementQE1_G in SIMATIC SD +[13:24:48] Exporting CounterManagementQE1_G as XML for comparison... +[13:24:48] 2025-08-23 13:24:48,119 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CounterManagementQE1_G exported successfully +[13:24:48] 2025-08-23 13:24:48,119 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CounterManagementQE1_G exported successfully +[13:24:48] + Also exported CounterManagementQE1_G in XML for comparison +[13:24:48] Processing block: FormatManagementQE1_G... +[13:24:49] Exporting FormatManagementQE1_G as SIMATIC SD... +[13:24:49] 2025-08-23 13:24:49,826 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FormatManagementQE1_G exported successfully +[13:24:49] 2025-08-23 13:24:49,845 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FormatManagementQE1_G exported successfully +[13:24:49] ✓ Successfully exported FormatManagementQE1_G in SIMATIC SD +[13:24:49] Exporting FormatManagementQE1_G as XML for comparison... +[13:24:49] 2025-08-23 13:24:49,928 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FormatManagementQE1_G exported successfully +[13:24:49] 2025-08-23 13:24:49,929 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FormatManagementQE1_G exported successfully +[13:24:49] + Also exported FormatManagementQE1_G in XML for comparison +[13:24:49] Processing block: FormatManagementQE1_D... +[13:24:49] Exporting FormatManagementQE1_D as SIMATIC SD... +[13:24:49] 2025-08-23 13:24:49,983 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FormatManagementQE1_D exported successfully +[13:24:49] 2025-08-23 13:24:49,984 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FormatManagementQE1_D exported successfully +[13:24:49] ✓ Successfully exported FormatManagementQE1_D in SIMATIC SD +[13:24:49] Exporting FormatManagementQE1_D as XML for comparison... +[13:24:50] 2025-08-23 13:24:50,021 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FormatManagementQE1_D exported successfully +[13:24:50] 2025-08-23 13:24:50,022 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FormatManagementQE1_D exported successfully +[13:24:50] + Also exported FormatManagementQE1_D in XML for comparison +[13:24:50] Processing block: Default_SupervisionFB... +[13:24:50] Exporting Default_SupervisionFB as SIMATIC SD... +[13:24:50] ERROR during export: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.FB'. +[13:24:50] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.FB'. +[13:24:50] The programming language 'ProDiag' is not supported during import and export. +[13:24:50] Attempting fallback XML export for Default_SupervisionFB... +[13:24:50] ERROR: Both SD and XML export failed: OpennessAccessException: Error when calling method 'Export' of type 'Siemens.Engineering.SW.Blocks.FB'. +[13:24:50] Error when calling method 'get_ProgrammingLanguage' of type 'Siemens.Engineering.SW.Blocks.FB'. +[13:24:50] The programming language 'ProDiag' is not supported during import and export. +[13:24:50] Processing block: 1000_FC Program Manager... +[13:24:50] Exporting 1000_FC Program Manager as SIMATIC SD... +[13:24:50] 2025-08-23 13:24:50,352 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1000_FC Program Manager exported successfully +[13:24:50] 2025-08-23 13:24:50,353 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1000_FC Program Manager exported successfully +[13:24:50] ✓ Successfully exported 1000_FC Program Manager in SIMATIC SD +[13:24:50] Exporting 1000_FC Program Manager as XML for comparison... +[13:24:50] 2025-08-23 13:24:50,393 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1000_FC Program Manager exported successfully +[13:24:50] 2025-08-23 13:24:50,401 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1000_FC Program Manager exported successfully +[13:24:50] + Also exported 1000_FC Program Manager in XML for comparison +[13:24:50] Processing block: 1001_FC Gateway Data Read... +[13:24:50] Exporting 1001_FC Gateway Data Read as SIMATIC SD... +[13:24:50] 2025-08-23 13:24:50,507 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1001_FC Gateway Data Read exported successfully +[13:24:50] 2025-08-23 13:24:50,511 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1001_FC Gateway Data Read exported successfully +[13:24:50] ✓ Successfully exported 1001_FC Gateway Data Read in SIMATIC SD +[13:24:50] Exporting 1001_FC Gateway Data Read as XML for comparison... +[13:24:50] 2025-08-23 13:24:50,550 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1001_FC Gateway Data Read exported successfully +[13:24:50] 2025-08-23 13:24:50,551 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1001_FC Gateway Data Read exported successfully +[13:24:50] + Also exported 1001_FC Gateway Data Read in XML for comparison +[13:24:50] Processing block: 1002_FC Data Read conversion... +[13:24:50] Exporting 1002_FC Data Read conversion as SIMATIC SD... +[13:24:50] 2025-08-23 13:24:50,727 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1002_FC Data Read conversion exported successfully +[13:24:50] 2025-08-23 13:24:50,728 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1002_FC Data Read conversion exported successfully +[13:24:50] ✓ Successfully exported 1002_FC Data Read conversion in SIMATIC SD +[13:24:50] Exporting 1002_FC Data Read conversion as XML for comparison... +[13:24:50] 2025-08-23 13:24:50,786 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1002_FC Data Read conversion exported successfully +[13:24:50] 2025-08-23 13:24:50,788 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1002_FC Data Read conversion exported successfully +[13:24:50] + Also exported 1002_FC Data Read conversion in XML for comparison +[13:24:50] Processing block: 1003_FC Remote Control Read... +[13:24:50] Exporting 1003_FC Remote Control Read as SIMATIC SD... +[13:24:50] 2025-08-23 13:24:50,835 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1003_FC Remote Control Read exported successfully +[13:24:50] 2025-08-23 13:24:50,836 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1003_FC Remote Control Read exported successfully +[13:24:50] ✓ Successfully exported 1003_FC Remote Control Read in SIMATIC SD +[13:24:50] Exporting 1003_FC Remote Control Read as XML for comparison... +[13:24:50] 2025-08-23 13:24:50,868 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1003_FC Remote Control Read exported successfully +[13:24:50] 2025-08-23 13:24:50,868 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1003_FC Remote Control Read exported successfully +[13:24:50] + Also exported 1003_FC Remote Control Read in XML for comparison +[13:24:50] Processing block: 1010_FC Alarms... +[13:24:50] Exporting 1010_FC Alarms as SIMATIC SD... +[13:24:51] 2025-08-23 13:24:51,048 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1010_FC Alarms exported successfully +[13:24:51] 2025-08-23 13:24:51,050 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1010_FC Alarms exported successfully +[13:24:51] ✓ Successfully exported 1010_FC Alarms in SIMATIC SD +[13:24:51] Exporting 1010_FC Alarms as XML for comparison... +[13:24:51] 2025-08-23 13:24:51,148 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1010_FC Alarms exported successfully +[13:24:51] 2025-08-23 13:24:51,149 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1010_FC Alarms exported successfully +[13:24:51] + Also exported 1010_FC Alarms in XML for comparison +[13:24:51] Processing block: 1020_FC Format Parameters... +[13:24:51] Exporting 1020_FC Format Parameters as SIMATIC SD... +[13:24:51] 2025-08-23 13:24:51,222 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1020_FC Format Parameters exported successfully +[13:24:51] 2025-08-23 13:24:51,223 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1020_FC Format Parameters exported successfully +[13:24:51] ✓ Successfully exported 1020_FC Format Parameters in SIMATIC SD +[13:24:51] Exporting 1020_FC Format Parameters as XML for comparison... +[13:24:51] 2025-08-23 13:24:51,284 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1020_FC Format Parameters exported successfully +[13:24:51] 2025-08-23 13:24:51,285 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1020_FC Format Parameters exported successfully +[13:24:51] + Also exported 1020_FC Format Parameters in XML for comparison +[13:24:51] Processing block: 1021_FC Area Parameters... +[13:24:51] Exporting 1021_FC Area Parameters as SIMATIC SD... +[13:24:51] 2025-08-23 13:24:51,348 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1021_FC Area Parameters exported successfully +[13:24:51] 2025-08-23 13:24:51,349 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1021_FC Area Parameters exported successfully +[13:24:51] ✓ Successfully exported 1021_FC Area Parameters in SIMATIC SD +[13:24:51] Exporting 1021_FC Area Parameters as XML for comparison... +[13:24:51] 2025-08-23 13:24:51,389 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1021_FC Area Parameters exported successfully +[13:24:51] 2025-08-23 13:24:51,392 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1021_FC Area Parameters exported successfully +[13:24:51] + Also exported 1021_FC Area Parameters in XML for comparison +[13:24:51] Processing block: 1030_FC Aut/Man selection... +[13:24:51] Exporting 1030_FC Aut/Man selection as SIMATIC SD... +[13:24:51] 2025-08-23 13:24:51,424 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1030_FC Aut/Man selection exported successfully +[13:24:51] 2025-08-23 13:24:51,424 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1030_FC Aut/Man selection exported successfully +[13:24:51] ✓ Successfully exported 1030_FC Aut/Man selection in SIMATIC SD +[13:24:51] Exporting 1030_FC Aut/Man selection as XML for comparison... +[13:24:51] 2025-08-23 13:24:51,444 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1030_FC Aut/Man selection exported successfully +[13:24:51] 2025-08-23 13:24:51,445 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1030_FC Aut/Man selection exported successfully +[13:24:51] + Also exported 1030_FC Aut/Man selection in XML for comparison +[13:24:51] Processing block: 1032_FC Manual function... +[13:24:51] Exporting 1032_FC Manual function as SIMATIC SD... +[13:24:51] 2025-08-23 13:24:51,517 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1032_FC Manual function exported successfully +[13:24:51] 2025-08-23 13:24:51,518 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1032_FC Manual function exported successfully +[13:24:51] ✓ Successfully exported 1032_FC Manual function in SIMATIC SD +[13:24:51] Exporting 1032_FC Manual function as XML for comparison... +[13:24:51] 2025-08-23 13:24:51,562 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1032_FC Manual function exported successfully +[13:24:51] 2025-08-23 13:24:51,564 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1032_FC Manual function exported successfully +[13:24:51] + Also exported 1032_FC Manual function in XML for comparison +[13:24:51] Processing block: 1035_FC Automatic Cycle... +[13:24:51] Exporting 1035_FC Automatic Cycle as SIMATIC SD... +[13:24:51] 2025-08-23 13:24:51,600 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1035_FC Automatic Cycle exported successfully +[13:24:51] 2025-08-23 13:24:51,601 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1035_FC Automatic Cycle exported successfully +[13:24:51] ✓ Successfully exported 1035_FC Automatic Cycle in SIMATIC SD +[13:24:51] Exporting 1035_FC Automatic Cycle as XML for comparison... +[13:24:51] 2025-08-23 13:24:51,642 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1035_FC Automatic Cycle exported successfully +[13:24:51] 2025-08-23 13:24:51,643 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1035_FC Automatic Cycle exported successfully +[13:24:51] + Also exported 1035_FC Automatic Cycle in XML for comparison +[13:24:51] Processing block: 1036_FC Area Cycle... +[13:24:51] Exporting 1036_FC Area Cycle as SIMATIC SD... +[13:24:52] 2025-08-23 13:24:52,102 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1036_FC Area Cycle exported successfully +[13:24:52] 2025-08-23 13:24:52,103 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1036_FC Area Cycle exported successfully +[13:24:52] ✓ Successfully exported 1036_FC Area Cycle in SIMATIC SD +[13:24:52] Exporting 1036_FC Area Cycle as XML for comparison... +[13:24:52] 2025-08-23 13:24:52,196 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1036_FC Area Cycle exported successfully +[13:24:52] 2025-08-23 13:24:52,211 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1036_FC Area Cycle exported successfully +[13:24:52] + Also exported 1036_FC Area Cycle in XML for comparison +[13:24:52] Processing block: 1050_FC HMI... +[13:24:52] Exporting 1050_FC HMI as SIMATIC SD... +[13:24:52] 2025-08-23 13:24:52,304 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1050_FC HMI exported successfully +[13:24:52] 2025-08-23 13:24:52,305 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1050_FC HMI exported successfully +[13:24:52] ✓ Successfully exported 1050_FC HMI in SIMATIC SD +[13:24:52] Exporting 1050_FC HMI as XML for comparison... +[13:24:52] 2025-08-23 13:24:52,372 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1050_FC HMI exported successfully +[13:24:52] 2025-08-23 13:24:52,373 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1050_FC HMI exported successfully +[13:24:52] + Also exported 1050_FC HMI in XML for comparison +[13:24:52] Processing block: 1090_FC Alarms to SV... +[13:24:52] Exporting 1090_FC Alarms to SV as SIMATIC SD... +[13:24:52] 2025-08-23 13:24:52,466 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1090_FC Alarms to SV exported successfully +[13:24:52] 2025-08-23 13:24:52,476 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1090_FC Alarms to SV exported successfully +[13:24:52] ✓ Successfully exported 1090_FC Alarms to SV in SIMATIC SD +[13:24:52] Exporting 1090_FC Alarms to SV as XML for comparison... +[13:24:52] 2025-08-23 13:24:52,551 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1090_FC Alarms to SV exported successfully +[13:24:52] 2025-08-23 13:24:52,552 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1090_FC Alarms to SV exported successfully +[13:24:52] + Also exported 1090_FC Alarms to SV in XML for comparison +[13:24:52] Processing block: 1100_FC Remote Control Write... +[13:24:52] Exporting 1100_FC Remote Control Write as SIMATIC SD... +[13:24:52] 2025-08-23 13:24:52,596 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1100_FC Remote Control Write exported successfully +[13:24:52] 2025-08-23 13:24:52,596 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1100_FC Remote Control Write exported successfully +[13:24:52] ✓ Successfully exported 1100_FC Remote Control Write in SIMATIC SD +[13:24:52] Exporting 1100_FC Remote Control Write as XML for comparison... +[13:24:52] 2025-08-23 13:24:52,622 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1100_FC Remote Control Write exported successfully +[13:24:52] 2025-08-23 13:24:52,623 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1100_FC Remote Control Write exported successfully +[13:24:52] + Also exported 1100_FC Remote Control Write in XML for comparison +[13:24:52] Processing block: 1101_FC Data Write conversion... +[13:24:52] Exporting 1101_FC Data Write conversion as SIMATIC SD... +[13:24:52] 2025-08-23 13:24:52,684 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1101_FC Data Write conversion exported successfully +[13:24:52] 2025-08-23 13:24:52,684 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1101_FC Data Write conversion exported successfully +[13:24:52] ✓ Successfully exported 1101_FC Data Write conversion in SIMATIC SD +[13:24:52] Exporting 1101_FC Data Write conversion as XML for comparison... +[13:24:52] 2025-08-23 13:24:52,730 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1101_FC Data Write conversion exported successfully +[13:24:52] 2025-08-23 13:24:52,731 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1101_FC Data Write conversion exported successfully +[13:24:52] + Also exported 1101_FC Data Write conversion in XML for comparison +[13:24:52] Processing block: 1102_FC Gateway Data Write... +[13:24:52] Exporting 1102_FC Gateway Data Write as SIMATIC SD... +[13:24:52] 2025-08-23 13:24:52,768 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1102_FC Gateway Data Write exported successfully +[13:24:52] 2025-08-23 13:24:52,769 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1102_FC Gateway Data Write exported successfully +[13:24:52] ✓ Successfully exported 1102_FC Gateway Data Write in SIMATIC SD +[13:24:52] Exporting 1102_FC Gateway Data Write as XML for comparison... +[13:24:52] 2025-08-23 13:24:52,804 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: 1102_FC Gateway Data Write exported successfully +[13:24:52] 2025-08-23 13:24:52,804 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - 1102_FC Gateway Data Write exported successfully +[13:24:52] + Also exported 1102_FC Gateway Data Write in XML for comparison +[13:24:52] Processing block: Default_SupervisionDB... +[13:24:52] Exporting Default_SupervisionDB as SIMATIC SD... +[13:24:52] 2025-08-23 13:24:52,826 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Default_SupervisionDB exported successfully +[13:24:52] 2025-08-23 13:24:52,827 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Default_SupervisionDB exported successfully +[13:24:52] ✓ Successfully exported Default_SupervisionDB in SIMATIC SD +[13:24:52] Exporting Default_SupervisionDB as XML for comparison... +[13:24:52] 2025-08-23 13:24:52,842 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Default_SupervisionDB exported successfully +[13:24:52] 2025-08-23 13:24:52,843 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Default_SupervisionDB exported successfully +[13:24:52] + Also exported Default_SupervisionDB in XML for comparison +[13:24:52] Processing block: DB Gateway... +[13:24:52] Exporting DB Gateway as SIMATIC SD... +[13:24:53] 2025-08-23 13:24:53,316 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Gateway exported successfully +[13:24:53] 2025-08-23 13:24:53,331 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Gateway exported successfully +[13:24:53] ✓ Successfully exported DB Gateway in SIMATIC SD +[13:24:53] Exporting DB Gateway as XML for comparison... +[13:24:53] 2025-08-23 13:24:53,819 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Gateway exported successfully +[13:24:53] 2025-08-23 13:24:53,843 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Gateway exported successfully +[13:24:53] + Also exported DB Gateway in XML for comparison +[13:24:53] Processing block: DB LinePar... +[13:24:53] Exporting DB LinePar as SIMATIC SD... +[13:24:53] 2025-08-23 13:24:53,883 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB LinePar exported successfully +[13:24:53] 2025-08-23 13:24:53,884 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB LinePar exported successfully +[13:24:53] ✓ Successfully exported DB LinePar in SIMATIC SD +[13:24:53] Exporting DB LinePar as XML for comparison... +[13:24:54] 2025-08-23 13:24:54,023 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB LinePar exported successfully +[13:24:54] 2025-08-23 13:24:54,024 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB LinePar exported successfully +[13:24:54] + Also exported DB LinePar in XML for comparison +[13:24:54] Processing block: DB MotorPar... +[13:24:54] Exporting DB MotorPar as SIMATIC SD... +[13:24:54] 2025-08-23 13:24:54,750 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB MotorPar exported successfully +[13:24:54] 2025-08-23 13:24:54,753 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB MotorPar exported successfully +[13:24:54] ✓ Successfully exported DB MotorPar in SIMATIC SD +[13:24:54] Exporting DB MotorPar as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,392 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB MotorPar exported successfully +[13:24:55] 2025-08-23 13:24:55,393 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB MotorPar exported successfully +[13:24:55] + Also exported DB MotorPar in XML for comparison +[13:24:55] Processing block: DB FormatPar... +[13:24:55] Exporting DB FormatPar as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,419 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB FormatPar exported successfully +[13:24:55] 2025-08-23 13:24:55,420 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB FormatPar exported successfully +[13:24:55] ✓ Successfully exported DB FormatPar in SIMATIC SD +[13:24:55] Exporting DB FormatPar as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,444 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB FormatPar exported successfully +[13:24:55] 2025-08-23 13:24:55,445 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB FormatPar exported successfully +[13:24:55] + Also exported DB FormatPar in XML for comparison +[13:24:55] Processing block: DB AreaPar... +[13:24:55] Exporting DB AreaPar as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,482 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB AreaPar exported successfully +[13:24:55] 2025-08-23 13:24:55,483 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB AreaPar exported successfully +[13:24:55] ✓ Successfully exported DB AreaPar in SIMATIC SD +[13:24:55] Exporting DB AreaPar as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,506 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB AreaPar exported successfully +[13:24:55] 2025-08-23 13:24:55,506 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB AreaPar exported successfully +[13:24:55] + Also exported DB AreaPar in XML for comparison +[13:24:55] Processing block: DB Cycle... +[13:24:55] Exporting DB Cycle as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,527 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Cycle exported successfully +[13:24:55] 2025-08-23 13:24:55,528 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Cycle exported successfully +[13:24:55] ✓ Successfully exported DB Cycle in SIMATIC SD +[13:24:55] Exporting DB Cycle as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,549 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Cycle exported successfully +[13:24:55] 2025-08-23 13:24:55,550 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Cycle exported successfully +[13:24:55] + Also exported DB Cycle in XML for comparison +[13:24:55] Processing block: DB Alarms... +[13:24:55] Exporting DB Alarms as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,582 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Alarms exported successfully +[13:24:55] 2025-08-23 13:24:55,596 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Alarms exported successfully +[13:24:55] ✓ Successfully exported DB Alarms in SIMATIC SD +[13:24:55] Exporting DB Alarms as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,621 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Alarms exported successfully +[13:24:55] 2025-08-23 13:24:55,622 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Alarms exported successfully +[13:24:55] + Also exported DB Alarms in XML for comparison +[13:24:55] Processing block: DB HMI_1... +[13:24:55] Exporting DB HMI_1 as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,647 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI_1 exported successfully +[13:24:55] 2025-08-23 13:24:55,649 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI_1 exported successfully +[13:24:55] ✓ Successfully exported DB HMI_1 in SIMATIC SD +[13:24:55] Exporting DB HMI_1 as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,672 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI_1 exported successfully +[13:24:55] 2025-08-23 13:24:55,673 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI_1 exported successfully +[13:24:55] + Also exported DB HMI_1 in XML for comparison +[13:24:55] Processing block: DB Collegamento HMI... +[13:24:55] Exporting DB Collegamento HMI as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,696 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Collegamento HMI exported successfully +[13:24:55] 2025-08-23 13:24:55,697 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Collegamento HMI exported successfully +[13:24:55] ✓ Successfully exported DB Collegamento HMI in SIMATIC SD +[13:24:55] Exporting DB Collegamento HMI as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,717 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Collegamento HMI exported successfully +[13:24:55] 2025-08-23 13:24:55,717 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Collegamento HMI exported successfully +[13:24:55] + Also exported DB Collegamento HMI in XML for comparison +[13:24:55] Processing block: DB Msg Par to SV... +[13:24:55] Exporting DB Msg Par to SV as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,740 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Msg Par to SV exported successfully +[13:24:55] 2025-08-23 13:24:55,741 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Msg Par to SV exported successfully +[13:24:55] ✓ Successfully exported DB Msg Par to SV in SIMATIC SD +[13:24:55] Exporting DB Msg Par to SV as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,760 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Msg Par to SV exported successfully +[13:24:55] 2025-08-23 13:24:55,761 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Msg Par to SV exported successfully +[13:24:55] + Also exported DB Msg Par to SV in XML for comparison +[13:24:55] Processing block: DB Remote Control... +[13:24:55] Exporting DB Remote Control as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,789 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Remote Control exported successfully +[13:24:55] 2025-08-23 13:24:55,790 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Remote Control exported successfully +[13:24:55] ✓ Successfully exported DB Remote Control in SIMATIC SD +[13:24:55] Exporting DB Remote Control as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,812 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Remote Control exported successfully +[13:24:55] 2025-08-23 13:24:55,813 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Remote Control exported successfully +[13:24:55] + Also exported DB Remote Control in XML for comparison +[13:24:55] Processing block: FC General COM... +[13:24:55] Exporting FC General COM as SIMATIC SD... +[13:24:55] 2025-08-23 13:24:55,918 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC General COM exported successfully +[13:24:55] 2025-08-23 13:24:55,919 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC General COM exported successfully +[13:24:55] ✓ Successfully exported FC General COM in SIMATIC SD +[13:24:55] Exporting FC General COM as XML for comparison... +[13:24:55] 2025-08-23 13:24:55,952 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC General COM exported successfully +[13:24:55] 2025-08-23 13:24:55,953 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC General COM exported successfully +[13:24:55] + Also exported FC General COM in XML for comparison +[13:24:55] Processing block: ComVetroToAutefaSCO_G... +[13:24:55] Exporting ComVetroToAutefaSCO_G as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,019 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComVetroToAutefaSCO_G exported successfully +[13:24:56] 2025-08-23 13:24:56,021 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComVetroToAutefaSCO_G exported successfully +[13:24:56] ✓ Successfully exported ComVetroToAutefaSCO_G in SIMATIC SD +[13:24:56] Exporting ComVetroToAutefaSCO_G as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,062 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComVetroToAutefaSCO_G exported successfully +[13:24:56] 2025-08-23 13:24:56,062 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComVetroToAutefaSCO_G exported successfully +[13:24:56] + Also exported ComVetroToAutefaSCO_G in XML for comparison +[13:24:56] Processing block: ComVetroToAutefaSCO_D... +[13:24:56] Exporting ComVetroToAutefaSCO_D as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,094 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComVetroToAutefaSCO_D exported successfully +[13:24:56] 2025-08-23 13:24:56,095 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComVetroToAutefaSCO_D exported successfully +[13:24:56] ✓ Successfully exported ComVetroToAutefaSCO_D in SIMATIC SD +[13:24:56] Exporting ComVetroToAutefaSCO_D as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,116 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComVetroToAutefaSCO_D exported successfully +[13:24:56] 2025-08-23 13:24:56,117 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComVetroToAutefaSCO_D exported successfully +[13:24:56] + Also exported ComVetroToAutefaSCO_D in XML for comparison +[13:24:56] Processing block: DB2069_COM_VETRO_global_data_L40... +[13:24:56] Exporting DB2069_COM_VETRO_global_data_L40 as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,175 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB2069_COM_VETRO_global_data_L40 exported successfully +[13:24:56] 2025-08-23 13:24:56,175 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB2069_COM_VETRO_global_data_L40 exported successfully +[13:24:56] ✓ Successfully exported DB2069_COM_VETRO_global_data_L40 in SIMATIC SD +[13:24:56] Exporting DB2069_COM_VETRO_global_data_L40 as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,236 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB2069_COM_VETRO_global_data_L40 exported successfully +[13:24:56] 2025-08-23 13:24:56,237 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB2069_COM_VETRO_global_data_L40 exported successfully +[13:24:56] + Also exported DB2069_COM_VETRO_global_data_L40 in XML for comparison +[13:24:56] Processing block: FC COM Data - QE1 from/to Electric Guides... +[13:24:56] Exporting FC COM Data - QE1 from/to Electric Guides as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,293 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Electric Guides exported successfully +[13:24:56] 2025-08-23 13:24:56,294 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Electric Guides exported successfully +[13:24:56] ✓ Successfully exported FC COM Data - QE1 from/to Electric Guides in SIMATIC SD +[13:24:56] Exporting FC COM Data - QE1 from/to Electric Guides as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,330 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Electric Guides exported successfully +[13:24:56] 2025-08-23 13:24:56,349 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Electric Guides exported successfully +[13:24:56] + Also exported FC COM Data - QE1 from/to Electric Guides in XML for comparison +[13:24:56] Processing block: DB COM Signal Guides... +[13:24:56] Exporting DB COM Signal Guides as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,376 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB COM Signal Guides exported successfully +[13:24:56] 2025-08-23 13:24:56,376 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB COM Signal Guides exported successfully +[13:24:56] ✓ Successfully exported DB COM Signal Guides in SIMATIC SD +[13:24:56] Exporting DB COM Signal Guides as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,396 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB COM Signal Guides exported successfully +[13:24:56] 2025-08-23 13:24:56,397 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB COM Signal Guides exported successfully +[13:24:56] + Also exported DB COM Signal Guides in XML for comparison +[13:24:56] Processing block: AlarmsHmi_G... +[13:24:56] Exporting AlarmsHmi_G as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,449 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: AlarmsHmi_G exported successfully +[13:24:56] 2025-08-23 13:24:56,450 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - AlarmsHmi_G exported successfully +[13:24:56] ✓ Successfully exported AlarmsHmi_G in SIMATIC SD +[13:24:56] Exporting AlarmsHmi_G as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,484 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: AlarmsHmi_G exported successfully +[13:24:56] 2025-08-23 13:24:56,494 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - AlarmsHmi_G exported successfully +[13:24:56] + Also exported AlarmsHmi_G in XML for comparison +[13:24:56] Processing block: Alarms_Hmi_D... +[13:24:56] Exporting Alarms_Hmi_D as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,542 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Alarms_Hmi_D exported successfully +[13:24:56] 2025-08-23 13:24:56,543 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Alarms_Hmi_D exported successfully +[13:24:56] ✓ Successfully exported Alarms_Hmi_D in SIMATIC SD +[13:24:56] Exporting Alarms_Hmi_D as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,565 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Alarms_Hmi_D exported successfully +[13:24:56] 2025-08-23 13:24:56,565 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Alarms_Hmi_D exported successfully +[13:24:56] + Also exported Alarms_Hmi_D in XML for comparison +[13:24:56] Processing block: CycleTime_G... +[13:24:56] Exporting CycleTime_G as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,668 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CycleTime_G exported successfully +[13:24:56] 2025-08-23 13:24:56,683 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CycleTime_G exported successfully +[13:24:56] ✓ Successfully exported CycleTime_G in SIMATIC SD +[13:24:56] Exporting CycleTime_G as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,750 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CycleTime_G exported successfully +[13:24:56] 2025-08-23 13:24:56,757 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CycleTime_G exported successfully +[13:24:56] + Also exported CycleTime_G in XML for comparison +[13:24:56] Processing block: CycleTime_IG... +[13:24:56] Exporting CycleTime_IG as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,796 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CycleTime_IG exported successfully +[13:24:56] 2025-08-23 13:24:56,797 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CycleTime_IG exported successfully +[13:24:56] ✓ Successfully exported CycleTime_IG in SIMATIC SD +[13:24:56] Exporting CycleTime_IG as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,815 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CycleTime_IG exported successfully +[13:24:56] 2025-08-23 13:24:56,816 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CycleTime_IG exported successfully +[13:24:56] + Also exported CycleTime_IG in XML for comparison +[13:24:56] Processing block: FromQ2_D... +[13:24:56] Exporting FromQ2_D as SIMATIC SD... +[13:24:56] 2025-08-23 13:24:56,884 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FromQ2_D exported successfully +[13:24:56] 2025-08-23 13:24:56,885 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FromQ2_D exported successfully +[13:24:56] ✓ Successfully exported FromQ2_D in SIMATIC SD +[13:24:56] Exporting FromQ2_D as XML for comparison... +[13:24:56] 2025-08-23 13:24:56,938 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FromQ2_D exported successfully +[13:24:56] 2025-08-23 13:24:56,939 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FromQ2_D exported successfully +[13:24:56] + Also exported FromQ2_D in XML for comparison +[13:24:56] Processing block: ToQ2_D... +[13:24:56] Exporting ToQ2_D as SIMATIC SD... +[13:24:57] 2025-08-23 13:24:57,034 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ToQ2_D exported successfully +[13:24:57] 2025-08-23 13:24:57,040 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ToQ2_D exported successfully +[13:24:57] ✓ Successfully exported ToQ2_D in SIMATIC SD +[13:24:57] Exporting ToQ2_D as XML for comparison... +[13:24:57] 2025-08-23 13:24:57,111 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ToQ2_D exported successfully +[13:24:57] 2025-08-23 13:24:57,115 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ToQ2_D exported successfully +[13:24:57] + Also exported ToQ2_D in XML for comparison +[13:24:57] Processing block: ComQ2Appo_D... +[13:24:57] Exporting ComQ2Appo_D as SIMATIC SD... +[13:24:57] 2025-08-23 13:24:57,157 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComQ2Appo_D exported successfully +[13:24:57] 2025-08-23 13:24:57,157 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComQ2Appo_D exported successfully +[13:24:57] ✓ Successfully exported ComQ2Appo_D in SIMATIC SD +[13:24:57] Exporting ComQ2Appo_D as XML for comparison... +[13:24:57] 2025-08-23 13:24:57,214 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComQ2Appo_D exported successfully +[13:24:57] 2025-08-23 13:24:57,214 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComQ2Appo_D exported successfully +[13:24:57] + Also exported ComQ2Appo_D in XML for comparison +[13:24:57] Processing block: ComQ2_G... +[13:24:57] Exporting ComQ2_G as SIMATIC SD... +[13:24:57] 2025-08-23 13:24:57,339 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComQ2_G exported successfully +[13:24:57] 2025-08-23 13:24:57,347 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComQ2_G exported successfully +[13:24:57] ✓ Successfully exported ComQ2_G in SIMATIC SD +[13:24:57] Exporting ComQ2_G as XML for comparison... +[13:24:57] 2025-08-23 13:24:57,413 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComQ2_G exported successfully +[13:24:57] 2025-08-23 13:24:57,414 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComQ2_G exported successfully +[13:24:57] + Also exported ComQ2_G in XML for comparison +[13:24:57] Processing block: FC COM Data - QE1 from/to Henkel... +[13:24:57] Exporting FC COM Data - QE1 from/to Henkel as SIMATIC SD... +[13:24:57] 2025-08-23 13:24:57,573 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Henkel exported successfully +[13:24:57] 2025-08-23 13:24:57,581 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Henkel exported successfully +[13:24:57] ✓ Successfully exported FC COM Data - QE1 from/to Henkel in SIMATIC SD +[13:24:57] Exporting FC COM Data - QE1 from/to Henkel as XML for comparison... +[13:24:57] 2025-08-23 13:24:57,677 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Henkel exported successfully +[13:24:57] 2025-08-23 13:24:57,678 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Henkel exported successfully +[13:24:57] + Also exported FC COM Data - QE1 from/to Henkel in XML for comparison +[13:24:57] Processing block: ComHenkel_D... +[13:24:57] Exporting ComHenkel_D as SIMATIC SD... +[13:24:57] 2025-08-23 13:24:57,723 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComHenkel_D exported successfully +[13:24:57] 2025-08-23 13:24:57,724 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComHenkel_D exported successfully +[13:24:57] ✓ Successfully exported ComHenkel_D in SIMATIC SD +[13:24:57] Exporting ComHenkel_D as XML for comparison... +[13:24:57] 2025-08-23 13:24:57,747 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComHenkel_D exported successfully +[13:24:57] 2025-08-23 13:24:57,748 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComHenkel_D exported successfully +[13:24:57] + Also exported ComHenkel_D in XML for comparison +[13:24:57] Processing block: ComSV... +[13:24:57] Exporting ComSV as SIMATIC SD... +[13:24:57] 2025-08-23 13:24:57,939 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComSV exported successfully +[13:24:57] 2025-08-23 13:24:57,940 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComSV exported successfully +[13:24:57] ✓ Successfully exported ComSV in SIMATIC SD +[13:24:57] Exporting ComSV as XML for comparison... +[13:24:58] 2025-08-23 13:24:58,103 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: ComSV exported successfully +[13:24:58] 2025-08-23 13:24:58,104 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - ComSV exported successfully +[13:24:58] + Also exported ComSV in XML for comparison +[13:24:58] Processing block: FC COM Data - QE1 to VM Supervision... +[13:24:58] Exporting FC COM Data - QE1 to VM Supervision as SIMATIC SD... +[13:24:58] 2025-08-23 13:24:58,527 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 to VM Supervision exported successfully +[13:24:58] 2025-08-23 13:24:58,528 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 to VM Supervision exported successfully +[13:24:58] ✓ Successfully exported FC COM Data - QE1 to VM Supervision in SIMATIC SD +[13:24:58] Exporting FC COM Data - QE1 to VM Supervision as XML for comparison... +[13:24:58] 2025-08-23 13:24:58,643 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 to VM Supervision exported successfully +[13:24:58] 2025-08-23 13:24:58,658 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 to VM Supervision exported successfully +[13:24:58] + Also exported FC COM Data - QE1 to VM Supervision in XML for comparison +[13:24:58] Processing block: FC COM Data - QE1 from/to Merger... +[13:24:58] Exporting FC COM Data - QE1 from/to Merger as SIMATIC SD... +[13:24:58] 2025-08-23 13:24:58,893 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Merger exported successfully +[13:24:58] 2025-08-23 13:24:58,909 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Merger exported successfully +[13:24:58] ✓ Successfully exported FC COM Data - QE1 from/to Merger in SIMATIC SD +[13:24:58] Exporting FC COM Data - QE1 from/to Merger as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,176 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Merger exported successfully +[13:24:59] 2025-08-23 13:24:59,177 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Merger exported successfully +[13:24:59] + Also exported FC COM Data - QE1 from/to Merger in XML for comparison +[13:24:59] Processing block: DB COM Signal Merger... +[13:24:59] Exporting DB COM Signal Merger as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,208 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB COM Signal Merger exported successfully +[13:24:59] 2025-08-23 13:24:59,209 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB COM Signal Merger exported successfully +[13:24:59] ✓ Successfully exported DB COM Signal Merger in SIMATIC SD +[13:24:59] Exporting DB COM Signal Merger as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,236 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB COM Signal Merger exported successfully +[13:24:59] 2025-08-23 13:24:59,236 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB COM Signal Merger exported successfully +[13:24:59] + Also exported DB COM Signal Merger in XML for comparison +[13:24:59] Processing block: Table_Jam... +[13:24:59] Exporting Table_Jam as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,261 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Table_Jam exported successfully +[13:24:59] 2025-08-23 13:24:59,262 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Table_Jam exported successfully +[13:24:59] ✓ Successfully exported Table_Jam in SIMATIC SD +[13:24:59] Exporting Table_Jam as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,282 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Table_Jam exported successfully +[13:24:59] 2025-08-23 13:24:59,282 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Table_Jam exported successfully +[13:24:59] + Also exported Table_Jam in XML for comparison +[13:24:59] Processing block: FC Move Motor Data... +[13:24:59] Exporting FC Move Motor Data as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,320 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Move Motor Data exported successfully +[13:24:59] 2025-08-23 13:24:59,321 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Move Motor Data exported successfully +[13:24:59] ✓ Successfully exported FC Move Motor Data in SIMATIC SD +[13:24:59] Exporting FC Move Motor Data as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,359 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Move Motor Data exported successfully +[13:24:59] 2025-08-23 13:24:59,359 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Move Motor Data exported successfully +[13:24:59] + Also exported FC Move Motor Data in XML for comparison +[13:24:59] Processing block: FC COM Data - QE1 from/to Alpla... +[13:24:59] Exporting FC COM Data - QE1 from/to Alpla as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,381 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Alpla exported successfully +[13:24:59] 2025-08-23 13:24:59,382 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Alpla exported successfully +[13:24:59] ✓ Successfully exported FC COM Data - QE1 from/to Alpla in SIMATIC SD +[13:24:59] Exporting FC COM Data - QE1 from/to Alpla as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,398 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC COM Data - QE1 from/to Alpla exported successfully +[13:24:59] 2025-08-23 13:24:59,398 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC COM Data - QE1 from/to Alpla exported successfully +[13:24:59] + Also exported FC COM Data - QE1 from/to Alpla in XML for comparison +[13:24:59] Processing block: HW_INT0... +[13:24:59] Exporting HW_INT0 as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,427 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: HW_INT0 exported successfully +[13:24:59] 2025-08-23 13:24:59,428 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - HW_INT0 exported successfully +[13:24:59] ✓ Successfully exported HW_INT0 in SIMATIC SD +[13:24:59] Exporting HW_INT0 as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,449 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: HW_INT0 exported successfully +[13:24:59] 2025-08-23 13:24:59,450 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - HW_INT0 exported successfully +[13:24:59] + Also exported HW_INT0 in XML for comparison +[13:24:59] Processing block: CYCL_FLT... +[13:24:59] Exporting CYCL_FLT as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,469 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CYCL_FLT exported successfully +[13:24:59] 2025-08-23 13:24:59,470 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CYCL_FLT exported successfully +[13:24:59] ✓ Successfully exported CYCL_FLT in SIMATIC SD +[13:24:59] Exporting CYCL_FLT as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,494 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CYCL_FLT exported successfully +[13:24:59] 2025-08-23 13:24:59,495 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CYCL_FLT exported successfully +[13:24:59] + Also exported CYCL_FLT in XML for comparison +[13:24:59] Processing block: I/O_FLT1... +[13:24:59] Exporting I/O_FLT1 as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,515 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: I/O_FLT1 exported successfully +[13:24:59] 2025-08-23 13:24:59,515 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - I/O_FLT1 exported successfully +[13:24:59] ✓ Successfully exported I/O_FLT1 in SIMATIC SD +[13:24:59] Exporting I/O_FLT1 as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,530 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: I/O_FLT1 exported successfully +[13:24:59] 2025-08-23 13:24:59,531 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - I/O_FLT1 exported successfully +[13:24:59] + Also exported I/O_FLT1 in XML for comparison +[13:24:59] Processing block: I/O_FLT2... +[13:24:59] Exporting I/O_FLT2 as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,551 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: I/O_FLT2 exported successfully +[13:24:59] 2025-08-23 13:24:59,551 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - I/O_FLT2 exported successfully +[13:24:59] ✓ Successfully exported I/O_FLT2 in SIMATIC SD +[13:24:59] Exporting I/O_FLT2 as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,566 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: I/O_FLT2 exported successfully +[13:24:59] 2025-08-23 13:24:59,567 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - I/O_FLT2 exported successfully +[13:24:59] + Also exported I/O_FLT2 in XML for comparison +[13:24:59] Processing block: RACK_FLT... +[13:24:59] Exporting RACK_FLT as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,589 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: RACK_FLT exported successfully +[13:24:59] 2025-08-23 13:24:59,589 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - RACK_FLT exported successfully +[13:24:59] ✓ Successfully exported RACK_FLT in SIMATIC SD +[13:24:59] Exporting RACK_FLT as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,605 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: RACK_FLT exported successfully +[13:24:59] 2025-08-23 13:24:59,606 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - RACK_FLT exported successfully +[13:24:59] + Also exported RACK_FLT in XML for comparison +[13:24:59] Processing block: RESTART... +[13:24:59] Exporting RESTART as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,639 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: RESTART exported successfully +[13:24:59] 2025-08-23 13:24:59,640 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - RESTART exported successfully +[13:24:59] ✓ Successfully exported RESTART in SIMATIC SD +[13:24:59] Exporting RESTART as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,662 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: RESTART exported successfully +[13:24:59] 2025-08-23 13:24:59,663 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - RESTART exported successfully +[13:24:59] + Also exported RESTART in XML for comparison +[13:24:59] Processing block: PROG_ERR... +[13:24:59] Exporting PROG_ERR as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,693 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: PROG_ERR exported successfully +[13:24:59] 2025-08-23 13:24:59,694 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PROG_ERR exported successfully +[13:24:59] ✓ Successfully exported PROG_ERR in SIMATIC SD +[13:24:59] Exporting PROG_ERR as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,715 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: PROG_ERR exported successfully +[13:24:59] 2025-08-23 13:24:59,716 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PROG_ERR exported successfully +[13:24:59] + Also exported PROG_ERR in XML for comparison +[13:24:59] Processing block: HW_ERR... +[13:24:59] Exporting HW_ERR as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,796 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: HW_ERR exported successfully +[13:24:59] 2025-08-23 13:24:59,797 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - HW_ERR exported successfully +[13:24:59] ✓ Successfully exported HW_ERR in SIMATIC SD +[13:24:59] Exporting HW_ERR as XML for comparison... +[13:24:59] 2025-08-23 13:24:59,816 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: HW_ERR exported successfully +[13:24:59] 2025-08-23 13:24:59,817 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - HW_ERR exported successfully +[13:24:59] + Also exported HW_ERR in XML for comparison +[13:24:59] Processing block: FC HMI... +[13:24:59] Exporting FC HMI as SIMATIC SD... +[13:24:59] 2025-08-23 13:24:59,899 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI exported successfully +[13:24:59] 2025-08-23 13:24:59,911 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI exported successfully +[13:24:59] ✓ Successfully exported FC HMI in SIMATIC SD +[13:24:59] Exporting FC HMI as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,030 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI exported successfully +[13:25:00] 2025-08-23 13:25:00,033 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI exported successfully +[13:25:00] + Also exported FC HMI in XML for comparison +[13:25:00] Processing block: FC HMI Timer... +[13:25:00] Exporting FC HMI Timer as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,176 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Timer exported successfully +[13:25:00] 2025-08-23 13:25:00,191 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Timer exported successfully +[13:25:00] ✓ Successfully exported FC HMI Timer in SIMATIC SD +[13:25:00] Exporting FC HMI Timer as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,229 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Timer exported successfully +[13:25:00] 2025-08-23 13:25:00,230 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Timer exported successfully +[13:25:00] + Also exported FC HMI Timer in XML for comparison +[13:25:00] Processing block: FC HMI PSW Cfg... +[13:25:00] Exporting FC HMI PSW Cfg as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,348 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI PSW Cfg exported successfully +[13:25:00] 2025-08-23 13:25:00,363 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI PSW Cfg exported successfully +[13:25:00] ✓ Successfully exported FC HMI PSW Cfg in SIMATIC SD +[13:25:00] Exporting FC HMI PSW Cfg as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,395 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI PSW Cfg exported successfully +[13:25:00] 2025-08-23 13:25:00,408 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI PSW Cfg exported successfully +[13:25:00] + Also exported FC HMI PSW Cfg in XML for comparison +[13:25:00] Processing block: FC HMI Recipe Air... +[13:25:00] Exporting FC HMI Recipe Air as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,440 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Recipe Air exported successfully +[13:25:00] 2025-08-23 13:25:00,441 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Recipe Air exported successfully +[13:25:00] ✓ Successfully exported FC HMI Recipe Air in SIMATIC SD +[13:25:00] Exporting FC HMI Recipe Air as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,475 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Recipe Air exported successfully +[13:25:00] 2025-08-23 13:25:00,475 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Recipe Air exported successfully +[13:25:00] + Also exported FC HMI Recipe Air in XML for comparison +[13:25:00] Processing block: FC HMI Recipe TTop... +[13:25:00] Exporting FC HMI Recipe TTop as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,502 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Recipe TTop exported successfully +[13:25:00] 2025-08-23 13:25:00,503 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Recipe TTop exported successfully +[13:25:00] ✓ Successfully exported FC HMI Recipe TTop in SIMATIC SD +[13:25:00] Exporting FC HMI Recipe TTop as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,528 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Recipe TTop exported successfully +[13:25:00] 2025-08-23 13:25:00,529 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Recipe TTop exported successfully +[13:25:00] + Also exported FC HMI Recipe TTop in XML for comparison +[13:25:00] Processing block: FC HMI Recipe Pack... +[13:25:00] Exporting FC HMI Recipe Pack as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,555 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Recipe Pack exported successfully +[13:25:00] 2025-08-23 13:25:00,555 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Recipe Pack exported successfully +[13:25:00] ✓ Successfully exported FC HMI Recipe Pack in SIMATIC SD +[13:25:00] Exporting FC HMI Recipe Pack as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,575 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Recipe Pack exported successfully +[13:25:00] 2025-08-23 13:25:00,576 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Recipe Pack exported successfully +[13:25:00] + Also exported FC HMI Recipe Pack in XML for comparison +[13:25:00] Processing block: FC S_Everz... +[13:25:00] Exporting FC S_Everz as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,607 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC S_Everz exported successfully +[13:25:00] 2025-08-23 13:25:00,608 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC S_Everz exported successfully +[13:25:00] ✓ Successfully exported FC S_Everz in SIMATIC SD +[13:25:00] Exporting FC S_Everz as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,638 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC S_Everz exported successfully +[13:25:00] 2025-08-23 13:25:00,639 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC S_Everz exported successfully +[13:25:00] + Also exported FC S_Everz in XML for comparison +[13:25:00] Processing block: FC Read DI... +[13:25:00] Exporting FC Read DI as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,680 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read DI exported successfully +[13:25:00] 2025-08-23 13:25:00,681 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read DI exported successfully +[13:25:00] ✓ Successfully exported FC Read DI in SIMATIC SD +[13:25:00] Exporting FC Read DI as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,726 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read DI exported successfully +[13:25:00] 2025-08-23 13:25:00,727 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read DI exported successfully +[13:25:00] + Also exported FC Read DI in XML for comparison +[13:25:00] Processing block: FC Read M... +[13:25:00] Exporting FC Read M as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,757 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read M exported successfully +[13:25:00] 2025-08-23 13:25:00,757 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read M exported successfully +[13:25:00] ✓ Successfully exported FC Read M in SIMATIC SD +[13:25:00] Exporting FC Read M as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,783 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read M exported successfully +[13:25:00] 2025-08-23 13:25:00,784 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read M exported successfully +[13:25:00] + Also exported FC Read M in XML for comparison +[13:25:00] Processing block: FC Write DO... +[13:25:00] Exporting FC Write DO as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,815 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Write DO exported successfully +[13:25:00] 2025-08-23 13:25:00,816 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Write DO exported successfully +[13:25:00] ✓ Successfully exported FC Write DO in SIMATIC SD +[13:25:00] Exporting FC Write DO as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,844 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Write DO exported successfully +[13:25:00] 2025-08-23 13:25:00,845 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Write DO exported successfully +[13:25:00] + Also exported FC Write DO in XML for comparison +[13:25:00] Processing block: FC Read DO... +[13:25:00] Exporting FC Read DO as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,892 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read DO exported successfully +[13:25:00] 2025-08-23 13:25:00,893 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read DO exported successfully +[13:25:00] ✓ Successfully exported FC Read DO in SIMATIC SD +[13:25:00] Exporting FC Read DO as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,922 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read DO exported successfully +[13:25:00] 2025-08-23 13:25:00,922 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read DO exported successfully +[13:25:00] + Also exported FC Read DO in XML for comparison +[13:25:00] Processing block: FC Read EOLO mBar... +[13:25:00] Exporting FC Read EOLO mBar as SIMATIC SD... +[13:25:00] 2025-08-23 13:25:00,945 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read EOLO mBar exported successfully +[13:25:00] 2025-08-23 13:25:00,946 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read EOLO mBar exported successfully +[13:25:00] ✓ Successfully exported FC Read EOLO mBar in SIMATIC SD +[13:25:00] Exporting FC Read EOLO mBar as XML for comparison... +[13:25:00] 2025-08-23 13:25:00,963 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Read EOLO mBar exported successfully +[13:25:00] 2025-08-23 13:25:00,965 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Read EOLO mBar exported successfully +[13:25:00] + Also exported FC Read EOLO mBar in XML for comparison +[13:25:00] Processing block: COPY DBW... +[13:25:00] Exporting COPY DBW as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,053 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: COPY DBW exported successfully +[13:25:01] 2025-08-23 13:25:01,064 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - COPY DBW exported successfully +[13:25:01] ✓ Successfully exported COPY DBW in SIMATIC SD +[13:25:01] Exporting COPY DBW as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,125 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: COPY DBW exported successfully +[13:25:01] 2025-08-23 13:25:01,125 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - COPY DBW exported successfully +[13:25:01] + Also exported COPY DBW in XML for comparison +[13:25:01] Processing block: Fill Zero Area... +[13:25:01] Exporting Fill Zero Area as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,184 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Fill Zero Area exported successfully +[13:25:01] 2025-08-23 13:25:01,185 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Fill Zero Area exported successfully +[13:25:01] ✓ Successfully exported Fill Zero Area in SIMATIC SD +[13:25:01] Exporting Fill Zero Area as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,205 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: Fill Zero Area exported successfully +[13:25:01] 2025-08-23 13:25:01,206 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - Fill Zero Area exported successfully +[13:25:01] + Also exported Fill Zero Area in XML for comparison +[13:25:01] Processing block: FC Scaling... +[13:25:01] Exporting FC Scaling as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,227 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Scaling exported successfully +[13:25:01] 2025-08-23 13:25:01,228 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Scaling exported successfully +[13:25:01] ✓ Successfully exported FC Scaling in SIMATIC SD +[13:25:01] Exporting FC Scaling as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,244 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Scaling exported successfully +[13:25:01] 2025-08-23 13:25:01,244 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Scaling exported successfully +[13:25:01] + Also exported FC Scaling in XML for comparison +[13:25:01] Processing block: FC Reference management... +[13:25:01] Exporting FC Reference management as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,309 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Reference management exported successfully +[13:25:01] 2025-08-23 13:25:01,310 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Reference management exported successfully +[13:25:01] ✓ Successfully exported FC Reference management in SIMATIC SD +[13:25:01] Exporting FC Reference management as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,350 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Reference management exported successfully +[13:25:01] 2025-08-23 13:25:01,351 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Reference management exported successfully +[13:25:01] + Also exported FC Reference management in XML for comparison +[13:25:01] Processing block: FC Air Obstructions... +[13:25:01] Exporting FC Air Obstructions as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,405 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Obstructions exported successfully +[13:25:01] 2025-08-23 13:25:01,407 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Obstructions exported successfully +[13:25:01] ✓ Successfully exported FC Air Obstructions in SIMATIC SD +[13:25:01] Exporting FC Air Obstructions as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,440 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Obstructions exported successfully +[13:25:01] 2025-08-23 13:25:01,440 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Obstructions exported successfully +[13:25:01] + Also exported FC Air Obstructions in XML for comparison +[13:25:01] Processing block: FC Turk Lamp... +[13:25:01] Exporting FC Turk Lamp as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,474 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Turk Lamp exported successfully +[13:25:01] 2025-08-23 13:25:01,475 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Turk Lamp exported successfully +[13:25:01] ✓ Successfully exported FC Turk Lamp in SIMATIC SD +[13:25:01] Exporting FC Turk Lamp as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,500 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Turk Lamp exported successfully +[13:25:01] 2025-08-23 13:25:01,501 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Turk Lamp exported successfully +[13:25:01] + Also exported FC Turk Lamp in XML for comparison +[13:25:01] Processing block: FC Mot Init CFG... +[13:25:01] Exporting FC Mot Init CFG as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,579 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Init CFG exported successfully +[13:25:01] 2025-08-23 13:25:01,580 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Init CFG exported successfully +[13:25:01] ✓ Successfully exported FC Mot Init CFG in SIMATIC SD +[13:25:01] Exporting FC Mot Init CFG as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,608 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Init CFG exported successfully +[13:25:01] 2025-08-23 13:25:01,609 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Init CFG exported successfully +[13:25:01] + Also exported FC Mot Init CFG in XML for comparison +[13:25:01] Processing block: FC Motor Protocols... +[13:25:01] Exporting FC Motor Protocols as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,649 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Motor Protocols exported successfully +[13:25:01] 2025-08-23 13:25:01,650 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Motor Protocols exported successfully +[13:25:01] ✓ Successfully exported FC Motor Protocols in SIMATIC SD +[13:25:01] Exporting FC Motor Protocols as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,676 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Motor Protocols exported successfully +[13:25:01] 2025-08-23 13:25:01,677 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Motor Protocols exported successfully +[13:25:01] + Also exported FC Motor Protocols in XML for comparison +[13:25:01] Processing block: FC Mot Manage... +[13:25:01] Exporting FC Mot Manage as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,728 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage exported successfully +[13:25:01] 2025-08-23 13:25:01,728 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage exported successfully +[13:25:01] ✓ Successfully exported FC Mot Manage in SIMATIC SD +[13:25:01] Exporting FC Mot Manage as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,758 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage exported successfully +[13:25:01] 2025-08-23 13:25:01,758 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage exported successfully +[13:25:01] + Also exported FC Mot Manage in XML for comparison +[13:25:01] Processing block: FC Mot Manage EOLO mBar... +[13:25:01] Exporting FC Mot Manage EOLO mBar as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,807 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage EOLO mBar exported successfully +[13:25:01] 2025-08-23 13:25:01,808 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage EOLO mBar exported successfully +[13:25:01] ✓ Successfully exported FC Mot Manage EOLO mBar in SIMATIC SD +[13:25:01] Exporting FC Mot Manage EOLO mBar as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,858 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage EOLO mBar exported successfully +[13:25:01] 2025-08-23 13:25:01,858 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage EOLO mBar exported successfully +[13:25:01] + Also exported FC Mot Manage EOLO mBar in XML for comparison +[13:25:01] Processing block: FC Mot Manage VFD FC300... +[13:25:01] Exporting FC Mot Manage VFD FC300 as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,907 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage VFD FC300 exported successfully +[13:25:01] 2025-08-23 13:25:01,908 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage VFD FC300 exported successfully +[13:25:01] ✓ Successfully exported FC Mot Manage VFD FC300 in SIMATIC SD +[13:25:01] Exporting FC Mot Manage VFD FC300 as XML for comparison... +[13:25:01] 2025-08-23 13:25:01,934 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage VFD FC300 exported successfully +[13:25:01] 2025-08-23 13:25:01,935 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage VFD FC300 exported successfully +[13:25:01] + Also exported FC Mot Manage VFD FC300 in XML for comparison +[13:25:01] Processing block: FC Mot Manage VFD Analog... +[13:25:01] Exporting FC Mot Manage VFD Analog as SIMATIC SD... +[13:25:01] 2025-08-23 13:25:01,964 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage VFD Analog exported successfully +[13:25:01] 2025-08-23 13:25:01,965 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage VFD Analog exported successfully +[13:25:01] ✓ Successfully exported FC Mot Manage VFD Analog in SIMATIC SD +[13:25:01] Exporting FC Mot Manage VFD Analog as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,073 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage VFD Analog exported successfully +[13:25:02] 2025-08-23 13:25:02,074 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage VFD Analog exported successfully +[13:25:02] + Also exported FC Mot Manage VFD Analog in XML for comparison +[13:25:02] Processing block: FC Mot Manage VFD/Dig... +[13:25:02] Exporting FC Mot Manage VFD/Dig as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,110 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage VFD/Dig exported successfully +[13:25:02] 2025-08-23 13:25:02,112 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage VFD/Dig exported successfully +[13:25:02] ✓ Successfully exported FC Mot Manage VFD/Dig in SIMATIC SD +[13:25:02] Exporting FC Mot Manage VFD/Dig as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,159 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage VFD/Dig exported successfully +[13:25:02] 2025-08-23 13:25:02,160 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage VFD/Dig exported successfully +[13:25:02] + Also exported FC Mot Manage VFD/Dig in XML for comparison +[13:25:02] Processing block: FC Mot Manage Movimot... +[13:25:02] Exporting FC Mot Manage Movimot as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,222 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage Movimot exported successfully +[13:25:02] 2025-08-23 13:25:02,223 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage Movimot exported successfully +[13:25:02] ✓ Successfully exported FC Mot Manage Movimot in SIMATIC SD +[13:25:02] Exporting FC Mot Manage Movimot as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,282 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage Movimot exported successfully +[13:25:02] 2025-08-23 13:25:02,283 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage Movimot exported successfully +[13:25:02] + Also exported FC Mot Manage Movimot in XML for comparison +[13:25:02] Processing block: FC Mot Manage Movigear... +[13:25:02] Exporting FC Mot Manage Movigear as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,323 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage Movigear exported successfully +[13:25:02] 2025-08-23 13:25:02,324 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage Movigear exported successfully +[13:25:02] ✓ Successfully exported FC Mot Manage Movigear in SIMATIC SD +[13:25:02] Exporting FC Mot Manage Movigear as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,358 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Mot Manage Movigear exported successfully +[13:25:02] 2025-08-23 13:25:02,359 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Mot Manage Movigear exported successfully +[13:25:02] + Also exported FC Mot Manage Movigear in XML for comparison +[13:25:02] Processing block: FC_Movifit Status... +[13:25:02] Exporting FC_Movifit Status as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,390 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC_Movifit Status exported successfully +[13:25:02] 2025-08-23 13:25:02,391 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC_Movifit Status exported successfully +[13:25:02] ✓ Successfully exported FC_Movifit Status in SIMATIC SD +[13:25:02] Exporting FC_Movifit Status as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,414 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC_Movifit Status exported successfully +[13:25:02] 2025-08-23 13:25:02,416 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC_Movifit Status exported successfully +[13:25:02] + Also exported FC_Movifit Status in XML for comparison +[13:25:02] Processing block: FC_Siemens G120C... +[13:25:02] Exporting FC_Siemens G120C as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,455 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC_Siemens G120C exported successfully +[13:25:02] 2025-08-23 13:25:02,455 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC_Siemens G120C exported successfully +[13:25:02] ✓ Successfully exported FC_Siemens G120C in SIMATIC SD +[13:25:02] Exporting FC_Siemens G120C as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,489 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC_Siemens G120C exported successfully +[13:25:02] 2025-08-23 13:25:02,490 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC_Siemens G120C exported successfully +[13:25:02] + Also exported FC_Siemens G120C in XML for comparison +[13:25:02] Processing block: FC Compute AN Speed... +[13:25:02] Exporting FC Compute AN Speed as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,524 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Compute AN Speed exported successfully +[13:25:02] 2025-08-23 13:25:02,525 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Compute AN Speed exported successfully +[13:25:02] ✓ Successfully exported FC Compute AN Speed in SIMATIC SD +[13:25:02] Exporting FC Compute AN Speed as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,549 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Compute AN Speed exported successfully +[13:25:02] 2025-08-23 13:25:02,550 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Compute AN Speed exported successfully +[13:25:02] + Also exported FC Compute AN Speed in XML for comparison +[13:25:02] Processing block: FC Air Philosophy Manage... +[13:25:02] Exporting FC Air Philosophy Manage as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,581 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy Manage exported successfully +[13:25:02] 2025-08-23 13:25:02,582 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy Manage exported successfully +[13:25:02] ✓ Successfully exported FC Air Philosophy Manage in SIMATIC SD +[13:25:02] Exporting FC Air Philosophy Manage as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,600 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy Manage exported successfully +[13:25:02] 2025-08-23 13:25:02,601 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy Manage exported successfully +[13:25:02] + Also exported FC Air Philosophy Manage in XML for comparison +[13:25:02] Processing block: FC Air Philosophy 01... +[13:25:02] Exporting FC Air Philosophy 01 as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,625 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 01 exported successfully +[13:25:02] 2025-08-23 13:25:02,625 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 01 exported successfully +[13:25:02] ✓ Successfully exported FC Air Philosophy 01 in SIMATIC SD +[13:25:02] Exporting FC Air Philosophy 01 as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,647 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 01 exported successfully +[13:25:02] 2025-08-23 13:25:02,648 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 01 exported successfully +[13:25:02] + Also exported FC Air Philosophy 01 in XML for comparison +[13:25:02] Processing block: FC Air Philosophy 04... +[13:25:02] Exporting FC Air Philosophy 04 as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,688 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 04 exported successfully +[13:25:02] 2025-08-23 13:25:02,688 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 04 exported successfully +[13:25:02] ✓ Successfully exported FC Air Philosophy 04 in SIMATIC SD +[13:25:02] Exporting FC Air Philosophy 04 as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,728 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 04 exported successfully +[13:25:02] 2025-08-23 13:25:02,729 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 04 exported successfully +[13:25:02] + Also exported FC Air Philosophy 04 in XML for comparison +[13:25:02] Processing block: FC Air Philosophy 08... +[13:25:02] Exporting FC Air Philosophy 08 as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,761 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 08 exported successfully +[13:25:02] 2025-08-23 13:25:02,762 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 08 exported successfully +[13:25:02] ✓ Successfully exported FC Air Philosophy 08 in SIMATIC SD +[13:25:02] Exporting FC Air Philosophy 08 as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,796 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 08 exported successfully +[13:25:02] 2025-08-23 13:25:02,797 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 08 exported successfully +[13:25:02] + Also exported FC Air Philosophy 08 in XML for comparison +[13:25:02] Processing block: FC Air Philosophy 14... +[13:25:02] Exporting FC Air Philosophy 14 as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,829 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 14 exported successfully +[13:25:02] 2025-08-23 13:25:02,830 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 14 exported successfully +[13:25:02] ✓ Successfully exported FC Air Philosophy 14 in SIMATIC SD +[13:25:02] Exporting FC Air Philosophy 14 as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,863 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 14 exported successfully +[13:25:02] 2025-08-23 13:25:02,863 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 14 exported successfully +[13:25:02] + Also exported FC Air Philosophy 14 in XML for comparison +[13:25:02] Processing block: FC Air Philosophy 17... +[13:25:02] Exporting FC Air Philosophy 17 as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,916 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 17 exported successfully +[13:25:02] 2025-08-23 13:25:02,917 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 17 exported successfully +[13:25:02] ✓ Successfully exported FC Air Philosophy 17 in SIMATIC SD +[13:25:02] Exporting FC Air Philosophy 17 as XML for comparison... +[13:25:02] 2025-08-23 13:25:02,944 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 17 exported successfully +[13:25:02] 2025-08-23 13:25:02,945 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 17 exported successfully +[13:25:02] + Also exported FC Air Philosophy 17 in XML for comparison +[13:25:02] Processing block: FC Air Philosophy 18... +[13:25:02] Exporting FC Air Philosophy 18 as SIMATIC SD... +[13:25:02] 2025-08-23 13:25:02,974 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 18 exported successfully +[13:25:02] 2025-08-23 13:25:02,975 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 18 exported successfully +[13:25:02] ✓ Successfully exported FC Air Philosophy 18 in SIMATIC SD +[13:25:02] Exporting FC Air Philosophy 18 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,007 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Philosophy 18 exported successfully +[13:25:03] 2025-08-23 13:25:03,008 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Philosophy 18 exported successfully +[13:25:03] + Also exported FC Air Philosophy 18 in XML for comparison +[13:25:03] Processing block: FC TT Philosophy Manage... +[13:25:03] Exporting FC TT Philosophy Manage as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,043 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Philosophy Manage exported successfully +[13:25:03] 2025-08-23 13:25:03,044 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Philosophy Manage exported successfully +[13:25:03] ✓ Successfully exported FC TT Philosophy Manage in SIMATIC SD +[13:25:03] Exporting FC TT Philosophy Manage as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,068 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Philosophy Manage exported successfully +[13:25:03] 2025-08-23 13:25:03,069 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Philosophy Manage exported successfully +[13:25:03] + Also exported FC TT Philosophy Manage in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 01... +[13:25:03] Exporting FC TTOP Philosophy 01 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,100 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 01 exported successfully +[13:25:03] 2025-08-23 13:25:03,101 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 01 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 01 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 01 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,127 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 01 exported successfully +[13:25:03] 2025-08-23 13:25:03,128 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 01 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 01 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 02... +[13:25:03] Exporting FC TTOP Philosophy 02 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,161 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 02 exported successfully +[13:25:03] 2025-08-23 13:25:03,163 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 02 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 02 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 02 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,196 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 02 exported successfully +[13:25:03] 2025-08-23 13:25:03,196 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 02 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 02 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 03... +[13:25:03] Exporting FC TTOP Philosophy 03 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,231 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 03 exported successfully +[13:25:03] 2025-08-23 13:25:03,232 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 03 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 03 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 03 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,267 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 03 exported successfully +[13:25:03] 2025-08-23 13:25:03,268 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 03 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 03 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 04... +[13:25:03] Exporting FC TTOP Philosophy 04 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,301 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 04 exported successfully +[13:25:03] 2025-08-23 13:25:03,302 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 04 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 04 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 04 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,330 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 04 exported successfully +[13:25:03] 2025-08-23 13:25:03,331 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 04 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 04 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 05... +[13:25:03] Exporting FC TTOP Philosophy 05 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,362 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 05 exported successfully +[13:25:03] 2025-08-23 13:25:03,363 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 05 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 05 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 05 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,385 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 05 exported successfully +[13:25:03] 2025-08-23 13:25:03,385 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 05 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 05 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 06... +[13:25:03] Exporting FC TTOP Philosophy 06 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,418 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 06 exported successfully +[13:25:03] 2025-08-23 13:25:03,418 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 06 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 06 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 06 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,440 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 06 exported successfully +[13:25:03] 2025-08-23 13:25:03,441 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 06 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 06 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 07... +[13:25:03] Exporting FC TTOP Philosophy 07 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,470 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 07 exported successfully +[13:25:03] 2025-08-23 13:25:03,470 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 07 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 07 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 07 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,493 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 07 exported successfully +[13:25:03] 2025-08-23 13:25:03,494 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 07 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 07 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 08... +[13:25:03] Exporting FC TTOP Philosophy 08 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,522 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 08 exported successfully +[13:25:03] 2025-08-23 13:25:03,523 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 08 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 08 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 08 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,546 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 08 exported successfully +[13:25:03] 2025-08-23 13:25:03,546 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 08 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 08 in XML for comparison +[13:25:03] Processing block: FC TTOP Philosophy 09... +[13:25:03] Exporting FC TTOP Philosophy 09 as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,574 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 09 exported successfully +[13:25:03] 2025-08-23 13:25:03,575 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 09 exported successfully +[13:25:03] ✓ Successfully exported FC TTOP Philosophy 09 in SIMATIC SD +[13:25:03] Exporting FC TTOP Philosophy 09 as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,606 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP Philosophy 09 exported successfully +[13:25:03] 2025-08-23 13:25:03,607 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP Philosophy 09 exported successfully +[13:25:03] + Also exported FC TTOP Philosophy 09 in XML for comparison +[13:25:03] Processing block: FC CTR Alarm... +[13:25:03] Exporting FC CTR Alarm as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,633 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC CTR Alarm exported successfully +[13:25:03] 2025-08-23 13:25:03,634 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC CTR Alarm exported successfully +[13:25:03] ✓ Successfully exported FC CTR Alarm in SIMATIC SD +[13:25:03] Exporting FC CTR Alarm as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,655 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC CTR Alarm exported successfully +[13:25:03] 2025-08-23 13:25:03,656 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC CTR Alarm exported successfully +[13:25:03] + Also exported FC CTR Alarm in XML for comparison +[13:25:03] Processing block: FC Var To Dint... +[13:25:03] Exporting FC Var To Dint as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,690 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Var To Dint exported successfully +[13:25:03] 2025-08-23 13:25:03,690 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Var To Dint exported successfully +[13:25:03] ✓ Successfully exported FC Var To Dint in SIMATIC SD +[13:25:03] Exporting FC Var To Dint as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,711 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Var To Dint exported successfully +[13:25:03] 2025-08-23 13:25:03,711 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Var To Dint exported successfully +[13:25:03] + Also exported FC Var To Dint in XML for comparison +[13:25:03] Processing block: FC HMI ChangeOver... +[13:25:03] Exporting FC HMI ChangeOver as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,755 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI ChangeOver exported successfully +[13:25:03] 2025-08-23 13:25:03,756 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI ChangeOver exported successfully +[13:25:03] ✓ Successfully exported FC HMI ChangeOver in SIMATIC SD +[13:25:03] Exporting FC HMI ChangeOver as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,786 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI ChangeOver exported successfully +[13:25:03] 2025-08-23 13:25:03,787 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI ChangeOver exported successfully +[13:25:03] + Also exported FC HMI ChangeOver in XML for comparison +[13:25:03] Processing block: FC HMI Date Time... +[13:25:03] Exporting FC HMI Date Time as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,830 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Date Time exported successfully +[13:25:03] 2025-08-23 13:25:03,831 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Date Time exported successfully +[13:25:03] ✓ Successfully exported FC HMI Date Time in SIMATIC SD +[13:25:03] Exporting FC HMI Date Time as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,861 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC HMI Date Time exported successfully +[13:25:03] 2025-08-23 13:25:03,862 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC HMI Date Time exported successfully +[13:25:03] + Also exported FC HMI Date Time in XML for comparison +[13:25:03] Processing block: IxR=I... +[13:25:03] Exporting IxR=I as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,889 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: IxR=I exported successfully +[13:25:03] 2025-08-23 13:25:03,890 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - IxR=I exported successfully +[13:25:03] ✓ Successfully exported IxR=I in SIMATIC SD +[13:25:03] Exporting IxR=I as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,908 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: IxR=I exported successfully +[13:25:03] 2025-08-23 13:25:03,909 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - IxR=I exported successfully +[13:25:03] + Also exported IxR=I in XML for comparison +[13:25:03] Processing block: FC Pht Crash Control... +[13:25:03] Exporting FC Pht Crash Control as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,934 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pht Crash Control exported successfully +[13:25:03] 2025-08-23 13:25:03,935 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pht Crash Control exported successfully +[13:25:03] ✓ Successfully exported FC Pht Crash Control in SIMATIC SD +[13:25:03] Exporting FC Pht Crash Control as XML for comparison... +[13:25:03] 2025-08-23 13:25:03,955 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pht Crash Control exported successfully +[13:25:03] 2025-08-23 13:25:03,956 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pht Crash Control exported successfully +[13:25:03] + Also exported FC Pht Crash Control in XML for comparison +[13:25:03] Processing block: RINT_DB... +[13:25:03] Exporting RINT_DB as SIMATIC SD... +[13:25:03] 2025-08-23 13:25:03,979 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: RINT_DB exported successfully +[13:25:03] 2025-08-23 13:25:03,980 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - RINT_DB exported successfully +[13:25:03] ✓ Successfully exported RINT_DB in SIMATIC SD +[13:25:03] Exporting RINT_DB as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,010 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: RINT_DB exported successfully +[13:25:04] 2025-08-23 13:25:04,010 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - RINT_DB exported successfully +[13:25:04] + Also exported RINT_DB in XML for comparison +[13:25:04] Processing block: FC TTOP AUTEFA 2 PH... +[13:25:04] Exporting FC TTOP AUTEFA 2 PH as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,252 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP AUTEFA 2 PH exported successfully +[13:25:04] 2025-08-23 13:25:04,254 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP AUTEFA 2 PH exported successfully +[13:25:04] ✓ Successfully exported FC TTOP AUTEFA 2 PH in SIMATIC SD +[13:25:04] Exporting FC TTOP AUTEFA 2 PH as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,292 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TTOP AUTEFA 2 PH exported successfully +[13:25:04] 2025-08-23 13:25:04,293 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TTOP AUTEFA 2 PH exported successfully +[13:25:04] + Also exported FC TTOP AUTEFA 2 PH in XML for comparison +[13:25:04] Processing block: FB Motors Manage... +[13:25:04] Exporting FB Motors Manage as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,410 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Motors Manage exported successfully +[13:25:04] 2025-08-23 13:25:04,411 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Motors Manage exported successfully +[13:25:04] ✓ Successfully exported FB Motors Manage in SIMATIC SD +[13:25:04] Exporting FB Motors Manage as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,555 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Motors Manage exported successfully +[13:25:04] 2025-08-23 13:25:04,556 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Motors Manage exported successfully +[13:25:04] + Also exported FB Motors Manage in XML for comparison +[13:25:04] Processing block: DB HMI... +[13:25:04] Exporting DB HMI as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,632 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI exported successfully +[13:25:04] 2025-08-23 13:25:04,633 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI exported successfully +[13:25:04] ✓ Successfully exported DB HMI in SIMATIC SD +[13:25:04] Exporting DB HMI as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,676 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI exported successfully +[13:25:04] 2025-08-23 13:25:04,677 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI exported successfully +[13:25:04] + Also exported DB HMI in XML for comparison +[13:25:04] Processing block: DB HMI Timer... +[13:25:04] Exporting DB HMI Timer as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,705 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Timer exported successfully +[13:25:04] 2025-08-23 13:25:04,705 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Timer exported successfully +[13:25:04] ✓ Successfully exported DB HMI Timer in SIMATIC SD +[13:25:04] Exporting DB HMI Timer as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,735 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Timer exported successfully +[13:25:04] 2025-08-23 13:25:04,735 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Timer exported successfully +[13:25:04] + Also exported DB HMI Timer in XML for comparison +[13:25:04] Processing block: DB HMI DateTime... +[13:25:04] Exporting DB HMI DateTime as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,759 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI DateTime exported successfully +[13:25:04] 2025-08-23 13:25:04,760 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI DateTime exported successfully +[13:25:04] ✓ Successfully exported DB HMI DateTime in SIMATIC SD +[13:25:04] Exporting DB HMI DateTime as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,778 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI DateTime exported successfully +[13:25:04] 2025-08-23 13:25:04,779 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI DateTime exported successfully +[13:25:04] + Also exported DB HMI DateTime in XML for comparison +[13:25:04] Processing block: DB HMI CFG... +[13:25:04] Exporting DB HMI CFG as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,804 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI CFG exported successfully +[13:25:04] 2025-08-23 13:25:04,805 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI CFG exported successfully +[13:25:04] ✓ Successfully exported DB HMI CFG in SIMATIC SD +[13:25:04] Exporting DB HMI CFG as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,846 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI CFG exported successfully +[13:25:04] 2025-08-23 13:25:04,847 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI CFG exported successfully +[13:25:04] + Also exported DB HMI CFG in XML for comparison +[13:25:04] Processing block: DB HMI Recipe Air... +[13:25:04] Exporting DB HMI Recipe Air as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,875 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Recipe Air exported successfully +[13:25:04] 2025-08-23 13:25:04,876 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Recipe Air exported successfully +[13:25:04] ✓ Successfully exported DB HMI Recipe Air in SIMATIC SD +[13:25:04] Exporting DB HMI Recipe Air as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,902 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Recipe Air exported successfully +[13:25:04] 2025-08-23 13:25:04,903 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Recipe Air exported successfully +[13:25:04] + Also exported DB HMI Recipe Air in XML for comparison +[13:25:04] Processing block: DB HMI Recipe Bottle... +[13:25:04] Exporting DB HMI Recipe Bottle as SIMATIC SD... +[13:25:04] 2025-08-23 13:25:04,938 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Recipe Bottle exported successfully +[13:25:04] 2025-08-23 13:25:04,939 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Recipe Bottle exported successfully +[13:25:04] ✓ Successfully exported DB HMI Recipe Bottle in SIMATIC SD +[13:25:04] Exporting DB HMI Recipe Bottle as XML for comparison... +[13:25:04] 2025-08-23 13:25:04,975 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Recipe Bottle exported successfully +[13:25:04] 2025-08-23 13:25:04,976 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Recipe Bottle exported successfully +[13:25:04] + Also exported DB HMI Recipe Bottle in XML for comparison +[13:25:04] Processing block: DB HMI Recipe Pack... +[13:25:04] Exporting DB HMI Recipe Pack as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,032 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Recipe Pack exported successfully +[13:25:05] 2025-08-23 13:25:05,033 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Recipe Pack exported successfully +[13:25:05] ✓ Successfully exported DB HMI Recipe Pack in SIMATIC SD +[13:25:05] Exporting DB HMI Recipe Pack as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,059 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Recipe Pack exported successfully +[13:25:05] 2025-08-23 13:25:05,060 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Recipe Pack exported successfully +[13:25:05] + Also exported DB HMI Recipe Pack in XML for comparison +[13:25:05] Processing block: DB PN/DP Diag List... +[13:25:05] Exporting DB PN/DP Diag List as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,097 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB PN/DP Diag List exported successfully +[13:25:05] 2025-08-23 13:25:05,098 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB PN/DP Diag List exported successfully +[13:25:05] ✓ Successfully exported DB PN/DP Diag List in SIMATIC SD +[13:25:05] Exporting DB PN/DP Diag List as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,129 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB PN/DP Diag List exported successfully +[13:25:05] 2025-08-23 13:25:05,130 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB PN/DP Diag List exported successfully +[13:25:05] + Also exported DB PN/DP Diag List in XML for comparison +[13:25:05] Processing block: DB General Run... +[13:25:05] Exporting DB General Run as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,159 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General Run exported successfully +[13:25:05] 2025-08-23 13:25:05,160 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General Run exported successfully +[13:25:05] ✓ Successfully exported DB General Run in SIMATIC SD +[13:25:05] Exporting DB General Run as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,183 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General Run exported successfully +[13:25:05] 2025-08-23 13:25:05,184 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General Run exported successfully +[13:25:05] + Also exported DB General Run in XML for comparison +[13:25:05] Processing block: DB General CTR Alarms... +[13:25:05] Exporting DB General CTR Alarms as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,210 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General CTR Alarms exported successfully +[13:25:05] 2025-08-23 13:25:05,210 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General CTR Alarms exported successfully +[13:25:05] ✓ Successfully exported DB General CTR Alarms in SIMATIC SD +[13:25:05] Exporting DB General CTR Alarms as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,234 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General CTR Alarms exported successfully +[13:25:05] 2025-08-23 13:25:05,235 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General CTR Alarms exported successfully +[13:25:05] + Also exported DB General CTR Alarms in XML for comparison +[13:25:05] Processing block: DB CTR Warnings... +[13:25:05] Exporting DB CTR Warnings as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,259 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB CTR Warnings exported successfully +[13:25:05] 2025-08-23 13:25:05,260 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB CTR Warnings exported successfully +[13:25:05] ✓ Successfully exported DB CTR Warnings in SIMATIC SD +[13:25:05] Exporting DB CTR Warnings as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,291 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB CTR Warnings exported successfully +[13:25:05] 2025-08-23 13:25:05,292 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB CTR Warnings exported successfully +[13:25:05] + Also exported DB CTR Warnings in XML for comparison +[13:25:05] Processing block: DB Air Motor CFG... +[13:25:05] Exporting DB Air Motor CFG as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,317 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Motor CFG exported successfully +[13:25:05] 2025-08-23 13:25:05,318 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Motor CFG exported successfully +[13:25:05] ✓ Successfully exported DB Air Motor CFG in SIMATIC SD +[13:25:05] Exporting DB Air Motor CFG as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,339 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Motor CFG exported successfully +[13:25:05] 2025-08-23 13:25:05,339 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Motor CFG exported successfully +[13:25:05] + Also exported DB Air Motor CFG in XML for comparison +[13:25:05] Processing block: DB Air Run... +[13:25:05] Exporting DB Air Run as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,368 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Run exported successfully +[13:25:05] 2025-08-23 13:25:05,368 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Run exported successfully +[13:25:05] ✓ Successfully exported DB Air Run in SIMATIC SD +[13:25:05] Exporting DB Air Run as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,390 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Run exported successfully +[13:25:05] 2025-08-23 13:25:05,391 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Run exported successfully +[13:25:05] + Also exported DB Air Run in XML for comparison +[13:25:05] Processing block: DB Air CTR Alarms... +[13:25:05] Exporting DB Air CTR Alarms as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,411 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air CTR Alarms exported successfully +[13:25:05] 2025-08-23 13:25:05,412 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air CTR Alarms exported successfully +[13:25:05] ✓ Successfully exported DB Air CTR Alarms in SIMATIC SD +[13:25:05] Exporting DB Air CTR Alarms as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,441 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air CTR Alarms exported successfully +[13:25:05] 2025-08-23 13:25:05,442 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air CTR Alarms exported successfully +[13:25:05] + Also exported DB Air CTR Alarms in XML for comparison +[13:25:05] Processing block: DB TT Motor CFG... +[13:25:05] Exporting DB TT Motor CFG as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,465 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor CFG exported successfully +[13:25:05] 2025-08-23 13:25:05,466 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor CFG exported successfully +[13:25:05] ✓ Successfully exported DB TT Motor CFG in SIMATIC SD +[13:25:05] Exporting DB TT Motor CFG as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,488 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor CFG exported successfully +[13:25:05] 2025-08-23 13:25:05,490 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor CFG exported successfully +[13:25:05] + Also exported DB TT Motor CFG in XML for comparison +[13:25:05] Processing block: DB TT Run... +[13:25:05] Exporting DB TT Run as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,537 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Run exported successfully +[13:25:05] 2025-08-23 13:25:05,538 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Run exported successfully +[13:25:05] ✓ Successfully exported DB TT Run in SIMATIC SD +[13:25:05] Exporting DB TT Run as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,557 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Run exported successfully +[13:25:05] 2025-08-23 13:25:05,558 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Run exported successfully +[13:25:05] + Also exported DB TT Run in XML for comparison +[13:25:05] Processing block: DB TT CTR Alarm... +[13:25:05] Exporting DB TT CTR Alarm as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,579 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT CTR Alarm exported successfully +[13:25:05] 2025-08-23 13:25:05,579 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT CTR Alarm exported successfully +[13:25:05] ✓ Successfully exported DB TT CTR Alarm in SIMATIC SD +[13:25:05] Exporting DB TT CTR Alarm as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,600 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT CTR Alarm exported successfully +[13:25:05] 2025-08-23 13:25:05,601 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT CTR Alarm exported successfully +[13:25:05] + Also exported DB TT CTR Alarm in XML for comparison +[13:25:05] Processing block: DB Pack Motor CFG... +[13:25:05] Exporting DB Pack Motor CFG as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,624 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Motor CFG exported successfully +[13:25:05] 2025-08-23 13:25:05,625 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Motor CFG exported successfully +[13:25:05] ✓ Successfully exported DB Pack Motor CFG in SIMATIC SD +[13:25:05] Exporting DB Pack Motor CFG as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,643 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Motor CFG exported successfully +[13:25:05] 2025-08-23 13:25:05,644 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Motor CFG exported successfully +[13:25:05] + Also exported DB Pack Motor CFG in XML for comparison +[13:25:05] Processing block: DB Pack Run... +[13:25:05] Exporting DB Pack Run as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,665 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Run exported successfully +[13:25:05] 2025-08-23 13:25:05,666 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Run exported successfully +[13:25:05] ✓ Successfully exported DB Pack Run in SIMATIC SD +[13:25:05] Exporting DB Pack Run as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,686 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Run exported successfully +[13:25:05] 2025-08-23 13:25:05,687 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Run exported successfully +[13:25:05] + Also exported DB Pack Run in XML for comparison +[13:25:05] Processing block: DB Pack CTR Alarm... +[13:25:05] Exporting DB Pack CTR Alarm as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,727 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack CTR Alarm exported successfully +[13:25:05] 2025-08-23 13:25:05,727 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack CTR Alarm exported successfully +[13:25:05] ✓ Successfully exported DB Pack CTR Alarm in SIMATIC SD +[13:25:05] Exporting DB Pack CTR Alarm as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,743 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack CTR Alarm exported successfully +[13:25:05] 2025-08-23 13:25:05,744 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack CTR Alarm exported successfully +[13:25:05] + Also exported DB Pack CTR Alarm in XML for comparison +[13:25:05] Processing block: DB Motors Manage... +[13:25:05] Exporting DB Motors Manage as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,766 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Motors Manage exported successfully +[13:25:05] 2025-08-23 13:25:05,767 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Motors Manage exported successfully +[13:25:05] ✓ Successfully exported DB Motors Manage in SIMATIC SD +[13:25:05] Exporting DB Motors Manage as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,787 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Motors Manage exported successfully +[13:25:05] 2025-08-23 13:25:05,787 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Motors Manage exported successfully +[13:25:05] + Also exported DB Motors Manage in XML for comparison +[13:25:05] Processing block: DB HMI Changeover... +[13:25:05] Exporting DB HMI Changeover as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,813 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Changeover exported successfully +[13:25:05] 2025-08-23 13:25:05,813 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Changeover exported successfully +[13:25:05] ✓ Successfully exported DB HMI Changeover in SIMATIC SD +[13:25:05] Exporting DB HMI Changeover as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,830 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB HMI Changeover exported successfully +[13:25:05] 2025-08-23 13:25:05,831 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB HMI Changeover exported successfully +[13:25:05] + Also exported DB HMI Changeover in XML for comparison +[13:25:05] Processing block: DB Signal DownStream Machine - TL25_Q2... +[13:25:05] Exporting DB Signal DownStream Machine - TL25_Q2 as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,861 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:05] 2025-08-23 13:25:05,862 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:05] ✓ Successfully exported DB Signal DownStream Machine - TL25_Q2 in SIMATIC SD +[13:25:05] Exporting DB Signal DownStream Machine - TL25_Q2 as XML for comparison... +[13:25:05] 2025-08-23 13:25:05,908 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:05] 2025-08-23 13:25:05,910 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:05] + Also exported DB Signal DownStream Machine - TL25_Q2 in XML for comparison +[13:25:05] Processing block: DB Signal UpStream Machine - TL28... +[13:25:05] Exporting DB Signal UpStream Machine - TL28 as SIMATIC SD... +[13:25:05] 2025-08-23 13:25:05,976 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Signal UpStream Machine - TL28 exported successfully +[13:25:05] 2025-08-23 13:25:05,977 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Signal UpStream Machine - TL28 exported successfully +[13:25:05] ✓ Successfully exported DB Signal UpStream Machine - TL28 in SIMATIC SD +[13:25:05] Exporting DB Signal UpStream Machine - TL28 as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,008 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Signal UpStream Machine - TL28 exported successfully +[13:25:06] 2025-08-23 13:25:06,009 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Signal UpStream Machine - TL28 exported successfully +[13:25:06] + Also exported DB Signal UpStream Machine - TL28 in XML for comparison +[13:25:06] Processing block: DB Signal Merger... +[13:25:06] Exporting DB Signal Merger as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,037 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Signal Merger exported successfully +[13:25:06] 2025-08-23 13:25:06,037 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Signal Merger exported successfully +[13:25:06] ✓ Successfully exported DB Signal Merger in SIMATIC SD +[13:25:06] Exporting DB Signal Merger as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,061 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Signal Merger exported successfully +[13:25:06] 2025-08-23 13:25:06,062 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Signal Merger exported successfully +[13:25:06] + Also exported DB Signal Merger in XML for comparison +[13:25:06] Processing block: FC Signal DownStream Machine - TL25_Q2... +[13:25:06] Exporting FC Signal DownStream Machine - TL25_Q2 as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,124 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:06] 2025-08-23 13:25:06,125 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:06] ✓ Successfully exported FC Signal DownStream Machine - TL25_Q2 in SIMATIC SD +[13:25:06] Exporting FC Signal DownStream Machine - TL25_Q2 as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,177 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:06] 2025-08-23 13:25:06,178 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal DownStream Machine - TL25_Q2 exported successfully +[13:25:06] + Also exported FC Signal DownStream Machine - TL25_Q2 in XML for comparison +[13:25:06] Processing block: FC Signal UpStream Machine - TL28... +[13:25:06] Exporting FC Signal UpStream Machine - TL28 as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,234 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal UpStream Machine - TL28 exported successfully +[13:25:06] 2025-08-23 13:25:06,234 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal UpStream Machine - TL28 exported successfully +[13:25:06] ✓ Successfully exported FC Signal UpStream Machine - TL28 in SIMATIC SD +[13:25:06] Exporting FC Signal UpStream Machine - TL28 as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,270 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal UpStream Machine - TL28 exported successfully +[13:25:06] 2025-08-23 13:25:06,271 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal UpStream Machine - TL28 exported successfully +[13:25:06] + Also exported FC Signal UpStream Machine - TL28 in XML for comparison +[13:25:06] Processing block: FC Signal Autefa... +[13:25:06] Exporting FC Signal Autefa as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,298 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal Autefa exported successfully +[13:25:06] 2025-08-23 13:25:06,299 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal Autefa exported successfully +[13:25:06] ✓ Successfully exported FC Signal Autefa in SIMATIC SD +[13:25:06] Exporting FC Signal Autefa as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,316 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal Autefa exported successfully +[13:25:06] 2025-08-23 13:25:06,317 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal Autefa exported successfully +[13:25:06] + Also exported FC Signal Autefa in XML for comparison +[13:25:06] Processing block: FC Signal Merger... +[13:25:06] Exporting FC Signal Merger as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,407 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal Merger exported successfully +[13:25:06] 2025-08-23 13:25:06,408 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal Merger exported successfully +[13:25:06] ✓ Successfully exported FC Signal Merger in SIMATIC SD +[13:25:06] Exporting FC Signal Merger as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,474 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Signal Merger exported successfully +[13:25:06] 2025-08-23 13:25:06,475 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Signal Merger exported successfully +[13:25:06] + Also exported FC Signal Merger in XML for comparison +[13:25:06] Processing block: DB General... +[13:25:06] Exporting DB General as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,516 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General exported successfully +[13:25:06] 2025-08-23 13:25:06,517 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General exported successfully +[13:25:06] ✓ Successfully exported DB General in SIMATIC SD +[13:25:06] Exporting DB General as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,558 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General exported successfully +[13:25:06] 2025-08-23 13:25:06,558 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General exported successfully +[13:25:06] + Also exported DB General in XML for comparison +[13:25:06] Processing block: DB General Alarms... +[13:25:06] Exporting DB General Alarms as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,601 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General Alarms exported successfully +[13:25:06] 2025-08-23 13:25:06,602 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General Alarms exported successfully +[13:25:06] ✓ Successfully exported DB General Alarms in SIMATIC SD +[13:25:06] Exporting DB General Alarms as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,634 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB General Alarms exported successfully +[13:25:06] 2025-08-23 13:25:06,635 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB General Alarms exported successfully +[13:25:06] + Also exported DB General Alarms in XML for comparison +[13:25:06] Processing block: DB Warnings... +[13:25:06] Exporting DB Warnings as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,660 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Warnings exported successfully +[13:25:06] 2025-08-23 13:25:06,661 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Warnings exported successfully +[13:25:06] ✓ Successfully exported DB Warnings in SIMATIC SD +[13:25:06] Exporting DB Warnings as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,685 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Warnings exported successfully +[13:25:06] 2025-08-23 13:25:06,686 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Warnings exported successfully +[13:25:06] + Also exported DB Warnings in XML for comparison +[13:25:06] Processing block: DB_BOTTLE_DATA... +[13:25:06] Exporting DB_BOTTLE_DATA as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,706 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB_BOTTLE_DATA exported successfully +[13:25:06] 2025-08-23 13:25:06,707 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB_BOTTLE_DATA exported successfully +[13:25:06] ✓ Successfully exported DB_BOTTLE_DATA in SIMATIC SD +[13:25:06] Exporting DB_BOTTLE_DATA as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,724 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB_BOTTLE_DATA exported successfully +[13:25:06] 2025-08-23 13:25:06,725 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB_BOTTLE_DATA exported successfully +[13:25:06] + Also exported DB_BOTTLE_DATA in XML for comparison +[13:25:06] Processing block: DB ScanTime_OB1... +[13:25:06] Exporting DB ScanTime_OB1 as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,744 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB ScanTime_OB1 exported successfully +[13:25:06] 2025-08-23 13:25:06,745 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB ScanTime_OB1 exported successfully +[13:25:06] ✓ Successfully exported DB ScanTime_OB1 in SIMATIC SD +[13:25:06] Exporting DB ScanTime_OB1 as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,763 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB ScanTime_OB1 exported successfully +[13:25:06] 2025-08-23 13:25:06,764 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB ScanTime_OB1 exported successfully +[13:25:06] + Also exported DB ScanTime_OB1 in XML for comparison +[13:25:06] Processing block: DB_CRASH_CHECK_DATA... +[13:25:06] Exporting DB_CRASH_CHECK_DATA as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,784 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB_CRASH_CHECK_DATA exported successfully +[13:25:06] 2025-08-23 13:25:06,785 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB_CRASH_CHECK_DATA exported successfully +[13:25:06] ✓ Successfully exported DB_CRASH_CHECK_DATA in SIMATIC SD +[13:25:06] Exporting DB_CRASH_CHECK_DATA as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,802 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB_CRASH_CHECK_DATA exported successfully +[13:25:06] 2025-08-23 13:25:06,803 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB_CRASH_CHECK_DATA exported successfully +[13:25:06] + Also exported DB_CRASH_CHECK_DATA in XML for comparison +[13:25:06] Processing block: FC General Alarms... +[13:25:06] Exporting FC General Alarms as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,852 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC General Alarms exported successfully +[13:25:06] 2025-08-23 13:25:06,853 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC General Alarms exported successfully +[13:25:06] ✓ Successfully exported FC General Alarms in SIMATIC SD +[13:25:06] Exporting FC General Alarms as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,894 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC General Alarms exported successfully +[13:25:06] 2025-08-23 13:25:06,895 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC General Alarms exported successfully +[13:25:06] + Also exported FC General Alarms in XML for comparison +[13:25:06] Processing block: FC General Lamp... +[13:25:06] Exporting FC General Lamp as SIMATIC SD... +[13:25:06] 2025-08-23 13:25:06,937 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC General Lamp exported successfully +[13:25:06] 2025-08-23 13:25:06,938 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC General Lamp exported successfully +[13:25:06] ✓ Successfully exported FC General Lamp in SIMATIC SD +[13:25:06] Exporting FC General Lamp as XML for comparison... +[13:25:06] 2025-08-23 13:25:06,974 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC General Lamp exported successfully +[13:25:06] 2025-08-23 13:25:06,975 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC General Lamp exported successfully +[13:25:06] + Also exported FC General Lamp in XML for comparison +[13:25:06] Processing block: FC Warning... +[13:25:06] Exporting FC Warning as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,007 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Warning exported successfully +[13:25:07] 2025-08-23 13:25:07,008 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Warning exported successfully +[13:25:07] ✓ Successfully exported FC Warning in SIMATIC SD +[13:25:07] Exporting FC Warning as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,042 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Warning exported successfully +[13:25:07] 2025-08-23 13:25:07,044 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Warning exported successfully +[13:25:07] + Also exported FC Warning in XML for comparison +[13:25:07] Processing block: FC PRIORITY SCAN EXECUTION... +[13:25:07] Exporting FC PRIORITY SCAN EXECUTION as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,102 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC PRIORITY SCAN EXECUTION exported successfully +[13:25:07] 2025-08-23 13:25:07,102 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC PRIORITY SCAN EXECUTION exported successfully +[13:25:07] ✓ Successfully exported FC PRIORITY SCAN EXECUTION in SIMATIC SD +[13:25:07] Exporting FC PRIORITY SCAN EXECUTION as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,136 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC PRIORITY SCAN EXECUTION exported successfully +[13:25:07] 2025-08-23 13:25:07,137 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC PRIORITY SCAN EXECUTION exported successfully +[13:25:07] + Also exported FC PRIORITY SCAN EXECUTION in XML for comparison +[13:25:07] Processing block: CYCL_EXC... +[13:25:07] Exporting CYCL_EXC as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,219 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CYCL_EXC exported successfully +[13:25:07] 2025-08-23 13:25:07,221 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CYCL_EXC exported successfully +[13:25:07] ✓ Successfully exported CYCL_EXC in SIMATIC SD +[13:25:07] Exporting CYCL_EXC as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,284 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: CYCL_EXC exported successfully +[13:25:07] 2025-08-23 13:25:07,285 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - CYCL_EXC exported successfully +[13:25:07] + Also exported CYCL_EXC in XML for comparison +[13:25:07] Processing block: FC TT Configuration... +[13:25:07] Exporting FC TT Configuration as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,325 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Configuration exported successfully +[13:25:07] 2025-08-23 13:25:07,326 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Configuration exported successfully +[13:25:07] ✓ Successfully exported FC TT Configuration in SIMATIC SD +[13:25:07] Exporting FC TT Configuration as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,349 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Configuration exported successfully +[13:25:07] 2025-08-23 13:25:07,350 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Configuration exported successfully +[13:25:07] + Also exported FC TT Configuration in XML for comparison +[13:25:07] Processing block: FC TT Run... +[13:25:07] Exporting FC TT Run as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,426 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Run exported successfully +[13:25:07] 2025-08-23 13:25:07,427 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Run exported successfully +[13:25:07] ✓ Successfully exported FC TT Run in SIMATIC SD +[13:25:07] Exporting FC TT Run as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,472 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Run exported successfully +[13:25:07] 2025-08-23 13:25:07,473 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Run exported successfully +[13:25:07] + Also exported FC TT Run in XML for comparison +[13:25:07] Processing block: FC Alarms TL25_Q1 to Supervision... +[13:25:07] Exporting FC Alarms TL25_Q1 to Supervision as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,508 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Alarms TL25_Q1 to Supervision exported successfully +[13:25:07] 2025-08-23 13:25:07,509 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Alarms TL25_Q1 to Supervision exported successfully +[13:25:07] ✓ Successfully exported FC Alarms TL25_Q1 to Supervision in SIMATIC SD +[13:25:07] Exporting FC Alarms TL25_Q1 to Supervision as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,534 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Alarms TL25_Q1 to Supervision exported successfully +[13:25:07] 2025-08-23 13:25:07,535 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Alarms TL25_Q1 to Supervision exported successfully +[13:25:07] + Also exported FC Alarms TL25_Q1 to Supervision in XML for comparison +[13:25:07] Processing block: FC TT Alarms... +[13:25:07] Exporting FC TT Alarms as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,596 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Alarms exported successfully +[13:25:07] 2025-08-23 13:25:07,597 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Alarms exported successfully +[13:25:07] ✓ Successfully exported FC TT Alarms in SIMATIC SD +[13:25:07] Exporting FC TT Alarms as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,640 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Alarms exported successfully +[13:25:07] 2025-08-23 13:25:07,641 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Alarms exported successfully +[13:25:07] + Also exported FC TT Alarms in XML for comparison +[13:25:07] Processing block: DB TT Alarm... +[13:25:07] Exporting DB TT Alarm as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,674 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Alarm exported successfully +[13:25:07] 2025-08-23 13:25:07,675 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Alarm exported successfully +[13:25:07] ✓ Successfully exported DB TT Alarm in SIMATIC SD +[13:25:07] Exporting DB TT Alarm as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,704 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Alarm exported successfully +[13:25:07] 2025-08-23 13:25:07,705 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Alarm exported successfully +[13:25:07] + Also exported DB TT Alarm in XML for comparison +[13:25:07] Processing block: DB TT Motor 31... +[13:25:07] Exporting DB TT Motor 31 as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,729 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 31 exported successfully +[13:25:07] 2025-08-23 13:25:07,730 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 31 exported successfully +[13:25:07] ✓ Successfully exported DB TT Motor 31 in SIMATIC SD +[13:25:07] Exporting DB TT Motor 31 as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,751 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 31 exported successfully +[13:25:07] 2025-08-23 13:25:07,752 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 31 exported successfully +[13:25:07] + Also exported DB TT Motor 31 in XML for comparison +[13:25:07] Processing block: DB TT Motor 32... +[13:25:07] Exporting DB TT Motor 32 as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,775 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 32 exported successfully +[13:25:07] 2025-08-23 13:25:07,775 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 32 exported successfully +[13:25:07] ✓ Successfully exported DB TT Motor 32 in SIMATIC SD +[13:25:07] Exporting DB TT Motor 32 as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,795 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 32 exported successfully +[13:25:07] 2025-08-23 13:25:07,796 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 32 exported successfully +[13:25:07] + Also exported DB TT Motor 32 in XML for comparison +[13:25:07] Processing block: DB TT Motor 34... +[13:25:07] Exporting DB TT Motor 34 as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,817 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 34 exported successfully +[13:25:07] 2025-08-23 13:25:07,818 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 34 exported successfully +[13:25:07] ✓ Successfully exported DB TT Motor 34 in SIMATIC SD +[13:25:07] Exporting DB TT Motor 34 as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,846 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 34 exported successfully +[13:25:07] 2025-08-23 13:25:07,846 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 34 exported successfully +[13:25:07] + Also exported DB TT Motor 34 in XML for comparison +[13:25:07] Processing block: DB TT Motor 35... +[13:25:07] Exporting DB TT Motor 35 as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,869 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 35 exported successfully +[13:25:07] 2025-08-23 13:25:07,870 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 35 exported successfully +[13:25:07] ✓ Successfully exported DB TT Motor 35 in SIMATIC SD +[13:25:07] Exporting DB TT Motor 35 as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,889 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 35 exported successfully +[13:25:07] 2025-08-23 13:25:07,889 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 35 exported successfully +[13:25:07] + Also exported DB TT Motor 35 in XML for comparison +[13:25:07] Processing block: DB TT Motor 36... +[13:25:07] Exporting DB TT Motor 36 as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,913 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 36 exported successfully +[13:25:07] 2025-08-23 13:25:07,913 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 36 exported successfully +[13:25:07] ✓ Successfully exported DB TT Motor 36 in SIMATIC SD +[13:25:07] Exporting DB TT Motor 36 as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,937 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 36 exported successfully +[13:25:07] 2025-08-23 13:25:07,938 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 36 exported successfully +[13:25:07] + Also exported DB TT Motor 36 in XML for comparison +[13:25:07] Processing block: DB TT Motor 37... +[13:25:07] Exporting DB TT Motor 37 as SIMATIC SD... +[13:25:07] 2025-08-23 13:25:07,962 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 37 exported successfully +[13:25:07] 2025-08-23 13:25:07,963 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 37 exported successfully +[13:25:07] ✓ Successfully exported DB TT Motor 37 in SIMATIC SD +[13:25:07] Exporting DB TT Motor 37 as XML for comparison... +[13:25:07] 2025-08-23 13:25:07,981 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 37 exported successfully +[13:25:07] 2025-08-23 13:25:07,982 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 37 exported successfully +[13:25:07] + Also exported DB TT Motor 37 in XML for comparison +[13:25:07] Processing block: DB TT Motor 38... +[13:25:07] Exporting DB TT Motor 38 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,007 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 38 exported successfully +[13:25:08] 2025-08-23 13:25:08,008 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 38 exported successfully +[13:25:08] ✓ Successfully exported DB TT Motor 38 in SIMATIC SD +[13:25:08] Exporting DB TT Motor 38 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,027 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 38 exported successfully +[13:25:08] 2025-08-23 13:25:08,028 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 38 exported successfully +[13:25:08] + Also exported DB TT Motor 38 in XML for comparison +[13:25:08] Processing block: DB TT Motor 39... +[13:25:08] Exporting DB TT Motor 39 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,054 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 39 exported successfully +[13:25:08] 2025-08-23 13:25:08,054 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 39 exported successfully +[13:25:08] ✓ Successfully exported DB TT Motor 39 in SIMATIC SD +[13:25:08] Exporting DB TT Motor 39 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,074 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 39 exported successfully +[13:25:08] 2025-08-23 13:25:08,075 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 39 exported successfully +[13:25:08] + Also exported DB TT Motor 39 in XML for comparison +[13:25:08] Processing block: DB TT Motor 40... +[13:25:08] Exporting DB TT Motor 40 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,100 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 40 exported successfully +[13:25:08] 2025-08-23 13:25:08,101 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 40 exported successfully +[13:25:08] ✓ Successfully exported DB TT Motor 40 in SIMATIC SD +[13:25:08] Exporting DB TT Motor 40 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,123 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 40 exported successfully +[13:25:08] 2025-08-23 13:25:08,124 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 40 exported successfully +[13:25:08] + Also exported DB TT Motor 40 in XML for comparison +[13:25:08] Processing block: DB TT Motor 41... +[13:25:08] Exporting DB TT Motor 41 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,212 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 41 exported successfully +[13:25:08] 2025-08-23 13:25:08,227 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 41 exported successfully +[13:25:08] ✓ Successfully exported DB TT Motor 41 in SIMATIC SD +[13:25:08] Exporting DB TT Motor 41 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,287 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 41 exported successfully +[13:25:08] 2025-08-23 13:25:08,288 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 41 exported successfully +[13:25:08] + Also exported DB TT Motor 41 in XML for comparison +[13:25:08] Processing block: DB TT Motor 42... +[13:25:08] Exporting DB TT Motor 42 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,315 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 42 exported successfully +[13:25:08] 2025-08-23 13:25:08,316 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 42 exported successfully +[13:25:08] ✓ Successfully exported DB TT Motor 42 in SIMATIC SD +[13:25:08] Exporting DB TT Motor 42 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,337 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 42 exported successfully +[13:25:08] 2025-08-23 13:25:08,337 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 42 exported successfully +[13:25:08] + Also exported DB TT Motor 42 in XML for comparison +[13:25:08] Processing block: DB TT Motor 153_154... +[13:25:08] Exporting DB TT Motor 153_154 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,371 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 153_154 exported successfully +[13:25:08] 2025-08-23 13:25:08,372 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 153_154 exported successfully +[13:25:08] ✓ Successfully exported DB TT Motor 153_154 in SIMATIC SD +[13:25:08] Exporting DB TT Motor 153_154 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,393 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TT Motor 153_154 exported successfully +[13:25:08] 2025-08-23 13:25:08,393 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TT Motor 153_154 exported successfully +[13:25:08] + Also exported DB TT Motor 153_154 in XML for comparison +[13:25:08] Processing block: FC TT Motor 31... +[13:25:08] Exporting FC TT Motor 31 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,428 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 31 exported successfully +[13:25:08] 2025-08-23 13:25:08,428 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 31 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 31 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 31 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,457 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 31 exported successfully +[13:25:08] 2025-08-23 13:25:08,458 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 31 exported successfully +[13:25:08] + Also exported FC TT Motor 31 in XML for comparison +[13:25:08] Processing block: FC TT Motor 32... +[13:25:08] Exporting FC TT Motor 32 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,493 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 32 exported successfully +[13:25:08] 2025-08-23 13:25:08,494 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 32 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 32 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 32 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,537 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 32 exported successfully +[13:25:08] 2025-08-23 13:25:08,537 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 32 exported successfully +[13:25:08] + Also exported FC TT Motor 32 in XML for comparison +[13:25:08] Processing block: FC TT Motor 36... +[13:25:08] Exporting FC TT Motor 36 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,567 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 36 exported successfully +[13:25:08] 2025-08-23 13:25:08,568 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 36 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 36 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 36 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,592 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 36 exported successfully +[13:25:08] 2025-08-23 13:25:08,592 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 36 exported successfully +[13:25:08] + Also exported FC TT Motor 36 in XML for comparison +[13:25:08] Processing block: FC TT Motor 37... +[13:25:08] Exporting FC TT Motor 37 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,617 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 37 exported successfully +[13:25:08] 2025-08-23 13:25:08,618 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 37 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 37 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 37 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,637 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 37 exported successfully +[13:25:08] 2025-08-23 13:25:08,637 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 37 exported successfully +[13:25:08] + Also exported FC TT Motor 37 in XML for comparison +[13:25:08] Processing block: FC TT Motor 38... +[13:25:08] Exporting FC TT Motor 38 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,659 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 38 exported successfully +[13:25:08] 2025-08-23 13:25:08,659 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 38 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 38 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 38 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,680 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 38 exported successfully +[13:25:08] 2025-08-23 13:25:08,681 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 38 exported successfully +[13:25:08] + Also exported FC TT Motor 38 in XML for comparison +[13:25:08] Processing block: FC TT Motor 39... +[13:25:08] Exporting FC TT Motor 39 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,702 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 39 exported successfully +[13:25:08] 2025-08-23 13:25:08,703 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 39 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 39 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 39 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,720 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 39 exported successfully +[13:25:08] 2025-08-23 13:25:08,720 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 39 exported successfully +[13:25:08] + Also exported FC TT Motor 39 in XML for comparison +[13:25:08] Processing block: FC TT Motor 40... +[13:25:08] Exporting FC TT Motor 40 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,743 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 40 exported successfully +[13:25:08] 2025-08-23 13:25:08,743 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 40 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 40 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 40 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,762 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 40 exported successfully +[13:25:08] 2025-08-23 13:25:08,763 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 40 exported successfully +[13:25:08] + Also exported FC TT Motor 40 in XML for comparison +[13:25:08] Processing block: FC TT Motor 41... +[13:25:08] Exporting FC TT Motor 41 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,786 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 41 exported successfully +[13:25:08] 2025-08-23 13:25:08,787 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 41 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 41 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 41 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,808 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 41 exported successfully +[13:25:08] 2025-08-23 13:25:08,808 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 41 exported successfully +[13:25:08] + Also exported FC TT Motor 41 in XML for comparison +[13:25:08] Processing block: FC TT Motor 42... +[13:25:08] Exporting FC TT Motor 42 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,835 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 42 exported successfully +[13:25:08] 2025-08-23 13:25:08,836 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 42 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 42 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 42 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,854 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 42 exported successfully +[13:25:08] 2025-08-23 13:25:08,855 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 42 exported successfully +[13:25:08] + Also exported FC TT Motor 42 in XML for comparison +[13:25:08] Processing block: FC TT Motor 153_154... +[13:25:08] Exporting FC TT Motor 153_154 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,889 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 153_154 exported successfully +[13:25:08] 2025-08-23 13:25:08,890 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 153_154 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 153_154 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 153_154 as XML for comparison... +[13:25:08] 2025-08-23 13:25:08,925 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 153_154 exported successfully +[13:25:08] 2025-08-23 13:25:08,926 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 153_154 exported successfully +[13:25:08] + Also exported FC TT Motor 153_154 in XML for comparison +[13:25:08] Processing block: FC TT Motor 34... +[13:25:08] Exporting FC TT Motor 34 as SIMATIC SD... +[13:25:08] 2025-08-23 13:25:08,973 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 34 exported successfully +[13:25:08] 2025-08-23 13:25:08,974 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 34 exported successfully +[13:25:08] ✓ Successfully exported FC TT Motor 34 in SIMATIC SD +[13:25:08] Exporting FC TT Motor 34 as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,004 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 34 exported successfully +[13:25:09] 2025-08-23 13:25:09,006 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 34 exported successfully +[13:25:09] + Also exported FC TT Motor 34 in XML for comparison +[13:25:09] Processing block: FC TT Motor 35... +[13:25:09] Exporting FC TT Motor 35 as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,045 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 35 exported successfully +[13:25:09] 2025-08-23 13:25:09,046 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 35 exported successfully +[13:25:09] ✓ Successfully exported FC TT Motor 35 in SIMATIC SD +[13:25:09] Exporting FC TT Motor 35 as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,072 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Motor 35 exported successfully +[13:25:09] 2025-08-23 13:25:09,073 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Motor 35 exported successfully +[13:25:09] + Also exported FC TT Motor 35 in XML for comparison +[13:25:09] Processing block: FB Ejector Bottle... +[13:25:09] Exporting FB Ejector Bottle as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,105 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,106 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Ejector Bottle exported successfully +[13:25:09] ✓ Successfully exported FB Ejector Bottle in SIMATIC SD +[13:25:09] Exporting FB Ejector Bottle as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,129 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,130 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Ejector Bottle exported successfully +[13:25:09] + Also exported FB Ejector Bottle in XML for comparison +[13:25:09] Processing block: FB Camera Ejector Bottle... +[13:25:09] Exporting FB Camera Ejector Bottle as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,153 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Camera Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,154 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Camera Ejector Bottle exported successfully +[13:25:09] ✓ Successfully exported FB Camera Ejector Bottle in SIMATIC SD +[13:25:09] Exporting FB Camera Ejector Bottle as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,172 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Camera Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,172 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Camera Ejector Bottle exported successfully +[13:25:09] + Also exported FB Camera Ejector Bottle in XML for comparison +[13:25:09] Processing block: FB Lube Lowerator - Elevator... +[13:25:09] Exporting FB Lube Lowerator - Elevator as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,226 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Lube Lowerator - Elevator exported successfully +[13:25:09] 2025-08-23 13:25:09,227 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Lube Lowerator - Elevator exported successfully +[13:25:09] ✓ Successfully exported FB Lube Lowerator - Elevator in SIMATIC SD +[13:25:09] Exporting FB Lube Lowerator - Elevator as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,264 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Lube Lowerator - Elevator exported successfully +[13:25:09] 2025-08-23 13:25:09,264 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Lube Lowerator - Elevator exported successfully +[13:25:09] + Also exported FB Lube Lowerator - Elevator in XML for comparison +[13:25:09] Processing block: FB TTOP - Guide EMD... +[13:25:09] Exporting FB TTOP - Guide EMD as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,331 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB TTOP - Guide EMD exported successfully +[13:25:09] 2025-08-23 13:25:09,332 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB TTOP - Guide EMD exported successfully +[13:25:09] ✓ Successfully exported FB TTOP - Guide EMD in SIMATIC SD +[13:25:09] Exporting FB TTOP - Guide EMD as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,392 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB TTOP - Guide EMD exported successfully +[13:25:09] 2025-08-23 13:25:09,393 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB TTOP - Guide EMD exported successfully +[13:25:09] + Also exported FB TTOP - Guide EMD in XML for comparison +[13:25:09] Processing block: FB Door Control... +[13:25:09] Exporting FB Door Control as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,421 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Door Control exported successfully +[13:25:09] 2025-08-23 13:25:09,422 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Door Control exported successfully +[13:25:09] ✓ Successfully exported FB Door Control in SIMATIC SD +[13:25:09] Exporting FB Door Control as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,444 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Door Control exported successfully +[13:25:09] 2025-08-23 13:25:09,445 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Door Control exported successfully +[13:25:09] + Also exported FB Door Control in XML for comparison +[13:25:09] Processing block: FB Guide Lifter - Lowerator... +[13:25:09] Exporting FB Guide Lifter - Lowerator as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,494 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Guide Lifter - Lowerator exported successfully +[13:25:09] 2025-08-23 13:25:09,494 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Guide Lifter - Lowerator exported successfully +[13:25:09] ✓ Successfully exported FB Guide Lifter - Lowerator in SIMATIC SD +[13:25:09] Exporting FB Guide Lifter - Lowerator as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,540 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Guide Lifter - Lowerator exported successfully +[13:25:09] 2025-08-23 13:25:09,541 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Guide Lifter - Lowerator exported successfully +[13:25:09] + Also exported FB Guide Lifter - Lowerator in XML for comparison +[13:25:09] Processing block: FB TTOP- Energy Saving... +[13:25:09] Exporting FB TTOP- Energy Saving as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,564 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB TTOP- Energy Saving exported successfully +[13:25:09] 2025-08-23 13:25:09,565 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB TTOP- Energy Saving exported successfully +[13:25:09] ✓ Successfully exported FB TTOP- Energy Saving in SIMATIC SD +[13:25:09] Exporting FB TTOP- Energy Saving as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,582 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB TTOP- Energy Saving exported successfully +[13:25:09] 2025-08-23 13:25:09,583 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB TTOP- Energy Saving exported successfully +[13:25:09] + Also exported FB TTOP- Energy Saving in XML for comparison +[13:25:09] Processing block: FB Bottle Counter... +[13:25:09] Exporting FB Bottle Counter as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,613 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Bottle Counter exported successfully +[13:25:09] 2025-08-23 13:25:09,614 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Bottle Counter exported successfully +[13:25:09] ✓ Successfully exported FB Bottle Counter in SIMATIC SD +[13:25:09] Exporting FB Bottle Counter as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,637 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Bottle Counter exported successfully +[13:25:09] 2025-08-23 13:25:09,637 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Bottle Counter exported successfully +[13:25:09] + Also exported FB Bottle Counter in XML for comparison +[13:25:09] Processing block: FC TT Devices... +[13:25:09] Exporting FC TT Devices as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,706 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Devices exported successfully +[13:25:09] 2025-08-23 13:25:09,707 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Devices exported successfully +[13:25:09] ✓ Successfully exported FC TT Devices in SIMATIC SD +[13:25:09] Exporting FC TT Devices as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,761 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC TT Devices exported successfully +[13:25:09] 2025-08-23 13:25:09,763 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC TT Devices exported successfully +[13:25:09] + Also exported FC TT Devices in XML for comparison +[13:25:09] Processing block: DB Ejector Bottle... +[13:25:09] Exporting DB Ejector Bottle as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,792 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,792 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Ejector Bottle exported successfully +[13:25:09] ✓ Successfully exported DB Ejector Bottle in SIMATIC SD +[13:25:09] Exporting DB Ejector Bottle as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,810 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,811 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Ejector Bottle exported successfully +[13:25:09] + Also exported DB Ejector Bottle in XML for comparison +[13:25:09] Processing block: DB Camera Ejector Bottle... +[13:25:09] Exporting DB Camera Ejector Bottle as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,832 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Camera Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,833 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Camera Ejector Bottle exported successfully +[13:25:09] ✓ Successfully exported DB Camera Ejector Bottle in SIMATIC SD +[13:25:09] Exporting DB Camera Ejector Bottle as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,848 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Camera Ejector Bottle exported successfully +[13:25:09] 2025-08-23 13:25:09,849 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Camera Ejector Bottle exported successfully +[13:25:09] + Also exported DB Camera Ejector Bottle in XML for comparison +[13:25:09] Processing block: DB lube M35... +[13:25:09] Exporting DB lube M35 as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,867 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB lube M35 exported successfully +[13:25:09] 2025-08-23 13:25:09,868 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB lube M35 exported successfully +[13:25:09] ✓ Successfully exported DB lube M35 in SIMATIC SD +[13:25:09] Exporting DB lube M35 as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,886 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB lube M35 exported successfully +[13:25:09] 2025-08-23 13:25:09,887 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB lube M35 exported successfully +[13:25:09] + Also exported DB lube M35 in XML for comparison +[13:25:09] Processing block: DB TTOP - Body Guide EMD... +[13:25:09] Exporting DB TTOP - Body Guide EMD as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,907 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TTOP - Body Guide EMD exported successfully +[13:25:09] 2025-08-23 13:25:09,908 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TTOP - Body Guide EMD exported successfully +[13:25:09] ✓ Successfully exported DB TTOP - Body Guide EMD in SIMATIC SD +[13:25:09] Exporting DB TTOP - Body Guide EMD as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,926 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TTOP - Body Guide EMD exported successfully +[13:25:09] 2025-08-23 13:25:09,927 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TTOP - Body Guide EMD exported successfully +[13:25:09] + Also exported DB TTOP - Body Guide EMD in XML for comparison +[13:25:09] Processing block: DB Door Control - Lifter - DownStair... +[13:25:09] Exporting DB Door Control - Lifter - DownStair as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,945 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Door Control - Lifter - DownStair exported successfully +[13:25:09] 2025-08-23 13:25:09,946 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Door Control - Lifter - DownStair exported successfully +[13:25:09] ✓ Successfully exported DB Door Control - Lifter - DownStair in SIMATIC SD +[13:25:09] Exporting DB Door Control - Lifter - DownStair as XML for comparison... +[13:25:09] 2025-08-23 13:25:09,961 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Door Control - Lifter - DownStair exported successfully +[13:25:09] 2025-08-23 13:25:09,961 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Door Control - Lifter - DownStair exported successfully +[13:25:09] + Also exported DB Door Control - Lifter - DownStair in XML for comparison +[13:25:09] Processing block: DB TTOP - Body Curve Guide EMD... +[13:25:09] Exporting DB TTOP - Body Curve Guide EMD as SIMATIC SD... +[13:25:09] 2025-08-23 13:25:09,989 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TTOP - Body Curve Guide EMD exported successfully +[13:25:09] 2025-08-23 13:25:09,990 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TTOP - Body Curve Guide EMD exported successfully +[13:25:09] ✓ Successfully exported DB TTOP - Body Curve Guide EMD in SIMATIC SD +[13:25:09] Exporting DB TTOP - Body Curve Guide EMD as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,007 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TTOP - Body Curve Guide EMD exported successfully +[13:25:10] 2025-08-23 13:25:10,007 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TTOP - Body Curve Guide EMD exported successfully +[13:25:10] + Also exported DB TTOP - Body Curve Guide EMD in XML for comparison +[13:25:10] Processing block: DB Guide Lifter - Lowerator... +[13:25:10] Exporting DB Guide Lifter - Lowerator as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,026 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Guide Lifter - Lowerator exported successfully +[13:25:10] 2025-08-23 13:25:10,026 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Guide Lifter - Lowerator exported successfully +[13:25:10] ✓ Successfully exported DB Guide Lifter - Lowerator in SIMATIC SD +[13:25:10] Exporting DB Guide Lifter - Lowerator as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,043 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Guide Lifter - Lowerator exported successfully +[13:25:10] 2025-08-23 13:25:10,044 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Guide Lifter - Lowerator exported successfully +[13:25:10] + Also exported DB Guide Lifter - Lowerator in XML for comparison +[13:25:10] Processing block: DB TTOP - Energy Saving... +[13:25:10] Exporting DB TTOP - Energy Saving as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,063 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TTOP - Energy Saving exported successfully +[13:25:10] 2025-08-23 13:25:10,063 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TTOP - Energy Saving exported successfully +[13:25:10] ✓ Successfully exported DB TTOP - Energy Saving in SIMATIC SD +[13:25:10] Exporting DB TTOP - Energy Saving as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,079 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB TTOP - Energy Saving exported successfully +[13:25:10] 2025-08-23 13:25:10,080 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB TTOP - Energy Saving exported successfully +[13:25:10] + Also exported DB TTOP - Energy Saving in XML for comparison +[13:25:10] Processing block: DB Bottle Counter M153_154... +[13:25:10] Exporting DB Bottle Counter M153_154 as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,098 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Bottle Counter M153_154 exported successfully +[13:25:10] 2025-08-23 13:25:10,099 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Bottle Counter M153_154 exported successfully +[13:25:10] ✓ Successfully exported DB Bottle Counter M153_154 in SIMATIC SD +[13:25:10] Exporting DB Bottle Counter M153_154 as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,117 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Bottle Counter M153_154 exported successfully +[13:25:10] 2025-08-23 13:25:10,118 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Bottle Counter M153_154 exported successfully +[13:25:10] + Also exported DB Bottle Counter M153_154 in XML for comparison +[13:25:10] Processing block: DB Bottle Counter_M37... +[13:25:10] Exporting DB Bottle Counter_M37 as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,145 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Bottle Counter_M37 exported successfully +[13:25:10] 2025-08-23 13:25:10,146 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Bottle Counter_M37 exported successfully +[13:25:10] ✓ Successfully exported DB Bottle Counter_M37 in SIMATIC SD +[13:25:10] Exporting DB Bottle Counter_M37 as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,163 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Bottle Counter_M37 exported successfully +[13:25:10] 2025-08-23 13:25:10,164 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Bottle Counter_M37 exported successfully +[13:25:10] + Also exported DB Bottle Counter_M37 in XML for comparison +[13:25:10] Processing block: DB Door Control - Lifter - UpStair... +[13:25:10] Exporting DB Door Control - Lifter - UpStair as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,185 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Door Control - Lifter - UpStair exported successfully +[13:25:10] 2025-08-23 13:25:10,185 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Door Control - Lifter - UpStair exported successfully +[13:25:10] ✓ Successfully exported DB Door Control - Lifter - UpStair in SIMATIC SD +[13:25:10] Exporting DB Door Control - Lifter - UpStair as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,202 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Door Control - Lifter - UpStair exported successfully +[13:25:10] 2025-08-23 13:25:10,203 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Door Control - Lifter - UpStair exported successfully +[13:25:10] + Also exported DB Door Control - Lifter - UpStair in XML for comparison +[13:25:10] Processing block: FC Pack Configuration... +[13:25:10] Exporting FC Pack Configuration as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,239 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Configuration exported successfully +[13:25:10] 2025-08-23 13:25:10,240 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Configuration exported successfully +[13:25:10] ✓ Successfully exported FC Pack Configuration in SIMATIC SD +[13:25:10] Exporting FC Pack Configuration as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,265 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Configuration exported successfully +[13:25:10] 2025-08-23 13:25:10,265 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Configuration exported successfully +[13:25:10] + Also exported FC Pack Configuration in XML for comparison +[13:25:10] Processing block: FC Pack Run... +[13:25:10] Exporting FC Pack Run as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,305 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Run exported successfully +[13:25:10] 2025-08-23 13:25:10,306 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Run exported successfully +[13:25:10] ✓ Successfully exported FC Pack Run in SIMATIC SD +[13:25:10] Exporting FC Pack Run as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,351 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Run exported successfully +[13:25:10] 2025-08-23 13:25:10,351 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Run exported successfully +[13:25:10] + Also exported FC Pack Run in XML for comparison +[13:25:10] Processing block: FC Pack Alarms... +[13:25:10] Exporting FC Pack Alarms as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,380 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Alarms exported successfully +[13:25:10] 2025-08-23 13:25:10,380 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Alarms exported successfully +[13:25:10] ✓ Successfully exported FC Pack Alarms in SIMATIC SD +[13:25:10] Exporting FC Pack Alarms as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,403 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Alarms exported successfully +[13:25:10] 2025-08-23 13:25:10,403 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Alarms exported successfully +[13:25:10] + Also exported FC Pack Alarms in XML for comparison +[13:25:10] Processing block: DB Pack Alarm... +[13:25:10] Exporting DB Pack Alarm as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,448 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Alarm exported successfully +[13:25:10] 2025-08-23 13:25:10,449 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Alarm exported successfully +[13:25:10] ✓ Successfully exported DB Pack Alarm in SIMATIC SD +[13:25:10] Exporting DB Pack Alarm as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,479 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Alarm exported successfully +[13:25:10] 2025-08-23 13:25:10,480 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Alarm exported successfully +[13:25:10] + Also exported DB Pack Alarm in XML for comparison +[13:25:10] Processing block: DB Pack Motor 71... +[13:25:10] Exporting DB Pack Motor 71 as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,506 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Motor 71 exported successfully +[13:25:10] 2025-08-23 13:25:10,506 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Motor 71 exported successfully +[13:25:10] ✓ Successfully exported DB Pack Motor 71 in SIMATIC SD +[13:25:10] Exporting DB Pack Motor 71 as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,526 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Pack Motor 71 exported successfully +[13:25:10] 2025-08-23 13:25:10,527 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Pack Motor 71 exported successfully +[13:25:10] + Also exported DB Pack Motor 71 in XML for comparison +[13:25:10] Processing block: FC Pack Motor 71... +[13:25:10] Exporting FC Pack Motor 71 as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,557 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Motor 71 exported successfully +[13:25:10] 2025-08-23 13:25:10,558 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Motor 71 exported successfully +[13:25:10] ✓ Successfully exported FC Pack Motor 71 in SIMATIC SD +[13:25:10] Exporting FC Pack Motor 71 as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,579 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Motor 71 exported successfully +[13:25:10] 2025-08-23 13:25:10,580 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Motor 71 exported successfully +[13:25:10] + Also exported FC Pack Motor 71 in XML for comparison +[13:25:10] Processing block: FC Pack Devices... +[13:25:10] Exporting FC Pack Devices as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,607 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Devices exported successfully +[13:25:10] 2025-08-23 13:25:10,607 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Devices exported successfully +[13:25:10] ✓ Successfully exported FC Pack Devices in SIMATIC SD +[13:25:10] Exporting FC Pack Devices as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,625 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Pack Devices exported successfully +[13:25:10] 2025-08-23 13:25:10,625 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Pack Devices exported successfully +[13:25:10] + Also exported FC Pack Devices in XML for comparison +[13:25:10] Processing block: FC Air Configuration... +[13:25:10] Exporting FC Air Configuration as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,665 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Configuration exported successfully +[13:25:10] 2025-08-23 13:25:10,666 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Configuration exported successfully +[13:25:10] ✓ Successfully exported FC Air Configuration in SIMATIC SD +[13:25:10] Exporting FC Air Configuration as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,689 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Configuration exported successfully +[13:25:10] 2025-08-23 13:25:10,690 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Configuration exported successfully +[13:25:10] + Also exported FC Air Configuration in XML for comparison +[13:25:10] Processing block: FC Air Run... +[13:25:10] Exporting FC Air Run as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,729 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Run exported successfully +[13:25:10] 2025-08-23 13:25:10,730 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Run exported successfully +[13:25:10] ✓ Successfully exported FC Air Run in SIMATIC SD +[13:25:10] Exporting FC Air Run as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,759 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Run exported successfully +[13:25:10] 2025-08-23 13:25:10,760 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Run exported successfully +[13:25:10] + Also exported FC Air Run in XML for comparison +[13:25:10] Processing block: FC Air Alarms... +[13:25:10] Exporting FC Air Alarms as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,795 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Alarms exported successfully +[13:25:10] 2025-08-23 13:25:10,796 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Alarms exported successfully +[13:25:10] ✓ Successfully exported FC Air Alarms in SIMATIC SD +[13:25:10] Exporting FC Air Alarms as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,818 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Alarms exported successfully +[13:25:10] 2025-08-23 13:25:10,819 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Alarms exported successfully +[13:25:10] + Also exported FC Air Alarms in XML for comparison +[13:25:10] Processing block: DB Air Alarms... +[13:25:10] Exporting DB Air Alarms as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,851 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Alarms exported successfully +[13:25:10] 2025-08-23 13:25:10,852 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Alarms exported successfully +[13:25:10] ✓ Successfully exported DB Air Alarms in SIMATIC SD +[13:25:10] Exporting DB Air Alarms as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,880 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Alarms exported successfully +[13:25:10] 2025-08-23 13:25:10,881 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Alarms exported successfully +[13:25:10] + Also exported DB Air Alarms in XML for comparison +[13:25:10] Processing block: FB Air - Guide EMD... +[13:25:10] Exporting FB Air - Guide EMD as SIMATIC SD... +[13:25:10] 2025-08-23 13:25:10,941 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Air - Guide EMD exported successfully +[13:25:10] 2025-08-23 13:25:10,941 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Air - Guide EMD exported successfully +[13:25:10] ✓ Successfully exported FB Air - Guide EMD in SIMATIC SD +[13:25:10] Exporting FB Air - Guide EMD as XML for comparison... +[13:25:10] 2025-08-23 13:25:10,999 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FB Air - Guide EMD exported successfully +[13:25:10] 2025-08-23 13:25:10,999 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FB Air - Guide EMD exported successfully +[13:25:10] + Also exported FB Air - Guide EMD in XML for comparison +[13:25:11] Processing block: FC Air Energy Saving Z1... +[13:25:11] Exporting FC Air Energy Saving Z1 as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,045 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Energy Saving Z1 exported successfully +[13:25:11] 2025-08-23 13:25:11,046 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Energy Saving Z1 exported successfully +[13:25:11] ✓ Successfully exported FC Air Energy Saving Z1 in SIMATIC SD +[13:25:11] Exporting FC Air Energy Saving Z1 as XML for comparison... +[13:25:11] 2025-08-23 13:25:11,080 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Energy Saving Z1 exported successfully +[13:25:11] 2025-08-23 13:25:11,081 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Energy Saving Z1 exported successfully +[13:25:11] + Also exported FC Air Energy Saving Z1 in XML for comparison +[13:25:11] Processing block: FC Air Devices... +[13:25:11] Exporting FC Air Devices as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,101 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Devices exported successfully +[13:25:11] 2025-08-23 13:25:11,101 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Devices exported successfully +[13:25:11] ✓ Successfully exported FC Air Devices in SIMATIC SD +[13:25:11] Exporting FC Air Devices as XML for comparison... +[13:25:11] 2025-08-23 13:25:11,118 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Devices exported successfully +[13:25:11] 2025-08-23 13:25:11,118 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Devices exported successfully +[13:25:11] + Also exported FC Air Devices in XML for comparison +[13:25:11] Processing block: DB Air - EMD... +[13:25:11] Exporting DB Air - EMD as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,139 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air - EMD exported successfully +[13:25:11] 2025-08-23 13:25:11,140 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air - EMD exported successfully +[13:25:11] ✓ Successfully exported DB Air - EMD in SIMATIC SD +[13:25:11] Exporting DB Air - EMD as XML for comparison... +[13:25:11] 2025-08-23 13:25:11,158 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air - EMD exported successfully +[13:25:11] 2025-08-23 13:25:11,159 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air - EMD exported successfully +[13:25:11] + Also exported DB Air - EMD in XML for comparison +[13:25:11] Processing block: DB Air Obstructions... +[13:25:11] Exporting DB Air Obstructions as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,181 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Obstructions exported successfully +[13:25:11] 2025-08-23 13:25:11,182 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Obstructions exported successfully +[13:25:11] ✓ Successfully exported DB Air Obstructions in SIMATIC SD +[13:25:11] Exporting DB Air Obstructions as XML for comparison... +[13:25:11] 2025-08-23 13:25:11,201 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Obstructions exported successfully +[13:25:11] 2025-08-23 13:25:11,202 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Obstructions exported successfully +[13:25:11] + Also exported DB Air Obstructions in XML for comparison +[13:25:11] Processing block: DB Air Energy Saving Z1... +[13:25:11] Exporting DB Air Energy Saving Z1 as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,222 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Energy Saving Z1 exported successfully +[13:25:11] 2025-08-23 13:25:11,223 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Energy Saving Z1 exported successfully +[13:25:11] ✓ Successfully exported DB Air Energy Saving Z1 in SIMATIC SD +[13:25:11] Exporting DB Air Energy Saving Z1 as XML for comparison... +[13:25:11] 2025-08-23 13:25:11,240 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Energy Saving Z1 exported successfully +[13:25:11] 2025-08-23 13:25:11,241 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Energy Saving Z1 exported successfully +[13:25:11] + Also exported DB Air Energy Saving Z1 in XML for comparison +[13:25:11] Processing block: DB Air Motor 01... +[13:25:11] Exporting DB Air Motor 01 as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,272 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Motor 01 exported successfully +[13:25:11] 2025-08-23 13:25:11,272 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Motor 01 exported successfully +[13:25:11] ✓ Successfully exported DB Air Motor 01 in SIMATIC SD +[13:25:11] Exporting DB Air Motor 01 as XML for comparison... +[13:25:11] 2025-08-23 13:25:11,291 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: DB Air Motor 01 exported successfully +[13:25:11] 2025-08-23 13:25:11,292 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - DB Air Motor 01 exported successfully +[13:25:11] + Also exported DB Air Motor 01 in XML for comparison +[13:25:11] Processing block: FC Air Motor 01... +[13:25:11] Exporting FC Air Motor 01 as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,321 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Motor 01 exported successfully +[13:25:11] 2025-08-23 13:25:11,322 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Motor 01 exported successfully +[13:25:11] ✓ Successfully exported FC Air Motor 01 in SIMATIC SD +[13:25:11] Exporting FC Air Motor 01 as XML for comparison... +[13:25:11] 2025-08-23 13:25:11,343 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - PLC program block: FC Air Motor 01 exported successfully +[13:25:11] 2025-08-23 13:25:11,344 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.ProgramBlock Export - FC Air Motor 01 exported successfully +[13:25:11] + Also exported FC Air Motor 01 in XML for comparison +[13:25:11] Program Blocks Export Summary: Exported=231, Skipped/Errors=2 +[13:25:11] [PLC: PLC_TL25_Q1] Exporting PLC Data Types - UDTs (SIMATIC SD)... +[13:25:11] SIMATIC SD Target: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\ExportTia\PLC_TL25_Q1_SimaticSD_20250823_132441\03_PlcDataTypes_SD +[13:25:11] XML Compare Target: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\ExportTia\PLC_TL25_Q1_SimaticSD_20250823_132441\04_PlcDataTypes_XML_Compare +[13:25:11] Found 98 UDTs. +[13:25:11] Processing UDT: UDT Air Energy Saving... +[13:25:11] Exporting UDT Air Energy Saving as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,490 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Air Energy Saving exported successfully +[13:25:11] 2025-08-23 13:25:11,491 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Air Energy Saving exported successfully +[13:25:11] 2025-08-23 13:25:11,510 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Air Energy Saving exported successfully +[13:25:11] 2025-08-23 13:25:11,511 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Air Energy Saving exported successfully +[13:25:11] ✓ Successfully exported UDT Air Energy Saving (SD + XML) +[13:25:11] Processing UDT: UDT Air Obstruction... +[13:25:11] Exporting UDT Air Obstruction as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,531 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Air Obstruction exported successfully +[13:25:11] 2025-08-23 13:25:11,532 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Air Obstruction exported successfully +[13:25:11] 2025-08-23 13:25:11,542 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Air Obstruction exported successfully +[13:25:11] 2025-08-23 13:25:11,542 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Air Obstruction exported successfully +[13:25:11] ✓ Successfully exported UDT Air Obstruction (SD + XML) +[13:25:11] Processing UDT: UDT DIV Run... +[13:25:11] Exporting UDT DIV Run as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,556 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT DIV Run exported successfully +[13:25:11] 2025-08-23 13:25:11,557 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT DIV Run exported successfully +[13:25:11] 2025-08-23 13:25:11,569 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT DIV Run exported successfully +[13:25:11] 2025-08-23 13:25:11,569 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT DIV Run exported successfully +[13:25:11] ✓ Successfully exported UDT DIV Run (SD + XML) +[13:25:11] Processing UDT: UDT Divider CH RCP... +[13:25:11] Exporting UDT Divider CH RCP as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,585 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Divider CH RCP exported successfully +[13:25:11] 2025-08-23 13:25:11,586 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Divider CH RCP exported successfully +[13:25:11] 2025-08-23 13:25:11,601 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Divider CH RCP exported successfully +[13:25:11] 2025-08-23 13:25:11,601 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Divider CH RCP exported successfully +[13:25:11] ✓ Successfully exported UDT Divider CH RCP (SD + XML) +[13:25:11] Processing UDT: UDT EcoSync Liner... +[13:25:11] Exporting UDT EcoSync Liner as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,619 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT EcoSync Liner exported successfully +[13:25:11] 2025-08-23 13:25:11,620 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT EcoSync Liner exported successfully +[13:25:11] 2025-08-23 13:25:11,632 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT EcoSync Liner exported successfully +[13:25:11] 2025-08-23 13:25:11,633 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT EcoSync Liner exported successfully +[13:25:11] ✓ Successfully exported UDT EcoSync Liner (SD + XML) +[13:25:11] Processing UDT: UDT Fifo... +[13:25:11] Exporting UDT Fifo as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,650 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Fifo exported successfully +[13:25:11] 2025-08-23 13:25:11,650 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Fifo exported successfully +[13:25:11] 2025-08-23 13:25:11,663 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Fifo exported successfully +[13:25:11] 2025-08-23 13:25:11,664 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Fifo exported successfully +[13:25:11] ✓ Successfully exported UDT Fifo (SD + XML) +[13:25:11] Processing UDT: UDT Lubrication... +[13:25:11] Exporting UDT Lubrication as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,680 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Lubrication exported successfully +[13:25:11] 2025-08-23 13:25:11,680 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Lubrication exported successfully +[13:25:11] 2025-08-23 13:25:11,691 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Lubrication exported successfully +[13:25:11] 2025-08-23 13:25:11,692 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Lubrication exported successfully +[13:25:11] ✓ Successfully exported UDT Lubrication (SD + XML) +[13:25:11] Processing UDT: UDT Philosofy Data TTOP... +[13:25:11] Exporting UDT Philosofy Data TTOP as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,711 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Philosofy Data TTOP exported successfully +[13:25:11] 2025-08-23 13:25:11,712 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Philosofy Data TTOP exported successfully +[13:25:11] 2025-08-23 13:25:11,726 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Philosofy Data TTOP exported successfully +[13:25:11] 2025-08-23 13:25:11,726 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Philosofy Data TTOP exported successfully +[13:25:11] ✓ Successfully exported UDT Philosofy Data TTOP (SD + XML) +[13:25:11] Processing UDT: UDT Run... +[13:25:11] Exporting UDT Run as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,742 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Run exported successfully +[13:25:11] 2025-08-23 13:25:11,743 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Run exported successfully +[13:25:11] 2025-08-23 13:25:11,755 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Run exported successfully +[13:25:11] 2025-08-23 13:25:11,756 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Run exported successfully +[13:25:11] ✓ Successfully exported UDT Run (SD + XML) +[13:25:11] Processing UDT: UDT SIPA SV Main... +[13:25:11] Exporting UDT SIPA SV Main as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,770 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT SIPA SV Main exported successfully +[13:25:11] 2025-08-23 13:25:11,771 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT SIPA SV Main exported successfully +[13:25:11] 2025-08-23 13:25:11,783 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT SIPA SV Main exported successfully +[13:25:11] 2025-08-23 13:25:11,783 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT SIPA SV Main exported successfully +[13:25:11] ✓ Successfully exported UDT SIPA SV Main (SD + XML) +[13:25:11] Processing UDT: UDT SIPA SV Section... +[13:25:11] Exporting UDT SIPA SV Section as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,797 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT SIPA SV Section exported successfully +[13:25:11] 2025-08-23 13:25:11,798 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT SIPA SV Section exported successfully +[13:25:11] 2025-08-23 13:25:11,809 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT SIPA SV Section exported successfully +[13:25:11] 2025-08-23 13:25:11,809 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT SIPA SV Section exported successfully +[13:25:11] ✓ Successfully exported UDT SIPA SV Section (SD + XML) +[13:25:11] Processing UDT: UDT Syncro+ Data... +[13:25:11] Exporting UDT Syncro+ Data as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,825 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Syncro+ Data exported successfully +[13:25:11] 2025-08-23 13:25:11,826 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Syncro+ Data exported successfully +[13:25:11] 2025-08-23 13:25:11,836 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Syncro+ Data exported successfully +[13:25:11] 2025-08-23 13:25:11,838 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Syncro+ Data exported successfully +[13:25:11] ✓ Successfully exported UDT Syncro+ Data (SD + XML) +[13:25:11] Processing UDT: UDT Syncro+ Liner... +[13:25:11] Exporting UDT Syncro+ Liner as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,851 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Syncro+ Liner exported successfully +[13:25:11] 2025-08-23 13:25:11,852 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Syncro+ Liner exported successfully +[13:25:11] 2025-08-23 13:25:11,862 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Syncro+ Liner exported successfully +[13:25:11] 2025-08-23 13:25:11,863 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Syncro+ Liner exported successfully +[13:25:11] ✓ Successfully exported UDT Syncro+ Liner (SD + XML) +[13:25:11] Processing UDT: UDT Timer... +[13:25:11] Exporting UDT Timer as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,876 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Timer exported successfully +[13:25:11] 2025-08-23 13:25:11,877 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Timer exported successfully +[13:25:11] 2025-08-23 13:25:11,887 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Timer exported successfully +[13:25:11] 2025-08-23 13:25:11,888 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Timer exported successfully +[13:25:11] ✓ Successfully exported UDT Timer (SD + XML) +[13:25:11] Processing UDT: UDT Timer mm... +[13:25:11] Exporting UDT Timer mm as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,902 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Timer mm exported successfully +[13:25:11] 2025-08-23 13:25:11,903 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Timer mm exported successfully +[13:25:11] 2025-08-23 13:25:11,915 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Timer mm exported successfully +[13:25:11] 2025-08-23 13:25:11,916 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Timer mm exported successfully +[13:25:11] ✓ Successfully exported UDT Timer mm (SD + XML) +[13:25:11] Processing UDT: UDT COM ConvMotor... +[13:25:11] Exporting UDT COM ConvMotor as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,930 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM ConvMotor exported successfully +[13:25:11] 2025-08-23 13:25:11,931 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM ConvMotor exported successfully +[13:25:11] 2025-08-23 13:25:11,941 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM ConvMotor exported successfully +[13:25:11] 2025-08-23 13:25:11,941 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM ConvMotor exported successfully +[13:25:11] ✓ Successfully exported UDT COM ConvMotor (SD + XML) +[13:25:11] Processing UDT: UDT COM MotorsBox2... +[13:25:11] Exporting UDT COM MotorsBox2 as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,955 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM MotorsBox2 exported successfully +[13:25:11] 2025-08-23 13:25:11,956 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM MotorsBox2 exported successfully +[13:25:11] 2025-08-23 13:25:11,971 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM MotorsBox2 exported successfully +[13:25:11] 2025-08-23 13:25:11,971 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM MotorsBox2 exported successfully +[13:25:11] ✓ Successfully exported UDT COM MotorsBox2 (SD + XML) +[13:25:11] Processing UDT: UDT COM MotorsBox1... +[13:25:11] Exporting UDT COM MotorsBox1 as SIMATIC SD... +[13:25:11] 2025-08-23 13:25:11,987 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM MotorsBox1 exported successfully +[13:25:11] 2025-08-23 13:25:11,988 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM MotorsBox1 exported successfully +[13:25:11] 2025-08-23 13:25:11,998 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM MotorsBox1 exported successfully +[13:25:11] 2025-08-23 13:25:11,999 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM MotorsBox1 exported successfully +[13:25:11] ✓ Successfully exported UDT COM MotorsBox1 (SD + XML) +[13:25:12] Processing UDT: UDT COM Motor... +[13:25:12] Exporting UDT COM Motor as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,013 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Motor exported successfully +[13:25:12] 2025-08-23 13:25:12,014 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Motor exported successfully +[13:25:12] 2025-08-23 13:25:12,025 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Motor exported successfully +[13:25:12] 2025-08-23 13:25:12,026 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Motor exported successfully +[13:25:12] ✓ Successfully exported UDT COM Motor (SD + XML) +[13:25:12] Processing UDT: UDT Motor... +[13:25:12] Exporting UDT Motor as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,047 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Motor exported successfully +[13:25:12] 2025-08-23 13:25:12,048 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Motor exported successfully +[13:25:12] 2025-08-23 13:25:12,064 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Motor exported successfully +[13:25:12] 2025-08-23 13:25:12,064 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Motor exported successfully +[13:25:12] ✓ Successfully exported UDT Motor (SD + XML) +[13:25:12] Processing UDT: RockwellConfig... +[13:25:12] Exporting RockwellConfig as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,110 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: RockwellConfig exported successfully +[13:25:12] 2025-08-23 13:25:12,111 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - RockwellConfig exported successfully +[13:25:12] 2025-08-23 13:25:12,128 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: RockwellConfig exported successfully +[13:25:12] 2025-08-23 13:25:12,129 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - RockwellConfig exported successfully +[13:25:12] ✓ Successfully exported RockwellConfig (SD + XML) +[13:25:12] Processing UDT: RockwellTag... +[13:25:12] Exporting RockwellTag as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,145 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: RockwellTag exported successfully +[13:25:12] 2025-08-23 13:25:12,146 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - RockwellTag exported successfully +[13:25:12] 2025-08-23 13:25:12,156 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: RockwellTag exported successfully +[13:25:12] 2025-08-23 13:25:12,157 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - RockwellTag exported successfully +[13:25:12] ✓ Successfully exported RockwellTag (SD + XML) +[13:25:12] Processing UDT: UDT Motor Data to SV... +[13:25:12] Exporting UDT Motor Data to SV as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,171 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Motor Data to SV exported successfully +[13:25:12] 2025-08-23 13:25:12,172 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Motor Data to SV exported successfully +[13:25:12] 2025-08-23 13:25:12,183 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Motor Data to SV exported successfully +[13:25:12] 2025-08-23 13:25:12,183 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Motor Data to SV exported successfully +[13:25:12] ✓ Successfully exported UDT Motor Data to SV (SD + XML) +[13:25:12] Processing UDT: PopUp_U... +[13:25:12] Exporting PopUp_U as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,207 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: PopUp_U exported successfully +[13:25:12] 2025-08-23 13:25:12,208 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PopUp_U exported successfully +[13:25:12] 2025-08-23 13:25:12,230 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: PopUp_U exported successfully +[13:25:12] 2025-08-23 13:25:12,231 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PopUp_U exported successfully +[13:25:12] ✓ Successfully exported PopUp_U (SD + XML) +[13:25:12] Processing UDT: Visibility_BottlesCounter_U... +[13:25:12] Exporting Visibility_BottlesCounter_U as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,257 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Visibility_BottlesCounter_U exported successfully +[13:25:12] 2025-08-23 13:25:12,258 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Visibility_BottlesCounter_U exported successfully +[13:25:12] 2025-08-23 13:25:12,276 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Visibility_BottlesCounter_U exported successfully +[13:25:12] 2025-08-23 13:25:12,276 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Visibility_BottlesCounter_U exported successfully +[13:25:12] ✓ Successfully exported Visibility_BottlesCounter_U (SD + XML) +[13:25:12] Processing UDT: UDT COM Read from SV... +[13:25:12] Exporting UDT COM Read from SV as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,305 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Read from SV exported successfully +[13:25:12] 2025-08-23 13:25:12,306 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Read from SV exported successfully +[13:25:12] 2025-08-23 13:25:12,349 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Read from SV exported successfully +[13:25:12] 2025-08-23 13:25:12,349 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Read from SV exported successfully +[13:25:12] ✓ Successfully exported UDT COM Read from SV (SD + XML) +[13:25:12] Processing UDT: UDT COM Write to SV... +[13:25:12] Exporting UDT COM Write to SV as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,444 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Write to SV exported successfully +[13:25:12] 2025-08-23 13:25:12,445 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Write to SV exported successfully +[13:25:12] 2025-08-23 13:25:12,514 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Write to SV exported successfully +[13:25:12] 2025-08-23 13:25:12,515 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Write to SV exported successfully +[13:25:12] ✓ Successfully exported UDT COM Write to SV (SD + XML) +[13:25:12] Processing UDT: UDT Pneumatic Guide... +[13:25:12] Exporting UDT Pneumatic Guide as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,531 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Pneumatic Guide exported successfully +[13:25:12] 2025-08-23 13:25:12,532 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Pneumatic Guide exported successfully +[13:25:12] 2025-08-23 13:25:12,545 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Pneumatic Guide exported successfully +[13:25:12] 2025-08-23 13:25:12,546 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Pneumatic Guide exported successfully +[13:25:12] ✓ Successfully exported UDT Pneumatic Guide (SD + XML) +[13:25:12] Processing UDT: Motor Guide Main... +[13:25:12] Exporting Motor Guide Main as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,572 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Guide Main exported successfully +[13:25:12] 2025-08-23 13:25:12,573 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Guide Main exported successfully +[13:25:12] 2025-08-23 13:25:12,587 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Guide Main exported successfully +[13:25:12] 2025-08-23 13:25:12,588 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Guide Main exported successfully +[13:25:12] ✓ Successfully exported Motor Guide Main (SD + XML) +[13:25:12] Processing UDT: Motor Guide Struct... +[13:25:12] Exporting Motor Guide Struct as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,606 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Guide Struct exported successfully +[13:25:12] 2025-08-23 13:25:12,607 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Guide Struct exported successfully +[13:25:12] 2025-08-23 13:25:12,623 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Guide Struct exported successfully +[13:25:12] 2025-08-23 13:25:12,624 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Guide Struct exported successfully +[13:25:12] ✓ Successfully exported Motor Guide Struct (SD + XML) +[13:25:12] Processing UDT: Motor Data... +[13:25:12] Exporting Motor Data as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,644 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Data exported successfully +[13:25:12] 2025-08-23 13:25:12,645 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Data exported successfully +[13:25:12] 2025-08-23 13:25:12,658 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Data exported successfully +[13:25:12] 2025-08-23 13:25:12,659 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Data exported successfully +[13:25:12] ✓ Successfully exported Motor Data (SD + XML) +[13:25:12] Processing UDT: Motor Change Size... +[13:25:12] Exporting Motor Change Size as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,677 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Change Size exported successfully +[13:25:12] 2025-08-23 13:25:12,678 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Change Size exported successfully +[13:25:12] 2025-08-23 13:25:12,690 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Motor Change Size exported successfully +[13:25:12] 2025-08-23 13:25:12,691 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Motor Change Size exported successfully +[13:25:12] ✓ Successfully exported Motor Change Size (SD + XML) +[13:25:12] Processing UDT: Bottles+/-... +[13:25:12] Exporting Bottles+/- as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,705 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Bottles+/- exported successfully +[13:25:12] 2025-08-23 13:25:12,706 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Bottles+/- exported successfully +[13:25:12] 2025-08-23 13:25:12,722 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Bottles+/- exported successfully +[13:25:12] 2025-08-23 13:25:12,723 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Bottles+/- exported successfully +[13:25:12] ✓ Successfully exported Bottles+/- (SD + XML) +[13:25:12] Processing UDT: Alm... +[13:25:12] Exporting Alm as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,742 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Alm exported successfully +[13:25:12] 2025-08-23 13:25:12,743 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Alm exported successfully +[13:25:12] 2025-08-23 13:25:12,756 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Alm exported successfully +[13:25:12] 2025-08-23 13:25:12,757 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Alm exported successfully +[13:25:12] ✓ Successfully exported Alm (SD + XML) +[13:25:12] Processing UDT: GW_ControlWord... +[13:25:12] Exporting GW_ControlWord as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,772 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GW_ControlWord exported successfully +[13:25:12] 2025-08-23 13:25:12,773 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GW_ControlWord exported successfully +[13:25:12] 2025-08-23 13:25:12,784 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GW_ControlWord exported successfully +[13:25:12] 2025-08-23 13:25:12,785 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GW_ControlWord exported successfully +[13:25:12] ✓ Successfully exported GW_ControlWord (SD + XML) +[13:25:12] Processing UDT: GW_StatusWord... +[13:25:12] Exporting GW_StatusWord as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,800 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GW_StatusWord exported successfully +[13:25:12] 2025-08-23 13:25:12,801 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GW_StatusWord exported successfully +[13:25:12] 2025-08-23 13:25:12,815 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GW_StatusWord exported successfully +[13:25:12] 2025-08-23 13:25:12,816 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GW_StatusWord exported successfully +[13:25:12] ✓ Successfully exported GW_StatusWord (SD + XML) +[13:25:12] Processing UDT: GlobalDataTo_U... +[13:25:12] Exporting GlobalDataTo_U as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,833 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GlobalDataTo_U exported successfully +[13:25:12] 2025-08-23 13:25:12,834 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GlobalDataTo_U exported successfully +[13:25:12] 2025-08-23 13:25:12,848 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GlobalDataTo_U exported successfully +[13:25:12] 2025-08-23 13:25:12,849 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GlobalDataTo_U exported successfully +[13:25:12] ✓ Successfully exported GlobalDataTo_U (SD + XML) +[13:25:12] Processing UDT: AS_TCON_setup... +[13:25:12] Exporting AS_TCON_setup as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,865 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: AS_TCON_setup exported successfully +[13:25:12] 2025-08-23 13:25:12,865 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - AS_TCON_setup exported successfully +[13:25:12] 2025-08-23 13:25:12,878 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: AS_TCON_setup exported successfully +[13:25:12] 2025-08-23 13:25:12,879 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - AS_TCON_setup exported successfully +[13:25:12] ✓ Successfully exported AS_TCON_setup (SD + XML) +[13:25:12] Processing UDT: AUTEFA_message_header... +[13:25:12] Exporting AUTEFA_message_header as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,895 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: AUTEFA_message_header exported successfully +[13:25:12] 2025-08-23 13:25:12,896 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - AUTEFA_message_header exported successfully +[13:25:12] 2025-08-23 13:25:12,910 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: AUTEFA_message_header exported successfully +[13:25:12] 2025-08-23 13:25:12,911 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - AUTEFA_message_header exported successfully +[13:25:12] ✓ Successfully exported AUTEFA_message_header (SD + XML) +[13:25:12] Processing UDT: Client_ID... +[13:25:12] Exporting Client_ID as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,929 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Client_ID exported successfully +[13:25:12] 2025-08-23 13:25:12,930 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Client_ID exported successfully +[13:25:12] 2025-08-23 13:25:12,947 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Client_ID exported successfully +[13:25:12] 2025-08-23 13:25:12,948 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Client_ID exported successfully +[13:25:12] ✓ Successfully exported Client_ID (SD + XML) +[13:25:12] Processing UDT: product_Data... +[13:25:12] Exporting product_Data as SIMATIC SD... +[13:25:12] 2025-08-23 13:25:12,964 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: product_Data exported successfully +[13:25:12] 2025-08-23 13:25:12,966 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - product_Data exported successfully +[13:25:12] 2025-08-23 13:25:12,980 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: product_Data exported successfully +[13:25:12] 2025-08-23 13:25:12,981 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - product_Data exported successfully +[13:25:12] ✓ Successfully exported product_Data (SD + XML) +[13:25:12] Processing UDT: Rcv_from_SC_Data_from_TLx_only_TTx_com... +[13:25:12] Exporting Rcv_from_SC_Data_from_TLx_only_TTx_com as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,006 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Rcv_from_SC_Data_from_TLx_only_TTx_com exported successfully +[13:25:13] 2025-08-23 13:25:13,007 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Rcv_from_SC_Data_from_TLx_only_TTx_com exported successfully +[13:25:13] 2025-08-23 13:25:13,027 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Rcv_from_SC_Data_from_TLx_only_TTx_com exported successfully +[13:25:13] 2025-08-23 13:25:13,027 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Rcv_from_SC_Data_from_TLx_only_TTx_com exported successfully +[13:25:13] ✓ Successfully exported Rcv_from_SC_Data_from_TLx_only_TTx_com (SD + XML) +[13:25:13] Processing UDT: Send_to_SC_Data_from_TTx_only_TTx_com... +[13:25:13] Exporting Send_to_SC_Data_from_TTx_only_TTx_com as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,050 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Send_to_SC_Data_from_TTx_only_TTx_com exported successfully +[13:25:13] 2025-08-23 13:25:13,052 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Send_to_SC_Data_from_TTx_only_TTx_com exported successfully +[13:25:13] 2025-08-23 13:25:13,075 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Send_to_SC_Data_from_TTx_only_TTx_com exported successfully +[13:25:13] 2025-08-23 13:25:13,076 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Send_to_SC_Data_from_TTx_only_TTx_com exported successfully +[13:25:13] ✓ Successfully exported Send_to_SC_Data_from_TTx_only_TTx_com (SD + XML) +[13:25:13] Processing UDT: Tg005_Life_Counter... +[13:25:13] Exporting Tg005_Life_Counter as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,099 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg005_Life_Counter exported successfully +[13:25:13] 2025-08-23 13:25:13,100 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg005_Life_Counter exported successfully +[13:25:13] 2025-08-23 13:25:13,120 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg005_Life_Counter exported successfully +[13:25:13] 2025-08-23 13:25:13,121 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg005_Life_Counter exported successfully +[13:25:13] ✓ Successfully exported Tg005_Life_Counter (SD + XML) +[13:25:13] Processing UDT: Tg006_Life_Counter_ACK... +[13:25:13] Exporting Tg006_Life_Counter_ACK as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,139 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg006_Life_Counter_ACK exported successfully +[13:25:13] 2025-08-23 13:25:13,139 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg006_Life_Counter_ACK exported successfully +[13:25:13] 2025-08-23 13:25:13,155 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg006_Life_Counter_ACK exported successfully +[13:25:13] 2025-08-23 13:25:13,155 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg006_Life_Counter_ACK exported successfully +[13:25:13] ✓ Successfully exported Tg006_Life_Counter_ACK (SD + XML) +[13:25:13] Processing UDT: Tg010_Production_Info... +[13:25:13] Exporting Tg010_Production_Info as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,175 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg010_Production_Info exported successfully +[13:25:13] 2025-08-23 13:25:13,175 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg010_Production_Info exported successfully +[13:25:13] 2025-08-23 13:25:13,188 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg010_Production_Info exported successfully +[13:25:13] 2025-08-23 13:25:13,188 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg010_Production_Info exported successfully +[13:25:13] ✓ Successfully exported Tg010_Production_Info (SD + XML) +[13:25:13] Processing UDT: Tg020_Request_Change_Prod_Line... +[13:25:13] Exporting Tg020_Request_Change_Prod_Line as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,211 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg020_Request_Change_Prod_Line exported successfully +[13:25:13] 2025-08-23 13:25:13,212 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg020_Request_Change_Prod_Line exported successfully +[13:25:13] 2025-08-23 13:25:13,225 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg020_Request_Change_Prod_Line exported successfully +[13:25:13] 2025-08-23 13:25:13,226 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg020_Request_Change_Prod_Line exported successfully +[13:25:13] ✓ Successfully exported Tg020_Request_Change_Prod_Line (SD + XML) +[13:25:13] Processing UDT: Tg021_Confirm_Change_Prod_Line... +[13:25:13] Exporting Tg021_Confirm_Change_Prod_Line as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,250 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg021_Confirm_Change_Prod_Line exported successfully +[13:25:13] 2025-08-23 13:25:13,251 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg021_Confirm_Change_Prod_Line exported successfully +[13:25:13] 2025-08-23 13:25:13,271 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg021_Confirm_Change_Prod_Line exported successfully +[13:25:13] 2025-08-23 13:25:13,272 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg021_Confirm_Change_Prod_Line exported successfully +[13:25:13] ✓ Successfully exported Tg021_Confirm_Change_Prod_Line (SD + XML) +[13:25:13] Processing UDT: Tg030_End_Of_Batch... +[13:25:13] Exporting Tg030_End_Of_Batch as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,299 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg030_End_Of_Batch exported successfully +[13:25:13] 2025-08-23 13:25:13,300 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg030_End_Of_Batch exported successfully +[13:25:13] 2025-08-23 13:25:13,331 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg030_End_Of_Batch exported successfully +[13:25:13] 2025-08-23 13:25:13,345 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg030_End_Of_Batch exported successfully +[13:25:13] ✓ Successfully exported Tg030_End_Of_Batch (SD + XML) +[13:25:13] Processing UDT: Tg040_Line_Speed_overall... +[13:25:13] Exporting Tg040_Line_Speed_overall as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,373 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg040_Line_Speed_overall exported successfully +[13:25:13] 2025-08-23 13:25:13,375 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg040_Line_Speed_overall exported successfully +[13:25:13] 2025-08-23 13:25:13,398 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg040_Line_Speed_overall exported successfully +[13:25:13] 2025-08-23 13:25:13,400 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg040_Line_Speed_overall exported successfully +[13:25:13] ✓ Successfully exported Tg040_Line_Speed_overall (SD + XML) +[13:25:13] Processing UDT: Tg040_Line_Speed_Update... +[13:25:13] Exporting Tg040_Line_Speed_Update as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,426 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg040_Line_Speed_Update exported successfully +[13:25:13] 2025-08-23 13:25:13,427 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg040_Line_Speed_Update exported successfully +[13:25:13] 2025-08-23 13:25:13,452 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg040_Line_Speed_Update exported successfully +[13:25:13] 2025-08-23 13:25:13,453 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg040_Line_Speed_Update exported successfully +[13:25:13] ✓ Successfully exported Tg040_Line_Speed_Update (SD + XML) +[13:25:13] Processing UDT: Tg050_Activate_Next_Batch... +[13:25:13] Exporting Tg050_Activate_Next_Batch as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,478 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg050_Activate_Next_Batch exported successfully +[13:25:13] 2025-08-23 13:25:13,479 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg050_Activate_Next_Batch exported successfully +[13:25:13] 2025-08-23 13:25:13,496 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg050_Activate_Next_Batch exported successfully +[13:25:13] 2025-08-23 13:25:13,497 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg050_Activate_Next_Batch exported successfully +[13:25:13] ✓ Successfully exported Tg050_Activate_Next_Batch (SD + XML) +[13:25:13] Processing UDT: Tg060_Request_Bottles_Unloaded... +[13:25:13] Exporting Tg060_Request_Bottles_Unloaded as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,520 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg060_Request_Bottles_Unloaded exported successfully +[13:25:13] 2025-08-23 13:25:13,520 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg060_Request_Bottles_Unloaded exported successfully +[13:25:13] 2025-08-23 13:25:13,535 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg060_Request_Bottles_Unloaded exported successfully +[13:25:13] 2025-08-23 13:25:13,536 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg060_Request_Bottles_Unloaded exported successfully +[13:25:13] ✓ Successfully exported Tg060_Request_Bottles_Unloaded (SD + XML) +[13:25:13] Processing UDT: Tg061_Bottles_Unloaded... +[13:25:13] Exporting Tg061_Bottles_Unloaded as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,565 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg061_Bottles_Unloaded exported successfully +[13:25:13] 2025-08-23 13:25:13,566 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg061_Bottles_Unloaded exported successfully +[13:25:13] 2025-08-23 13:25:13,589 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Tg061_Bottles_Unloaded exported successfully +[13:25:13] 2025-08-23 13:25:13,590 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Tg061_Bottles_Unloaded exported successfully +[13:25:13] ✓ Successfully exported Tg061_Bottles_Unloaded (SD + XML) +[13:25:13] Processing UDT: TX_Time... +[13:25:13] Exporting TX_Time as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,612 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: TX_Time exported successfully +[13:25:13] 2025-08-23 13:25:13,613 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - TX_Time exported successfully +[13:25:13] 2025-08-23 13:25:13,627 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: TX_Time exported successfully +[13:25:13] 2025-08-23 13:25:13,627 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - TX_Time exported successfully +[13:25:13] ✓ Successfully exported TX_Time (SD + XML) +[13:25:13] Processing UDT: GlobalDataFrom_U... +[13:25:13] Exporting GlobalDataFrom_U as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,645 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GlobalDataFrom_U exported successfully +[13:25:13] 2025-08-23 13:25:13,645 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GlobalDataFrom_U exported successfully +[13:25:13] 2025-08-23 13:25:13,659 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: GlobalDataFrom_U exported successfully +[13:25:13] 2025-08-23 13:25:13,660 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - GlobalDataFrom_U exported successfully +[13:25:13] ✓ Successfully exported GlobalDataFrom_U (SD + XML) +[13:25:13] Processing UDT: Bool16_U... +[13:25:13] Exporting Bool16_U as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,675 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Bool16_U exported successfully +[13:25:13] 2025-08-23 13:25:13,676 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Bool16_U exported successfully +[13:25:13] 2025-08-23 13:25:13,686 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Bool16_U exported successfully +[13:25:13] 2025-08-23 13:25:13,687 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Bool16_U exported successfully +[13:25:13] ✓ Successfully exported Bool16_U (SD + XML) +[13:25:13] Processing UDT: Bool32_U... +[13:25:13] Exporting Bool32_U as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,701 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Bool32_U exported successfully +[13:25:13] 2025-08-23 13:25:13,702 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Bool32_U exported successfully +[13:25:13] 2025-08-23 13:25:13,714 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Bool32_U exported successfully +[13:25:13] 2025-08-23 13:25:13,715 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Bool32_U exported successfully +[13:25:13] ✓ Successfully exported Bool32_U (SD + XML) +[13:25:13] Processing UDT: UDT COM Merger - LineToMerger... +[13:25:13] Exporting UDT COM Merger - LineToMerger as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,730 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Merger - LineToMerger exported successfully +[13:25:13] 2025-08-23 13:25:13,731 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Merger - LineToMerger exported successfully +[13:25:13] 2025-08-23 13:25:13,745 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Merger - LineToMerger exported successfully +[13:25:13] 2025-08-23 13:25:13,745 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Merger - LineToMerger exported successfully +[13:25:13] ✓ Successfully exported UDT COM Merger - LineToMerger (SD + XML) +[13:25:13] Processing UDT: UDT COM Merger - MergerToLine... +[13:25:13] Exporting UDT COM Merger - MergerToLine as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,763 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Merger - MergerToLine exported successfully +[13:25:13] 2025-08-23 13:25:13,763 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Merger - MergerToLine exported successfully +[13:25:13] 2025-08-23 13:25:13,777 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Merger - MergerToLine exported successfully +[13:25:13] 2025-08-23 13:25:13,778 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Merger - MergerToLine exported successfully +[13:25:13] ✓ Successfully exported UDT COM Merger - MergerToLine (SD + XML) +[13:25:13] Processing UDT: UDT COM from Henkel... +[13:25:13] Exporting UDT COM from Henkel as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,793 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM from Henkel exported successfully +[13:25:13] 2025-08-23 13:25:13,794 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM from Henkel exported successfully +[13:25:13] 2025-08-23 13:25:13,807 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM from Henkel exported successfully +[13:25:13] 2025-08-23 13:25:13,808 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM from Henkel exported successfully +[13:25:13] ✓ Successfully exported UDT COM from Henkel (SD + XML) +[13:25:13] Processing UDT: UDT COM to Henkel... +[13:25:13] Exporting UDT COM to Henkel as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,822 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM to Henkel exported successfully +[13:25:13] 2025-08-23 13:25:13,822 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM to Henkel exported successfully +[13:25:13] 2025-08-23 13:25:13,835 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM to Henkel exported successfully +[13:25:13] 2025-08-23 13:25:13,835 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM to Henkel exported successfully +[13:25:13] ✓ Successfully exported UDT COM to Henkel (SD + XML) +[13:25:13] Processing UDT: FromHenkel_U... +[13:25:13] Exporting FromHenkel_U as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,855 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: FromHenkel_U exported successfully +[13:25:13] 2025-08-23 13:25:13,855 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - FromHenkel_U exported successfully +[13:25:13] 2025-08-23 13:25:13,867 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: FromHenkel_U exported successfully +[13:25:13] 2025-08-23 13:25:13,868 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - FromHenkel_U exported successfully +[13:25:13] ✓ Successfully exported FromHenkel_U (SD + XML) +[13:25:13] Processing UDT: ToHenkel_U... +[13:25:13] Exporting ToHenkel_U as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,887 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ToHenkel_U exported successfully +[13:25:13] 2025-08-23 13:25:13,888 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ToHenkel_U exported successfully +[13:25:13] 2025-08-23 13:25:13,902 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ToHenkel_U exported successfully +[13:25:13] 2025-08-23 13:25:13,902 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ToHenkel_U exported successfully +[13:25:13] ✓ Successfully exported ToHenkel_U (SD + XML) +[13:25:13] Processing UDT: Array64di... +[13:25:13] Exporting Array64di as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,917 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Array64di exported successfully +[13:25:13] 2025-08-23 13:25:13,918 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Array64di exported successfully +[13:25:13] 2025-08-23 13:25:13,931 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: Array64di exported successfully +[13:25:13] 2025-08-23 13:25:13,933 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - Array64di exported successfully +[13:25:13] ✓ Successfully exported Array64di (SD + XML) +[13:25:13] Processing UDT: CountersSt_U... +[13:25:13] Exporting CountersSt_U as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,948 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: CountersSt_U exported successfully +[13:25:13] 2025-08-23 13:25:13,949 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - CountersSt_U exported successfully +[13:25:13] 2025-08-23 13:25:13,963 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: CountersSt_U exported successfully +[13:25:13] 2025-08-23 13:25:13,964 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - CountersSt_U exported successfully +[13:25:13] ✓ Successfully exported CountersSt_U (SD + XML) +[13:25:13] Processing UDT: FromHenkelv2_U... +[13:25:13] Exporting FromHenkelv2_U as SIMATIC SD... +[13:25:13] 2025-08-23 13:25:13,992 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: FromHenkelv2_U exported successfully +[13:25:13] 2025-08-23 13:25:13,992 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - FromHenkelv2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,011 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: FromHenkelv2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,012 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - FromHenkelv2_U exported successfully +[13:25:14] ✓ Successfully exported FromHenkelv2_U (SD + XML) +[13:25:14] Processing UDT: ToHenkelv2_U... +[13:25:14] Exporting ToHenkelv2_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,033 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ToHenkelv2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,034 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ToHenkelv2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,053 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ToHenkelv2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,053 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ToHenkelv2_U exported successfully +[13:25:14] ✓ Successfully exported ToHenkelv2_U (SD + XML) +[13:25:14] Processing UDT: UDT QE Alarm List... +[13:25:14] Exporting UDT QE Alarm List as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,083 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT QE Alarm List exported successfully +[13:25:14] 2025-08-23 13:25:14,084 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT QE Alarm List exported successfully +[13:25:14] 2025-08-23 13:25:14,110 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT QE Alarm List exported successfully +[13:25:14] 2025-08-23 13:25:14,111 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT QE Alarm List exported successfully +[13:25:14] ✓ Successfully exported UDT QE Alarm List (SD + XML) +[13:25:14] Processing UDT: UDT COM to other QE... +[13:25:14] Exporting UDT COM to other QE as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,128 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM to other QE exported successfully +[13:25:14] 2025-08-23 13:25:14,128 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM to other QE exported successfully +[13:25:14] 2025-08-23 13:25:14,144 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM to other QE exported successfully +[13:25:14] 2025-08-23 13:25:14,145 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM to other QE exported successfully +[13:25:14] ✓ Successfully exported UDT COM to other QE (SD + XML) +[13:25:14] Processing UDT: UDT COM from other QE... +[13:25:14] Exporting UDT COM from other QE as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,170 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM from other QE exported successfully +[13:25:14] 2025-08-23 13:25:14,171 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM from other QE exported successfully +[13:25:14] 2025-08-23 13:25:14,189 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM from other QE exported successfully +[13:25:14] 2025-08-23 13:25:14,190 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM from other QE exported successfully +[13:25:14] ✓ Successfully exported UDT COM from other QE (SD + XML) +[13:25:14] Processing UDT: UDT Motor/PH Data... +[13:25:14] Exporting UDT Motor/PH Data as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,206 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Motor/PH Data exported successfully +[13:25:14] 2025-08-23 13:25:14,207 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Motor/PH Data exported successfully +[13:25:14] 2025-08-23 13:25:14,220 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Motor/PH Data exported successfully +[13:25:14] 2025-08-23 13:25:14,220 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Motor/PH Data exported successfully +[13:25:14] ✓ Successfully exported UDT Motor/PH Data (SD + XML) +[13:25:14] Processing UDT: UDT Alpla Data... +[13:25:14] Exporting UDT Alpla Data as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,236 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Alpla Data exported successfully +[13:25:14] 2025-08-23 13:25:14,237 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Alpla Data exported successfully +[13:25:14] 2025-08-23 13:25:14,252 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Alpla Data exported successfully +[13:25:14] 2025-08-23 13:25:14,253 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Alpla Data exported successfully +[13:25:14] ✓ Successfully exported UDT Alpla Data (SD + XML) +[13:25:14] Processing UDT: FromSvStatusM_U... +[13:25:14] Exporting FromSvStatusM_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,271 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: FromSvStatusM_U exported successfully +[13:25:14] 2025-08-23 13:25:14,271 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - FromSvStatusM_U exported successfully +[13:25:14] 2025-08-23 13:25:14,285 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: FromSvStatusM_U exported successfully +[13:25:14] 2025-08-23 13:25:14,286 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - FromSvStatusM_U exported successfully +[13:25:14] ✓ Successfully exported FromSvStatusM_U (SD + XML) +[13:25:14] Processing UDT: STwSt_U... +[13:25:14] Exporting STwSt_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,305 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: STwSt_U exported successfully +[13:25:14] 2025-08-23 13:25:14,306 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - STwSt_U exported successfully +[13:25:14] 2025-08-23 13:25:14,325 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: STwSt_U exported successfully +[13:25:14] 2025-08-23 13:25:14,326 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - STwSt_U exported successfully +[13:25:14] ✓ Successfully exported STwSt_U (SD + XML) +[13:25:14] Processing UDT: UDT COM Conv Motor Setup... +[13:25:14] Exporting UDT COM Conv Motor Setup as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,351 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Conv Motor Setup exported successfully +[13:25:14] 2025-08-23 13:25:14,351 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Conv Motor Setup exported successfully +[13:25:14] 2025-08-23 13:25:14,364 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM Conv Motor Setup exported successfully +[13:25:14] 2025-08-23 13:25:14,365 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM Conv Motor Setup exported successfully +[13:25:14] ✓ Successfully exported UDT COM Conv Motor Setup (SD + XML) +[13:25:14] Processing UDT: UDT COM to Alpla... +[13:25:14] Exporting UDT COM to Alpla as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,388 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM to Alpla exported successfully +[13:25:14] 2025-08-23 13:25:14,390 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM to Alpla exported successfully +[13:25:14] 2025-08-23 13:25:14,410 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT COM to Alpla exported successfully +[13:25:14] 2025-08-23 13:25:14,411 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT COM to Alpla exported successfully +[13:25:14] ✓ Successfully exported UDT COM to Alpla (SD + XML) +[13:25:14] Processing UDT: StSku_U... +[13:25:14] Exporting StSku_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,434 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: StSku_U exported successfully +[13:25:14] 2025-08-23 13:25:14,436 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - StSku_U exported successfully +[13:25:14] 2025-08-23 13:25:14,455 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: StSku_U exported successfully +[13:25:14] 2025-08-23 13:25:14,456 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - StSku_U exported successfully +[13:25:14] ✓ Successfully exported StSku_U (SD + XML) +[13:25:14] Processing UDT: MotorData_U... +[13:25:14] Exporting MotorData_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,475 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: MotorData_U exported successfully +[13:25:14] 2025-08-23 13:25:14,476 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - MotorData_U exported successfully +[13:25:14] 2025-08-23 13:25:14,493 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: MotorData_U exported successfully +[13:25:14] 2025-08-23 13:25:14,493 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - MotorData_U exported successfully +[13:25:14] ✓ Successfully exported MotorData_U (SD + XML) +[13:25:14] Processing UDT: MergerAlarmsW1_U... +[13:25:14] Exporting MergerAlarmsW1_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,510 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: MergerAlarmsW1_U exported successfully +[13:25:14] 2025-08-23 13:25:14,511 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - MergerAlarmsW1_U exported successfully +[13:25:14] 2025-08-23 13:25:14,527 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: MergerAlarmsW1_U exported successfully +[13:25:14] 2025-08-23 13:25:14,527 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - MergerAlarmsW1_U exported successfully +[13:25:14] ✓ Successfully exported MergerAlarmsW1_U (SD + XML) +[13:25:14] Processing UDT: MergerAlarmsW2_U... +[13:25:14] Exporting MergerAlarmsW2_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,552 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: MergerAlarmsW2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,553 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - MergerAlarmsW2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,570 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: MergerAlarmsW2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,571 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - MergerAlarmsW2_U exported successfully +[13:25:14] ✓ Successfully exported MergerAlarmsW2_U (SD + XML) +[13:25:14] Processing UDT: PneumaticGuides_U... +[13:25:14] Exporting PneumaticGuides_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,595 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: PneumaticGuides_U exported successfully +[13:25:14] 2025-08-23 13:25:14,597 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PneumaticGuides_U exported successfully +[13:25:14] 2025-08-23 13:25:14,622 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: PneumaticGuides_U exported successfully +[13:25:14] 2025-08-23 13:25:14,624 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PneumaticGuides_U exported successfully +[13:25:14] ✓ Successfully exported PneumaticGuides_U (SD + XML) +[13:25:14] Processing UDT: StAlarmMotorGuide_U... +[13:25:14] Exporting StAlarmMotorGuide_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,654 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: StAlarmMotorGuide_U exported successfully +[13:25:14] 2025-08-23 13:25:14,655 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - StAlarmMotorGuide_U exported successfully +[13:25:14] 2025-08-23 13:25:14,674 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: StAlarmMotorGuide_U exported successfully +[13:25:14] 2025-08-23 13:25:14,676 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - StAlarmMotorGuide_U exported successfully +[13:25:14] ✓ Successfully exported StAlarmMotorGuide_U (SD + XML) +[13:25:14] Processing UDT: DividerAlarms_U... +[13:25:14] Exporting DividerAlarms_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,708 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: DividerAlarms_U exported successfully +[13:25:14] 2025-08-23 13:25:14,708 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - DividerAlarms_U exported successfully +[13:25:14] 2025-08-23 13:25:14,732 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: DividerAlarms_U exported successfully +[13:25:14] 2025-08-23 13:25:14,732 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - DividerAlarms_U exported successfully +[13:25:14] ✓ Successfully exported DividerAlarms_U (SD + XML) +[13:25:14] Processing UDT: BatchLast_U... +[13:25:14] Exporting BatchLast_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,764 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: BatchLast_U exported successfully +[13:25:14] 2025-08-23 13:25:14,765 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - BatchLast_U exported successfully +[13:25:14] 2025-08-23 13:25:14,784 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: BatchLast_U exported successfully +[13:25:14] 2025-08-23 13:25:14,787 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - BatchLast_U exported successfully +[13:25:14] ✓ Successfully exported BatchLast_U (SD + XML) +[13:25:14] Processing UDT: BottleTurnerAlarmsW1_U... +[13:25:14] Exporting BottleTurnerAlarmsW1_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,810 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: BottleTurnerAlarmsW1_U exported successfully +[13:25:14] 2025-08-23 13:25:14,812 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - BottleTurnerAlarmsW1_U exported successfully +[13:25:14] 2025-08-23 13:25:14,830 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: BottleTurnerAlarmsW1_U exported successfully +[13:25:14] 2025-08-23 13:25:14,831 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - BottleTurnerAlarmsW1_U exported successfully +[13:25:14] ✓ Successfully exported BottleTurnerAlarmsW1_U (SD + XML) +[13:25:14] Processing UDT: BottleTurnerAlarmsW2_U... +[13:25:14] Exporting BottleTurnerAlarmsW2_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,854 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: BottleTurnerAlarmsW2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,855 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - BottleTurnerAlarmsW2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,870 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: BottleTurnerAlarmsW2_U exported successfully +[13:25:14] 2025-08-23 13:25:14,871 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - BottleTurnerAlarmsW2_U exported successfully +[13:25:14] ✓ Successfully exported BottleTurnerAlarmsW2_U (SD + XML) +[13:25:14] Processing UDT: CombinerAlarms_U... +[13:25:14] Exporting CombinerAlarms_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,889 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: CombinerAlarms_U exported successfully +[13:25:14] 2025-08-23 13:25:14,890 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - CombinerAlarms_U exported successfully +[13:25:14] 2025-08-23 13:25:14,905 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: CombinerAlarms_U exported successfully +[13:25:14] 2025-08-23 13:25:14,906 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - CombinerAlarms_U exported successfully +[13:25:14] ✓ Successfully exported CombinerAlarms_U (SD + XML) +[13:25:14] Processing UDT: ECAlarm_U... +[13:25:14] Exporting ECAlarm_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,924 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ECAlarm_U exported successfully +[13:25:14] 2025-08-23 13:25:14,925 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ECAlarm_U exported successfully +[13:25:14] 2025-08-23 13:25:14,939 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ECAlarm_U exported successfully +[13:25:14] 2025-08-23 13:25:14,940 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ECAlarm_U exported successfully +[13:25:14] ✓ Successfully exported ECAlarm_U (SD + XML) +[13:25:14] Processing UDT: WarningSt_U... +[13:25:14] Exporting WarningSt_U as SIMATIC SD... +[13:25:14] 2025-08-23 13:25:14,961 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: WarningSt_U exported successfully +[13:25:14] 2025-08-23 13:25:14,961 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - WarningSt_U exported successfully +[13:25:14] 2025-08-23 13:25:14,976 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: WarningSt_U exported successfully +[13:25:14] 2025-08-23 13:25:14,977 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - WarningSt_U exported successfully +[13:25:14] ✓ Successfully exported WarningSt_U (SD + XML) +[13:25:14] Processing UDT: STw_ToSVSt_U... +[13:25:14] Exporting STw_ToSVSt_U as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,004 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: STw_ToSVSt_U exported successfully +[13:25:15] 2025-08-23 13:25:15,005 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - STw_ToSVSt_U exported successfully +[13:25:15] 2025-08-23 13:25:15,021 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: STw_ToSVSt_U exported successfully +[13:25:15] 2025-08-23 13:25:15,022 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - STw_ToSVSt_U exported successfully +[13:25:15] ✓ Successfully exported STw_ToSVSt_U (SD + XML) +[13:25:15] Processing UDT: LoweratorAlarms_U... +[13:25:15] Exporting LoweratorAlarms_U as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,044 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: LoweratorAlarms_U exported successfully +[13:25:15] 2025-08-23 13:25:15,045 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - LoweratorAlarms_U exported successfully +[13:25:15] 2025-08-23 13:25:15,060 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: LoweratorAlarms_U exported successfully +[13:25:15] 2025-08-23 13:25:15,061 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - LoweratorAlarms_U exported successfully +[13:25:15] ✓ Successfully exported LoweratorAlarms_U (SD + XML) +[13:25:15] Processing UDT: ElevatorAlarms_U... +[13:25:15] Exporting ElevatorAlarms_U as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,081 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ElevatorAlarms_U exported successfully +[13:25:15] 2025-08-23 13:25:15,081 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ElevatorAlarms_U exported successfully +[13:25:15] 2025-08-23 13:25:15,094 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: ElevatorAlarms_U exported successfully +[13:25:15] 2025-08-23 13:25:15,095 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - ElevatorAlarms_U exported successfully +[13:25:15] ✓ Successfully exported ElevatorAlarms_U (SD + XML) +[13:25:15] Processing UDT: UDT Automatic Guide Alarms... +[13:25:15] Exporting UDT Automatic Guide Alarms as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,112 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Automatic Guide Alarms exported successfully +[13:25:15] 2025-08-23 13:25:15,113 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Automatic Guide Alarms exported successfully +[13:25:15] 2025-08-23 13:25:15,126 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Automatic Guide Alarms exported successfully +[13:25:15] 2025-08-23 13:25:15,127 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Automatic Guide Alarms exported successfully +[13:25:15] ✓ Successfully exported UDT Automatic Guide Alarms (SD + XML) +[13:25:15] Processing UDT: UDT Alarm List... +[13:25:15] Exporting UDT Alarm List as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,144 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Alarm List exported successfully +[13:25:15] 2025-08-23 13:25:15,144 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Alarm List exported successfully +[13:25:15] 2025-08-23 13:25:15,158 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type: UDT Alarm List exported successfully +[13:25:15] 2025-08-23 13:25:15,158 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - UDT Alarm List exported successfully +[13:25:15] ✓ Successfully exported UDT Alarm List (SD + XML) +[13:25:15] Processing UDT: SV_State_V2... +[13:25:15] Exporting SV_State_V2 as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,162 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type SV_State_V2 is know how protected, so ignore this +[13:25:15] 2025-08-23 13:25:15,163 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - SV_State_V2 exported successfully +[13:25:15] 2025-08-23 13:25:15,165 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type SV_State_V2 is know how protected, so ignore this +[13:25:15] 2025-08-23 13:25:15,166 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - SV_State_V2 exported successfully +[13:25:15] ✓ Successfully exported SV_State_V2 (SD + XML) +[13:25:15] Processing UDT: SV_FB_State_V2... +[13:25:15] Exporting SV_FB_State_V2 as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,172 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type SV_FB_State_V2 is know how protected, so ignore this +[13:25:15] 2025-08-23 13:25:15,172 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - SV_FB_State_V2 exported successfully +[13:25:15] 2025-08-23 13:25:15,175 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type SV_FB_State_V2 is know how protected, so ignore this +[13:25:15] 2025-08-23 13:25:15,176 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - SV_FB_State_V2 exported successfully +[13:25:15] ✓ Successfully exported SV_FB_State_V2 (SD + XML) +[13:25:15] Processing UDT: PC_Flags_V2... +[13:25:15] Exporting PC_Flags_V2 as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,180 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type PC_Flags_V2 is know how protected, so ignore this +[13:25:15] 2025-08-23 13:25:15,181 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PC_Flags_V2 exported successfully +[13:25:15] 2025-08-23 13:25:15,183 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PLC user data type PC_Flags_V2 is know how protected, so ignore this +[13:25:15] 2025-08-23 13:25:15,184 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.UserDataType Export - PC_Flags_V2 exported successfully +[13:25:15] ✓ Successfully exported PC_Flags_V2 (SD + XML) +[13:25:15] UDT Export Summary: Exported=98, Skipped/Errors=0 +[13:25:15] [PLC: PLC_TL25_Q1] Exporting PLC Tag Tables (SIMATIC SD)... +[13:25:15] SIMATIC SD Target: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\ExportTia\PLC_TL25_Q1_SimaticSD_20250823_132441\05_PlcTags_SD +[13:25:15] XML Compare Target: D:\Trabajo\VM\45 - HENKEL - VM Auto Changeover\ExportTia\PLC_TL25_Q1_SimaticSD_20250823_132441\06_PlcTags_XML_Compare +[13:25:15] Found 7 Tag Tables. +[13:25:15] Processing Tag Table: Tabella delle variabili standard... +[13:25:15] Exporting Tabella delle variabili standard as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,455 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili standard exported successfully +[13:25:15] 2025-08-23 13:25:15,456 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - Tabella delle variabili standard exported successfully +[13:25:15] 2025-08-23 13:25:15,565 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: Tabella delle variabili standard exported successfully +[13:25:15] 2025-08-23 13:25:15,566 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - Tabella delle variabili standard exported successfully +[13:25:15] ✓ Successfully exported Tabella delle variabili standard (SD + XML) +[13:25:15] Processing Tag Table: AutefaComm... +[13:25:15] Exporting AutefaComm as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,589 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: AutefaComm exported successfully +[13:25:15] 2025-08-23 13:25:15,589 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - AutefaComm exported successfully +[13:25:15] 2025-08-23 13:25:15,620 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: AutefaComm exported successfully +[13:25:15] 2025-08-23 13:25:15,620 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - AutefaComm exported successfully +[13:25:15] ✓ Successfully exported AutefaComm (SD + XML) +[13:25:15] Processing Tag Table: Electric Guides... +[13:25:15] Exporting Electric Guides as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,639 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: Electric Guides exported successfully +[13:25:15] 2025-08-23 13:25:15,640 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - Electric Guides exported successfully +[13:25:15] 2025-08-23 13:25:15,659 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: Electric Guides exported successfully +[13:25:15] 2025-08-23 13:25:15,660 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - Electric Guides exported successfully +[13:25:15] ✓ Successfully exported Electric Guides (SD + XML) +[13:25:15] Processing Tag Table: From Merger... +[13:25:15] Exporting From Merger as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,685 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: From Merger exported successfully +[13:25:15] 2025-08-23 13:25:15,686 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - From Merger exported successfully +[13:25:15] 2025-08-23 13:25:15,701 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: From Merger exported successfully +[13:25:15] 2025-08-23 13:25:15,702 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - From Merger exported successfully +[13:25:15] ✓ Successfully exported From Merger (SD + XML) +[13:25:15] Processing Tag Table: To Merger... +[13:25:15] Exporting To Merger as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,716 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: To Merger exported successfully +[13:25:15] 2025-08-23 13:25:15,717 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - To Merger exported successfully +[13:25:15] 2025-08-23 13:25:15,728 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: To Merger exported successfully +[13:25:15] 2025-08-23 13:25:15,729 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - To Merger exported successfully +[13:25:15] ✓ Successfully exported To Merger (SD + XML) +[13:25:15] Processing Tag Table: IM Input... +[13:25:15] Exporting IM Input as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,809 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: IM Input exported successfully +[13:25:15] 2025-08-23 13:25:15,810 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - IM Input exported successfully +[13:25:15] 2025-08-23 13:25:15,871 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: IM Input exported successfully +[13:25:15] 2025-08-23 13:25:15,872 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - IM Input exported successfully +[13:25:15] ✓ Successfully exported IM Input (SD + XML) +[13:25:15] Processing Tag Table: IM Output... +[13:25:15] Exporting IM Output as SIMATIC SD... +[13:25:15] 2025-08-23 13:25:15,905 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: IM Output exported successfully +[13:25:15] 2025-08-23 13:25:15,905 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - IM Output exported successfully +[13:25:16] 2025-08-23 13:25:16,132 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - PLC tag table: IM Output exported successfully +[13:25:16] 2025-08-23 13:25:16,133 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.PlcTagTable Export - IM Output exported successfully +[13:25:16] ✓ Successfully exported IM Output (SD + XML) +[13:25:16] Tag Table Export Summary: Exported=7, Skipped/Errors=0 +[13:25:16] --- Finished processing PLC: PLC_TL25_Q1 --- +[13:25:16] 🎉 SIMATIC SD Export process completed successfully! +[13:25:16] Exported files structure: +[13:25:16] ├── [PLC_Name]_SimaticSD_[timestamp]/ +[13:25:16] │ ├── 01_ProgramBlocks_SD/ # SIMATIC SD format +[13:25:16] │ ├── 02_ProgramBlocks_XML_Compare/ # Traditional XML for comparison +[13:25:16] │ ├── 03_PlcDataTypes_SD/ +[13:25:16] │ ├── 04_PlcDataTypes_XML_Compare/ +[13:25:16] │ ├── 05_PlcTags_SD/ +[13:25:16] │ └── 06_PlcTags_XML_Compare/ +[13:25:16] Now you can compare the differences between SIMATIC SD and traditional XML formats! +[13:25:16] === FILE ANALYSIS === +[13:25:16] Analyzing exported files for PLC: PLC_TL25_Q1 +[13:25:16] SIMATIC SD Blocks: Folder not found +[13:25:16] XML Blocks: Folder not found +[13:25:16] SIMATIC SD UDTs: Folder not found +[13:25:16] XML UDTs: Folder not found +[13:25:16] SIMATIC SD Tags: Folder not found +[13:25:16] XML Tags: Folder not found +[13:25:16] Closing TIA Portal... +[13:25:16] 2025-08-23 13:25:16,136 [1] INFO Siemens.TiaPortal.OpennessApi19.Implementations.Portal ClosePortal - Close TIA Portal +[13:25:16] TIA Portal closed. +[13:25:16] Script finished. +[13:25:18] Ejecución de x2.py finalizada (success). Duración: 0:01:13.918445. Se detectaron errores (ver log). +[13:25:18] Log completo guardado en: D:\Proyectos\Scripts\ParamManagerScripts\backend\script_groups\ObtainIOFromProjectTia\.log\log_x2.txt