I_ABCIndicator

DDL: I_ABCINDICATOR SQL: IABCINDICATOR Type: view BASIC

ABC Indicator

I_ABCIndicator (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

ABCIndicatorCode · Asset Management

I_ABCIndicator is a Basic CDS View (Dimension) that provides data about "ABC Indicator" in SAP S/4HANA. It reads from 1 data source (t370c) and exposes 2 fields with key field ABCIndicator. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-EQM-EQ
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t370c t370c from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ABCIndicatorText _Text $projection.ABCIndicator = _Text.ABCIndicator

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IABCINDICATOR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label ABC Indicator view
ObjectModel.representativeKey ABCIndicator view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.sapObjectNodeType.name ABCIndicatorCode view
ObjectModel.objectIdentifier.oidElement ABCIndicatorCodeOID view
Analytics.dataExtraction.enabled true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ABCIndicator t370c abckz ABC Indicator for Technical Object
_Text _Text

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 I_ABCIndicator.
-- 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: IABCINDICATOR

CREATE VIEW I_ABCIndicator AS
SELECT
  t370c.abckz AS ABCIndicator
FROM t370c
LEFT OUTER JOIN I_ABCIndicatorText AS _Text ON ABCIndicator = _Text.ABCIndicator  -- association [0..*]
;