P_InvPrice_Manage_Max_Fiscal

DDL: P_INVPRICE_MANAGE_MAX_FISCAL SQL: PMAXFISCALINVP Type: view BASIC

P_InvPrice_Manage_Max_Fiscal is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (ckmlhd, ckmlpp) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
ckmlhd hd inner
ckmlpp pp from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName PMAXFISCALINVP view
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
CostEstimate ckmlpp kalnr
FiscalYearPeriod
ValuationArea ckmlhd bwkey
@AbapCatalog.sqlViewName: 'PMAXFISCALINVP'
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_InvPrice_Manage_Max_Fiscal
  as select from ckmlpp as pp
    inner join   ckmlhd as hd on hd.kalnr = pp.kalnr
{
  pp.kalnr                  as   CostEstimate,
  concat(pp.bdatj,pp.poper) as   FiscalYearPeriod,
  hd.bwkey                  as   ValuationArea
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CKMLHD",
"CKMLPP"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/