Deprecated
This CDS view is deprecated in S/4HANA. Use I_CycleCountingSettings instead. View all deprecated CDS views →

C_Abcindicatortemp

DDL: C_ABCINDICATORTEMP SQL: CABCINDICATORVH Type: view CONSUMPTION

ABC Indicator value help

C_Abcindicatortemp is a Consumption CDS View that provides data about "ABC Indicator value help" in SAP S/4HANA. It reads from 1 data source (I_CycleCountingSettings) and exposes 3 fields with key fields Plant, InventoryForCycleCountInd. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CycleCountingSettings I_CycleCountingSettings from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CABCINDICATORVH view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_CycleCountingSettings view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
ObjectModel.representativeKey InventoryForCycleCountInd view
EndUserText.label ABC Indicator value help view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
KEY InventoryForCycleCountInd CycleCountType Cycle Count Type
_Plant _Plant

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_Abcindicatortemp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: CABCINDICATORVH

CREATE VIEW C_Abcindicatortemp AS
SELECT
  Plant,
  CycleCountType AS InventoryForCycleCountInd
FROM I_CycleCountingSettings
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
;