From fd42832d40b1370d43643f50262bbae2d8f53e5b Mon Sep 17 00:00:00 2001 From: danrega <16720986+danrega@users.noreply.github.com> Date: Fri, 29 Sep 2023 16:15:39 +0200 Subject: [PATCH] Update --- 19_ABAP_for_Cloud_Development.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/19_ABAP_for_Cloud_Development.md b/19_ABAP_for_Cloud_Development.md index 8ff5c0b..6783523 100644 --- a/19_ABAP_for_Cloud_Development.md +++ b/19_ABAP_for_Cloud_Development.md @@ -111,9 +111,9 @@ It provides references to more detailed information on the topic. DATA: ref1 TYPE REF TO i, ref2 TYPE REF TO i. "Deprecated statement - GET REFERENCE OF num1 INTO ref2. + GET REFERENCE OF num1 INTO ref1. "Alternative that can be used - ref1 = REF #( num1 ). + ref2 = REF #( num1 ). DATA str_itab TYPE string_table. "The following statements are invalid