I_SalesOrderWithoutChargeType

DDL: I_SALESORDERWITHOUTCHARGETYPE SQL: ISDSOWTHOCHRGTP Type: view BASIC Package: VDM_SD_SLS_SO

Sales Order Without Charge Types

I_SalesOrderWithoutChargeType is a Basic CDS View (Dimension) that provides data about "Sales Order Without Charge Types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 3 fields with key field SalesOrderWithoutChargeType. It is exposed through 2 OData services (UI_CUSTOMERRETURNMANAGE, UI_SLSORDERWITHOUTCHARGEMANAGE). Part of development package VDM_SD_SLS_SO.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType I_SalesDocumentType from

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SalesOrderWithoutChargeType view
ObjectModel.sapObjectNodeType.name SalesOrderWithoutChargeType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Sales Order Without Charge Types view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSOWTHOCHRGTP view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

OData Services (2)

ServiceBindingVersionContractRelease
UI_CUSTOMERRETURNMANAGE UI_CUSTOMERRETURNMANAGE V4 C1 NOT_RELEASED
UI_SLSORDERWITHOUTCHARGEMANAGE UI_SLSORDERWITHOUTCHARGEMANAGE V4 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesOrderWithoutChargeType
SalesOrderWthoutChrgProcgType SalesDocumentProcessingType
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel: {
    representativeKey: 'SalesOrderWithoutChargeType',
    sapObjectNodeType.name: 'SalesOrderWithoutChargeType',
    usageType: {
        dataClass:#CUSTOMIZING,
        serviceQuality:#A,
        sizeCategory: #S
    },
    supportedCapabilities: [ #ANALYTICAL_DIMENSION, #EXTRACTION_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ],
    modelingPattern: [ #ANALYTICAL_DIMENSION ]
}
@EndUserText.label: 'Sales Order Without Charge Types'
@Analytics: {dataCategory: #DIMENSION,
             dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSOWTHOCHRGTP'
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations:true

define view I_SalesOrderWithoutChargeType 
as select from I_SalesDocumentType

{   
    @ObjectModel.text.association: '_Text'
    key cast ( SalesDocumentType as sales_order_wthout_charge_type preserving type ) as   SalesOrderWithoutChargeType,
        SalesDocumentProcessingType                                                  as   SalesOrderWthoutChrgProcgType,
    
    //association 

    _Text
}
where SDDocumentCategory = 'I';