I_FldLogsOrderUnitText

DDL: I_FLDLOGSORDERUNITTEXT SQL: IFLORDERUNITTEXT Type: view BASIC Package: FLOG_RETURN

FL - Order Unit Text View

I_FldLogsOrderUnitText is a Basic CDS View that provides data about "FL - Order Unit Text View" in SAP S/4HANA. It reads from 2 data sources (marm, t006a) and exposes 3 fields with key fields RetblQtyOrderUnit, Material. It is exposed through 2 OData services (ASQL_F4682, ASQL_F4713). Part of development package FLOG_RETURN.

Data Sources (2)

SourceAliasJoin Type
marm _MatUom inner
t006a _Unit from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IFLORDERUNITTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
EndUserText.label FL - Order Unit Text View view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.personalData.blocking #NOT_REQUIRED view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F4682 ASQL_F4682 C2 NOT_RELEASED
ASQL_F4713 ASQL_F4713 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY RetblQtyOrderUnit t006a msehi Unit of measmnt
KEY Material marm matnr Product
RetblQtyOrderUnitText t006a msehl Meas. Unit 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_FldLogsOrderUnitText.
-- 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: IFLORDERUNITTEXT

CREATE VIEW I_FldLogsOrderUnitText AS
SELECT
  _Unit.msehi AS RetblQtyOrderUnit,
  _MatUom.matnr AS Material,
  _Unit.msehl AS RetblQtyOrderUnitText
FROM t006a AS _Unit
INNER JOIN marm AS _MatUom ON /* join condition not captured in parsed metadata */
;