P_LedgerCompanyCode

DDL: P_LEDGERCOMPANYCODE Type: view_entity BASIC Package: FINS_LEDGER_VDM

Private view for main attributes of company code in ledger

P_LedgerCompanyCode is a Basic CDS View that provides data about "Private view for main attributes of company code in ledger" in SAP S/4HANA. It reads from 1 data source (I_LedgerCompanyCodeCrcyRoles) and exposes 8 fields with key fields Ledger, AccountingPrinciple, CompanyCode. Part of development package FINS_LEDGER_VDM.

Data Sources (1)

SourceAliasJoin Type
I_LedgerCompanyCodeCrcyRoles I_LedgerCompanyCodeCrcyRoles from

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.representativeKey CompanyCode view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Ledger I_LedgerCompanyCodeCrcyRoles Ledger
KEY AccountingPrinciple I_LedgerCompanyCodeCrcyRoles AccountingPrinciple
KEY CompanyCode I_LedgerCompanyCodeCrcyRoles CompanyCode
FiscalYearVariant I_LedgerCompanyCodeCrcyRoles FiscalYearVariant
_Ledger I_LedgerCompanyCodeCrcyRoles _Ledger
_CompanyCode I_LedgerCompanyCodeCrcyRoles _CompanyCode
_FiscalYearVariant I_LedgerCompanyCodeCrcyRoles _FiscalYearVariant
_AccountingPrinciple I_LedgerCompanyCodeCrcyRoles _AccountingPrinciple
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private:true
@ObjectModel.representativeKey: 'CompanyCode'
//@Analytics.technicalName: 'PFILDCOCODE'


define view entity P_LedgerCompanyCode as select from I_LedgerCompanyCodeCrcyRoles as I_LedgerCompanyCodeCrcyRoles
{

@ObjectModel.foreignKey.association: '_Ledger'
key I_LedgerCompanyCodeCrcyRoles.Ledger,
@ObjectModel.foreignKey.association: '_AccountingPrinciple'
key I_LedgerCompanyCodeCrcyRoles.AccountingPrinciple,    
@ObjectModel.foreignKey.association: '_CompanyCode'
key I_LedgerCompanyCodeCrcyRoles.CompanyCode,
I_LedgerCompanyCodeCrcyRoles.FiscalYearVariant,
    
I_LedgerCompanyCodeCrcyRoles._Ledger,
I_LedgerCompanyCodeCrcyRoles._CompanyCode,
I_LedgerCompanyCodeCrcyRoles._FiscalYearVariant,
I_LedgerCompanyCodeCrcyRoles._AccountingPrinciple

}