I_GLAcctInCoCodeImplementStat

DDL: I_GLACCTINCOCODEIMPLEMENTSTAT Type: view_entity BASIC Package: FINS_GLACCT_IMST

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. Part of development package FINS_GLACCT_IMST.

Data Sources (1)

SourceAliasJoin Type
skb_imst skb_imst from

Annotations (8)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED 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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode skb_imst bukrs
KEY GLAccount skb_imst saknr
GLAcctCoCodeImplementStatus skb_imst imst
GLAccountCoCodIsDeliveredBySAP skb_imst delivered_by_sap
 @AbapCatalog.entityBuffer.definitionAllowed: true
 @AccessControl.authorizationCheck: #NOT_REQUIRED

@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 entity 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        


}