I_GeneralLedgerAccountVH
General Ledger Value Help
I_GeneralLedgerAccountVH is a Composite CDS View that provides data about "General Ledger Value Help" in SAP S/4HANA. It reads from 1 data source (I_GLAccount) and exposes 4 fields with key fields GLAccount, CompanyCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccount | I_GLAccount | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IGLACCNTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | General Ledger Value Help | view | |
| AccessControl.authorizationCheck | #CHECK | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GLAccount | GLAccount | ||
| KEY | CompanyCode | CompanyCode | ||
| ChartOfAccounts | ChartOfAccounts | |||
| GLAccountName | _Text | GLAccountName |
@AbapCatalog.sqlViewName: 'IGLACCNTVH'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
@AbapCatalog.preserveKey:true
@EndUserText.label: 'General Ledger Value Help'
@AccessControl.authorizationCheck: #CHECK
define view I_GeneralLedgerAccountVH
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: #HIGH }
key CompanyCode,
@Search: { defaultSearchElement: true, ranking: #MEDIUM }
ChartOfAccounts,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #HIGH }
_Text.GLAccountName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_GLACCOUNT",
"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