From 0b31b5817c05efb59024dbb35718fc8e55660119 Mon Sep 17 00:00:00 2001 From: danrega <16720986+danrega@users.noreply.github.com> Date: Mon, 22 Jan 2024 18:06:48 +0100 Subject: [PATCH] Update --- 22_Misc_ABAP_Classes.md | 185 +++++++++++++++++++++++++++++++++------- 1 file changed, 152 insertions(+), 33 deletions(-) diff --git a/22_Misc_ABAP_Classes.md b/22_Misc_ABAP_Classes.md index fac17ad..18ac09f 100644 --- a/22_Misc_ABAP_Classes.md +++ b/22_Misc_ABAP_Classes.md @@ -22,6 +22,7 @@ - [Exception Classes](#exception-classes) - [Parallel Processing](#parallel-processing) - [Application Log](#application-log) + - [Executing Code in Background](#executing-code-in-background) This ABAP cheat sheet contains a selection of available ABAP classes, serving as a quick introduction, along with code snippets to explore the functionality in action. @@ -56,7 +57,7 @@ SELECT ReleasedObjectType, ReleasedObjectName, ReleaseState Class Details/Code Snippet - CL_SYSTEM_UUID + CL_SYSTEM_UUID Creating and and converting system UUIDs with various algorithms

@@ -84,7 +85,7 @@ ENDTRY. Class Details/Code Snippet - CL_ABAP_BEHV_AUX + CL_ABAP_BEHV_AUX A utility class for retrieving information about RAP handler implementations, such as the current context of RAP handler/saver methods, the handler kind, and the current RAP transactional phase (e.g., RAP interaction phase.

@@ -113,7 +114,7 @@ FINAL(phase) = cl_abap_behv_aux=>get_current_phase( ). - CL_ABAP_BEHAVIOR_HANDLER + CL_ABAP_BEHAVIOR_HANDLER Used for RAP handler classes that inherit from class CL_ABAP_BEHAVIOR_HANDLER.

@@ -132,7 +133,7 @@ ENDCLASS. - CL_ABAP_BEHAVIOR_SAVER + CL_ABAP_BEHAVIOR_SAVER Used as base class from which a RAP saver class in an ABAP behavior pool (ABP) inherits. The RAP saver class must be defined in the CCIMP include of an ABP.

@@ -154,7 +155,7 @@ ENDCLASS. - CL_ABAP_BEHAVIOR_SAVER_FAILED + CL_ABAP_BEHAVIOR_SAVER_FAILED