A_AppointmentActivity

DDL: A_APPOINTMENTACTIVITY Type: view COMPOSITE

Appointment Activity

A_AppointmentActivity is a Composite CDS View that provides data about "Appointment Activity" in SAP S/4HANA. It reads from 1 data source (I_CustMgmtActivityEnhcd) and exposes 25 fields with key field AppointmentActivity. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_CustMgmtActivityEnhcd AppointmentActivity from

Associations (4)

CardinalityTargetAliasCondition
[0..*] A_AppointmentActyPersonResp _PersonResponsible $projection.AppointmentActivity = _PersonResponsible.AppointmentActivity
[0..*] A_AppointmentActyAttendee _AppointmentActivityAttendee $projection.AppointmentActivity = _AppointmentActivityAttendee.AppointmentActivity
[0..*] A_AppointmentActivityText _Text $projection.AppointmentActivity = _Text.AppointmentActivity
[0..1] E_ActivityDocument _Extension _Extension.BusinessObjectType = 'BUS2000126' and $projection.AppointmentActivity = _Extension.ActivityDocument

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Appointment Activity view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName AAPPTACT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey AppointmentActivity view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY AppointmentActivity CustMgmtActivity
AppointmentActivityType CustMgmtActivityType
AppointmentActivityUUID CustMgmtActivityUUID
AppointmentActivityDescription CustMgmtActivityDescription
CustMgmtActivityCategory CustMgmtActivityCategory
CustMgmtActivityPriority CustMgmtActivityPriority
CustMgmtActivityIsPrivate CustMgmtActivityIsPrivate
CustMgmtActyIsDspdInCalendar CustMgmtActyIsDspdInCalendar
ApptActivityLocationText CustMgmtActivityLocationText
Account Account Std. Account
ContactPerson ContactPerson Contact Person Key
AppointmentActivityIsRejected CustMgmtActivityIsRejected
CustMgmtActivityStartDateTime CustMgmtActivityStartDateTime
CustMgmtActivityEndDateTime CustMgmtActivityEndDateTime
ResponsibleSalesOrganization ResponsibleSalesOrganization
ServiceOrganization ServiceOrganization
ResponsibleServiceOrganization ResponsibleServiceOrganization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
SalesOrganizationOrgUnitID SalesOrganizationOrgUnitID
SalesOfficeOrgUnitID SalesOfficeOrgUnitID
SalesGroupOrgUnitID SalesGroupOrgUnitID
_PersonResponsible _PersonResponsible
_AppointmentActivityAttendee _AppointmentActivityAttendee
_Text _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_AppointmentActivity.
-- 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_AppointmentActivity AS
SELECT
  CustMgmtActivity AS AppointmentActivity,
  CustMgmtActivityType AS AppointmentActivityType,
  CustMgmtActivityUUID AS AppointmentActivityUUID,
  CustMgmtActivityDescription AS AppointmentActivityDescription,
  CustMgmtActivityCategory,
  CustMgmtActivityPriority,
  CustMgmtActivityIsPrivate,
  CustMgmtActyIsDspdInCalendar,
  CustMgmtActivityLocationText AS ApptActivityLocationText,
  Account,
  ContactPerson,
  CustMgmtActivityIsRejected AS AppointmentActivityIsRejected,
  CustMgmtActivityStartDateTime,
  CustMgmtActivityEndDateTime,
  ResponsibleSalesOrganization,
  ServiceOrganization,
  ResponsibleServiceOrganization,
  DistributionChannel,
  Division,
  SalesOrganizationOrgUnitID,
  SalesOfficeOrgUnitID,
  SalesGroupOrgUnitID
FROM I_CustMgmtActivityEnhcd AS AppointmentActivity
LEFT OUTER JOIN A_AppointmentActyPersonResp AS _PersonResponsible ON AppointmentActivity = _PersonResponsible.AppointmentActivity  -- association [0..*]
LEFT OUTER JOIN A_AppointmentActyAttendee AS _AppointmentActivityAttendee ON AppointmentActivity = _AppointmentActivityAttendee.AppointmentActivity  -- association [0..*]
LEFT OUTER JOIN A_AppointmentActivityText AS _Text ON AppointmentActivity = _Text.AppointmentActivity  -- association [0..*]
LEFT OUTER JOIN E_ActivityDocument AS _Extension ON _Extension.BusinessObjectType = 'BUS2000126' AND AppointmentActivity = _Extension.ActivityDocument  -- association [0..1]
;