I_UtilsProdValidToCharName

DDL: I_UTILSPRODVALIDTOCHARNAME SQL: IUILPRODVALIDTOD Type: view COMPOSITE

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)

SourceAliasJoin Type
I_ClfnCharacteristic _C inner
I_UtilsCommonFields _Comm inner
I_Product _P inner

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/