diff --git a/01_Internal_Tables.md b/01_Internal_Tables.md index 573a502..515cde1 100644 --- a/01_Internal_Tables.md +++ b/01_Internal_Tables.md @@ -58,7 +58,7 @@ Internal Tables ... | Category | Internally managed by | Access | Primary table key | When to use | Hints | |---|---|---|---|---|---| |`STANDARD`|Primary table index (that's why these tables are called [index tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenindex_table_glosry.htm))||||| -|`SORTED`|Primary table index (that's why these tables are called [index tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenindex_table_glosry.htm))||||| +|`SORTED`|Primary table index (that's why these tables are called [index tables](https://help.sap.com/doc/abapdocu_cp_index_htm/CLOUD/en-US/index.htm?file=abenindex_table_glosry.htm))||||| |`HASHED`|Hash algorithm ||Always unique||| diff --git a/16_Data_Types_and_Objects.md b/16_Data_Types_and_Objects.md index dcdcf65..1c04f3c 100644 --- a/16_Data_Types_and_Objects.md +++ b/16_Data_Types_and_Objects.md @@ -525,7 +525,7 @@ str_a1 = to_upper( str_a2 ). "Constructor expressions as source of the assignment "There are various options and expressions available (with many additions). Check the -"ABAP Keyword Documentation and the ABAP cheat sheet abouot constructor expressions. +"ABAP Keyword Documentation and the ABAP cheat sheet about constructor expressions. "Here, taking the VALUE operator as an example. This operator is very handy especially "for complex types. @@ -539,7 +539,7 @@ some_struc = VALUE #( carrid = 'XY' carrname = 'XY Airways' ). "Creating an internal table and assigning values "Note that components that are not specified and assigned a value retain their -"type-specific ininial value. +"type-specific initial value. DATA some_itab TYPE TABLE OF zdemo_abap_carr WITH EMPTY KEY. some_itab = VALUE #( ( carrid = 'XY' carrname = 'XY Airways' ) ( carrid = 'AB' carrname = 'ABAP Airlines' ) ) .