A_InsurClmAttachmentOutbound

DDL: A_INSURCLMATTACHMENTOUTBOUND Type: view_entity CONSUMPTION

Claim Attachment Outbound

A_InsurClmAttachmentOutbound is a Consumption CDS View that provides data about "Claim Attachment Outbound" in SAP S/4HANA. It reads from 1 data source (R_InsurClmAttachmentOutboundTP) and exposes 9 fields with key fields InsurClmActive, InsuranceClaim, InsurClmSubclm, InsuranceClaimDocumentNumber, InsurClmArcvIdCode.

Data Sources (1)

SourceAliasJoin Type
R_InsurClmAttachmentOutboundTP R_InsurClmAttachmentOutboundTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Claim Attachment Outbound 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 InsurClmAttachOutbound_Type view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY InsurClmActive InsurClmActive Active/Suspense
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmSubclm InsurClmSubclm Subclaim
KEY InsuranceClaimDocumentNumber InsuranceClaimDocumentNumber Number
KEY InsurClmArcvIdCode InsurClmArcvIdCode
KEY InsurClmArcvLnkDocID InsurClmArcvLnkDocID
ChangedOnDateTime ChangedOnDateTime Last Changed At
LastChangedByUser LastChangedByUser User Name
InsurClmDatabaseLineStatus InsurClmDatabaseLineStatus Status

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_InsurClmAttachmentOutbound.
-- 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_InsurClmAttachmentOutbound AS
SELECT
  InsurClmActive,
  InsuranceClaim,
  InsurClmSubclm,
  InsuranceClaimDocumentNumber,
  InsurClmArcvIdCode,
  InsurClmArcvLnkDocID,
  ChangedOnDateTime,
  LastChangedByUser,
  InsurClmDatabaseLineStatus
FROM R_InsurClmAttachmentOutboundTP
;