I_OIL_DfltIdxGdsMvtBasic

DDL: I_OIL_DFLTIDXGDSMVTBASIC Type: view_entity BASIC

QCI Default Parameter

I_OIL_DfltIdxGdsMvtBasic is a Basic CDS View that provides data about "QCI Default Parameter" in SAP S/4HANA. It reads from 1 data source (oib_def_index_gm) and exposes 15 fields with key fields Material, Plant, StorageLocation, Batch, DefaultStartSystDate. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
oib_def_index_gm oib_def_index_gm from

Associations (5)

CardinalityTargetAliasCondition
[1..1] I_MaterialPlant _MaterialPlant _MaterialPlant.Plant = $projection.Plant and _MaterialPlant.Material = $projection.Material
[1..1] I_Plant _Plant _Plant.Plant = $projection.Plant
[1..1] I_StorageLocation _StorageLocation _StorageLocation.Plant = $projection.Plant and _StorageLocation.StorageLocation = $projection.StorageLocation
[1..1] I_BatchCrossPlant _BatchCrossPlant _BatchCrossPlant.Material = $projection.Material and _BatchCrossPlant.Batch = $projection.Batch
[1..1] I_OIL_ActivationIDDefaultsVH _OIL_ActivationIDDefaultsVH _OIL_ActivationIDDefaultsVH.ActivationIDDefaults = $projection.ActivationIDDefaults

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label QCI Default Parameter view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name OIL_QtyCnvrsnDefaultParameter view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY Material matnr Vehicle Model
KEY Plant werks Receiving Plant
KEY StorageLocation lgort Sublocation
KEY Batch charg Chargeable Proc.
KEY DefaultStartSystDate datum Valid to
KEY DefaultStartSystTime time Time Stamp
DefaultErrorStatusIcon status_icon Status of PH
ActivationIDDefaults aktid AktID for Defaults
QtyConversionDefaultValueUUID default_guid GUID 16
DefaultTankTimeStamp timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
_MaterialPlant _MaterialPlant
_Plant _Plant
_StorageLocation _StorageLocation
_BatchCrossPlant _BatchCrossPlant
_OIL_ActivationIDDefaultsVH _OIL_ActivationIDDefaultsVH

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_OIL_DfltIdxGdsMvtBasic.
-- 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.

CREATE VIEW I_OIL_DfltIdxGdsMvtBasic AS
SELECT
  matnr AS Material,
  werks AS Plant,
  lgort AS StorageLocation,
  charg AS Batch,
  datum AS DefaultStartSystDate,
  time AS DefaultStartSystTime,
  status_icon AS DefaultErrorStatusIcon,
  aktid AS ActivationIDDefaults,
  default_guid AS QtyConversionDefaultValueUUID,
  timestamp AS DefaultTankTimeStamp
FROM oib_def_index_gm
LEFT OUTER JOIN I_MaterialPlant AS _MaterialPlant ON _MaterialPlant.Plant = Plant AND _MaterialPlant.Material = Material  -- association [1..1]
LEFT OUTER JOIN I_Plant AS _Plant ON _Plant.Plant = Plant  -- association [1..1]
LEFT OUTER JOIN I_StorageLocation AS _StorageLocation ON _StorageLocation.Plant = Plant AND _StorageLocation.StorageLocation = StorageLocation  -- association [1..1]
LEFT OUTER JOIN I_BatchCrossPlant AS _BatchCrossPlant ON _BatchCrossPlant.Material = Material AND _BatchCrossPlant.Batch = Batch  -- association [1..1]
LEFT OUTER JOIN I_OIL_ActivationIDDefaultsVH AS _OIL_ActivationIDDefaultsVH ON _OIL_ActivationIDDefaultsVH.ActivationIDDefaults = ActivationIDDefaults  -- association [1..1]
;