The ATL COM module hospitalMCDResponse is capable of
analyzing electronic responses to MCD requests
analyzing electronic responses to MCD requests
API browser of hospitalMCDResponse450 COM module
IHospitalMCDResponse::GetResponse method | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the primary parameters of the response infoset, namely the operation modus, the language the infoset is formulated, and most important the type of the response.
Based on the response type one of the following methods should be called:
|
||||||||||||
C/C++ calling syntax | ||||||||||||
HRESULT GetResponse( | LanguageType
YesNoType YesNoType ResponseType ModusType VARIANT_BOOL |
*peDataLanguage,
*peIsStorno, *peIsCopy, *peResponseType, *peModusType, *pbStatus); |
||||||||||
Calling argument description | ||||||||||||
[out] LanguageType | *peDataLanguage | The language in which the response is formulated.
Note, that the data language and the module language (given by IHospitalMCDResponseManager::SetModuleLanguage) are independent and can be different! |
||||||||||
[out] YesNoType | *peIsStorno | Boolean value that defines the "storno" status of the sent request.
Note that this is the initial value of the request mirrored in the response |
||||||||||
[out] YesNoType | *peIsCopy | Boolean value that defines the "copy" status of the sent request.
Note that this is the initial value of the request mirrored in the response |
||||||||||
[out] ResponseType | *peResponseType | The main response type. | ||||||||||
[out] ModusType | *peModusType | The operation modus.
The default modus is enProduction whereas for developing/debugging purposes enTest has to be set. |
||||||||||
[out, retval] VARIANT_BOOL | *pbStatus | Return status of the method. If pbStatus is VARIANT_FALSE then an error occurred and GetAbortInfo should be called to retrieve the error string. | ||||||||||
C/C++ return value | ||||||||||||
S_OK | This value is returned if the function call was successful or if the return value of a boolean method signalling a true value. In this case the VARIANT_BOOL is set to VARIANT_TRUE. | |||||||||||
S_FALSE | This is the return value of a boolean method signalling a false return value. In this case the VARIANT_BOOL is set to VARIANT_FALSE. | |||||||||||
E_name | This value is returned if the function call was unsuccessful and an error exception was generated. Note that if you are using SmartPointers an exception is thrown under these conditions. | |||||||||||