I_SalesQuotationType

DDL: I_SALESQUOTATIONTYPE SQL: ISDSLSQTANTP Type: view BASIC

Sales Quotation Types

I_SalesQuotationType is a Basic CDS View (Dimension) that provides data about "Sales Quotation Types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 2 fields with key field SalesQuotationType.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType I_SalesDocumentType from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SalesQuotationType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Sales Quotation Types view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSLSQTANTP view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name SalesQuotationType view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SalesQuotationType
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'SalesQuotationType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
@ObjectModel.modelingPattern: [ #ANALYTICAL_DIMENSION ]
@EndUserText.label: 'Sales Quotation Types'
@Analytics: {dataCategory: #DIMENSION}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSLSQTANTP'
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations:true
// @AbapCatalog.buffering.status: #ACTIVE

// @AbapCatalog.buffering.type: #FULL

@ObjectModel.sapObjectNodeType.name:'SalesQuotationType'

define view I_SalesQuotationType 
as select from I_SalesDocumentType

{   
    //key

    @ObjectModel.text.association: '_Text'
    key cast( SalesDocumentType as sales_quotation_type preserving type ) as SalesQuotationType,
    
    //association 

    _Text
}
where SDDocumentCategory = 'B';                   
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SALESDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_SALESDOCUMENTTYPETEXT"
],
"BASE":
[
"I_SALESDOCUMENTTYPE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/