R_IntOrdLongDescriptionDraftTP

DDL: R_INTORDLONGDESCRIPTIONDRAFTTP Type: view_entity TRANSACTIONAL

Internal Order Long Description

R_IntOrdLongDescriptionDraftTP is a Transactional CDS View that provides data about "Internal Order Long Description" in SAP S/4HANA. It reads from 1 data source (P_InternalOrderLongDescription) and exposes 12 fields with key fields InternalOrder, InternalOrderDraftInternalUUID, TextObjectType, TextObjectCategory, Language.

Data Sources (1)

SourceAliasJoin Type
P_InternalOrderLongDescription P_InternalOrderLongDescription from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Internal Order Long Description view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY InternalOrder InternalOrder Order
KEY InternalOrderDraftInternalUUID
KEY TextObjectType TextObjectType Text ID
KEY TextObjectCategory TextObjectCategory Text object
KEY Language Language Report Text Language
KEY IntOrderLongDescriptionUUID
LanguageForEdit Language Report Text Language
IntOrdLongDescIsAvailable IntOrdLongDescIsAvailable
_TextObjectType _TextObjectType
_TextObjectCategory _TextObjectCategory
_Language _Language
_InternalOrderTP _InternalOrderTP

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 R_IntOrdLongDescriptionDraftTP.
-- 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 R_IntOrdLongDescriptionDraftTP AS
SELECT
  InternalOrder,
  cast('00000000000000000000000000000000' as sysuuid_c32) AS InternalOrderDraftInternalUUID,
  TextObjectType,
  TextObjectCategory,
  Language,
  cast('00000000000000000000000000000000' as sysuuid_c32) AS IntOrderLongDescriptionUUID,
  Language AS LanguageForEdit,
  IntOrdLongDescIsAvailable
FROM P_InternalOrderLongDescription
;