A_MaintPlanCallObject

DDL: A_MAINTPLANCALLOBJECT SQL: AMPLANCALLOBJ Type: view CONSUMPTION

Maintenance Plan Call Objects

A_MaintPlanCallObject is a Consumption CDS View that provides data about "Maintenance Plan Call Objects" in SAP S/4HANA. It reads from 1 data source (I_MaintPlanCallObject) and exposes 11 fields with key fields MaintenancePlan, MaintenancePlanCallNumber, MaintenanceItem.

Data Sources (1)

SourceAliasJoin Type
I_MaintPlanCallObject I_MaintPlanCallObject from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName AMPLANCALLOBJ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Maintenance Plan Call Objects view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
OData.entityType.name MaintenancePlanCallObject_Type view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY MaintenancePlan MaintenancePlan MaintenancePlan
KEY MaintenancePlanCallNumber MaintenancePlanCallNumber Stage number
KEY MaintenanceItem MaintenanceItem MaintItem
MaintenanceOrder MaintenanceOrder Order
MaintenanceNotification MaintenanceNotification Notification
ServiceOrder ServiceOrder Transaction ID
MaintCallHorizonIsNotReached MaintCallHorizonIsNotReached SchedStatus
SchedulingStatus Tech. Status
PlannedStartDate PlannedStartDate Latest Planned Start
ReleasedByUserName ReleasedByUserName Description
_MaintenancePlan _MaintenancePlan

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_MaintPlanCallObject.
-- 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: AMPLANCALLOBJ

CREATE VIEW A_MaintPlanCallObject AS
SELECT
  MaintenancePlan,
  MaintenancePlanCallNumber,
  MaintenanceItem,
  MaintenanceOrder,
  MaintenanceNotification,
  ServiceOrder,
  MaintCallHorizonIsNotReached,
  cast(SchedulingStatus as char1 preserving type ) AS SchedulingStatus,
  PlannedStartDate,
  ReleasedByUserName
FROM I_MaintPlanCallObject
;