C_InsurClmServiceProvider

DDL: C_INSURCLMSERVICEPROVIDER SQL: CICLSERVICEPRO Type: view CONSUMPTION

Leistungserbringer für Fallauskunft

C_InsurClmServiceProvider is a Consumption CDS View that provides data about "Leistungserbringer für Fallauskunft" in SAP S/4HANA. It reads from 1 data source (I_InsurClmServiceProvider) and exposes 8 fields with key fields InsuranceClaim, InsurClmSubobjectCategory, InsurClmSubobject, InsurClmParticipantRole. It has 1 association to related views. It is exposed through 1 OData service (ICL_CLAIMINQUIRY_R).

Data Sources (1)

SourceAliasJoin Type
I_InsurClmServiceProvider I_InsurClmServiceProvider from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_InsurClmServiceNameText _Name $projection.InsurClmParticipantRole = _Name.InsurClmParticipantRole

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CICLSERVICEPRO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Leistungserbringer für Fallauskunft view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
UI.headerInfo.typeName Liste der Leistungserbringer view
UI.headerInfo.typeNamePlural Liste der Leistungserbringer view
Metadata.allowExtensions true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view

OData Services (1)

ServiceBindingVersionContractRelease
ICL_CLAIMINQUIRY_R ICL_UI_CLAIMINQUIRY_R_O2 V2 C1 NOT_RELEASED

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmSubobjectCategory InsurClmSubobjectCategory Subobject Cat.
KEY InsurClmSubobject InsurClmSubobject Claim Subobject
KEY InsurClmParticipantRole InsurClmParticipantRole ParticipantRole
InsurClmParticipantRoleName Leistungsbezeichnung
BusinessPartnerName BusinessPartnerName Name
PhoneNumber PhoneNumber Telefon
_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_InsurClmServiceProvider.
-- 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: CICLSERVICEPRO

CREATE VIEW C_InsurClmServiceProvider AS
SELECT
  InsuranceClaim,
  InsurClmSubobjectCategory,
  InsurClmSubobject,
  InsurClmParticipantRole,
  _Name[Language = $session.system_language].InsurClmParticipantRoleName AS InsurClmParticipantRoleName,
  BusinessPartnerName,
  PhoneNumber
FROM I_InsurClmServiceProvider
LEFT OUTER JOIN I_InsurClmServiceNameText AS _Name ON InsurClmParticipantRole = _Name.InsurClmParticipantRole  -- association [1..*]
;