From ac4a708c0e26661bfd37821dc3e5fe224a84f1dd Mon Sep 17 00:00:00 2001 From: Dan <16720986+danrega@users.noreply.github.com> Date: Mon, 12 Dec 2022 15:55:40 +0100 Subject: [PATCH] Update 01_Internal_Tables.md --- 01_Internal_Tables.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/01_Internal_Tables.md b/01_Internal_Tables.md index 07a5daf..48340d1 100644 --- a/01_Internal_Tables.md +++ b/01_Internal_Tables.md @@ -447,7 +447,7 @@ DATA(it_inline3) = VALUE table_type( ( ... ) ). "Table declared inline in the context of a SELECT statement; "a prior extra declaration of an internal table is not needed. -DATA it TYPE TABLE OF zdemo_abap_fli EMPTY KEY. +DATA it TYPE TABLE OF zdemo_abap_fli WITH EMPTY KEY. SELECT * FROM zdemo_abap_fli INTO TABLE @it. @@ -987,9 +987,9 @@ READ TABLE it FROM pr_keys INTO wa. "If USING KEY is not specified, the primary table key is used. "If it is used, the specified table key is used. -READ TABLE it FROM pr_keys USING KEY primary_key wa. +READ TABLE it FROM pr_keys USING KEY primary_key INTO wa. -READ TABLE it FROM sec_keys USING KEY sec_key wa. +READ TABLE it FROM sec_keys USING KEY sec_key INTO wa. "alias READ TABLE it FROM sec_keys USING KEY sk INTO wa.