I_UtilsProdValidToCharName
Valid To Date for Utilities Product
I_UtilsProdValidToCharName is a Composite CDS View that provides data about "Valid To Date for Utilities Product" in SAP S/4HANA. It reads from 3 data sources (I_ClfnCharacteristic, I_UtilsCommonFields, I_Product) and exposes 5 fields with key fields CharcInternalID, UtilitiesProduct.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_ClfnCharacteristic | _C | inner |
| I_UtilsCommonFields | _Comm | inner |
| I_Product | _P | inner |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IUILPRODVALIDTOD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Valid To Date for Utilities Product | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CharcInternalID | CharacteristicsValue | CharcInternalID | |
| KEY | UtilitiesProduct | CharacteristicsValue | ClfnObjectID | |
| Characteristic | I_ClfnCharacteristic | Characteristic | ||
| UtilsProdValidToDate | CharacteristicsValue | CharcFromDate | ||
| ProductGroup | I_Product | ProductGroup |
@AbapCatalog.sqlViewName: 'IUILPRODVALIDTOD'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Valid To Date for Utilities Product'
define view I_UtilsProdValidToCharName
as select distinct from I_ClfnObjectCharcValForKeyDate(P_KeyDate: $session.system_date) as CharacteristicsValue
// as select distinct from I_ClfnObjectCharcValue as CharacteristicsValue
inner join I_ClfnCharacteristic as _C on _C.CharcInternalID = CharacteristicsValue.CharcInternalID
inner join I_Product as _P on _P.Product = CharacteristicsValue.ClfnObjectID
inner join I_UtilsCommonFields as _Comm on _Comm.UtilsProductGroup = _P.ProductGroup
or _Comm.UtilsReferenceProductGroup = _P.ProductGroup
{
key CharacteristicsValue.CharcInternalID,
key CharacteristicsValue.ClfnObjectID as UtilitiesProduct,
_C.Characteristic,
CharacteristicsValue.CharcFromDate as UtilsProdValidToDate,
_P.ProductGroup
}
where
_C.Characteristic = _Comm.ValidToCharacteristic
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CLFNCHARACTERISTIC",
"I_CLFNOBJECTCHARCVALFORKEYDATE",
"I_PRODUCT",
"I_UTILSCOMMONFIELDS"
],
"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