I_InsurClmPerformerPartner

DDL: I_INSURCLMPERFORMERPARTNER SQL: ICLOBJECTIDPRTNR Type: view COMPOSITE

Object ID search help for Object type as Business Partner

I_InsurClmPerformerPartner is a Composite CDS View that provides data about "Object ID search help for Object type as Business Partner" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPerfrmrValidPartData) and exposes 6 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPerfrmrValidPartData _partner from

Associations (1)

CardinalityTargetAliasCondition
[1] I_BusinessPartnerVH _OBJID _OBJID.BusinessPartner = _partner.InsurClmRelatedObjID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICLOBJECTIDPRTNR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Object ID search help for Object type as Business Partner view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view

Fields (6)

KeyFieldSource TableSource FieldDescription
BusinessPartner _OBJID BusinessPartner Performer Partner
FullName
FirstName _OBJID FirstName First Name
LastName _OBJID LastName Last Name
InsurClmObjTypeOfPerformer
InsurClmRelatedObjID InsurClmRelatedObjID

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_InsurClmPerformerPartner.
-- 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: ICLOBJECTIDPRTNR

CREATE VIEW I_InsurClmPerformerPartner AS
SELECT
  _OBJID.BusinessPartner AS BusinessPartner,
  cast( _OBJID.BusinessPartnerName as ad_namtext ) AS FullName,
  _OBJID.FirstName AS FirstName,
  _OBJID.LastName AS LastName,
  cast( 'BP' as abap.char( 2 ) ) AS InsurClmObjTypeOfPerformer,
  InsurClmRelatedObjID
FROM I_InsurClmPerfrmrValidPartData AS _partner
LEFT OUTER JOIN I_BusinessPartnerVH AS _OBJID ON _OBJID.BusinessPartner = _partner.InsurClmRelatedObjID  -- association [1]
;