Z-MCONFM

This document covers the following topics:


Description

Confirm (i.e. send) the invitations to a meeting that has been added using Z-ADD06 or modified using Z-MOD06.

Before the (modified) invitations can be sent with Z-MCONFM, you have to specify the attendees using Z-ADDATT.

Parameters

Parameter Format In Out Remarks
Return-code N2 O X Input -1: no ET.
Cabinet A8 R   The cabinet in which the (modified) invitations are to be sent.
Password A8 R   The password of the above cabinet.
Calendar-ISN P10 R X Input: ISN of the (modified) invitation to be sent. Specify the Calendar-ISN that is returned by Z-ADD06 or Z-MOD06. Output: ISN of the (modified) invitation that has been sent.

Return Codes

00 Success
02 Invalid cabinet name or - in batch mode only - locked cabinet
03 Password incorrect
04 ISN was not found
09 ISN does not point to correct object
18 API context buffer not available
21 Addressee not found (no additional addressee selected)
24 Security violation
25 More addressees than allowed
90 Unable to create transport service item
99 Internal error

Subprograms

N-GETMSG
S-0216
Z-110
Z-120
Z-122
Z-123
Z-124
Z-147
Z-165
Z-168
Z-175
Z-177
Z-180
Z-185
Z-191
Z-194
Z-194A
Z-197
Z-208
Z-211
Z-212
Z-213
Z-216
Z-221
Z-222
Z-223
Z-224
Z-225
Z-241
Z-373
Z-400
Z-401
Z-402
Z-403
Z-404
Z-406
Z-407
Z-711
Z-747
Z-748
Z-1200&0
Z-RINITM
Z-RCONFM

Example

DEFINE DATA
LOCAL
1 RETURN-CODE   (N2)
1 CABINET       (A8)
1 PASSWORD      (A8)
1 CALENDAR-ISN  (P10)
END-DEFINE
*
MOVE 'Cabinet'  TO CABINET
MOVE 'Password' TO PASSWORD
MOVE 32678      TO CALENDAR-ISN
*
CALLNAT 'Z-MCONFM'
  RETURN-CODE
  CABINET
  PASSWORD
  CALENDAR-ISN
*
WRITE
  '=' CABINET  /
  '=' PASSWORD /
  '=' CALENDAR-ISN      /
*
IF RETURN-CODE NE 0
  WRITE / 'Return code' RETURN-CODE
ELSE
  WRITE / 'Return status OK'
END-IF
*
END