I_BatchRestrictionStatus
Batch Restriction Status
I_BatchRestrictionStatus is a Basic CDS View (Dimension) that provides data about "Batch Restriction Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BatchRestrictionStatus. It has 1 association to related views. Part of development package LO_BM_BATCH_DB.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BatchRestrictionStatusText | _Text | $projection.BatchRestrictionStatus = _Text.BatchRestrictionStatus |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBTCHRSTRST | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Batch Restriction Status | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | BatchRestrictionStatus | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.private | false | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BatchRestrictionStatus | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IBTCHRSTRST'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Batch Restriction Status'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass:#CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'BatchRestrictionStatus'
@Analytics.dataCategory: #DIMENSION
@VDM.private: false
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define view I_BatchRestrictionStatus
as select from dd07l
association [0..*] to I_BatchRestrictionStatusText as _Text on $projection.BatchRestrictionStatus = _Text.BatchRestrictionStatus
{
@ObjectModel.text.association: '_Text'
key cast ( substring( domvalue_l, 1, 1 ) as batch_status preserving type) as BatchRestrictionStatus,
_Text
}
where
domname = 'BATCH_STATUS'
and as4local = 'A'
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