I_MM_GLAccountVH
Purchasing GL Account Value Help
I_MM_GLAccountVH is a Composite CDS View that provides data about "Purchasing GL Account Value Help" in SAP S/4HANA. It reads from 1 data source (I_GLAccountStdVH) and exposes 5 fields with key fields GLAccount, CompanyCode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountStdVH | GLAccount | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_GlAccountTextInCompanycode | _Text | $projection.CompanyCode = _Text.CompanyCode and $projection.GLAccount = _Text.GLAccount and _Text.Language = $session.system_language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #COMPOSITE | view | |
| EndUserText.label | Purchasing GL Account Value Help | view | |
| AbapCatalog.sqlViewName | IMMGLACCT_VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.representativeKey | GLAccount | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| AccessControl.authorizationCheck | #CHECK | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GLAccount | I_GLAccountStdVH | GLAccount | |
| KEY | CompanyCode | I_GLAccountStdVH | CompanyCode | |
| ChartOfAccounts | I_GLAccountStdVH | ChartOfAccounts | ||
| GLAccountLongName | _Text | GLAccountLongName | ||
| _Text | _Text |
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Purchasing GL Account Value Help'
@AbapCatalog.sqlViewName: 'IMMGLACCT_VH'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.representativeKey: 'GLAccount'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.privilegedAssociations: ['_Text']
@Search.searchable: true
@Consumption.ranked: true
@AccessControl.authorizationCheck: #CHECK
define view I_MM_GLAccountVH
as select from I_GLAccountStdVH as 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 } //Note 2856776, Note 3026562
@ObjectModel.text.association: '_Text'
key GLAccount.GLAccount as GLAccount,
@Search: { defaultSearchElement: true, ranking: #HIGH }
key GLAccount.CompanyCode as CompanyCode,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
GLAccount.ChartOfAccounts as ChartOfAccounts,
_Text.GLAccountLongName, //Note 2850800
//Asssociations
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_GLACCOUNTSTDVH",
"I_GLACCOUNTTEXTINCOMPANYCODE"
],
"ASSOCIATED":
[
"I_GLACCOUNTTEXTINCOMPANYCODE"
],
"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