I_CycleCountingSettings
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)
| Source | Alias | Join Type |
|---|---|---|
| t159c | t159c | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA