I_IMGActivity

DDL: I_IMGACTIVITY Type: view_entity Package: S_CUSTOMIZING_IMG_ACTIVITY

IMG Activities

I_IMGActivity is a CDS View that provides data about "IMG Activities" in SAP S/4HANA. It reads from 1 data source (cus_imgach) and exposes 14 fields with key field IMGActivityID. Part of development package S_CUSTOMIZING_IMG_ACTIVITY.

Data Sources (1)

SourceAliasJoin Type
cus_imgach cus_imgach from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IMG Activities view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY IMGActivityID activity VAT Activity
DocumentationObjectName docu_id Object
IMGActivityAttributes attributes Dep. Attributes
CustomizingActivityID c_activity Cust. Activity
TransactionCode tcode Undefined range (can be used for patch levels)
CreatedByUser fuser CreatedBy
CreationDate fdate Valid from
CreationTime ftime Time
LastChangedByUser luser User Name
LastChangeDate ldate Entry Date
LastChangeTime ltime Time received
CustomerMaintenanceStatus cus_maint_status
CentralMaintenanceStatus cbc_maint_status
SapSupportMaintenanceStatus sap_maint_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 I_IMGActivity.
-- 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 I_IMGActivity AS
SELECT
  activity AS IMGActivityID,
  docu_id AS DocumentationObjectName,
  attributes AS IMGActivityAttributes,
  c_activity AS CustomizingActivityID,
  tcode AS TransactionCode,
  fuser AS CreatedByUser,
  fdate AS CreationDate,
  ftime AS CreationTime,
  luser AS LastChangedByUser,
  ldate AS LastChangeDate,
  ltime AS LastChangeTime,
  cus_maint_status AS CustomerMaintenanceStatus,
  cbc_maint_status AS CentralMaintenanceStatus,
  sap_maint_status AS SapSupportMaintenanceStatus
FROM cus_imgach
;