I_BSOrdNetworkGraphLineAttrib
Solution Order Network Graph Line Attribute
I_BSOrdNetworkGraphLineAttrib is a Basic CDS View that provides data about "Solution Order Network Graph Line Attribute" in SAP S/4HANA. It reads from 1 data source (t000) and exposes 5 fields with key fields UI5NetworkGraphNodeFrom, UI5NetworkGraphNodeTo, UI5NetworkGraphAttribute. Part of development package CRMS4_SOLUTION_ORDER_PROGRESS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t000 | t000 | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Solution Order Network Graph Line Attribute | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UI5NetworkGraphNodeFrom | |||
| KEY | UI5NetworkGraphNodeTo | |||
| KEY | UI5NetworkGraphAttribute | |||
| UI5NetworkGraphDescription | ||||
| UI5NetworkGraphAttributeValue |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl:{
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED
}
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Solution Order Network Graph Line Attribute'
define view entity I_BSOrdNetworkGraphLineAttrib
as select from t000
{
key cast('' as crms4_solnorder_ng_node_id) as UI5NetworkGraphNodeFrom,
key cast('' as crms4_solnorder_ng_node_id) as UI5NetworkGraphNodeTo,
key cast('' as crms4_solnorder_ng_attrib_id) as UI5NetworkGraphAttribute,
cast('' as crms4_solnorder_ng_text) as UI5NetworkGraphDescription,
cast('' as crms4_solnorder_ng_attrib_val) as UI5NetworkGraphAttributeValue
}
where
mandt = $session.client
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