I_RawExposureItem

DDL: I_RAWEXPOSUREITEM Type: view BASIC

Raw Exposure Item

I_RawExposureItem is a Basic CDS View that provides data about "Raw Exposure Item" in SAP S/4HANA. It reads from 1 data source (text_rexp_item) and exposes 26 fields with key fields RawExposureUUID, RawExposureItemID.

Data Sources (1)

SourceAliasJoin Type
text_rexp_item text_rexp_item from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IREXPITEM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #NOT_ALLOWED view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
VDM.private false view
EndUserText.label Raw Exposure Item view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY RawExposureUUID head_os_guid GUID
KEY RawExposureItemID item_id Simulation Item ID
RawExposureItemExtItemID ext_item_id External Item ID
ExpMgmtExposurePlanningPeriod planning_period Period
ExpsrMgmtExposurePlanningYear planning_year Planning Year
ExposureDueDate due_date Net Due Date
ExpsrAmountInExposureCurrency foreign_amt Exposure Amount
ExposureCurrency foreign_curr Exposure Amt Crcy
TargetCurrency target_curr Target Currency
ProfitCenter profit_center Profit Center
ExpsrMgmtFreeDefinedItemDate attribute_di01 Free Attr. (Date)
ExpsrMgmtFreeDfndItemAttrib1 attribute_li01 Free Attr. (Char20)
ExpsrMgmtFreeDfndItemAttrib2 attribute_li02 Free Attr. (Char20)
ExpsrMgmtFreeDfndItemAttrib3 attribute_li03 Free Attr. (Char20)
ExpsrMgmtFreeDfndItemAttrib4 attribute_li04 Free Attr. (Char20)
ExpsrMgmtFreeDfndItemAttrib5 attribute_mi01 Value of Free Attr.
ExpsrMgmtFreeDfndItemAttrib6 attribute_mi02 Value of Free Attr.
ExpsrMgmtFreeDfndItemAttrib7 attribute_si01 Value of Free Attr.
Portfolio rportb Portfolio
BusinessArea gsber Business Area
CostCenter kostl Substitute CC
WBSElementInternalID WBS Element
Segment fb_segment Segment
OnBehalfOfCompany behalf_of_company On Behalf of CoCode
ExpsrMgmtPaymentDate payment_date Pymt Date
RawExposureName raw_exp_descr Description

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_RawExposureItem.
-- 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_RawExposureItem AS
SELECT
  head_os_guid AS RawExposureUUID,
  item_id AS RawExposureItemID,
  ext_item_id AS RawExposureItemExtItemID,
  planning_period AS ExpMgmtExposurePlanningPeriod,
  planning_year AS ExpsrMgmtExposurePlanningYear,
  due_date AS ExposureDueDate,
  foreign_amt AS ExpsrAmountInExposureCurrency,
  foreign_curr AS ExposureCurrency,
  target_curr AS TargetCurrency,
  profit_center AS ProfitCenter,
  attribute_di01 AS ExpsrMgmtFreeDefinedItemDate,
  attribute_li01 AS ExpsrMgmtFreeDfndItemAttrib1,
  attribute_li02 AS ExpsrMgmtFreeDfndItemAttrib2,
  attribute_li03 AS ExpsrMgmtFreeDfndItemAttrib3,
  attribute_li04 AS ExpsrMgmtFreeDfndItemAttrib4,
  attribute_mi01 AS ExpsrMgmtFreeDfndItemAttrib5,
  attribute_mi02 AS ExpsrMgmtFreeDfndItemAttrib6,
  attribute_si01 AS ExpsrMgmtFreeDfndItemAttrib7,
  rportb AS Portfolio,
  gsber AS BusinessArea,
  kostl AS CostCenter,
  cast (ps_psp_pnr as ps_s4_pspnr preserving type ) AS WBSElementInternalID,
  fb_segment AS Segment,
  behalf_of_company AS OnBehalfOfCompany,
  payment_date AS ExpsrMgmtPaymentDate,
  raw_exp_descr AS RawExposureName
FROM text_rexp_item
;