C_SlsOrdWthoutChrgTypeManageVH

DDL: C_SLSORDWTHOUTCHRGTYPEMANAGEVH Type: view_entity CONSUMPTION Package: ODATA_SD_SLSORDWOCHARGE_UI

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)

SourceAliasJoin Type
I_SDAllwdSlsDocTypeMnggSlsDoc I_SDAllwdSlsDocTypeMnggSlsDoc from

Associations (2)

CardinalityTargetAliasCondition
[1] I_SalesDocumentType _SalesDocumentType $projection.SalesOrderWithoutChargeType = _SalesDocumentType.SalesDocumentType
[0..*] I_SalesDocumentTypeText _Text $projection.SalesOrderWithoutChargeType = _Text.SalesDocumentType

Annotations (14)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
UI_SALESDOCUMENTMANAGE UI_SALESDOCUMENTMANAGE V4 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
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)