I_ChmlSuplrMatlImprtRespy

DDL: I_CHMLSUPLRMATLIMPRTRESPY SQL: ICHMLSUPLSPY Type: view BASIC Package: EHFND_BO_CSM

Supplier Material Import Responsibility

I_ChmlSuplrMatlImprtRespy is a Basic CDS View that provides data about "Supplier Material Import Responsibility" in SAP S/4HANA. It reads from 1 data source (ehfndv_csm_iresp) and exposes 14 fields. It has 7 associations to related views. Part of development package EHFND_BO_CSM.

Data Sources (1)

SourceAliasJoin Type
ehfndv_csm_iresp ImportResponsibility from

Associations (7)

CardinalityTargetAliasCondition
[1..1] I_ChmlSuplrMatl _ChmlSuplrMatl $projection.ChmlSuplrMatlUUID = _ChmlSuplrMatl.ChmlSuplrMatlUUID -- Responsible Importer
[1..1] I_ImprtRespyRespImporter _ResponsibleImporter $projection.ImprtRespyRespImporter = _ResponsibleImporter.ImprtRespyRespImporter
[0..*] I_ImprtRespyRespImporterTxt _ResponsibleImporterTxt $projection.ImprtRespyRespImporter = _ResponsibleImporterTxt.ImprtRespyRespImporter -- Plant
[1..1] I_Plant _ReceivingPlantDetails $projection.ImprtRespyRcvgPlant = _ReceivingPlantDetails.Plant -- Company Code
[1..1] I_CompanyCode _BuyingCompany $projection.ImprtRespyBuyingCompanyCode = _BuyingCompany.CompanyCode -- Admin fields
[0..1] I_User _CreatedByUser $projection.CreatedByUser = _CreatedByUser.UserID
[0..1] I_User _LastChangedByUser $projection.LastChangedByUser = _LastChangedByUser.UserID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICHMLSUPLSPY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Supplier Material Import Responsibility view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view

Fields (14)

KeyFieldSource TableSource FieldDescription
creationutcdatetimeasCreationUTCDateTime
createdbyuserasCreatedByUser
lastchangedbyuserasLastChangedByUser
chmlsuplrmatluuidasChmlSuplrMatlUUID
imprtrespyrcvgplantasImprtRespyRcvgPlant
validitystartdateasValidityStartDate
validityenddateasValidityEndDate
_ChmlSuplrMatl _ChmlSuplrMatl
_ResponsibleImporter _ResponsibleImporter
_ResponsibleImporterTxt _ResponsibleImporterTxt
_ReceivingPlantDetails _ReceivingPlantDetails
_BuyingCompany _BuyingCompany
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser

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_ChmlSuplrMatlImprtRespy.
-- 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: ICHMLSUPLSPY

CREATE VIEW I_ChmlSuplrMatlImprtRespy AS
SELECT *  -- field list not available in parsed metadata
FROM ehfndv_csm_iresp AS ImportResponsibility
LEFT OUTER JOIN I_ChmlSuplrMatl AS _ChmlSuplrMatl ON ChmlSuplrMatlUUID = _ChmlSuplrMatl.ChmlSuplrMatlUUID  -- association [1..1]
LEFT OUTER JOIN I_ImprtRespyRespImporter AS _ResponsibleImporter ON ImprtRespyRespImporter = _ResponsibleImporter.ImprtRespyRespImporter  -- association [1..1]
LEFT OUTER JOIN I_ImprtRespyRespImporterTxt AS _ResponsibleImporterTxt ON ImprtRespyRespImporter = _ResponsibleImporterTxt.ImprtRespyRespImporter  -- association [0..*]
LEFT OUTER JOIN I_Plant AS _ReceivingPlantDetails ON ImprtRespyRcvgPlant = _ReceivingPlantDetails.Plant  -- association [1..1]
LEFT OUTER JOIN I_CompanyCode AS _BuyingCompany ON ImprtRespyBuyingCompanyCode = _BuyingCompany.CompanyCode  -- association [1..1]
LEFT OUTER JOIN I_User AS _CreatedByUser ON CreatedByUser = _CreatedByUser.UserID  -- association [0..1]
LEFT OUTER JOIN I_User AS _LastChangedByUser ON LastChangedByUser = _LastChangedByUser.UserID  -- association [0..1]
;