I_IncidentCombAuthFields
Incident Authorization Fields
I_IncidentCombAuthFields is a Basic CDS View that provides data about "Incident Authorization Fields" in SAP S/4HANA. It reads from 2 data sources (I_IncidentAuthorizationFields, I_IncidentInvstgnAuthznFields) and exposes 30 fields with key field EHSTaskHostObjectInstanceUUID.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_IncidentAuthorizationFields | I_IncidentAuthorizationFields | from |
| I_IncidentInvstgnAuthznFields | I_IncidentInvstgnAuthznFields | union_all |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INCCOMBAUTHFLDS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Incident Authorization Fields | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (30)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSTaskHostObjectInstanceUUID | EHSTaskHostObjectInstanceUUID | ||
| IncidentUUID | IncidentUUID | |||
| InvestigationAccessRestriction | ||||
| IncidentCategory | IncidentCategory | |||
| IncidentStatus | IncidentStatus | |||
| Plant | Plant | |||
| EHSLocationUUID | EHSLocationUUID | |||
| Country | Country | |||
| Region | Region | |||
| IncidentAccessRestriction | IncidentHasAccessRestriction | |||
| _CurrentEHSParentLocationID | _CurrentEHSParentLocationID | |||
| _Country | _Country | |||
| _IncidentCategory | _IncidentCategory | |||
| _IncidentStatus | _IncidentStatus | |||
| _Plant | _Plant | |||
| IncidentUUID | IncidentUUID | |||
| InvestigationAccessRestriction | InvestigationHasAccRestriction | |||
| IncidentCategory | IncidentCategory | |||
| IncidentStatus | IncidentStatus | |||
| Plant | Plant | |||
| EHSLocationUUID | EHSLocationUUID | |||
| Country | Country | |||
| Region | Region | |||
| IncidentAccessRestriction | ||||
| _CurrentEHSParentLocationID | _CurrentEHSParentLocationID | |||
| _Country | _Country | |||
| _IncidentCategory | _IncidentCategory | |||
| _IncidentStatus | _IncidentStatus | |||
| _Plant | _Plant | |||
| _Region | _Region |
@AbapCatalog.sqlViewName: 'INCCOMBAUTHFLDS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Incident Authorization Fields'
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.modelingPattern: #NONE
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
define view I_IncidentCombAuthFields
as select from I_IncidentAuthorizationFields
{
//I_IncidentAuthorizationFields
key EHSTaskHostObjectInstanceUUID,
IncidentUUID,
//EHSTaskHostObjectInstance, // removed due to performance optimization
'' as InvestigationAccessRestriction,
IncidentCategory,
IncidentStatus,
Plant,
EHSLocationUUID,
Country,
Region,
IncidentHasAccessRestriction as IncidentAccessRestriction,
_CurrentEHSParentLocationID,
_Country,
_IncidentCategory,
_IncidentStatus,
_Plant,
_Region
} union all select from I_IncidentInvstgnAuthznFields {
key EHSTaskHostObjectInstanceUUID,
IncidentUUID,
//EHSTaskHostObjectInstance, // removed due to performance optimization
InvestigationHasAccRestriction as InvestigationAccessRestriction,
IncidentCategory,
IncidentStatus,
Plant,
EHSLocationUUID,
Country,
Region,
'' as IncidentAccessRestriction,
_CurrentEHSParentLocationID,
_Country,
_IncidentCategory,
_IncidentStatus,
_Plant,
_Region
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INCIDENTAUTHORIZATIONFIELDS",
"I_INCIDENTINVSTGNAUTHZNFIELDS"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_CURRENTEHSPARENTLOCATIONID",
"I_INCIDENTCATEGORY",
"I_INCIDENTSTATUS",
"I_PLANT",
"I_REGION"
],
"BASE":
[
"I_INCIDENTAUTHORIZATIONFIELDS"
],
"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