I_ProductTypeNumberRanges
Number ranges for product type
I_ProductTypeNumberRanges is a Basic CDS View that provides data about "Number ranges for product type" in SAP S/4HANA. It reads from 1 data source (t134) and exposes 3 fields with key field ProductType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t134 | t134 | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRODTYPENUMRG | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Number ranges for product type | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductType | |||
| InternalProductNumberRange | numki | |||
| ExternalProductNumberRange | numke |
@AbapCatalog:
{ sqlViewName: 'IPRODTYPENUMRG',
compiler.compareFilter: true,
preserveKey: true
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:
{ usageType: { serviceQuality: #A,
sizeCategory : #S,
dataClass: #MASTER
},
semanticKey:['ProductType']
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Number ranges for product type'
@Search. searchable: true
define view I_ProductTypeNumberRanges
as select from t134
{
@Search:
{ defaultSearchElement: true,
fuzzinessThreshold: 1,
ranking: #HIGH
}
key cast(t134.mtart as producttype preserving type ) as ProductType,
numki as InternalProductNumberRange,
numke as ExternalProductNumberRange
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T134"
],
"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