From 7d70c3616a34fa42b04c3445c737bf2d9aa1efbb Mon Sep 17 00:00:00 2001 From: Marc Bernard <59966492+mbtools@users.noreply.github.com> Date: Thu, 20 Aug 2026 23:12:21 -0400 Subject: [PATCH] Add 'LXE' object type to serializers documentation Added 'LXE' object type for LXE framework support. --- src/development-guide/serializers/serializers.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/development-guide/serializers/serializers.md b/src/development-guide/serializers/serializers.md index ab7dff62d..79f70bf2d 100755 --- a/src/development-guide/serializers/serializers.md +++ b/src/development-guide/serializers/serializers.md @@ -196,6 +196,7 @@ Step | Description | Activation `DDIC` | Used for DDIC objects which require processing and activation before other object types | DDIC Mass Activation `ABAP` | Used for non-DDIC objects (code or mostly anything else) which might depend on DDIC objects | Workbench Mass Activation `LATE` | Used for objects that depend on other objects processed in the previous two phases | DDIC & Workbench Mass Activation +`LXE` | Used for objects that support the [LXE framework](../../user-guide/reference/translations.html#lxe-framework) for translations | n/a Within each phase, the sequence of objects is determined by abapGit based on known object type dependencies. For details, see method `PRIORITIZE_DESER` in [`ZCL_ABAPGIT_FILE_DESERIALIZE`](https://github.com/abapGit/abapGit/blob/main/src/objects/core/zcl_abapgit_file_deserialize.clas.abap).