Skip to content

Instantly share code, notes, and snippets.

@antelio
Created October 8, 2019 19:21
Show Gist options
  • Save antelio/4c086fb061e4c5c545e9ab2920934b91 to your computer and use it in GitHub Desktop.
Save antelio/4c086fb061e4c5c545e9ab2920934b91 to your computer and use it in GitHub Desktop.
REPORT zbc_enq MESSAGE-ID mt.
PARAMETERS p_off RADIOBUTTON GROUP func DEFAULT 'X'.
PARAMETERS p_on RADIOBUTTON GROUP func.
IF p_off = 'X'.
CALL 'C_ENQUEUE' ID 'OPCODE' FIELD 'F'.
CALL 'C_WRITE_SYSLOG_ENTRY' ID 'TYP' FIELD 'C'
ID 'KEY' FIELD 'GES'.
MESSAGE s900 WITH 'Enqueue mechanism switched off'.
ELSE.
CALL 'C_ENQUEUE' ID 'OPCODE' FIELD 'T'.
CALL 'C_WRITE_SYSLOG_ENTRY' ID 'TYP' FIELD 'C'
ID 'KEY' FIELD 'GER'.
MESSAGE s900 WITH 'Enqueue mechanism switched on'.
ENDIF.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment