A_ChrgPlnTechResource

DDL: A_CHRGPLNTECHRESOURCE Type: view_entity CONSUMPTION

Charge Plan Technical Resource

A_ChrgPlnTechResource is a Consumption CDS View that provides data about "Charge Plan Technical Resource" in SAP S/4HANA. It reads from 1 data source (R_ChrgPlnTechResourceTP) and exposes 11 fields with key field ChrgPlanTechnicalResourceUUID.

Data Sources (1)

SourceAliasJoin Type
R_ChrgPlnTechResourceTP R_ChrgPlnTechResourceTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Charge Plan Technical Resource view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey ChrgPlanTechnicalResourceUUID 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 ChrgPlnTechResource_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ChrgPlanTechnicalResourceUUID ChrgPlanTechnicalResourceUUID Technical Res. UUID
CreationDateTime CreationDateTime Timestamp
LastChangeDateTime LastChangeDateTime Timestamp
ChargePlanAssignmentUUID ChargePlanAssignmentUUID Assignment UUID
SubscrpnProdSpecUUID SubscrpnProdSpecUUID Sub. Prod. Data UUID
ChargePlanTechnicalResourceID ChargePlanTechnicalResourceID CC Tech Data Name
ChrgPlnTechResourceDescription ChrgPlnTechResourceDescription SAP CC Tech. Desc.
CATechnicalResourceIDType CATechnicalResourceIDType Type of ID
ChrgPlnTechResourceLocation ChrgPlnTechResourceLocation Resource Location
BRFFunctionUUID BRFFunctionUUID BRFplus UUID
virtualBRFFunctionTextfdt_text

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_ChrgPlnTechResource.
-- 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_ChrgPlnTechResource AS
SELECT
  ChrgPlanTechnicalResourceUUID,
  CreationDateTime,
  LastChangeDateTime,
  ChargePlanAssignmentUUID,
  SubscrpnProdSpecUUID,
  ChargePlanTechnicalResourceID,
  ChrgPlnTechResourceDescription,
  CATechnicalResourceIDType,
  ChrgPlnTechResourceLocation,
  BRFFunctionUUID,
  virtual BRFFunctionText : fdt_text AS virtualBRFFunctionTextfdt_text
FROM R_ChrgPlnTechResourceTP
;