I_ListingProcedure

DDL: I_LISTINGPROCEDURE SQL: ILISTINGPROC Type: view BASIC

Retail Listing Procedures

I_ListingProcedure (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_ListingProcedure is a Basic CDS View that provides data about "Retail Listing Procedures" in SAP S/4HANA. It reads from 1 data source (twlv) and exposes 7 fields with key field StoreListingProcedure. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentLO-RFM-MD-LST
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Search
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
twlv twlv from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ListingProcedureT _Text

Annotations (14)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ILISTINGPROC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Retail Listing Procedures view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey StoreListingProcedure view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY StoreListingProcedure Listing procedure for store or other assortment categories
ListingAuthorizationGroup begru Authorization to use listing procedure
ListingProcedureCheckSequence1 Step 1 of Listing Procedure Sequence
ListingProcedureCheckSequence2 Step 2 of Listing Procedure Sequence
ListingProcedureCheckSequence3 Step 3 of Listing Procedure Sequence
ListingProcedureCheckSequence4 Step 4 of Listing Procedure Sequence
_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_ListingProcedure.
-- 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: ILISTINGPROC

CREATE VIEW I_ListingProcedure AS
SELECT
  cast(lstfl as lstfl preserving type) AS StoreListingProcedure,
  begru AS ListingAuthorizationGroup,
  cast(folge1 as list_proc_sequ_step1 preserving type) AS ListingProcedureCheckSequence1,
  cast(folge2 as list_proc_sequ_step2 preserving type) AS ListingProcedureCheckSequence2,
  cast(folge3 as list_proc_sequ_step3 preserving type) AS ListingProcedureCheckSequence3,
  cast(folge4 as list_proc_sequ_step4 preserving type) AS ListingProcedureCheckSequence4
FROM twlv
LEFT OUTER JOIN I_ListingProcedureT AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;