R_SupplierListCompanyCode

DDL: R_SUPPLIERLISTCOMPANYCODE SQL: RSUPLRLCOCODE Type: view BASIC

Company Code for Supplier List

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

Data Sources (1)

SourceAliasJoin Type
mmsuplrlccode mmsuplrlccode from

Associations (2)

CardinalityTargetAliasCondition
[1..1] R_SupplierList _SupplierList $projection.SupplierListUUID = _SupplierList.SupplierListUUID
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (11)

NameValueLevelField
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName RSUPLRLCOCODE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Company Code for Supplier List view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CompanyCodeUUID companycodeuuid UUID
CompanyCode companycode Receiver Company Code
SupplierListUUID supplierlistuuid Supplier List UUID
IsDeleted isdeleted TRUE
SuplrListCoCodeProposalAction suplrlistcocodeproposalaction Company Code Proposal Action
_CompanyCode _CompanyCode
_SupplierList _SupplierList

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_SupplierListCompanyCode.
-- 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: RSUPLRLCOCODE

CREATE VIEW R_SupplierListCompanyCode AS
SELECT
  CompanyCodeUUID,
  CompanyCode,
  SupplierListUUID,
  IsDeleted,
  SuplrListCoCodeProposalAction
FROM mmsuplrlccode
LEFT OUTER JOIN R_SupplierList AS _SupplierList ON SupplierListUUID = _SupplierList.SupplierListUUID  -- association [1..1]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [1..1]
;