I_GLAcctInCoCodeImplementStat
Implementation Status of GL Account on COCD
I_GLAcctInCoCodeImplementStat is a Basic CDS View that provides data about "Implementation Status of GL Account on COCD" in SAP S/4HANA. It reads from 1 data source (skb_imst) and exposes 4 fields with key fields CompanyCode, GLAccount.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| skb_imst | skb_imst | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIGLACCINCCDIMS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 1 | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Implementation Status of GL Account on COCD | view |
@AbapCatalog: {
sqlViewName: 'IFIGLACCINCCDIMS',
compiler.compareFilter: true,
preserveKey: true,
buffering:{
status: #ACTIVE,
type: #GENERIC,
numberOfKeyFields: 1
}
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel: {
semanticKey: [ 'GLAccount', 'CompanyCode' ],
// representativeKey: 'CompanyCode',
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
}
@EndUserText.label: 'Implementation Status of GL Account on COCD'
define view I_GLAcctInCoCodeImplementStat
as select from skb_imst {
key skb_imst.bukrs as CompanyCode,
// @ObjectModel.foreignKey.association
key skb_imst.saknr as GLAccount,
skb_imst.imst as GLAcctCoCodeImplementStatus,
skb_imst.delivered_by_sap as GLAccountCoCodIsDeliveredBySAP
// case skb_imst.imst
// when '' then
// 'I' //in process for SAP Delivered Content after Migration
// else
// skb_imst.imst
// end as GLAcctCoCodeImplementStatus,
// case skb_imst.imst
// when '' then
// 'X' //in process for SAP Delivered Content after Migration
// else
// skb_imst.delivered_by_sap
// end as GLAccountCoCodIsDeliveredBySAP
}
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