Merge ABAP INCLUDEs into single file. Function groups are skipped
npm install
npm test
abapmerge -h
- to see the parametersTake src/zabapgit.prog.abap
, merge it, rename the program (report
statement) to zabapgit_standalone
and save to zabapgit.abap
in the current directory.
abapmerge -f src/zabapgit.prog.abap -c zabapgit_standalone -o zabapgit.abap
Abapmerge takes a path to the main report and analyzes its code and all files stored in the same directory and all sub-directories.
The resulting code consists of the code of all found ABAP classes and interfaces, regardless of their production use in any part of the resulting report, and contents of ABAP includes found in the main report or the included reports.
Abapmerge expects that the whole directory structure should result into a single executable program and, hence, if it finds an ABAP report that is not directly or indirectly included in the main report, abapmerge terminates its processing without issuing the input.
Abapmerge requires file naming schema compatible with the schema used by abapGit.
Global classes FOR TESTING
are skipped.
Abapmerge supports pragmas that can be written inside an abap comment. If written as " comment, then indentation before " is also used for output.
@@abapmerge command params
Currently supported pragmas:
$$
is replaced by the include line$$
is escaped - ' replaced to '' (to fit in abap string), use $$$
to skip escapinginclude
just that the data is encoded to base64, supposedly the data is binary.variable
. The variable
is supposed to be of zcl_abapgit_objects_program=>ty_cua
type. Required data definitions are also generated e.g. 'DATA ls_adm LIKE variable-adm'
....
" @@abapmerge include somefile.txt > APPEND '$$' TO styletab.
" @@abapmerge include-cua abapgit.prog.xml > ls_cua
...