I_InsurClmServiceProvider

DDL: I_INSURCLMSERVICEPROVIDER SQL: IICLSERVICEP Type: view COMPOSITE

Leistungserbringer für Fallauskunft

I_InsurClmServiceProvider is a Composite CDS View that provides data about "Leistungserbringer für Fallauskunft" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPrtcpntOccrnc) and exposes 12 fields with key fields InsuranceClaim, InsurClmSubobjectCategory, InsurClmSubobject, InsurClmParticipantRole.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPrtcpntOccrnc I_InsurClmPrtcpntOccrnc from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IICLSERVICEP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Leistungserbringer für Fallauskunft view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmSubobjectCategory InsurClmSubobjectCategory Subobject Cat.
KEY InsurClmSubobject InsurClmSubobject Claim Subobject
KEY InsurClmParticipantRole InsurClmParticipantRole ParticipantRole
BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerName BusinessPartnerName Extracted Customer Name
HouseNumber HouseNumber House Number
StreetName StreetName Text
CityName CityName Name
Country Country Venue: Ctry/Reg
PhoneNumber PhoneNumber Telephone no.
_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 I_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: IICLSERVICEP

CREATE VIEW I_InsurClmServiceProvider AS
SELECT
  InsuranceClaim,
  InsurClmSubobjectCategory,
  InsurClmSubobject,
  InsurClmParticipantRole,
  BusinessPartner,
  BusinessPartnerName,
  HouseNumber,
  StreetName,
  CityName,
  Country,
  PhoneNumber
FROM I_InsurClmPrtcpntOccrnc
;