I_InteractiveSourceProfile

DDL: I_INTERACTIVESOURCEPROFILE SQL: IINTACTVSRCG Type: view BASIC

Value help for Interactive source planning

I_InteractiveSourceProfile is a Basic CDS View that provides data about "Value help for Interactive source planning" in SAP S/4HANA. It reads from 1 data source (/sapapo/prof_loc) and exposes 4 fields with key fields SourcingProfile, Plant. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/sapapo/prof_loc /sapapo/prof_loc from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_IntactvSourceProfileText _text $projection.SourcingProfile = _text.SourcingProfile
[1..1] /sapapo/locmap plant $projection.LocationUUID = plant.locid

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IINTACTVSRCG view
VDM.viewType #BASIC view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SourcingProfile view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Value help for Interactive source planning view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SourcingProfile profile WBS sched. prof
KEY Plant plant ext_locno Ext. Location Id
LocationUUID locid Single-Character Flag
_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_InteractiveSourceProfile.
-- 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: IINTACTVSRCG

CREATE VIEW I_InteractiveSourceProfile AS
SELECT
  profile AS SourcingProfile,
  plant.ext_locno AS Plant,
  locid AS LocationUUID
FROM /sapapo/prof_loc
LEFT OUTER JOIN I_IntactvSourceProfileText AS _text ON SourcingProfile = _text.SourcingProfile  -- association [0..*]
LEFT OUTER JOIN /sapapo/locmap AS plant ON LocationUUID = plant.locid  -- association [1..1]
;