CLMS_V_TM_TR_OBJ
Objects of transport requests
CLMS_V_TM_TR_OBJ is a CDS View that provides data about "Objects of transport requests" in SAP S/4HANA. It reads from 1 data source (e071) and exposes 4 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| e071 | object | left_outer |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CLMSV_TMTROBJ | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientDependent | false | view | |
| EndUserText.label | Objects of transport requests | view |
@AbapCatalog.sqlViewName: 'CLMSV_TMTROBJ'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientDependent: false
@EndUserText.label: 'Objects of transport requests'
define view CLMS_V_TM_TR_OBJ as
select distinct from e070 as request
left outer join e071 as object
on object.trkorr = request.trkorr
{
request.trkorr,
object.pgmid,
object.object,
object.obj_name
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"E070",
"E071"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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