I_CstrtHdrBsc

DDL: I_CSTRTHDRBSC SQL: ICSTRTHDRBSC Type: view BASIC

Constraint Header Basic view

I_CstrtHdrBsc is a Basic CDS View that provides data about "Constraint Header Basic view" in SAP S/4HANA. It reads from 5 data sources (/plmi/sw_cstrt_h, I_CstrtHardwareNmbr, I_CstrtSwNmbr, makt, mara) and exposes 8 fields with key field EmbeddedSoftwareUUID.

Data Sources (5)

SourceAliasJoin Type
/plmi/sw_cstrt_h _Header from
I_CstrtHardwareNmbr _HwCstrtNmbr left_outer
I_CstrtSwNmbr _SwCstrtNmbr left_outer
makt makt left_outer
mara mara left_outer

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ICSTRTHDRBSC view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.compositionRoot true view
EndUserText.label Constraint Header Basic view view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY EmbeddedSoftwareUUID /plmi/sw_cstrt_h db_key UUID
EmbeddedSoftwareMaterial /plmi/sw_cstrt_h sw_module Software
CreationDateTime
CreatedByUser /plmi/sw_cstrt_h created_by Version Created By
LastChangeDateTime
LastChangedByUser /plmi/sw_cstrt_h changed_by User Name
EmbeddedSoftwareMaterialDesc Product Description
AuthorizationGroup begru AuthorizGroup

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_CstrtHdrBsc.
-- 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: ICSTRTHDRBSC

CREATE VIEW I_CstrtHdrBsc AS
SELECT
  _Header.db_key AS EmbeddedSoftwareUUID,
  _Header.sw_module AS EmbeddedSoftwareMaterial,
  cast ( _Header.created_on as tzntstmps) AS CreationDateTime,
  _Header.created_by AS CreatedByUser,
  cast ( _Header.changed_on as tzntstmps) AS LastChangeDateTime,
  _Header.changed_by AS LastChangedByUser,
  cast(maktx as /plmi/material_description) AS EmbeddedSoftwareMaterialDesc,
  begru AS AuthorizationGroup
FROM /plmi/sw_cstrt_h AS _Header
LEFT OUTER JOIN mara ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN makt ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CstrtHardwareNmbr AS _HwCstrtNmbr ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CstrtSwNmbr AS _SwCstrtNmbr ON /* join condition not captured in parsed metadata */
;