FAC_OPP_CDS_FACTORY_CALENDAR

DDL: FAC_OPP_CDS_FACTORY_CALENDAR SQL: FACOPPV_FAC_CAL Type: view

CDS View for Factory Calendar

FAC_OPP_CDS_FACTORY_CALENDAR is a CDS View that provides data about "CDS View for Factory Calendar" in SAP S/4HANA. It reads from 2 data sources (tfacd, tfact).

Data Sources (2)

SourceAliasJoin Type
tfacd tfacd from
tfact tfact left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FACOPPV_FAC_CAL view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #AUTOMATED view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS View for Factory Calendar view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
@AbapCatalog.sqlViewName: 'FACOPPV_FAC_CAL'
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #AUTOMATED
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CDS View for Factory Calendar'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass:  #MIXED
@ObjectModel.usageType.serviceQuality: #C

define view FAC_OPP_CDS_FACTORY_CALENDAR
  as select from    tfacd
    left outer join tfact on  tfacd.ident = tfact.ident
                          and tfact.spras = $session.system_language
{
  key tfacd.ident as factory_calendar_id,
      tfact.ltext as factory_calendar_descr
}
where
     tfacd.motag = '1'
  or tfacd.ditag = '1'
  or tfacd.miwch = '1'
  or tfacd.dotag = '1'
  or tfacd.frtag = '1'
  or tfacd.satag = '1'
  or tfacd.sotag = '1'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TFACD",
"TFACT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/