I_SafetyInstrnTemplateType

DDL: I_SAFETYINSTRNTEMPLATETYPE SQL: IFSITMPLTTYPE Type: view BASIC

FSI: Template Type

I_SafetyInstrnTemplateType is a Basic CDS View that provides data about "FSI: Template Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 1 field with key field SafetyInstructionTemplateType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SafetyInstrnTemplateTypeText _SafetyInstrnTemplateTypeText $projection.SafetyInstructionTemplateType = _SafetyInstrnTemplateTypeText.SafetyInstructionTemplateType

Annotations (14)

NameValueLevelField
EndUserText.label FSI: Template Type view
AbapCatalog.sqlViewName IFSITMPLTTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #SINGLE view
ObjectModel.representativeKey SafetyInstructionTemplateType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ObjectModel.resultSet.sizeCategory #XS view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY SafetyInstructionTemplateType domvalue_l Lower Value

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_SafetyInstrnTemplateType.
-- 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: IFSITMPLTTYPE

CREATE VIEW I_SafetyInstrnTemplateType AS
SELECT
  domvalue_l AS SafetyInstructionTemplateType
FROM dd07l
LEFT OUTER JOIN I_SafetyInstrnTemplateTypeText AS _SafetyInstrnTemplateTypeText ON SafetyInstructionTemplateType = _SafetyInstrnTemplateTypeText.SafetyInstructionTemplateType  -- association [0..*]
;