I_CntrlInvcMgmtAcctgDocType

DDL: I_CNTRLINVCMGMTACCTGDOCTYPE SQL: ICIMACCTGDOCTYPE Type: view BASIC Package: CIM_INT_CONFIGURATION

Accounting Document Type for Import

I_CntrlInvcMgmtAcctgDocType is a Basic CDS View that provides data about "Accounting Document Type for Import" in SAP S/4HANA. It reads from 2 data sources (I_AccountingDocumentTypeText, t003) and exposes 7 fields with key fields AccountingDocumentType, LanguageISOCode. Part of development package CIM_INT_CONFIGURATION.

Data Sources (2)

SourceAliasJoin Type
I_AccountingDocumentTypeText DocumentTypeText from
t003 t003 inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICIMACCTGDOCTYPE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Accounting Document Type for Import view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.modelingPattern #NONE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AccountingDocumentType
KEY LanguageISOCode
AccountingDocumentTypeName
AssetAccountPostingIsAllowed
MatlAcctPostingIsAllowed
GLAccountPostingIsAllowed
AuthorizationGroup t003 brgru
@AbapCatalog.sqlViewName: 'ICIMACCTGDOCTYPE'
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Accounting Document Type for Import'
@VDM.viewType: #BASIC
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #B,
  sizeCategory: #S
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#SQL_DATA_SOURCE]
@ObjectModel.modelingPattern:#NONE
define view I_CntrlInvcMgmtAcctgDocType
  as select from I_AccountingDocumentTypeText as DocumentTypeText
    inner join   t003 on DocumentTypeText.AccountingDocumentType = t003.blart
{

  key  cast(DocumentTypeText.AccountingDocumentType as cimic_accounting_document_type)    as AccountingDocumentType,
  key  cast(DocumentTypeText._Language.LanguageISOCode as cimic_nte_langu)                as LanguageISOCode,
       @Semantics.text:true
       cast(DocumentTypeText.AccountingDocumentTypeName as cimic_acct_document_type_name) as AccountingDocumentTypeName,
       cast(t003.xkoaa as cimic_posting_to_asset_account )                                as AssetAccountPostingIsAllowed,
       cast(t003.xkoam as cimic_posting_to_material_acct )                                as MatlAcctPostingIsAllowed,
       cast(t003.xkoas as cimic_posting_to_gl_account )                                   as GLAccountPostingIsAllowed,
       t003.brgru                                                                         as AuthorizationGroup
}