C_InsurClmClauseTxt

DDL: C_INSURCLMCLAUSETXT SQL: CICLCLAUSETXT Type: view CONSUMPTION

Langtexte zu Klauseln

C_InsurClmClauseTxt is a Consumption CDS View that provides data about "Langtexte zu Klauseln" in SAP S/4HANA. It reads from 1 data source (I_InsurClmClauseTxt) and exposes 6 fields with key fields InsuranceClaim, InsurClmClauseID, InsurClmLineID. It has 1 association to related views. It is exposed through 1 OData service (ICL_CLAIMINQUIRY_R).

Data Sources (1)

SourceAliasJoin Type
I_InsurClmClauseTxt I_InsurClmClauseTxt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_InsuranceClaim _Claim $projection.InsuranceClaim = _Claim.InsuranceClaim

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CICLCLAUSETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Langtexte zu Klauseln view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey InsurClmLineID view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (1)

ServiceBindingVersionContractRelease
ICL_CLAIMINQUIRY_R ICL_UI_CLAIMINQUIRY_R_O2 V2 C1 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmClauseID InsurClmClauseID ID
KEY InsurClmLineID InsurClmLineID VAT Return Line Item
LastChangedByUser LastChangedByUser User Name
InsurClmClauseLongTxt InsurClmClauseLongTxt User Group
_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_InsurClmClauseTxt.
-- 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: CICLCLAUSETXT

CREATE VIEW C_InsurClmClauseTxt AS
SELECT
  InsuranceClaim,
  InsurClmClauseID,
  InsurClmLineID,
  LastChangedByUser,
  InsurClmClauseLongTxt
FROM I_InsurClmClauseTxt
LEFT OUTER JOIN I_InsuranceClaim AS _Claim ON InsuranceClaim = _Claim.InsuranceClaim  -- association [1..1]
;