I_FMEAValuationProcedure

DDL: I_FMEAVALUATIONPROCEDURE Type: view_entity BASIC Package: PLM_FMEA

Valuation Procedure for FMEA

I_FMEAValuationProcedure is a Basic CDS View that provides data about "Valuation Procedure for FMEA" in SAP S/4HANA. It reads from 1 data source (plmc_audit_ext2) and exposes 3 fields with key field FMEAValuationProcedure. It has 2 associations to related views. Part of development package PLM_FMEA.

Data Sources (1)

SourceAliasJoin Type
plmc_audit_ext2 plmc_audit_ext2 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_FMEAValuationProcedureText _Text $projection.FMEAValuationProcedure = _Text.FMEAValuationProcedure
[0..1] I_FMEACustomValnProcedure _FMEACustomValnProcedure $projection.FMEAValuationProcedure = _FMEACustomValnProcedure.FMEAValuationProcedure

Annotations (6)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Valuation Procedure for FMEA view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FMEAValuationProcedure audit_calculate Procedure
_Text _Text
_FMEACustomValnProcedure _FMEACustomValnProcedure

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_FMEAValuationProcedure.
-- 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_FMEAValuationProcedure AS
SELECT
  audit_calculate AS FMEAValuationProcedure
FROM plmc_audit_ext2
LEFT OUTER JOIN I_FMEAValuationProcedureText AS _Text ON FMEAValuationProcedure = _Text.FMEAValuationProcedure  -- association [0..*]
LEFT OUTER JOIN I_FMEACustomValnProcedure AS _FMEACustomValnProcedure ON FMEAValuationProcedure = _FMEACustomValnProcedure.FMEAValuationProcedure  -- association [0..1]
;