I_IntOrderResultsAnalysisKeyVH

DDL: I_INTORDERRESULTSANALYSISKEYVH Type: view_entity COMPOSITE

Result Analysis Key

I_IntOrderResultsAnalysisKeyVH is a Composite CDS View that provides data about "Result Analysis Key" in SAP S/4HANA. It reads from 1 data source (tkkaa) and exposes 8 fields with key field ResultAnalysisInternalID.

Data Sources (1)

SourceAliasJoin Type
tkkaa a from

Annotations (11)

NameValueLevelField
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Result Analysis Key view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #COMPOSITE view
Search.searchable true view
Consumption.ranked true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ResultAnalysisInternalID
ResultAnalysisDescription b texta Result Analysis Description
ResultIsForResultAnalysis tkkaa slerg RA indicator
RsltIsForAstUnderConstruction tkkaa slaib Asst und.constr
ResultIsForWIPInActualCosts tkkaa slwipi WIP at actual
ResultIsForWIPInPlanCosts tkkaa slwipp WIP @ plan cost
RsltIsForEvtBsdRevnRecognition tkkaa rflg1 Reserved
ResultIsForEventBasedWIP tkkaa rflg2 Reserved

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_IntOrderResultsAnalysisKeyVH.
-- 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_IntOrderResultsAnalysisKeyVH AS
SELECT
  cast( a.abgsl as fins_trr_recgnkey preserving type ) AS ResultAnalysisInternalID,
  b.texta AS ResultAnalysisDescription,
  a.slerg AS ResultIsForResultAnalysis,
  a.slaib AS RsltIsForAstUnderConstruction,
  a.slwipi AS ResultIsForWIPInActualCosts,
  a.slwipp AS ResultIsForWIPInPlanCosts,
  a.rflg1 AS RsltIsForEvtBsdRevnRecognition,
  a.rflg2 AS ResultIsForEventBasedWIP
FROM tkkaa AS a
;