C_SlsOrdWthoutChrgTypeManageVH
Sls Ord Without Chrg Type for Manage App
C_SlsOrdWthoutChrgTypeManageVH is a Consumption CDS View that provides data about "Sls Ord Without Chrg Type for Manage App" in SAP S/4HANA. It reads from 1 data source (I_SDAllwdSlsDocTypeMnggSlsDoc) and exposes 4 fields with key field SalesOrderWithoutChargeType. It has 2 associations to related views. It is exposed through 1 OData service (UI_SALESDOCUMENTMANAGE). Part of development package ODATA_SD_SLSORDWOCHARGE_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SDAllwdSlsDocTypeMnggSlsDoc | I_SDAllwdSlsDocTypeMnggSlsDoc | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_SalesDocumentType | _SalesDocumentType | $projection.SalesOrderWithoutChargeType = _SalesDocumentType.SalesDocumentType |
| [0..*] | I_SalesDocumentTypeText | _Text | $projection.SalesOrderWithoutChargeType = _Text.SalesDocumentType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Sls Ord Without Chrg Type for Manage App | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #CONSUMPTION | view | |
| UI.headerInfo.typeName | Sales Order Without Charge Type | view | |
| UI.headerInfo.typeNamePlural | Sales Order Without Charge Types | view | |
| ObjectModel.representativeKey | SalesOrderWithoutChargeType | view | |
| Search.searchable | true | view | |
| Consumption.valueHelpDefault.fetchValues | #AUTOMATICALLY_WHEN_DISPLAYED | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_SALESDOCUMENTMANAGE | UI_SALESDOCUMENTMANAGE | V4 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesOrderWithoutChargeType | Sales Order Without Charge Type | ||
| SalesDocumentTypeLangDepdnt | ||||
| _Text | _Text | |||
| _SalesDocumentType | _SalesDocumentType |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Sls Ord Without Chrg Type for Manage App'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
resultSet.sizeCategory: #XS,
dataCategory: #VALUE_HELP
}
@VDM.viewType: #CONSUMPTION
@UI.headerInfo:{
typeName: 'Sales Order Without Charge Type',
typeNamePlural: 'Sales Order Without Charge Types'
}
@ObjectModel.representativeKey: 'SalesOrderWithoutChargeType'
@Search.searchable: true
@Consumption.valueHelpDefault.fetchValues:#AUTOMATICALLY_WHEN_DISPLAYED
define view entity C_SlsOrdWthoutChrgTypeManageVH
as select from I_SDAllwdSlsDocTypeMnggSlsDoc
association [1] to I_SalesDocumentType as _SalesDocumentType on $projection.SalesOrderWithoutChargeType = _SalesDocumentType.SalesDocumentType
association [0..*] to I_SalesDocumentTypeText as _Text on $projection.SalesOrderWithoutChargeType = _Text.SalesDocumentType
{
@EndUserText.label: 'Sales Order Without Charge Type'
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@UI.selectionField: [ { exclude: true } ]
key cast(SalesDocumentType as sales_order_wthout_charge_type preserving type) as SalesOrderWithoutChargeType,
@Search.defaultSearchElement: true
@UI.hidden: true
_SalesDocumentType._SalesDocumentTypeLangDepdnt[1: Language = $session.system_language].SalesDocumentTypeLangDepdnt,
_Text,
_SalesDocumentType
}
where _SalesDocumentType.SDDocumentCategory = 'I' // Restrict only to sales orders without charge
and _SalesDocumentType.IsLocked is initial // Could have been locked in the meantime (after configuration)
and _SalesDocumentType.NumberRangeForIntIDAssignment is not initial // Could have been changed in the meantime (after configuration)
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