P_RU_RecnclnRpExcludeDocType

DDL: P_RU_RECNCLNRPEXCLUDEDOCTYPE SQL: PRURECREPEXD Type: view CONSUMPTION Package: GLO_FIN_IS_RU

Recon Rep Exclude doc types

P_RU_RecnclnRpExcludeDocType is a Consumption CDS View that provides data about "Recon Rep Exclude doc types" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 3 fields with key fields ReportingEntity, AccountingDocumentType. Part of development package GLO_FIN_IS_RU.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode AllCompanyCode from

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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 <> ''