Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joschkarick/abapITABOperations
Advanced operations for internal tables in ABAP
https://github.com/joschkarick/abapITABOperations
Last synced: 6 days ago
JSON representation
Advanced operations for internal tables in ABAP
- Host: GitHub
- URL: https://github.com/joschkarick/abapITABOperations
- Owner: joschkarick
- License: gpl-3.0
- Created: 2018-02-12T16:19:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-14T20:08:59.000Z (almost 7 years ago)
- Last Synced: 2024-08-02T19:01:54.995Z (4 months ago)
- Language: ABAP
- Size: 21.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- abap-florilegium - abapITABOperations
README
# abapITABOperations
Advanced operations for internal tables in ABAP.
The purpose of this package is to provide easily usable operations on internal tables. Any re-occuring operation on internal tables is suitable for this package.### Installation
Install via [abapGit](https://github.com/larshp/abapGit)### Example
```abap
data: lt_vbap type table of vbap,
lt_zmeng type table of dzmeng.
select * from vbap up to 50 rows into table lt_vbap.
zcl_itab_vslice=>get_col_unique_sort(
exporting
it_tab = lt_vbap
iv_col = 'ZMENG'
importing
et_tab = lt_zmeng ).
```Extracts all unique values of column ZMENG of internal table lt_vbap into a new internal table with one column, lt_zmeng.