I_OutputRequestItemStatus

DDL: I_OUTPUTREQUESTITEMSTATUS SQL: IOUTREQITEMSTAT Type: view BASIC Package: APOC_OUTPUT_CONTROL_BO

Status of Output Request Item

I_OutputRequestItemStatus is a Basic CDS View that provides data about "Status of Output Request Item" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field OutputRequestItemStatus. It has 1 association to related views. It is exposed through 9 OData services (ASQL_F4455, ASQL_F5987, C_SALESORDERMANAGE_SD, ...). Part of development package APOC_OUTPUT_CONTROL_BO.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OutputRequestItemStatusText _Text $projection.OutputRequestItemStatus = _Text.OutputRequestItemStatus

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IOUTREQITEMSTAT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey OutputRequestItemStatus view
EndUserText.label Status of Output Request Item view

OData Services (9)

ServiceBindingVersionContractRelease
ASQL_F4455 ASQL_F4455 C2 NOT_RELEASED
ASQL_F5987 ASQL_F5987 C2 NOT_RELEASED
C_SALESORDERMANAGE_SD C_SALESORDERMANAGE_SRV V4 C1 NOT_RELEASED
UI_CREDITMEMOREQUESTMANAGE UI_CREDITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_CUSTOMERRETURNMANAGE UI_CUSTOMERRETURNMANAGE V4 C1 NOT_RELEASED
UI_DEBITMEMOREQUESTMANAGE UI_DEBITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_SALESCONTRACTMANAGE UI_SALESCONTRACTMANAGE V4 C1 NOT_RELEASED
UI_SALESQUOTATIONMANAGE UI_SALESQUOTATIONMANAGE V4 C1 NOT_RELEASED
UI_SLSORDERWITHOUTCHARGEMANAGE UI_SLSORDERWITHOUTCHARGEMANAGE V4 C1 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OutputRequestItemStatus dd07l domvalue_l Lower Value
_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 I_OutputRequestItemStatus.
-- 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: IOUTREQITEMSTAT

CREATE VIEW I_OutputRequestItemStatus AS
SELECT
  dd07l.domvalue_l AS OutputRequestItemStatus
FROM dd07l
LEFT OUTER JOIN I_OutputRequestItemStatusText AS _Text ON OutputRequestItemStatus = _Text.OutputRequestItemStatus  -- association [0..*]
;