I_AcctgPrincipleCoCodeConfign
Accounting Principle Confign per Co Code
I_AcctgPrincipleCoCodeConfign is a Basic CDS View that provides data about "Accounting Principle Confign per Co Code" in SAP S/4HANA. It reads from 3 data sources (P_LDCMP, t001, I_AcctgPrncpChtAcctsConfign) and exposes 6 fields with key fields Ledger, CompanyCode.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| P_LDCMP | datasource1 | from |
| t001 | datasource2 | left_outer |
| I_AcctgPrncpChtAcctsConfign | datasource3 | left_outer |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIAPCLS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Accounting Principle Confign per Co Code | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Ledger | P_LDCMP | rldnr | |
| KEY | CompanyCode | P_LDCMP | bukrs | |
| AccountingPrinciple | P_LDCMP | acc_principle | ||
| FunctionalCurrencyRole | functional_currency | |||
| ChartOfAccounts | t001 | ktopl | ||
| FinancialStatementHierarchy | I_AcctgPrncpChtAcctsConfign | FinancialStatementHierarchy |
@AbapCatalog.sqlViewName: 'IFIAPCLS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@EndUserText.label: 'Accounting Principle Confign per Co Code'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
serviceQuality: #B,
dataClass: #CUSTOMIZING,
sizeCategory: #S
}
define view I_AcctgPrincipleCoCodeConfign as select from P_LDCMP as datasource1
left outer join t001 as datasource2 on datasource1.bukrs = datasource2.bukrs
left outer join I_AcctgPrncpChtAcctsConfign as datasource3 on datasource1.acc_principle = datasource3.AccountingPrinciple
and datasource2.ktopl = datasource3.ChartOfAccounts
{
key datasource1.rldnr as Ledger,
key datasource1.bukrs as CompanyCode,
datasource1.acc_principle as AccountingPrinciple,
functional_currency as FunctionalCurrencyRole,
datasource2.ktopl as ChartOfAccounts,
datasource3.FinancialStatementHierarchy
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ACCTGPRNCPCHTACCTSCONFIGN",
"P_LDCMP",
"T001"
],
"ASSOCIATED":
[],
"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