P_REINTEGOBJECTVALIDITYCALC2

CDS View

P_REINTEGOBJECTVALIDITYCALC2 is a CDS View in S/4HANA. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_REIntegObjectValidityCalc3 view inner COMPOSITE
@AbapCatalog.sqlViewName: 'PREINTOBJVALC2'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'Real Estate Integ Validity Calc2'

@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@VDM.private: true

@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
define view P_REIntegObjectValidityCalc2
  as select from P_REIntegObjectValidityCalc1
{
  key InternalRealEstateNumber,
      RealEstateExternalID,
      ValidityStartDate,
      ValidityEndDate
}

union select from I_REIntegrationObjectBasicData      as _REIntegrationObject
  left outer to one join P_REIntegObjectValidityCalc1 as _REIntegObjectValidityCalc1 on _REIntegrationObject.InternalRealEstateNumber = _REIntegObjectValidityCalc1.InternalRealEstateNumber
{
  key _REIntegrationObject.InternalRealEstateNumber,
      _REIntegrationObject.RealEstateExternalID,
      '00000000' as ValidityStartDate,
      '99991231' as ValidityEndDate
}
where
      _REIntegObjectValidityCalc1.InternalRealEstateNumber is null
  and _REIntegrationObject.REIntegrationObjectType         <> 'C4SG'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_REINTEGRATIONOBJECTBASICDATA",
"P_REINTEGOBJECTVALIDITYCALC1"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/