Changes of "Refactor Password Login" #4052 abapGit/abapGit#4052
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ABAPGIT COMMON CSS | |
*/ | |
/* GLOBALS */ | |
body { | |
overflow-x: hidden; | |
} | |
a, a:visited { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
NewerOlder