P_CO_DIANFormatByCompanyCode

DDL: P_CO_DIANFORMATBYCOMPANYCODE Type: view CONSUMPTION

P_CO_DIANFormatByCompanyCode is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 2 fields with key fields CO_DIANReportFormat, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode I_CompanyCode from

Parameters (1)

NameTypeDefault
P_CO_DIANReportFormat ficodian_report_format

Annotations (12)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PCOFRMTBYCOCODE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CompanyCode view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.sizeCategory #S view
VDM.private true view
VDM.viewType #CONSUMPTION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CO_DIANReportFormat
KEY CompanyCode CompanyCode
@AbapCatalog: {
  buffering.status: #NOT_ALLOWED,
  compiler.compareFilter: true,
  preserveKey: true,
  sqlViewName: 'PCOFRMTBYCOCODE'
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
  representativeKey: 'CompanyCode',
  usageType.dataClass: #MIXED,
  usageType.serviceQuality: #P,
  usageType.sizeCategory: #S
}
@VDM: {
  private: true,
  viewType: #CONSUMPTION
}
define view P_CO_DIANFormatByCompanyCode
  with parameters
    P_CO_DIANReportFormat : ficodian_report_format

  as select from I_CompanyCode
{
  key $parameters.P_CO_DIANReportFormat as CO_DIANReportFormat,
  key CompanyCode
}