I_AvailableCapacityType

DDL: I_AVAILABLECAPACITYTYPE SQL: IPPAVAILCAPTYPE Type: view BASIC Package: VDM_PP_MD_WKC

Avail Ent Resource Capacity Type Code

I_AvailableCapacityType is a Basic CDS View (Dimension) that provides data about "Avail Ent Resource Capacity Type Code" in SAP S/4HANA. It reads from 1 data source (tc36) and exposes 2 fields with key field AvailableCapacityType. It has 1 association to related views. Part of development package VDM_PP_MD_WKC.

Data Sources (1)

SourceAliasJoin Type
tc36 typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_AvailableCapacityTypeText _Text $projection.AvailableCapacityType = _Text.AvailableCapacityType

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPAVAILCAPTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey AvailableCapacityType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Avail Ent Resource Capacity Type Code view
ObjectModel.sapObjectNodeType.name AvailEntResourceCapacityType view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AvailableCapacityType
_Text _Text
@AbapCatalog.sqlViewName: 'IPPAVAILCAPTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'AvailableCapacityType'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Avail Ent Resource Capacity Type Code'
@ObjectModel.sapObjectNodeType.name: 'AvailEntResourceCapacityType'

define view I_AvailableCapacityType
  as select from tc36 as typ

  association [0..*] to I_AvailableCapacityTypeText as _Text on $projection.AvailableCapacityType = _Text.AvailableCapacityType
{
      @ObjectModel.text.association: '_Text'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(typ.versn as availablecapacitytype preserving type) as AvailableCapacityType,

      // Associations

      _Text
};