Package com.ibm.di.fc.sapr3rfcv3
Class SapR3RfcFCErrorCodes
- java.lang.Object
-
- com.ibm.di.fc.sapr3rfcv3.SapR3RfcFCErrorCodes
-
public final class SapR3RfcFCErrorCodes extends java.lang.Object
Store the error codes in a separate enumerated type class, ensuring that only these error codes can be used when creating a specific SapR3RfcFCException.
-
-
Field Summary
Fields Modifier and Type Field Description static SapR3RfcFCErrorCodes
BAD_DOM_DOCUMENT
unable to create XML DOM Document.static SapR3RfcFCErrorCodes
CONNECTION_DROPPED
problem establishing a connection to the SAP system.static SapR3RfcFCErrorCodes
CONNECTION_ESTABLISHMENT
problem establishing a connection to the SAP system.static SapR3RfcFCErrorCodes
CONNECTION_POOL_EXISTS
connection pool already exists.static SapR3RfcFCErrorCodes
DISCONNECTION
problem when disconnecting from the SAP system.static SapR3RfcFCErrorCodes
DOM_DOCUMENT_PARSER
DOM Document parsing error.static SapR3RfcFCErrorCodes
DOM_DOCUMENT_PARSING
Problem parsing the DOM Document.static SapR3RfcFCErrorCodes
DOM_DOCUMENT_READ
Problem reading the DOM Document.static SapR3RfcFCErrorCodes
RFC_FUNCTION_EXECUTION
Unable to execute the specified RFC.static SapR3RfcFCErrorCodes
RFC_PARAM_PREPARE
Unable to setup the remote function call paramters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCode()
Get the type ID.
-
-
-
Field Detail
-
BAD_DOM_DOCUMENT
public static final SapR3RfcFCErrorCodes BAD_DOM_DOCUMENT
unable to create XML DOM Document.
-
CONNECTION_ESTABLISHMENT
public static final SapR3RfcFCErrorCodes CONNECTION_ESTABLISHMENT
problem establishing a connection to the SAP system.
-
CONNECTION_DROPPED
public static final SapR3RfcFCErrorCodes CONNECTION_DROPPED
problem establishing a connection to the SAP system.
-
DISCONNECTION
public static final SapR3RfcFCErrorCodes DISCONNECTION
problem when disconnecting from the SAP system.
-
CONNECTION_POOL_EXISTS
public static final SapR3RfcFCErrorCodes CONNECTION_POOL_EXISTS
connection pool already exists.
-
DOM_DOCUMENT_PARSER
public static final SapR3RfcFCErrorCodes DOM_DOCUMENT_PARSER
DOM Document parsing error.
-
DOM_DOCUMENT_PARSING
public static final SapR3RfcFCErrorCodes DOM_DOCUMENT_PARSING
Problem parsing the DOM Document.
-
DOM_DOCUMENT_READ
public static final SapR3RfcFCErrorCodes DOM_DOCUMENT_READ
Problem reading the DOM Document.
-
RFC_FUNCTION_EXECUTION
public static final SapR3RfcFCErrorCodes RFC_FUNCTION_EXECUTION
Unable to execute the specified RFC.
-
RFC_PARAM_PREPARE
public static final SapR3RfcFCErrorCodes RFC_PARAM_PREPARE
Unable to setup the remote function call paramters.
-
-