C_SalesInquiryTypeValueHelp

DDL: C_SALESINQUIRYTYPEVALUEHELP Type: view CONSUMPTION

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.

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

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_SalesInquiryTypeValueHelp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_SalesInquiryTypeValueHelp AS
SELECT
  SalesDocumentType,
  _SalesDocumentType._SalesDocumentTypeLangDepdnt[1:Language=$session.system_language].SalesDocumentTypeLangDepdnt AS SalesDocumentTypeLangDepdnt,
  _SalesDocumentType._Text[1:Language=$session.system_language].SalesDocumentTypeName AS SalesDocumentTypeName
FROM I_SalesDocumentType AS _SalesDocumentType
LEFT OUTER JOIN I_SalesDocumentTypeText AS _Text ON SalesDocumentType = _Text.SalesDocumentType  -- association [0..*]
;