SendCancelReservation

SendCancelReservation 1:

With this method, an OCPP server sends a Cancel Reservation request to the corresponding OCPP client. The response from the OCPP client is processed directly within the method.

SendCancelReservation 2:

Syntax

METHOD SendCancelReservation : BOOL
VAR_INPUT
    hStationId     : UDINT;
    nReservationId : UDINT;
END_VAR
VAR_OUTPUT
    eStatus        : E_OCPP1_CancelReservationStatus;
END_VAR

SendCancelReservation 3: Return value

Name

Type

Description

SendCancelReservation

BOOL

The method returns the return value TRUE if the call was successful. A method call is also considered successfully completed in the event of an error.

SendCancelReservation 4: Inputs

Name

Type

Description

hStationId

UDINT

Identifier of the OCPP client in the instance of the OCPP server.

nReservationId

UDINT

ID of the reservation to be canceled.

SendCancelReservation 5: Outputs

Name

Type

Description

eStatus

E_OCPP1_CancelReservationStatus

The status shows whether the reservation was successfully canceled.

Possible errors are output at the outputs bError and hrErrorCode of the function block instance.