Extensions.DiagDataBrowsingPlus.GetResponseDbResponse

From emotive
Jump to navigation Jump to search

Classification

Name GetResponseDbResponse
Short Description Gets the data base part of the diag:Response
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbResponse related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

DbResponseTerm DiagDataBrowsingPlus.GetResponseDbResponse(ResponseTerm response);

Description

GetResponseDbResponse returns the data base part (MCDDbResponse) of a diag:Response (MCDResponse).

Icons Note.png The appropriate MVCI system operation is MCDResponse::getDbObject

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
DbResponse Returns the data base part (MCDDbResponse) of a diag:Response (MCDResponse).

Properties

Name Data Type Class Default Cardinality Description
Response Response Term - [1..1] The element represents the diag:Response which data base part shall be returnd.

OTL Examples

/// Local Declarations

DiagCom.Result Result;
DiagCom.Response Response;
DiagDataBrowsingPlus.DbResponse DbResponse;

/// Flow

[#MetaData(RequestPdu), <#Data>22 01 00</#Data>]
DiagCom.ExecuteDiagService(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false), "DiagnServi_ReadDataByIdentActuaTestStatu"), {}, {}, Result, NULL, false, false);
Response = DiagCom.GetFirstResponse(Result);
DbResponse = DiagDataBrowsingPlus.GetResponseDbResponse(Response);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse