I_InsurClmClauseTxt

DDL: I_INSURCLMCLAUSETXT SQL: IICLCLAUSETXT Type: view BASIC

Langtexte zu Klauseln

I_InsurClmClauseTxt is a Basic CDS View that provides data about "Langtexte zu Klauseln" in SAP S/4HANA. It reads from 1 data source (icl_clausetxt) and exposes 5 fields with key fields InsuranceClaim, InsurClmClauseID, InsurClmLineID.

Data Sources (1)

SourceAliasJoin Type
icl_clausetxt icl_clausetxt from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IICLCLAUSETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Langtexte zu Klauseln view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim claim Policy Snapshot
KEY InsurClmClauseID clause_id ID
KEY InsurClmLineID line VAT Return Line Item
LastChangedByUser changedby User Name
InsurClmClauseLongTxt text User Group

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_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: IICLCLAUSETXT

CREATE VIEW I_InsurClmClauseTxt AS
SELECT
  claim AS InsuranceClaim,
  clause_id AS InsurClmClauseID,
  line AS InsurClmLineID,
  changedby AS LastChangedByUser,
  text AS InsurClmClauseLongTxt
FROM icl_clausetxt
;