# code-block-pro/1.5.0/build/shiki/samples/abap.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.5.0. 21 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.5.0/code/build/shiki/samples/abap.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.5.0/raw/build/shiki/samples/abap.sample
- Modified: 2022-08-22T22:25:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.5.0/code/build/shiki/samples/abap.sample#L10-L20`.

```
report zldbread no standard page heading.
tables: lfa1.
data: begin of t occurs 0,
linfr like lfa1-lifnr,
name1 like lfa1-name1,
end of t.

start-of-selection.

get lfa1.
clear t.
move-corresponding lfa1 to t.
append t.
end-of-selection.
sort t by name1.
loop at t.

write: / t-name1, t-lifnr.
endloop.

*- From https://sapbrainsonline.com/abap-tutorial/codes/reading-logical-database-using-abap-program.html -*
```
