Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbRequestPDUMinLength"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetDbRequestPDUMinLength'''}}[[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:OTX '''GetDbRequestPDUMinLength'''}}[[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDbRequestPDUMinLength| Gets the minimum PDU length of the [[Extensions.DiagDataBrowsingPlus.DbRequest|DbRequest]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|DbRequest related terms]] | [[Extensions.DiagDataBrowsingPlus.NotSupportedException|NotSupportedException]] | - }} | + | {{ClassificationActivity | GetDbRequestPDUMinLength| Gets the minimum PDU length of the [[Extensions.DiagDataBrowsingPlus.DbRequest|DbRequest]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus#Terms|DbRequest related terms]] | [[Extensions.DiagDataBrowsingPlus.NotSupportedException|NotSupportedException]] | - }} |
== OTL Syntax == | == OTL Syntax == |
Revision as of 02:10, 21 September 2018
Contents
Classification
Name | GetDbRequestPDUMinLength |
Short Description | Gets the minimum PDU length of the DbRequest |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbRequest related terms |
Exceptions | NotSupportedException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
IntegerTerm = DiagDataBrowsingPlus.GetDbRequestPDUMinLength(DbRequestTerm);
Description
GetDbRequestPDUMinLength returns the minimum PDU length of the DbRequest.
If the communication primitive does not support the PDU information, the NotSupportedException exception will be thrown.
![]()
NOTE — The appropriate MVCI system operation is MCDDbRequest::getPDUMinLength
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Integer | Returns the minimum PDU length of the DbRequest. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
dbRequest | DbRequest | Term | - | [1..1] | The element addresses the DbRequest which minimum PDU length shall be returned. |
OTL Examples
DiagCom.DiagService DiagService;
DiagDataBrowsingPlus.DbDiagService DbDiagService;
DiagDataBrowsingPlus.DbRequest DbRequest;
Integer MyInteger;
/// Flow
DiagService = DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_RequeDownl");
DbDiagService = DiagDataBrowsingPlus.GetDiagServiceDbDiagService(DiagService);
DbRequest = DiagDataBrowsingPlus.GetDbDiagServiceDbRequest(DbDiagService);
MyInteger = DiagDataBrowsingPlus.GetDbRequestPDUMinLength(DbRequest);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
GetDiagServiceDbDiagService
GetDbDiagServiceDbRequest
GetRequest