ARUNI_CONF_LINE

DDL: ARUNI_CONF_LINE SQL: ARUNI_V_CON_LIN Type: view

Confirmations selection at date level

ARUNI_CONF_LINE is a CDS View that provides data about "Confirmations selection at date level" in SAP S/4HANA. It reads from 8 data sources and exposes 31 fields.

Data Sources (8)

SourceAliasJoin Type
ekes conf inner
t163g confcont inner
ekko hdr from
ekpo item inner
lfa1 lfa1 inner
mara m inner
nsdm_e_marc mc inner
eket sch inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ARUNI_V_CON_LIN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Confirmations selection at date level view

Fields (31)

KeyFieldSource TableSource FieldDescription
purchord_num ekko ebeln Source PurchDoc
company_code ekko bukrs Value
venodr ekko lifnr Vendor no.
purchord_sch eket etenr Schedule Line
sgt_scat ekpo sgt_scat Stock Segment
SeasonYear ekpo fsh_season_year Season Year
Season ekpo fsh_season Season
SCollection ekpo fsh_collection Collection
theme ekpo fsh_theme Theme
material ekpo matnr Vehicle Model
plant ekpo werks Receiving Plant
PurchDocDate ekko bedat Start date
Supplier ekko lifnr Vendor no.
StockSegment ekpo sgt_scat Stock Segment
PurchDocType ekko bsart Stnd purch.ord.
StorageLocation ekpo lgort Sublocation
color mara color Level Color
size1 mara size1 Size 1
size2 mara size2 Size 2
color_atinn mara color_atinn Internal Char.
size1_atinn mara size1_atinn Internal Char.
size2_atinn mara size2_atinn Internal Char.
fsh_mg_at1 mara fsh_mg_at1 Fsh. Attribute1
fsh_mg_at2 mara fsh_mg_at2 Fsh. Attribute2
fsh_mg_at3 mara fsh_mg_at3 Fsh. Attribute3
matkl mara matkl Product Sold Group
satnr mara satnr Cross-plant CM
attyp mara attyp Trdg Goods Cat.
webaz ekpo webaz GR Proc. Time
ibd_num ekes vbeln SD Sched. Agmt
ibd_itm ekes vbelp Schd. Agmt Item

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 ARUNI_CONF_LINE.
-- 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: ARUNI_V_CON_LIN

CREATE VIEW ARUNI_CONF_LINE AS
SELECT
  hdr.ebeln AS purchord_num,
  hdr.bukrs AS company_code,
  hdr.lifnr AS venodr,
  sch.etenr AS purchord_sch,
  item.sgt_scat AS sgt_scat,
  item.fsh_season_year AS SeasonYear,
  item.fsh_season AS Season,
  item.fsh_collection AS SCollection,
  item.fsh_theme AS theme,
  item.matnr AS material,
  item.werks AS plant,
  hdr.bedat AS PurchDocDate,
  hdr.lifnr AS Supplier,
  item.sgt_scat AS StockSegment,
  hdr.bsart AS PurchDocType,
  item.lgort AS StorageLocation,
  m.color AS color,
  m.size1 AS size1,
  m.size2 AS size2,
  m.color_atinn AS color_atinn,
  m.size1_atinn AS size1_atinn,
  m.size2_atinn AS size2_atinn,
  m.fsh_mg_at1 AS fsh_mg_at1,
  m.fsh_mg_at2 AS fsh_mg_at2,
  m.fsh_mg_at3 AS fsh_mg_at3,
  m.matkl AS matkl,
  m.satnr AS satnr,
  m.attyp AS attyp,
  item.webaz AS webaz,
  conf.vbeln AS ibd_num,
  conf.vbelp AS ibd_itm
FROM ekko AS hdr
INNER JOIN ekpo AS item ON /* join condition not captured in parsed metadata */
INNER JOIN eket AS sch ON /* join condition not captured in parsed metadata */
INNER JOIN ekes AS conf ON /* join condition not captured in parsed metadata */
INNER JOIN mara AS m ON /* join condition not captured in parsed metadata */
INNER JOIN nsdm_e_marc AS mc ON /* join condition not captured in parsed metadata */
INNER JOIN t163g AS confcont ON /* join condition not captured in parsed metadata */
INNER JOIN lfa1 ON /* join condition not captured in parsed metadata */
;