Deprecated
This CDS view is deprecated in S/4HANA. Use C_ProductObjPgSupplierContact instead. View all deprecated CDS views →

C_Supplier_Fs

DDL: C_SUPPLIER_FS SQL: CSUPPLIERSFS Type: view CONSUMPTION

Consumption Factsheet - Supplier Facet

C_Supplier_Fs is a Consumption CDS View that provides data about "Consumption Factsheet - Supplier Facet" in SAP S/4HANA. It reads from 1 data source (P_Supplier_Fs) and exposes 36 fields with key field Supplier. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_Supplier_Fs Supplier from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_Product_Fs _Product $projection.Material = _Product.Material

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName CSUPPLIERSFS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Consumption Factsheet - Supplier Facet view
UI.headerInfo.typeName Supplier view
UI.headerInfo.typeNamePlural Suppliers view
UI.headerInfo.title.value Supplier view
UI.headerInfo.title.label Supplier view
UI.headerInfo.typeImageUrl view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_ProductObjPgSupplierContact view

Fields (36)

KeyFieldSource TableSource FieldDescription
KEY Supplier P_Supplier_Fs Supplier Supplier
SupplierName P_Supplier_Fs SupplierName Supplier Name
Material P_Supplier_Fs Material Vehicle Model
SupplierCityName P_Supplier_Fs SupplierCityName Supplier City
AddressID P_Supplier_Fs AddressID Ship-to address
InternationalLocationNumber3 P_Supplier_Fs InternationalLocationNumber3 Check digit
PostingIsBlocked P_Supplier_Fs PostingIsBlocked Posting Block
PurchasingIsBlockedForSupplier P_Supplier_Fs PurchasingIsBlockedForSupplier Pur. block POrg
FaxNumber P_Supplier_Fs FaxNumber Fax Number
SupplierIndustry P_Supplier_Fs SupplierIndustry Industry
SupplierIndustryName P_Supplier_Fs SupplierIndustryName
InternationalLocationNumber1 P_Supplier_Fs InternationalLocationNumber1 Location no. 1
InternationalLocationNumber2 P_Supplier_Fs InternationalLocationNumber2 Location no. 2
Language P_Supplier_Fs Language Report Text Language
CountryName P_Supplier_Fs CountryName Country
AdditionalName P_Supplier_Fs AdditionalName Name 2
InternationalPhoneNumber P_Supplier_Fs InternationalPhoneNumber Telephone no.
RoleOwnerEmailAddress P_Supplier_Fs RoleOwnerEmailAddress
InternationalMobilePhoneNumber P_Supplier_Fs InternationalMobilePhoneNumber
InternationalFaxNumber P_Supplier_Fs InternationalFaxNumber Fax Number
PhoneNumber2 P_Supplier_Fs PhoneNumber2 Telephone 2
Plant P_Supplier_Fs Plant Valuation Area
POBox P_Supplier_Fs POBox PO Box
RegionName P_Supplier_Fs RegionName Description
StreetAddressName P_Supplier_Fs StreetAddressName Street
SupplierTaxID1 P_Supplier_Fs SupplierTaxID1 Tax Number 1
UniformResourceLocator P_Supplier_Fs UniformResourceLocator URL
SupplierVATRegistration P_Supplier_Fs SupplierVATRegistration VAT Registration No.
SupplierAccountGroup P_Supplier_Fs SupplierAccountGroup Account group
PlantName P_Supplier_Fs PlantName Plant Name
LocationTimeZone P_Supplier_Fs LocationTimeZone Time Zone Difference
BusinessPartner P_Supplier_Fs BusinessPartner Issuing Authority
AccountGroupName P_Supplier_Fs AccountGroupName
DocumentKeyForUnitCnvrsn P_Supplier_Fs DocumentKeyForUnitCnvrsn
PostalCode P_Supplier_Fs PostalCode Postal Code
_Product _Product

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 C_Supplier_Fs.
-- 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: CSUPPLIERSFS

CREATE VIEW C_Supplier_Fs AS
SELECT
  Supplier.Supplier AS Supplier,
  Supplier.SupplierName AS SupplierName,
  Supplier.Material AS Material,
  Supplier.SupplierCityName AS SupplierCityName,
  Supplier.AddressID AS AddressID,
  Supplier.InternationalLocationNumber3 AS InternationalLocationNumber3,
  Supplier.PostingIsBlocked AS PostingIsBlocked,
  Supplier.PurchasingIsBlockedForSupplier AS PurchasingIsBlockedForSupplier,
  Supplier.FaxNumber AS FaxNumber,
  Supplier.SupplierIndustry AS SupplierIndustry,
  Supplier.SupplierIndustryName AS SupplierIndustryName,
  Supplier.InternationalLocationNumber1 AS InternationalLocationNumber1,
  Supplier.InternationalLocationNumber2 AS InternationalLocationNumber2,
  Supplier.Language AS Language,
  Supplier.CountryName AS CountryName,
  Supplier.AdditionalName AS AdditionalName,
  Supplier.InternationalPhoneNumber AS InternationalPhoneNumber,
  Supplier.RoleOwnerEmailAddress AS RoleOwnerEmailAddress,
  Supplier.InternationalMobilePhoneNumber AS InternationalMobilePhoneNumber,
  Supplier.InternationalFaxNumber AS InternationalFaxNumber,
  Supplier.PhoneNumber2 AS PhoneNumber2,
  Supplier.Plant AS Plant,
  Supplier.POBox AS POBox,
  Supplier.RegionName AS RegionName,
  Supplier.StreetAddressName AS StreetAddressName,
  Supplier.SupplierTaxID1 AS SupplierTaxID1,
  Supplier.UniformResourceLocator AS UniformResourceLocator,
  Supplier.SupplierVATRegistration AS SupplierVATRegistration,
  Supplier.SupplierAccountGroup AS SupplierAccountGroup,
  Supplier.PlantName AS PlantName,
  Supplier.LocationTimeZone AS LocationTimeZone,
  Supplier.BusinessPartner AS BusinessPartner,
  Supplier.AccountGroupName AS AccountGroupName,
  Supplier.DocumentKeyForUnitCnvrsn AS DocumentKeyForUnitCnvrsn,
  Supplier.PostalCode AS PostalCode
FROM P_Supplier_Fs AS Supplier
LEFT OUTER JOIN C_Product_Fs AS _Product ON Material = _Product.Material  -- association [1..1]
;