R_SrcgSuplrListCompanyCode

DDL: R_SRCGSUPLRLISTCOMPANYCODE SQL: RSRCSLCCODE Type: view BASIC

Company Code for Sourcing Supplier List

R_SrcgSuplrListCompanyCode is a Basic CDS View that provides data about "Company Code for Sourcing Supplier List" in SAP S/4HANA. It reads from 1 data source (mmsrcslccode) and exposes 7 fields with key field CompanyCodeUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
mmsrcslccode mmsrcslccode from

Associations (2)

CardinalityTargetAliasCondition
[1..1] R_SourcingSupplierList _SourcingSupplierList $projection.SourcingSupplierListUUID = _SourcingSupplierList.SourcingSupplierListUUID
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (12)

NameValueLevelField
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName RSRCSLCCODE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Company Code for Sourcing Supplier List view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CompanyCodeUUID companycodeuuid UUID
CompanyCode companycode Receiver Company Code
SourcingSupplierListUUID sourcingsupplierlistuuid UUID of Sourcing Supplier List
SupplierListUpdateType supplierlistupdatetype Update Type
IsDeleted isdeleted TRUE
_SourcingSupplierList _SourcingSupplierList
_CompanyCode _CompanyCode

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 R_SrcgSuplrListCompanyCode.
-- 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: RSRCSLCCODE

CREATE VIEW R_SrcgSuplrListCompanyCode AS
SELECT
  CompanyCodeUUID,
  CompanyCode,
  SourcingSupplierListUUID,
  SupplierListUpdateType,
  IsDeleted
FROM mmsrcslccode
LEFT OUTER JOIN R_SourcingSupplierList AS _SourcingSupplierList ON SourcingSupplierListUUID = _SourcingSupplierList.SourcingSupplierListUUID  -- association [1..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [1..1]
;