P_CC_DefaultGlobalParameter
P_CC_DefaultGlobalParameter is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (t000, tf004) and exposes 8 fields.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PCCGLOBALPARAM00 | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CnsldtnDimension | ||||
| CnsldtnChartOfAccounts | ||||
| CnsldtnLedger | ||||
| CnsldtnVersion | ||||
| FiscalYear | ||||
| FiscalPeriod | ||||
| CnsldtnGroup | ||||
| CnsldtnUnit |
@VDM.viewType: #BASIC
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PCCGLOBALPARAM00'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_CC_DefaultGlobalParameter
as select from t000 t1 left outer join tf004 t2 on t2.uname = $session.user
{
coalesce(t2.dimen, 'Y1') as CnsldtnDimension,
coalesce(t2.itclg, '') as CnsldtnChartOfAccounts,
coalesce(t2.rldnr, 'Y1') as CnsldtnLedger,
coalesce(t2.rvers, '') as CnsldtnVersion,
coalesce(t2.ryear, '') as FiscalYear,
coalesce(t2.perid, '') as FiscalPeriod,
coalesce(t2.congr, '') as CnsldtnGroup,
coalesce(t2.bunit, '') as CnsldtnUnit
}
where t1.mandt = $session.client
;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T000",
"TF004"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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