Home
COBOL invocation
CALL 'MQSET' USING HCONN, HOBJ, SELECTORCOUNT, SELECTORS-TABLE, INTATTRCOUNT, INTATTRS-TABLE, CHARATTRLENGTH, CHARATTRS, COMPCODE, REASON.Declare the parameters as follows:
** Connection handle 01 HCONN PIC S9(9) BINARY. ** Object handle 01 HOBJ PIC S9(9) BINARY. ** Count of selectors 01 SELECTORCOUNT PIC S9(9) BINARY. ** Array of attribute selectors 01 SELECTORS-TABLE. 02 SELECTORS PIC S9(9) BINARY OCCURS n TIMES. ** Count of integer attributes 01 INTATTRCOUNT PIC S9(9) BINARY. ** Array of integer attributes 01 INTATTRS-TABLE. 02 INTATTRS PIC S9(9) BINARY OCCURS n TIMES. ** Length of character attributes buffer 01 CHARATTRLENGTH PIC S9(9) BINARY. ** Character attributes 01 CHARATTRS PIC X(n). ** Completion code 01 COMPCODE PIC S9(9) BINARY. ** Reason code qualifying COMPCODE 01 REASON PIC S9(9) BINARY.
Home