First of all: you know I like ABAP 7.40 !!! But in this case the declaration of SFLIGHT_LH should result in a table (with all 'LH' entries) and not a flat structure (with just the first entry): DATA sflight_all TYPE SORTED TABLE OF sflight WITH UNIQUE KEY carrid connid fldate...
The substructures are resolved in a table comprehension in the output. The inline declaration of the third SELECT statement creates an internal table with a non-nested row structure. The components of the row are determined directly using the columns specified in the SELECT list. ...
Inline declaration of an internal table as a target field of an assignment and inline declaration of an appropriate work area in aLOOP. TYPES t_itab TYPE TABLE OF i WITH NON-UNIQUE KEY table_line. DATA(itab) = VALUE t_itab( ( 1 ) ( 2 ) ( 3 ) ). ...
登录SAP BTP ABAP 环境: 将SAP BTP ABAP 编程环境里的 Service Key 导出到本地: Service Key 是一个 json 文件,用记事本打开,将内容粘贴到上图 Service Key 字段即可。点击 Test Connection,会弹出一个新的浏览器窗口。 看到连接成功的绿色提示消息。