I_FldLogsDefaultQuickAction

DDL: I_FLDLOGSDEFAULTQUICKACTION Type: view_entity BASIC Package: FLOG_RETURN

Default quick action customizing data

I_FldLogsDefaultQuickAction is a Basic CDS View that provides data about "Default quick action customizing data" in SAP S/4HANA. It reads from 1 data source (flog_dflt_qkactn) and exposes 4 fields with key fields FldLogsSupplyProcess, FieldLogisticsProcessType. Part of development package FLOG_RETURN.

Data Sources (1)

SourceAliasJoin Type
flog_dflt_qkactn flog_dflt_qkactn from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Default quick action customizing data view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FldLogsSupplyProcess fldlogssupplyprocess Supply Process
KEY FieldLogisticsProcessType process_type Type of Data
FldLogsRecommendedAction rec_action Recommended Action
FldLogsCtnQuickAction quk_action Handling Decision

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_FldLogsDefaultQuickAction.
-- 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 I_FldLogsDefaultQuickAction AS
SELECT
  FldLogsSupplyProcess,
  process_type AS FieldLogisticsProcessType,
  rec_action AS FldLogsRecommendedAction,
  quk_action AS FldLogsCtnQuickAction
FROM flog_dflt_qkactn
;