I_CycleCountingSettings

DDL: I_CYCLECOUNTINGSETTINGS Type: view BASIC

Cycle Counting Settings exposed

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

Data Sources (1)

SourceAliasJoin Type
t159c t159c from

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName ICYCCOUNTSET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Cycle Counting Settings exposed view
ClientHandling.algorithm #SESSION_VARIABLE 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
VDM.private false view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Plant werks
KEY CycleCountType
NmbrOfPhysInvtryPerFiscalYear
PhysInvtryIntvlForCycCounting
PhysInvtryFloatTimeCycCounting
ConfigDeprecationCode
@AbapCatalog: {
                sqlViewName: 'ICYCCOUNTSET',
                compiler.compareFilter: true,
                preserveKey: true,
                buffering : { status : #ACTIVE, type: #GENERIC, numberOfKeyFields: 2 }
              }
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Cycle Counting Settings exposed'
@ClientHandling.algorithm: #SESSION_VARIABLE
@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]
               }
//@ObjectModel.resultSet.sizeCategory: #XS    "category XS lead to dropdown value help, without displaying plants

@VDM: {
        private: false,
        viewType: #BASIC
      }
@Search.searchable: true
@Consumption.ranked: true
define view 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
}