Extensions.DiagDataBrowsingPlus.GetDbFaultMemoryDiagTroubleCodes

From emotive
Jump to navigation Jump to search

Classification

Name GetDbFaultMemoryDiagTroubleCodes
Short Description Gets the DbDiagTroubleCodes of the DbFaultMemory
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbFaultMemory related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

ListTerm DiagDataBrowsingPlus.GetDbFaultMemoryDiagTroubleCodes(DbFaultMemoryTerm faultMemory);

Description

GetDbFaultMemoryDiagTroubleCodes returns a list of DbDiagTroubleCode (MCDDbDiagTroubleCode) for the DbFaultMemory which is available in ODX. If no elements are available in database, then an empty list will be delivered.

Icons Note.png The appropriate MVCI system operation is MCDDbFaultMemory::getDbDiagTroubleCodes

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
List Returns returns a list of DbDiagTroubleCode for the DbFaultMemory

.

Properties

Name Data Type Class Default Cardinality Description
FaultMemory DbFaultMemory Term - [1..1] The element addresses the DbFaultMemory which DbDiagTroubleCodes shall be returned.

OTL Examples

/// Local Declarations

DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbFaultMemory> List_DbFaultMemory;
List<DiagDataBrowsingPlus.DbDiagTroubleCode> List_DbDiagTroubleCode;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel("", "LL_GatewUDS");
List_DbFaultMemory = DiagDataBrowsingPlus.GetDbComChannelDbFaultMemories(DbComChannel);
List_DbDiagTroubleCode = DiagDataBrowsingPlus.GetDbFaultMemoryDiagTroubleCodes(List_DbFaultMemory[0]);

See also

GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbFaultMemories
GetDbSubComponentDbFaultMemories