I_IMGACT
Ermittlung der IMG Aktivität ID
I_IMGACT is a CDS View that provides data about "Ermittlung der IMG Aktivität ID" in SAP S/4HANA. It reads from 3 data sources (cus_actobj, cus_imgach, I_NumberRangeObject) and exposes 5 fields.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| cus_actobj | cusactobj | inner |
| cus_imgach | cusimgact | from |
| I_NumberRangeObject | obj | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IIMGACT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.dataMaintenance | #RESTRICTED | view | |
| EndUserText.label | Ermittlung der IMG Aktivität ID | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CActivity | cus_imgach | c_activity | ||
| IMGTCode | cus_imgach | tcode | ||
| Activity | cus_actobj | act_id | ||
| TCode | cus_actobj | tcode | ||
| Object | I_NumberRangeObject | NumberRangeObject |
@AbapCatalog.sqlViewName: 'IIMGACT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog.dataMaintenance : #RESTRICTED
@EndUserText.label: 'Ermittlung der IMG Aktivität ID'
define view I_IMGACT as select from cus_imgach as cusimgact
inner join cus_actobj as cusactobj on cusimgact.c_activity = cusactobj.act_id
inner join I_NumberRangeObject as obj on cusactobj.tcode = obj.NumberRangeTransactionCode
{
// key cusimgact.activity as Activity,
cusimgact.c_activity as CActivity,
cusimgact.tcode as IMGTCode,
cusactobj.act_id as Activity,
cusactobj.tcode as TCode,
obj.NumberRangeObject as Object
} where cusactobj.objectname = 'SNUM' and cusactobj.objecttype = 'T'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_NUMBERRANGEOBJECT",
"CUS_ACTOBJ",
"CUS_IMGACH"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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