I_InsurClmPerfrmrValidPartner

DDL: I_INSURCLMPERFRMRVALIDPARTNER SQL: ICLFLTRPRTN Type: view COMPOSITE

Object ID of Performer for valid Business Perner Object

I_InsurClmPerfrmrValidPartner is a Composite CDS View that provides data about "Object ID of Performer for valid Business Perner Object" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPerfrmrObjTypeUser) and exposes 4 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPerfrmrObjTypeUser I_InsurClmPerfrmrObjTypeUser from

Associations (1)

CardinalityTargetAliasCondition
[1] I_UserContactCard _ContactCard _ContactCard.ContactCardID = $projection.InsurClmRelatedObjID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICLFLTRPRTN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Object ID of Performer for valid Business Perner Object 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

Fields (4)

KeyFieldSource TableSource FieldDescription
ContactCardID _ContactCard ContactCardID
OrganizationalUnit OrganizationalUnit Org. Unit ID
InsurClmRelatedObjID InsurClmRelatedObjID User Name
_ContactCard _ContactCard

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_InsurClmPerfrmrValidPartner.
-- 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: ICLFLTRPRTN

CREATE VIEW I_InsurClmPerfrmrValidPartner AS
SELECT
  _ContactCard.ContactCardID AS ContactCardID,
  OrganizationalUnit,
  InsurClmRelatedObjID
FROM I_InsurClmPerfrmrObjTypeUser
LEFT OUTER JOIN I_UserContactCard AS _ContactCard ON _ContactCard.ContactCardID = InsurClmRelatedObjID  -- association [1]
;