I_CycleCountingSettings

DDL: I_CYCLECOUNTINGSETTINGS Type: view_entity BASIC Package: MM_IM_RAP_PI_CUSTOMIZING

Cycle Counting Settings

I_CycleCountingSettings is a Basic CDS View that provides data about "Cycle Counting Settings" in SAP S/4HANA. It reads from 1 data source (t159c) and exposes 6 fields with key fields Plant, CycleCountType. Part of development package MM_IM_RAP_PI_CUSTOMIZING.

Data Sources (1)

SourceAliasJoin Type
t159c t159c from

Annotations (16)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Cycle Counting Settings view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CycleCountType view
ObjectModel.sapObjectNodeType.name PhysInvtryCycleCntImportance view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.technicalName ICYCCOUNTSET view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Plant werks
KEY CycleCountType
NmbrOfPhysInvtryPerFiscalYear
PhysInvtryIntvlForCycCounting
PhysInvtryFloatTimeCycCounting
ConfigDeprecationCode
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Cycle Counting Settings'
@ObjectModel: {
                 usageType: {
                              sizeCategory: #S,
                              serviceQuality: #C,
                              dataClass:#CUSTOMIZING
                            },
                 dataCategory: #VALUE_HELP,
                 representativeKey: 'CycleCountType',
                 sapObjectNodeType: {
                                      name: 'PhysInvtryCycleCntImportance'
                                    },
                 modelingPattern: #ANALYTICAL_DIMENSION,
                 supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE]
               }
@Analytics.technicalName: 'ICYCCOUNTSET'
//@ObjectModel.resultSet.sizeCategory: #XS    "category XS lead to dropdown value help, without displaying plants

@VDM: {
        viewType: #BASIC
      }
@Search.searchable: true
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations:true
@Analytics.dataExtraction.enabled: true

define view entity I_CycleCountingSettings
  as select from t159c
{
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key werks                                                           as Plant,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key cast( abcin as mmim_cycle_count_type )                          as CycleCountType,

      cast( aninv as mmim_cycle_count_per_fisc_year )                 as NmbrOfPhysInvtryPerFiscalYear,
      cast( ininv as mmim_cycle_count_interval )                      as PhysInvtryIntvlForCycCounting,
      cast( pzinv as mmim_cycle_count_float_time )                    as PhysInvtryFloatTimeCycCounting,
      cast( configurationdeprecationcode as config_deprecation_code ) as ConfigDeprecationCode
}