I_ProcmtHubSuplrByCompanyCode

DDL: I_PROCMTHUBSUPLRBYCOMPANYCODE SQL: IHUBSUPLCO Type: view BASIC

Basic view for backend supplier Co code

I_ProcmtHubSuplrByCompanyCode is a Basic CDS View that provides data about "Basic view for backend supplier Co code" in SAP S/4HANA. It reads from 1 data source (mmpur_ext_lfb1) and exposes 4 fields with key fields ProcurementHubSourceSystem, ProcmtHubFixedSupplier, ProcmtHubCompanyCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mmpur_ext_lfb1 mmpur_ext_lfb1 from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BackendCoCodeForPurg _CompanyCode $projection.ProcmtHubCompanyCode = _CompanyCode.CompanyCode and _CompanyCode.ProcurementHubSourceSystem = $projection.ProcurementHubSourceSystem

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IHUBSUPLCO view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Basic view for backend supplier Co code view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProcurementHubSourceSystem extsourcesystem Connected System ID
KEY ProcmtHubFixedSupplier supplier Supplier
KEY ProcmtHubCompanyCode companycode Receiver Company Code
CompanyCodeName _CompanyCode CompanyCodeName Company Name

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_ProcmtHubSuplrByCompanyCode.
-- 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: IHUBSUPLCO

CREATE VIEW I_ProcmtHubSuplrByCompanyCode AS
SELECT
  extsourcesystem AS ProcurementHubSourceSystem,
  supplier AS ProcmtHubFixedSupplier,
  companycode AS ProcmtHubCompanyCode,
  _CompanyCode.CompanyCodeName AS CompanyCodeName
FROM mmpur_ext_lfb1
LEFT OUTER JOIN I_BackendCoCodeForPurg AS _CompanyCode ON ProcmtHubCompanyCode = _CompanyCode.CompanyCode AND _CompanyCode.ProcurementHubSourceSystem = ProcurementHubSourceSystem  -- association [1..1]
;