Skip to content

Instantly share code, notes, and snippets.

View mbtools's full-sized avatar
📦
Busy building apm 😀

Marc Bernard mbtools

📦
Busy building apm 😀
View GitHub Profile
@mbtools
mbtools / ZTEST_ABAPGIT_HTML_VIEWER.abap
Last active October 24, 2023 20:04
ZTEST_ABAPGIT_HTML_VIEWER
REPORT ztest_abapgit_html_viewer.
SELECTION-SCREEN BEGIN OF SCREEN 1001.
* dummy for triggering screen
SELECTION-SCREEN END OF SCREEN 1001.
CLASS lcl_gui DEFINITION.
PUBLIC SECTION.
METHODS on_event
@mbtools
mbtools / readme.md
Created December 21, 2020 20:33
abapGit HTML
/*
* ABAPGIT COMMON CSS
*/
/* GLOBALS */
body {
overflow-x: hidden;
}
a, a:visited {
@mbtools
mbtools / ZABAPGIT_CLAS_POSITION_INDEX.abap
Created June 24, 2020 09:37
Create index of source code position for classes
REPORT zabapgit_clas_position_index.
DATA: gt_class TYPE TABLE OF seoclsname,
go_helper TYPE REF TO cl_oo_source_pos_index_helper.
START-OF-SELECTION.
CREATE OBJECT go_helper.
SELECT obj_name FROM tadir INTO TABLE gt_class
@mbtools
mbtools / ZABAPGIT_OBJECT_TYPE_CHECK.abap
Created June 18, 2020 19:49
Check max length and namespace support for object supported by abapGit
REPORT zabapgit_object_type_check LINE-SIZE 255.
TABLES: objh.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
SELECT-OPTIONS:
s_obj FOR objh-objectname.
SELECTION-SCREEN END OF BLOCK b1.
TYPES: