C_MM_GLAccountVH
GL Account Value Help in Material Management
C_MM_GLAccountVH is a Consumption CDS View that provides data about "GL Account Value Help in Material Management" in SAP S/4HANA. It reads from 1 data source (I_GLAccount) and exposes 5 fields with key fields GLAccount, ChartOfAccounts, CompanyCode. Part of development package APPL_MM_COMP_ACCTASSGMT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccount | I_GLAccount | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMMGLACC_VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | GLAccount | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | GL Account Value Help in Material Management | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #REQUIRED | view |
@AbapCatalog.sqlViewName: 'CMMGLACC_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.semanticKey: [ 'GLAccount' ]
@ObjectModel.representativeKey: 'GLAccount'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'GL Account Value Help in Material Management'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED
// ACCOUNT REUSE VIEW 1711, NO DCL
define view C_MM_GLAccountVH as select from I_GLAccount
association[0..1] to I_GlAccountTextInCompanycode as _Text
on $projection.CompanyCode = _Text.CompanyCode
and $projection.GLAccount = _Text.GLAccount
and _Text.Language = $session.system_language
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
key GLAccount,
@Search: { defaultSearchElement: true, ranking: #MEDIUM }
key ChartOfAccounts,
@Search: { defaultSearchElement: true, ranking: #HIGH }
key CompanyCode,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #HIGH }
_Text.GLAccountName,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #HIGH }
_Text.GLAccountLongName
}
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