Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbRequestPDUMaxLength"
Jump to navigation
Jump to search
Line 44: | Line 44: | ||
[[Extensions.DiagDataBrowsingPlus.GetDiagServiceDbDiagService|GetDiagServiceDbDiagService]] <br/> | [[Extensions.DiagDataBrowsingPlus.GetDiagServiceDbDiagService|GetDiagServiceDbDiagService]] <br/> | ||
[[Extensions.DiagDataBrowsingPlus.GetDbDiagServiceDbRequest|GetDbDiagServiceDbRequest]] <br/> | [[Extensions.DiagDataBrowsingPlus.GetDbDiagServiceDbRequest|GetDbDiagServiceDbRequest]] <br/> | ||
+ | [[Extensions.DiagCom.GetRequest|GetRequest]] |
Revision as of 08:04, 14 September 2018
Contents
Classification
Name | GetDbRequestPDUMaxLength |
Short Description | Gets the maximum 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.GetDbRequestPDUMaxLength(DbRequestTerm);
Description
GetDbRequestPDUMaxLength returns the maximum 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::getPDUMaxLength
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 maximum PDU length of the DbRequest. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
dbRequest | DbRequest | Term | - | [1..1] | The element addresses the DbRequest which maximum 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_ReadDataByIdentActuaTestStatu");
DbDiagService = DiagDataBrowsingPlus.GetDiagServiceDbDiagService(DiagService);
DbRequest = DiagDataBrowsingPlus.GetDbDiagServiceDbRequest(DbDiagService);
MyInteger = DiagDataBrowsingPlus.GetDbRequestPDUMaxLength(DbRequest);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
GetDiagServiceDbDiagService
GetDbDiagServiceDbRequest
GetRequest