C_EnvrmtWastePartnerIdn

DDL: C_ENVRMTWASTEPARTNERIDN SQL: CENVWASTEPRTNRID Type: view CONSUMPTION

Environment Waste Partner Identification

C_EnvrmtWastePartnerIdn is a Consumption CDS View that provides data about "Environment Waste Partner Identification" in SAP S/4HANA. It reads from 1 data source (I_BuPaIdentification) and exposes 11 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_BuPaIdentification I_BuPaIdentification from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CENVWASTEPRTNRID view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Environment Waste Partner Identification view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
BPIdentificationType BPIdentificationType ID Type
BPIdentificationNumber BPIdentificationNumber Logical System
BPIdnNmbrIssuingInstitute BPIdnNmbrIssuingInstitute Institution
BPIdentificationEntryDate BPIdentificationEntryDate Entry date
Country Country Venue: Ctry/Reg
Region Region Venue Region
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
AuthorizationGroup AuthorizationGroup AuthorizGroup
_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_EnvrmtWastePartnerIdn.
-- 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: CENVWASTEPRTNRID

CREATE VIEW C_EnvrmtWastePartnerIdn AS
SELECT
  BusinessPartner,
  BPIdentificationType,
  BPIdentificationNumber,
  BPIdnNmbrIssuingInstitute,
  BPIdentificationEntryDate,
  Country,
  Region,
  ValidityStartDate,
  ValidityEndDate,
  AuthorizationGroup
FROM I_BuPaIdentification
;