C_Mm_Shipinstructionvaluehelp

DDL: C_MM_SHIPINSTRUCTIONVALUEHELP SQL: CMMSHIPINS_VH Type: view CONSUMPTION

Shipping Instruction Value Help

C_Mm_Shipinstructionvaluehelp is a Consumption CDS View that provides data about "Shipping Instruction Value Help" in SAP S/4HANA. It reads from 1 data source (I_ShippingInstruction) and exposes 2 fields with key field ShippingInstruction.

Data Sources (1)

SourceAliasJoin Type
I_ShippingInstruction I_ShippingInstruction from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CMMSHIPINS_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey ShippingInstruction view
ObjectModel.representativeKey ShippingInstruction view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Shipping Instruction Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ShippingInstruction ShippingInstruction Shipping Instruction
ShippingInstructionName _Text ShippingInstructionName Shipping Instruction Name

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_Mm_Shipinstructionvaluehelp.
-- 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.
-- SQL view name: CMMSHIPINS_VH

CREATE VIEW C_Mm_Shipinstructionvaluehelp AS
SELECT
  ShippingInstruction,
  _Text.ShippingInstructionName AS ShippingInstructionName
FROM I_ShippingInstruction
;