Skip to content

Instantly share code, notes, and snippets.

View mbtools's full-sized avatar
📦
Get things rolling for ABAPConf 2024

Marc Bernard mbtools

📦
Get things rolling for ABAPConf 2024
View GitHub Profile
/*
* 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: