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_select_itab_key. | |
TYPES: | |
BEGIN OF ts_key, | |
otype TYPE wbcrossgt-otype, | |
name TYPE wbcrossgt-name, | |
include TYPE wbcrossgt-include, | |
END OF ts_key. | |
DATA gt_data TYPE STANDARD TABLE OF wbcrossgt WITH EMPTY KEY. | |
DATA gt_key_std TYPE STANDARD TABLE OF ts_key WITH EMPTY KEY. |
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
@echo off | |
powershell -ExecutionPolicy Bypass -File "%~dp0install-current-user.ps1" |
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_srlz_json_vs_buffer. | |
TYPES: | |
BEGIN OF ts_result, | |
tag TYPE char30, | |
start TYPE i, | |
end TYPE i, | |
diff TYPE i, | |
END OF ts_result, | |
tt_result TYPE STANDARD TABLE OF ts_result WITH EMPTY KEY. |
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_extract_uniq | |
*&---------------------------------------------------------------------* | |
*& | |
*&---------------------------------------------------------------------* | |
REPORT ztest_extract_uniq. | |
TYPES: | |
BEGIN OF ts_result, | |
tag TYPE char30, | |
start TYPE i, |
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
CLASS zcl_tm_327_str_utils DEFINITION PUBLIC CREATE PUBLIC . | |
PUBLIC SECTION. | |
METHODS split_string_by_space_max_len | |
IMPORTING | |
!iv_value TYPE csequence | |
!iv_max_len TYPE i | |
!iv_max_rows TYPE i DEFAULT 0 | |
RETURNING | |
VALUE(rt_result) TYPE string_table . | |
ENDCLASS. |
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
"1 | |
"Add Implicit Enhancement at the end of form CREATE_DYNP_HEADER (INCLUDE MSVIMF21) | |
"Put this code inside created enhancement: | |
PERFORM post_create_dynp_header in PROGRAM ZBC_MAINTANCE_VIEW_EXITS if FOUND | |
USING p_dyname p_gencb p_detail dropdown_length_tcrl max_dynp_fieldlen CHANGING p_header. | |
"2 | |
"Add Implicit Enhancement at the begin of form CREATE_DYNP_FIELDLIST (INCLUDE MSVIMF21) | |
"Put this code inside created enhancement: |
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
class ZCL_ALV_GUI_BUILDER definition | |
public | |
inheriting from CL_ALV_GUI_INSTANCE_BUILDER | |
create public . | |
public section. | |
data MO_ALV_GRID type ref to CL_GUI_ALV_GRID read-only . | |
events ON_GRID_CREATE |
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
From 7fe225eddb0c63e7f3a191b2f9b71f5e829e819a Mon Sep 17 00:00:00 2001 | |
From: Alexandr Zhuravlev <[email protected]> | |
Date: Mon, 30 Nov 2020 19:15:39 +0300 | |
Subject: [PATCH 2/2] Adapt to CMake 3.18 | |
--- | |
FindwxWidgets.cmake | 475 +++++++++++++++++++++++--------------------- | |
1 file changed, 246 insertions(+), 229 deletions(-) | |
diff --git a/FindwxWidgets.cmake b/FindwxWidgets.cmake |
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_class_ref_data. | |
CLASS lcl_abstract_data DEFINITION ABSTRACT.ENDCLASS. | |
CLASS lcl_abstract_processor DEFINITION ABSTRACT. | |
PUBLIC SECTION. | |
METHODS constructor IMPORTING io_data TYPE REF TO lcl_abstract_data. | |
PROTECTED SECTION. | |
DATA mo_data TYPE REF TO lcl_abstract_data. | |
ENDCLASS. |
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
FUNCTION zf4if_brand_sample_exit. | |
*"---------------------------------------------------------------------- | |
*"*"Локальный интерфейс: | |
*" TABLES | |
*" SHLP_TAB TYPE SHLP_DESCR_TAB_T | |
*" RECORD_TAB STRUCTURE SEAHLPRES | |
*" CHANGING | |
*" VALUE(SHLP) TYPE SHLP_DESCR_T | |
*" REFERENCE(CALLCONTROL) TYPE DDSHF4CTRL | |
*"---------------------------------------------------------------------- |
NewerOlder