I_OpActyConfCreationType

DDL: I_OPACTYCONFCREATIONTYPE SQL: IMPEOACNFCRTNTPE Type: view BASIC

Operation Activity Confirmation Creation Type

I_OpActyConfCreationType is a Basic CDS View that provides data about "Operation Activity Confirmation Creation Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field OpActyConfCreationType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OpActyConfCreationTypeText _Text $projection.OpActyConfCreationType = _Text.OpActyConfCreationType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMPEOACNFCRTNTPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey OpActyConfCreationType view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
EndUserText.label Operation Activity Confirmation Creation Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OpActyConfCreationType
_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_OpActyConfCreationType.
-- 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: IMPEOACNFCRTNTPE

CREATE VIEW I_OpActyConfCreationType AS
SELECT
  cast( cast(substring(typ.domvalue_l, 1, 1) as abap.char(1) ) as mpe_oac_auto_creation_code) AS OpActyConfCreationType
FROM dd07l AS typ
LEFT OUTER JOIN I_OpActyConfCreationTypeText AS _Text ON OpActyConfCreationType = _Text.OpActyConfCreationType  -- association [0..*]
;