A_MasterRecipeNonHistoricHdr

DDL: A_MASTERRECIPENONHISTORICHDR Type: view_entity CONSUMPTION

Master Recipe Non Historical Header

A_MasterRecipeNonHistoricHdr is a Consumption CDS View that provides data about "Master Recipe Non Historical Header" in SAP S/4HANA. It reads from 1 data source (I_MasterRecipeNonHistoricHdrTP) and exposes 13 fields with key fields MasterRecipeGroup, MasterRecipe.

Data Sources (1)

SourceAliasJoin Type
I_MasterRecipeNonHistoricHdrTP I_MasterRecipeNonHistoricHdrTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Master Recipe Non Historical Header view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY MasterRecipeGroup MasterRecipeGroup Group
KEY MasterRecipe MasterRecipe Group Counter
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
BillOfOperationsVersionType BillOfOperationsVersionType
BillOfOperationsSubtype BillOfOperationsSubtype
LastUsageDate LastUsageDate
NumberOfUsages NumberOfUsages
HasChangeNumber HasChangeNumber
HasParameterEffectivity HasParameterEffectivity
LastChangeDate LastChangeDate Time Stamp
LastChangeTime LastChangeTime Time changed
LastChangedByUser LastChangedByUser User Name
ChangedDateTime ChangedDateTime Time Stamp

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 A_MasterRecipeNonHistoricHdr.
-- 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 A_MasterRecipeNonHistoricHdr AS
SELECT
  MasterRecipeGroup,
  MasterRecipe,
  IsMarkedForDeletion,
  BillOfOperationsVersionType,
  BillOfOperationsSubtype,
  LastUsageDate,
  NumberOfUsages,
  HasChangeNumber,
  HasParameterEffectivity,
  LastChangeDate,
  LastChangeTime,
  LastChangedByUser,
  ChangedDateTime
FROM I_MasterRecipeNonHistoricHdrTP
;