Classification
OTL Syntax
DbParameterTerm = DiagDataBrowsingPlus.GetDbMatchingParameterDbResponseParameter(DbMatchingParameterTerm);
Description
GetDbMatchingParameterDbResponseParameter returns the corresponding DbParameter (MCDDbResponseParameter) responsible for the matching parameter.
If the corresponding response parameter is not available, the InvalidTypeException will be thrown.
|
|
NOTE — The appropriate MVCI system operation is MCDDbMatchingParameter::getDbResponseParameter
|
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
DbParameter |
Returns the corresponding DbParameter (MCDDbResponseParameter) responsible for the matching parameter.
|
Properties
OTL Examples
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;
List<List<DiagDataBrowsingPlus.DbMatchingParameter>> List_List_DbMatchingParameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
/// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "LL_AerodContrUnitUDS");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);
List_List_DbMatchingParameter = DiagDataBrowsingPlus.GetDbSubComponentDbMatchingParameters(List_DbSubComponent[0]);
DbParameter = DiagDataBrowsingPlus.GetDbMatchingParameterDbResponseParameter(List_List_DbMatchingParameter[0][0]);
See also
GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbSubComponents
GetDbSubComponentDbMatchingParameters