API browser of generalCreditResponse430 COM module


/images/arrow_right.png IGeneralCreditResponse::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:

GetAcceptType Per definition this means that the corresponding request is accepted and will be processed to a final stage. The coverage data and the optional justification and addendum are supplied but no messages.
GetPendingType Per definition this means that the corresponding request can not be processed to a final stage as some data are missing. An optional justification and addendum and [0,n] messages (instructions) are supplied to "unfreeze" the request.
GetRejectType Per definition this means that the corresponding request is rejected and as a consequence the status of the request goes to the "canceled" state. An optional justification and addendum and [0,n] errors are supplied to justify the decision.
space
 
/images/arrow_right.png C/C++ calling syntax
HRESULT GetResponse( LanguageType
RoleType
PlaceType
BSTR
YesNoType
YesNoType
ResponseType
ModusType
VARIANT_BOOL
*peDataLanguage,
*peRoleType,
*pePlaceType,
*pbstrRoleTitle,
*peIsStorno,
*peIsCopy,
*peResponseType,
*peModusType,
*pbStatus);
 
/images/arrow_right.png 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 IGeneralCreditResponseManager::SetModuleLanguage) are independent and can be different!

[out] RoleType *peRoleType Defines the role categories that the main provider is best categorized.

If the main provider has an other role than defined then use enRoleOther and additionally supply a role title with a description of the role

[out] PlaceType *pePlaceType Defines the principle place where the main provider is applying the treatment
[out] BSTR *pbstrRoleTitle Optional role title/description of the main provider.

If a suitable predefined role can not be set then bstrRoleTitle is mandatory (use enRoleOther as role in that case)

[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.
 
/images/arrow_right.png 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.