P_RU_RecnclnRpExcludeDocType
P_RU_RecnclnRpExcludeDocType is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 3 fields with key fields ReportingEntity, AccountingDocumentType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCode | AllCompanyCode | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PRURECREPEXD | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.private | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReportingEntity | Cust | StatryRptgEntity | |
| KEY | AccountingDocumentType | Cust | AccountingDocumentType | |
| CompanyCode | CompanyCodes | CompanyCode |
@AbapCatalog.sqlViewName: 'PRURECREPEXD'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED
@VDM.private: true
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter:true
define view P_RU_RecnclnRpExcludeDocType
as select from I_CompanyCode as AllCompanyCode
left outer to one join I_StRpEntityOrganizationalUnit as CompanyCodes on CompanyCodes.CompanyCode = AllCompanyCode.CompanyCode
and CompanyCodes.OrganizationalUnitObjType = 'COMPANYCODE'
left outer to one join I_RU_RecnclnRptExcludeDocType as Cust on Cust.StatryRptgEntity = CompanyCodes.StatryRptgEntity
//left outer join I_RU_RecnclnRpExcludeDocType as Cust2 on Cust2.ReportingEntity = ''
{
key Cust.StatryRptgEntity as ReportingEntity,
key Cust.AccountingDocumentType,
CompanyCodes.CompanyCode
} where Cust.StatryRptgEntity <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COMPANYCODE",
"I_RU_RECNCLNRPTEXCLUDEDOCTYPE",
"I_STRPENTITYORGANIZATIONALUNIT"
],
"ASSOCIATED":
[],
"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