I_SAPOBJECTNODETYPERPRSTN
SAP Object Node Type Representation
I_SAPOBJECTNODETYPERPRSTN is a CDS View in S/4HANA. SAP Object Node Type Representation. It contains 3 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_WrkflwScenDefSAPObjNodeType | view | inner | COMPOSITE | Exposes SONT to a Workflow Scenario |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| SAPObjectNodeType | SAPObjectNodeType | 1 | |
| SAPObjectType | SAPObjectType | 1 | |
| SONTRepresentativeCDSView | SONTRepresentativeCDSView | 1 |
@AbapCatalog.sqlViewName: 'IOBJNODEREPRSNTN'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@EndUserText.label: 'SAP Object Node Type Representation'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl:{
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED
}
@ObjectModel: {
usageType: { dataClass: #MASTER,
sizeCategory: #M,
serviceQuality: #A
},
representativeKey: 'SAPObjectNodeType'
}
define view I_SAPObjectNodeTypeRprstn
as select from sbo_i_nodetype
left outer join sbo_i_node_cds as RepresentativeView on RepresentativeView.node_cds_type = '1'
and sbo_i_nodetype.object_node_type = RepresentativeView.object_node_type
left outer join sbo_i_node_cds as ValueHelpView on ValueHelpView.node_cds_type = '2'
and sbo_i_nodetype.object_node_type = ValueHelpView.object_node_type
{
//sbo_i_nodetype
key sbo_i_nodetype.object_node_type as SAPObjectNodeType,
bo_type as SAPObjectType,
workflow_bor_rprst as SONTWorkflowBORRprstn,
workflow_class_rprst as SONTWorkflowClassRprstn,
workflow_key_structure as SONTKeyStructure,
//RepresentativeView
RepresentativeView.cds_view_name as SONTRepresentativeCDSView,
//ValueHelpView
ValueHelpView.cds_view_name as SONTValueHelpCDSView
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"SBO_I_NODETYPE",
"SBO_I_NODE_CDS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/