I_InspectionLotStatus
Inspection Lot Status
I_InspectionLotStatus is a Composite CDS View that provides data about "Inspection Lot Status" in SAP S/4HANA. It reads from 1 data source (I_StatusObjectActiveStatus) and exposes 6 fields with key fields StatusObject, StatusCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StatusObjectActiveStatus | I_StatusObjectActiveStatus | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPLOTSTS | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Inspection Lot Status | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.representativeKey | StatusObject | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusObject | StatusObject | ||
| KEY | StatusCode | StatusCode | ||
| StatusProfile | StatusProfile | |||
| _StatusObject | _StatusObject | |||
| _StatusProfile | _StatusProfile | |||
| _StatusCode | _StatusCode |
@AbapCatalog.sqlViewName: 'IINSPLOTSTS'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
// Status data shall be protected and read only in context of the object having this status
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Inspection Lot Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel.representativeKey: 'StatusObject'
@ObjectModel.compositionRoot: true
@ObjectModel.usageType: {
dataClass: #TRANSACTIONAL,
sizeCategory: #L,
serviceQuality: #C
}
define view I_InspectionLotStatus as select from I_StatusObjectActiveStatus {
key StatusObject,
key StatusCode,
StatusProfile,
_StatusObject,
_StatusProfile ,
_StatusCode
}
where StatusObject like 'QL%'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_STATUSOBJECTACTIVESTATUS"
],
"ASSOCIATED":
[
"I_STATUSCODE",
"I_STATUSOBJECT",
"I_STATUSPROFILE"
],
"BASE":
[
"I_STATUSOBJECTACTIVESTATUS"
],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA