A_InsurClmNoTouchClmTP

DDL: A_INSURCLMNOTOUCHCLMTP Type: view_entity CONSUMPTION

No Touch Claim Projection Header

A_InsurClmNoTouchClmTP is a Consumption CDS View that provides data about "No Touch Claim Projection Header" in SAP S/4HANA. It reads from 1 data source (R_InsurClmNoTouchClmTP) and exposes 10 fields with key fields InsuranceClaim, InsurClaimUUID.

Data Sources (1)

SourceAliasJoin Type
R_InsurClmNoTouchClmTP R_InsurClmNoTouchClmTP projection

Annotations (12)

NameValueLevelField
EndUserText.label No Touch Claim Projection Header view
AbapCatalog.extensibility.elementSuffix NTC view
AbapCatalog.extensibility.quota.maximumFields 100 view
AbapCatalog.extensibility.quota.maximumBytes 1000 view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
OData.entityType.name InsuranceClaim_Type view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClaimUUID InsurClaimUUID
InsuranceContract InsuranceContract Contract
InsurClmType InsurClmType Claim Type
InsurClmAuthznGrp InsurClmAuthznGrp AuthGroup (VIP)
InsurClmIncdntType InsurClmIncdntType Incident Type
InsurClmDateOfLoss InsurClmDateOfLoss Date of Loss
InsurancePolicy InsurancePolicy Policy Number
InsuranceClaimAttachmentPath InsuranceClaimAttachmentPath
ArchiveLinkDocumentClass ArchiveLinkDocumentClass

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 A_InsurClmNoTouchClmTP.
-- 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.

CREATE VIEW A_InsurClmNoTouchClmTP AS
SELECT
  InsuranceClaim,
  InsurClaimUUID,
  InsuranceContract,
  InsurClmType,
  InsurClmAuthznGrp,
  InsurClmIncdntType,
  InsurClmDateOfLoss,
  InsurancePolicy,
  InsuranceClaimAttachmentPath,
  ArchiveLinkDocumentClass
FROM R_InsurClmNoTouchClmTP
;