I_MRPRequestDistributionStatus
MRP Request Distributed Status
I_MRPRequestDistributionStatus is a Basic CDS View that provides data about "MRP Request Distributed Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields MRPRequestDistributionStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMRPREQDISTSTAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | MRP Request Distributed Status | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MRPRequestDistributionStatus | |||
| KEY | Language | ddlanguage | ||
| MRPRequestDistributionName | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'IMRPREQDISTSTAT'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'MRP Request Distributed Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.preserveKey:true
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_MRPRequestDistributionStatus as select from dd07t
{
key cast ( substring( dd07t.domvalue_l, 1, 1 ) as mrpcrstate ) as MRPRequestDistributionStatus,
key ddlanguage as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
dd07t.ddtext as MRPRequestDistributionName
}
where
dd07t.domname = 'MRPCRSTATE'
and dd07t.as4local = 'A'
and dd07t.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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