I_MfgQualifnCertMatlAssgmtTP

DDL: I_MFGQUALIFNCERTMATLASSGMTTP SQL: IMFGCERTMATLASGN Type: view TRANSACTIONAL Package: MPE_CERT

Certificate Material Asgn

I_MfgQualifnCertMatlAssgmtTP is a Transactional CDS View that provides data about "Certificate Material Asgn" in SAP S/4HANA. It reads from 1 data source (mpev_cer_e_mat) and exposes 12 fields with key fields MfgQualifnCertificate, Material. It has 1 association to related views. Part of development package MPE_CERT.

Data Sources (1)

SourceAliasJoin Type
mpev_cer_e_mat mpev_cer_e_mat from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MfgQualifnCertificateTP _Certificate $projection.MfgQualifnCertificate = _Certificate.MfgQualifnCertificate

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IMFGCERTMATLASGN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Certificate Material Asgn view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.writeActivePersistence MPEV_CER_E_MAT view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.updateEnabled true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY MfgQualifnCertificate Certification
KEY Material Vehicle Model
MaterialType Material Type
ValidityStartDate Validity Start Date
ValidityEndDate ValidTo
MfgQualifnRequiredSkillLevel SkillLevel
Plant Valuation Area
CreationDate creationdate Time Stamp
CreatedByUser createdbyuser User Name
LastChangeDate lastchangedate Time Stamp
LastChangedByUser lastchangedbyuser User Name
_Certificate _Certificate

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_MfgQualifnCertMatlAssgmtTP.
-- 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: IMFGCERTMATLASGN

CREATE VIEW I_MfgQualifnCertMatlAssgmtTP AS
SELECT
  cast(mfgqualifncertificate as mpe_cer_cerid preserving type) AS MfgQualifnCertificate,
  cast(material as matnr preserving type) AS Material,
  cast(materialtype as mtart preserving type) AS MaterialType,
  cast(validitystartdate as mpe_cer_valid_frm preserving type) AS ValidityStartDate,
  cast(validityenddate as mpe_cer_valid_to preserving type) AS ValidityEndDate,
  cast(mfgqualifnrequiredskilllevel as mpe_cer_req_sl preserving type) AS MfgQualifnRequiredSkillLevel,
  cast(plant as werks_d preserving type ) AS Plant,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser
FROM mpev_cer_e_mat
LEFT OUTER JOIN I_MfgQualifnCertificateTP AS _Certificate ON MfgQualifnCertificate = _Certificate.MfgQualifnCertificate  -- association [1..1]
;