I_InsuranceObjectPartnerVH

DDL: I_INSURANCEOBJECTPARTNERVH Type: view_entity BASIC

Insurance Object Partner

I_InsuranceObjectPartnerVH is a Basic CDS View that provides data about "Insurance Object Partner" in SAP S/4HANA. It reads from 1 data source (I_InsuranceObjectPartner) and exposes 9 fields with key fields InsuranceObject, BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_InsuranceObjectPartner I_InsuranceObjectPartner from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Insurance Object Partner view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey InsuranceObject view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY InsuranceObject InsuranceObject Ins.Object
KEY BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerFullName _BusinessPartner BusinessPartnerFullName Broker Name
InsuranceObjectCategory_2 InsuranceObjectCategory_2 Ins. Obj. Cat.
InsuranceObjectCategoryText
ContractAccount ContractAccount Contract Acct
ContractAccountName _ContractAccount ContractAccountName Cont. acct name
CAAuthorizationGroup CAAuthorizationGroup 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 I_InsuranceObjectPartnerVH.
-- 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.

CREATE VIEW I_InsuranceObjectPartnerVH AS
SELECT
  InsuranceObject,
  BusinessPartner,
  _BusinessPartner.BusinessPartnerFullName AS BusinessPartnerFullName,
  InsuranceObjectCategory_2,
  _InsuranceObjectCategory._InsuranceObjectCategoryText[1:Language=$session.system_language].InsuranceObjectCategoryText AS InsuranceObjectCategoryText,
  ContractAccount,
  _ContractAccount.ContractAccountName AS ContractAccountName,
  CAAuthorizationGroup
FROM I_InsuranceObjectPartner
;