C_SalesInquiryTypeValueHelp

DDL: C_SALESINQUIRYTYPEVALUEHELP Type: view CONSUMPTION Package: ODATA_SD_S4H_COMMON

Sales Inquiry specific document types

C_SalesInquiryTypeValueHelp is a Consumption CDS View that provides data about "Sales Inquiry specific document types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 4 fields with key field SalesDocumentType. It has 1 association to related views. Part of development package ODATA_SD_S4H_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType _SalesDocumentType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SalesDocumentTypeText _Text $projection.SalesDocumentType = _Text.SalesDocumentType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CSALESINQTYPVH view
AbapCatalog.compiler.compareFilter true view
ClientDependent true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sales Inquiry specific document types view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view
UI.headerInfo.typeName Inquiry Type view
UI.headerInfo.typeNamePlural Inquiry Types view
ObjectModel.representativeKey SalesDocumentType view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesDocumentType SalesDocumentType Inquiry Type
SalesDocumentTypeLangDepdnt
SalesDocumentTypeName
_Text _Text
@AbapCatalog: {
   sqlViewName: 'CSALESINQTYPVH',
   compiler.compareFilter: true
}

@ClientDependent: true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Sales Inquiry specific document types'

@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@VDM: {
  viewType: #CONSUMPTION
}

@UI.headerInfo:{ 
  typeName:       'Inquiry Type',
  typeNamePlural: 'Inquiry Types'
}
@ObjectModel.representativeKey: 'SalesDocumentType'

define view C_SalesInquiryTypeValueHelp as select from I_SalesDocumentType  as _SalesDocumentType
 
association [0..*] to I_SalesDocumentTypeText as _Text on $projection.SalesDocumentType = _Text.SalesDocumentType

{   
    @EndUserText.label : 'Inquiry Type'  
    @ObjectModel.text.association: '_Text'
    key SalesDocumentType,
    
    @UI.hidden: true
    _SalesDocumentType._SalesDocumentTypeLangDepdnt[1:Language=$session.system_language].SalesDocumentTypeLangDepdnt,

    @UI.hidden: true
    _SalesDocumentType._Text[1:Language=$session.system_language].SalesDocumentTypeName,
    
    _Text
}
where SDDocumentCategory = 'A'