C_InsurClmBPQuickView

DDL: C_INSURCLMBPQUICKVIEW SQL: CICLBPQUICKVIEW Type: view CONSUMPTION

Geschäftspartner für Fallauskunft

C_InsurClmBPQuickView is a Consumption CDS View that provides data about "Geschäftspartner für Fallauskunft" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 17 fields with key field BusinessPartner. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner _IBP from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_BPGenderValueHelpText _BPGenderText $projection.GenderCodeName = _BPGenderText.GenderCodeName
[0..*] I_InsurClmClaimOverview _Claim $projection.BusinessPartner = _Claim.InsurancePolicyholder

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CICLBPQUICKVIEW view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Geschäftspartner für Fallauskunft view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.representativeKey BusinessPartner view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerCategory BusinessPartnerCategory Partner Cat.
BusinessPartnerName BusinessPartnerName Extracted Customer Name
LastName LastName Last Name
FirstName FirstName First Name
BirthDate BirthDate Date of Birth
PhoneNumber
EmailAddress
IsFemale IsFemale Female
IsMale IsMale Male
IsSexUnknown IsSexUnknown Unknown
GenderCodeNameText
GenderCodeName I_BusinessPartner GenderCodeName Sex
Country1asInsurClmLocationText
_BPGenderText _BPGenderText
_DefaultAddress _DefaultAddress
_Claim _Claim

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_InsurClmBPQuickView.
-- 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: CICLBPQUICKVIEW

CREATE VIEW C_InsurClmBPQuickView AS
SELECT
  BusinessPartner,
  BusinessPartnerCategory,
  BusinessPartnerName,
  LastName,
  FirstName,
  BirthDate,
  _CurrentDefaultAddress._Address._DefaultPhoneNumber.PhoneNumber AS PhoneNumber,
  _CurrentDefaultAddress._Address._DefaultEmailAddress.EmailAddress AS EmailAddress,
  IsFemale,
  IsMale,
  IsSexUnknown,
  _BPGenderText[Language = $session.system_language].GenderCodeNameText AS GenderCodeNameText,
  _IBP.GenderCodeName AS GenderCodeName,
  concat_with_space( concat_with_space( concat( concat_with_space( _CurrentDefaultAddress._Address.StreetName , _CurrentDefaultAddress._Address.HouseNumber, 1), ','), concat( concat_with_space(_CurrentDefaultAddress._Address.PostalCode, _CurrentDefaultAddress._Address.CityName, 1), ','), 1 ), _CurrentDefaultAddress._Address.Country, 1 ) as InsurClmLocationText AS Country1asInsurClmLocationText
FROM I_BusinessPartner AS _IBP
LEFT OUTER JOIN I_BPGenderValueHelpText AS _BPGenderText ON GenderCodeName = _BPGenderText.GenderCodeName  -- association [0..*]
LEFT OUTER JOIN I_InsurClmClaimOverview AS _Claim ON BusinessPartner = _Claim.InsurancePolicyholder  -- association [0..*]
;