C_AllocationReceiverGLAcctVH

DDL: C_ALLOCATIONRECEIVERGLACCTVH SQL: CGLACCPSXNVH Type: view CONSUMPTION

Allocation Receiver GL Account

C_AllocationReceiverGLAcctVH is a Consumption CDS View that provides data about "Allocation Receiver GL Account" in SAP S/4HANA. It reads from 1 data source (P_GLAccountTypeVH) and exposes 8 fields with key fields CompanyCode, GLAccount, GLAccountExternal, ChartOfAccounts.

Data Sources (1)

SourceAliasJoin Type
P_GLAccountTypeVH P_GLAccountTypeVH from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CGLACCPSXNVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Allocation Receiver GL Account view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY GLAccount GLAccount
KEY GLAccountExternal
KEY ChartOfAccounts ChartOfAccounts
AlternativeGLAccount AlternativeGLAccount
GLAccountType GLAccountType
GLAccountName GLAccountName
GLAccountLongName GLAccountLongName
@AbapCatalog.sqlViewName: 'CGLACCPSXNVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.dataCategory: #VALUE_HELP

@VDM.viewType: #CONSUMPTION

@Search.searchable: true
@EndUserText.label: 'Allocation Receiver GL Account'
define view C_AllocationReceiverGLAcctVH as 
select from P_GLAccountTypeVH    
{
    key CompanyCode,
    key GLAccount,
    key cast (P_GLAccountTypeVH.GLAccountExternal as fco_alloc_glaccount_external preserving type) as GLAccountExternal,
    key ChartOfAccounts,
        AlternativeGLAccount,
        GLAccountType,
        GLAccountName,
        GLAccountLongName
}
where GLAccountType = 'P' or GLAccountType = 'S' or GLAccountType = 'X'  or GLAccountType = 'N'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_GLACCOUNTTYPEVH"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/