C_InsurCust360BPIdentification

DDL: C_INSURCUST360BPIDENTIFICATION SQL: CINSURC360BUPAID Type: view CONSUMPTION

Kundenidentifikationsdetails

C_InsurCust360BPIdentification is a Consumption CDS View that provides data about "Kundenidentifikationsdetails" in SAP S/4HANA. It reads from 1 data source (I_BuPaIdentification) and exposes 7 fields with key fields BusinessPartner, BPIdentificationType, BPIdentificationNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BuPaIdentification I_BuPaIdentification from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_BPIdentificationTypeText _BPIdnText $projection.BPIdentificationType = _BPIdnText.BPIdentificationType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CINSURC360BUPAID view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Kundenidentifikationsdetails view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
KEY BPIdentificationType BPIdentificationType ID Type
KEY BPIdentificationNumber BPIdentificationNumber Logical System
BPIdentificationTypeText
AuthorizationGroup _BusinessPartner AuthorizationGroup AuthorizGroup
_BusinessPartner _BusinessPartner
_BPIdnText _BPIdnText

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_InsurCust360BPIdentification.
-- 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: CINSURC360BUPAID

CREATE VIEW C_InsurCust360BPIdentification AS
SELECT
  BusinessPartner,
  BPIdentificationType,
  BPIdentificationNumber,
  _BPIdnText[ BusinessPartnerLanguage = $session.system_language ].BPIdentificationTypeText AS BPIdentificationTypeText,
  _BusinessPartner.AuthorizationGroup AS AuthorizationGroup
FROM I_BuPaIdentification
LEFT OUTER JOIN I_BPIdentificationTypeText AS _BPIdnText ON BPIdentificationType = _BPIdnText.BPIdentificationType  -- association [1..*]
;