I_CntrlInvcMgmtAcctgDocType
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)
| Source | Alias | Join Type |
|---|---|---|
| I_AccountingDocumentTypeText | DocumentTypeText | from |
| t003 | t003 | inner |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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