EventReportBCSM
Overview
The EventReportBCSM operation represents the sending of an INAP EventReportBCSM.
This message is sent by the IN Tester when it is simulating the role of a Service Switching Platform (SSP).
- Direction: OUTBOUND
 - From: SSP (IN Tester)
 - To: SCP (Application Under Test)
 
Attributes
The operation attributes are as follows.
| Attribute | Type | Description | 
|---|---|---|
            type
         | 
        String | 
            inap.ssp_to_scp.EventReportBCSM
         | 
    
            label
         | 
        String | 
            An optional label for this node if it is to be the target of a branch operation.
         | 
    
            send_with_next
         | 
        Boolean | 
            Request that this INAP operation should be bundled with the next outbound TCAP. (Default = false).
         | 
    
            send_and_close
         | 
        Boolean | 
            Request that this INAP operation should be sent as TCAP_END. (Default = false).
         | 
    
            variant
         | 
        String | Variant key as described in N2::INAP::Codec EventReportBCSM. | 
            arguments
         | 
        Object | 
            [Required] The structure of the INAP EventReportBCSMArg to construct and send. | 
    
.* | 
        Fields as described in N2::INAP::Codec EventReportBCSM. | |
Example
This is an example entry within the operations array:
{
    "type": "inap.scp_from_ssp.EventReportBCSM",
    "arguments" : {
        "eventTypeBCSM": 9,
        "eventSpecificInformationBCSM": {
            "oDisconnectSpecificInfo": {
                "releaseCause_cause": 16
            }
        },
        "legID": {
            "receivingSideID_hex": "02"
        }
    }
}
This next example uses the simplified “eventTypeBCSM_name” mechanism, and also requests that the INAP operation be delivered with TCAP_END.
{
    "type": "inap.scp_from_ssp.EventReportBCSM",
    "arguments": {
        "eventTypeBCSM_name": "oAnswer"
    },
    "send_and_close": true
}