Created
October 8, 2019 19:21
-
-
Save antelio/4c086fb061e4c5c545e9ab2920934b91 to your computer and use it in GitHub Desktop.
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 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