I_PrftCtrSpcfcCoCodeAssgmt

DDL: I_PRFTCTRSPCFCCOCODEASSGMT Type: view BASIC Package: FINS_PROFIT_CENTER_VDM

Profit center specific cocode assgmt

I_PrftCtrSpcfcCoCodeAssgmt is a Basic CDS View that provides data about "Profit center specific cocode assgmt" in SAP S/4HANA. It reads from 1 data source (cepc_bukrs) and exposes 11 fields with key fields ControllingArea, ProfitCenter, CompanyCode. It has 2 associations to related views. Part of development package FINS_PROFIT_CENTER_VDM.

Data Sources (1)

SourceAliasJoin Type
cepc_bukrs cepc_bukrs from

Associations (2)

CardinalityTargetAliasCondition
[1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea
[1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPRFTCTRSPCCASGN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Profit center specific cocode assgmt view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea kokrs
KEY ProfitCenter prctr
KEY CompanyCode bukrs
JointVentureObjectType jv_otype
JointVentureClass jv_jibcl
JointVentureSubClass jv_jibsa
JointVenture vname
JointVentureRecoveryCode recid
JointVentureEquityType etype
_ControllingArea _ControllingArea
_CompanyCode _CompanyCode
@AbapCatalog: {
  sqlViewName: 'IPRFTCTRSPCCASGN',
  compiler.compareFilter: true
}

@AccessControl.authorizationCheck: #CHECK

@VDM.viewType: #BASIC

@Metadata: {
  ignorePropagatedAnnotations: true
}

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #M
}

@EndUserText.label: 'Profit center specific cocode assgmt'
define view I_PrftCtrSpcfcCoCodeAssgmt
  as select from cepc_bukrs

  association [1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
  association [1] to I_CompanyCode     as _CompanyCode     on $projection.CompanyCode = _CompanyCode.CompanyCode
{
      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_ControllingArea',
                     element: 'ControllingArea' }
        }]
      @ObjectModel.foreignKey.association: '_ControllingArea'
  key kokrs    as ControllingArea,
  key prctr    as ProfitCenter,
      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_CompanyCodeStdVH',
                     element: 'ControllingArea' }
        }]
      @ObjectModel.foreignKey.association: '_CompanyCode'
  key bukrs    as CompanyCode,
      jv_otype as JointVentureObjectType,
      jv_jibcl as JointVentureClass,
      jv_jibsa as JointVentureSubClass,
      vname    as JointVenture,
      recid    as JointVentureRecoveryCode,
      etype    as JointVentureEquityType,
      _ControllingArea,
      _CompanyCode
}