C_BuPaIdentification

DDL: C_BUPAIDENTIFICATION SQL: CBUPAID Type: view CONSUMPTION

BP Identification Numbers Consumption View

C_BuPaIdentification is a Consumption CDS View that provides data about "BP Identification Numbers Consumption View" in SAP S/4HANA. It reads from 1 data source (I_BuPaIdentificationTP) and exposes 20 fields with key fields BusinessPartner, BPIdentificationNumber, BPIdentificationType. It has 7 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_BuPaIdentificationTP BPIdentification from

Associations (7)

CardinalityTargetAliasCondition
[1..1] C_BusinessPartnerSupplier _BusinessPartnerSupplier $projection.BusinessPartner = _BusinessPartnerSupplier.BusinessPartner
[1..1] C_BusinessPartnerCustomer _BusinessPartnerCustomer $projection.BusinessPartner = _BusinessPartnerCustomer.BusinessPartner
[1..1] C_BusinessPartner _BusinessPartner $projection.BusinessPartner = _BusinessPartner.BusinessPartner
[0..*] C_Countrytextvhtemp _CountryText $projection.Country = _CountryText.Country
[1..*] C_RegionTextVHTemp _RegionText $projection.Country = _RegionText.Country and $projection.Region = _RegionText.Region
[0..1] I_Country _Country $projection.Country = _Country.Country
[1..*] C_BuPaIDTypeTextVHTemp _BuPaIDText $projection.BPIdentificationType = _BuPaIDText.BPIdentificationType

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName CBUPAID view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label BP Identification Numbers Consumption View view
Metadata.allowExtensions true view
ObjectModel.type #CONSUMPTION view
ObjectModel.writeEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
UI.headerInfo.typeName Identification Number view
UI.headerInfo.typeNamePlural Identification Numbers view
UI.headerInfo.title.label Identification Number view
UI.headerInfo.title.value BPIdentificationNumberForEdit view
VDM.viewType #CONSUMPTION view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner I_BuPaIdentificationTP BusinessPartner Issuing Authority
KEY BPIdentificationNumber I_BuPaIdentificationTP BPIdentificationNumber Logical System
KEY BPIdentificationType I_BuPaIdentificationTP BPIdentificationType ID Type
BusinessPartnerForEdit I_BuPaIdentificationTP BusinessPartnerForEdit Busn. Partner
BPIdentificationTypeForEdit I_BuPaIdentificationTP BPIdentificationTypeForEdit ID Type
BPIdentificationNumberForEdit I_BuPaIdentificationTP BPIdentificationNumberForEdit ID Number
BPIdentificationEntryDate I_BuPaIdentificationTP BPIdentificationEntryDate Entry date
BPIdnNmbrIssuingInstitute I_BuPaIdentificationTP BPIdnNmbrIssuingInstitute Institution
Country I_BuPaIdentificationTP Country Venue: Ctry/Reg
Region I_BuPaIdentificationTP Region Venue Region
ValidityEndDate I_BuPaIdentificationTP ValidityEndDate ValidTo
ValidityStartDate I_BuPaIdentificationTP ValidityStartDate Validity Start Date
AuthorizationGroup I_BuPaIdentificationTP AuthorizationGroup AuthorizGroup
BusinessPartnerCategory I_BuPaIdentificationTP BusinessPartnerCategory Partner Cat.
_CountryText _CountryText
_RegionText _RegionText
_BuPaIDText _BuPaIDText
_BusinessPartnerSupplier _BusinessPartnerSupplier
_BusinessPartnerCustomer _BusinessPartnerCustomer
_BusinessPartner _BusinessPartner

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_BuPaIdentification.
-- 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: CBUPAID

CREATE VIEW C_BuPaIdentification AS
SELECT
  BPIdentification.BusinessPartner AS BusinessPartner,
  BPIdentification.BPIdentificationNumber AS BPIdentificationNumber,
  BPIdentification.BPIdentificationType AS BPIdentificationType,
  BPIdentification.BusinessPartnerForEdit AS BusinessPartnerForEdit,
  BPIdentification.BPIdentificationTypeForEdit AS BPIdentificationTypeForEdit,
  BPIdentification.BPIdentificationNumberForEdit AS BPIdentificationNumberForEdit,
  BPIdentification.BPIdentificationEntryDate AS BPIdentificationEntryDate,
  BPIdentification.BPIdnNmbrIssuingInstitute AS BPIdnNmbrIssuingInstitute,
  BPIdentification.Country AS Country,
  BPIdentification.Region AS Region,
  BPIdentification.ValidityEndDate AS ValidityEndDate,
  BPIdentification.ValidityStartDate AS ValidityStartDate,
  BPIdentification.AuthorizationGroup AS AuthorizationGroup,
  BPIdentification.BusinessPartnerCategory AS BusinessPartnerCategory
FROM I_BuPaIdentificationTP AS BPIdentification
LEFT OUTER JOIN C_BusinessPartnerSupplier AS _BusinessPartnerSupplier ON BusinessPartner = _BusinessPartnerSupplier.BusinessPartner  -- association [1..1]
LEFT OUTER JOIN C_BusinessPartnerCustomer AS _BusinessPartnerCustomer ON BusinessPartner = _BusinessPartnerCustomer.BusinessPartner  -- association [1..1]
LEFT OUTER JOIN C_BusinessPartner AS _BusinessPartner ON BusinessPartner = _BusinessPartner.BusinessPartner  -- association [1..1]
LEFT OUTER JOIN C_Countrytextvhtemp AS _CountryText ON Country = _CountryText.Country  -- association [0..*]
LEFT OUTER JOIN C_RegionTextVHTemp AS _RegionText ON Country = _RegionText.Country AND Region = _RegionText.Region  -- association [1..*]
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [0..1]
LEFT OUTER JOIN C_BuPaIDTypeTextVHTemp AS _BuPaIDText ON BPIdentificationType = _BuPaIDText.BPIdentificationType  -- association [1..*]
;