I_FldLogsHandlingDecisionsBsc

DDL: I_FLDLOGSHANDLINGDECISIONSBSC SQL: IFLHNDLGDEC Type: view BASIC

Handling Decisions and descriptions

I_FldLogsHandlingDecisionsBsc is a Basic CDS View that provides data about "Handling Decisions and descriptions" in SAP S/4HANA. It reads from 2 data sources (flog_ret_qkact, flog_ret_qkact_t) and exposes 4 fields with key fields FldLogsCtnQuickAction, FieldLogisticsProcessType.

Data Sources (2)

SourceAliasJoin Type
flog_ret_qkact _HndlgDec from
flog_ret_qkact_t _HndlgTxt inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFLHNDLGDEC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Handling Decisions and descriptions view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FldLogsCtnQuickAction flog_ret_qkact qk_action Handling Decision
KEY FieldLogisticsProcessType flog_ret_qkact process_type Type of Data
FldLogsCtnQuickActionText flog_ret_qkact_t qk_acttx Returns Decision Ds.
FldLogsItmIsPostProcessAllowed flog_ret_qkact fldlogsitmispostprocessallowed Pst Processing

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_FldLogsHandlingDecisionsBsc.
-- 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: IFLHNDLGDEC

CREATE VIEW I_FldLogsHandlingDecisionsBsc AS
SELECT
  _HndlgDec.qk_action AS FldLogsCtnQuickAction,
  _HndlgDec.process_type AS FieldLogisticsProcessType,
  _HndlgTxt.qk_acttx AS FldLogsCtnQuickActionText,
  _HndlgDec.fldlogsitmispostprocessallowed AS FldLogsItmIsPostProcessAllowed
FROM flog_ret_qkact AS _HndlgDec
INNER JOIN flog_ret_qkact_t AS _HndlgTxt ON /* join condition not captured in parsed metadata */
;