I_IMGActivity
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)
| Source | Alias | Join Type |
|---|---|---|
| cus_imgach | cus_imgach | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IMGActivityID | activity | ||
| DocumentationObjectName | docu_id | |||
| IMGActivityAttributes | attributes | |||
| CustomizingActivityID | c_activity | |||
| TransactionCode | tcode | |||
| CreatedByUser | fuser | |||
| CreationDate | fdate | |||
| CreationTime | ftime | |||
| LastChangedByUser | luser | |||
| LastChangeDate | ldate | |||
| LastChangeTime | ltime | |||
| CustomerMaintenanceStatus | cus_maint_status | |||
| CentralMaintenanceStatus | cbc_maint_status | |||
| SapSupportMaintenanceStatus | sap_maint_status |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'IMG Activities'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity I_IMGActivity
as select from cus_imgach
{
key activity as IMGActivityID,
docu_id as DocumentationObjectName,
attributes as IMGActivityAttributes,
c_activity as CustomizingActivityID,
tcode as TransactionCode,
@Semantics.user.createdBy
fuser as CreatedByUser,
@Semantics.systemDate.createdAt: true
fdate as CreationDate,
@Semantics.systemTime.createdAt: true
ftime as CreationTime,
@Semantics.user.lastChangedBy
luser as LastChangedByUser,
@Semantics.systemDate.lastChangedAt: true
ldate as LastChangeDate,
@Semantics.systemTime.lastChangedAt: true
ltime as LastChangeTime,
cus_maint_status as CustomerMaintenanceStatus,
cbc_maint_status as CentralMaintenanceStatus,
sap_maint_status as SapSupportMaintenanceStatus
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA