I_REContractCheckTable
Real Estate Contract Check Table
I_REContractCheckTable is a Basic CDS View that provides data about "Real Estate Contract Check Table" in SAP S/4HANA. It reads from 1 data source (I_REContract) and exposes 4 fields with key fields CompanyCode, RealEstateContract. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_REContract | I_REContract | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_REContract | _REContract | $projection.InternalRealEstateNumber = _REContract.InternalRealEstateNumber |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRECONTRACTCT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Real Estate Contract Check Table | view | |
| ObjectModel.representativeKey | RealEstateContract | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| KEY | RealEstateContract | |||
| InternalRealEstateNumber | InternalRealEstateNumber | |||
| _REContract | _REContract |
@AbapCatalog.sqlViewName: 'IRECONTRACTCT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Real Estate Contract Check Table'
@ObjectModel: { representativeKey: 'RealEstateContract',
semanticKey: ['CompanyCode', 'RealEstateContract'] ,
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #MASTER }
@VDM.viewType: #BASIC
define view I_REContractCheckTable
as select from I_REContract
association [1..1] to I_REContract as _REContract on $projection.InternalRealEstateNumber = _REContract.InternalRealEstateNumber
{
key CompanyCode,
key cast(RealEstateContract as recnnumber preserving type ) as RealEstateContract,
InternalRealEstateNumber,
_REContract
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RECONTRACT"
],
"ASSOCIATED":
[
"I_RECONTRACT"
],
"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