A_ChrgPlnTechService

DDL: A_CHRGPLNTECHSERVICE Type: view_entity CONSUMPTION

Charge Plan Technical Service

A_ChrgPlnTechService is a Consumption CDS View that provides data about "Charge Plan Technical Service" in SAP S/4HANA. It reads from 1 data source (R_ChrgPlnTechServiceTP) and exposes 6 fields with key field ChargePlanTechnicalServiceUUID.

Data Sources (1)

SourceAliasJoin Type
R_ChrgPlnTechServiceTP R_ChrgPlnTechServiceTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Charge Plan Technical Service view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey ChargePlanTechnicalServiceUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
OData.entityType.name ChrgPlnTechService_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ChargePlanTechnicalServiceUUID ChargePlanTechnicalServiceUUID Technical Serv. UUID
CreationDateTime CreationDateTime Timestamp
LastChangeDateTime LastChangeDateTime Timestamp
ChrgPlanTechnicalResourceUUID ChrgPlanTechnicalResourceUUID Technical Res. UUID
SubscrpnProdSpecUUID SubscrpnProdSpecUUID Sub. Prod. Data UUID
ChargePlanTechnicalServiceID ChargePlanTechnicalServiceID CC Tech Data Name

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_ChrgPlnTechService.
-- 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_ChrgPlnTechService AS
SELECT
  ChargePlanTechnicalServiceUUID,
  CreationDateTime,
  LastChangeDateTime,
  ChrgPlanTechnicalResourceUUID,
  SubscrpnProdSpecUUID,
  ChargePlanTechnicalServiceID
FROM R_ChrgPlnTechServiceTP
;