R_IntOrdUnnumberedUserStatusTP

DDL: R_INTORDUNNUMBEREDUSERSTATUSTP Type: view_entity TRANSACTIONAL

Int. order user status without number

R_IntOrdUnnumberedUserStatusTP is a Transactional CDS View that provides data about "Int. order user status without number" in SAP S/4HANA. It reads from 4 data sources (I_InternalOrder, I_InternalOrderType, I_UserStatus, I_UserStatusText) and exposes 8 fields with key fields InternalOrder, InternalOrderDraftInternalUUID, UserStatus.

Data Sources (4)

SourceAliasJoin Type
I_InternalOrder _InternalOrder inner
I_InternalOrderType _InternalOrderType inner
I_UserStatus _UserStatus from
I_UserStatusText _UserStatusText inner

Annotations (7)

NameValueLevelField
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Int. order user status without number view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY InternalOrder I_InternalOrder InternalOrder Order
KEY InternalOrderDraftInternalUUID
KEY UserStatus I_UserStatusText UserStatus User status
StatusProfile I_UserStatusText StatusProfile Status Profile
IntOrderStatusSequenceNumber
UserStatusShortName I_UserStatusText UserStatusShortName Status
UserStatusName I_UserStatusText UserStatusName Text
_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_IntOrdUnnumberedUserStatusTP.
-- 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_IntOrdUnnumberedUserStatusTP AS
SELECT
  _InternalOrder.InternalOrder AS InternalOrder,
  cast('00000000000000000000000000000000' as sysuuid_c32) AS InternalOrderDraftInternalUUID,
  _UserStatusText.UserStatus AS UserStatus,
  _UserStatusText.StatusProfile AS StatusProfile,
  cast(_UserStatus.StatusSequenceNumber as fco_io_j_stonr) AS IntOrderStatusSequenceNumber,
  _UserStatusText.UserStatusShortName AS UserStatusShortName,
  _UserStatusText.UserStatusName AS UserStatusName
FROM I_UserStatus AS _UserStatus
INNER JOIN I_InternalOrderType AS _InternalOrderType ON /* join condition not captured in parsed metadata */
INNER JOIN I_InternalOrder AS _InternalOrder ON /* join condition not captured in parsed metadata */
INNER JOIN I_UserStatusText AS _UserStatusText ON /* join condition not captured in parsed metadata */
;