Skip to content

Instantly share code, notes, and snippets.

View dubon07's full-sized avatar

Carlos dubon07

View GitHub Profile
@dubon07
dubon07 / get_alv_exit
Created July 12, 2016 18:31 — forked from dantesco/get_alv_exit
obten la salida de un alv en el reporte actual
FIELD-SYMBOLS <lt_pay_data> TYPE ANY TABLE.
DATA lr_pay_data TYPE REF TO DATA.
cl_salv_bs_runtime_info=>set(
EXPORTING display = abap_false
metadata = abap_false
DATA = abap_true ).
SUBMIT (PROGRAM)
WITH s_vbeln-low EQ space
WITH s_fkdat-low EQ space
@dubon07
dubon07 / zcl_bitwise.abap
Created July 12, 2016 18:27 — forked from rvanmil/zcl_bitwise.abap
ABAP bit shifting and bitwise add, subtract, multiply
class ZCL_BITWISE definition
public
final
create public .
public section.
*"* public components of class ZCL_BITWISE
*"* do not include other source files here!!!
class-methods CLASS_CONSTRUCTOR .