P_REINTEGOBJECTVALIDITYCALC2
Integration Object Validity Calculation Mapped Objects
P_REINTEGOBJECTVALIDITYCALC2 is a CDS View in S/4HANA. Integration Object Validity Calculation Mapped Objects. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_REIntegObjectValidityCalc3 | view | inner | COMPOSITE | Integration Object Validity Calculation Space Groups |
@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'