This file contains 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 z_print_alv_cell_colors | |
*&---------------------------------------------------------------------* | |
*& Report to print all alv cell colors | |
*&---------------------------------------------------------------------* | |
REPORT z_print_alv_cell_colors. | |
TYPES: | |
BEGIN OF ts_data, | |
name TYPE string, " name of constant |
This file contains 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
DATA: lo_structure_descriptor type ref to cl_abap_structdescr, | |
lo_structure_descriptor_tmp type ref to cl_abap_structdescr, | |
lo_table_descriptor type ref to cl_abap_tabledescr, | |
lt_structure_components_nested type cl_abap_structdescr=>component_table, | |
lt_structure_components_flat type cl_abap_structdescr=>component_table, | |
lv_index type sy-tabix. | |
lo_table_descriptor ?= cl_abap_structdescr=>describe_by_data( lt_result_table_nested ). | |
lo_structure_descriptor ?= lo_table_descriptor->get_table_line_type( ). | |
lt_structure_components = lo_structure_descriptor->get_components( ). |
This file contains 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
FIELD-SYMBOLS: <fs_data> type any table, | |
<fs_result> type any. | |
DATA : ref_table_des TYPE REF TO cl_abap_tabledescr, | |
lt_component_descriptions TYPE cl_abap_structdescr=>component_table. | |
* Describe Input Table | |
DATA: lo_input_tabdescr TYPE REF TO cl_abap_tabledescr, | |
lo_input_strdescr type ref to cl_abap_structdescr. |
This file contains 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
version: "3" | |
services: | |
gitlab: | |
image: 'gitlab/gitlab-ce:latest' | |
restart: always | |
hostname: 'subdomain.example.com' | |
environment: | |
GITLAB_OMNIBUS_CONFIG: | | |
external_url 'https://subdomain.example.com' |
This file contains 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
plugin.tx_indexedsearch { | |
show { | |
rules=0 | |
} | |
settings { | |
targetPid = YOURPID | |
displayRules = 0 | |
exactCount = 1 |
This file contains 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
* Prerequirements: | |
* | |
* 1. Create an Exception Class /{PACKAGE}/CX_{NAME} in the working package. | |
* 2. Open the Exception Class and add Interface: "IF_T100_MESSAGE" to it. | |
* 3. Create a 'Nachrichtenklasse' with the name /{Package}/(...)_{NAME}_NK | |
* | |
*Then: | |
* | |
* 1. Open the working Class and select a method to which to add an exception. |