I_IntactvSourceProfileText

DDL: I_INTACTVSOURCEPROFILETEXT SQL: IINTACTVSRCGTXT Type: view BASIC Package: VDM_MD_PRODUCT-SCM

Interactive Sourcing Profile text view

I_IntactvSourceProfileText is a Basic CDS View that provides data about "Interactive Sourcing Profile text view" in SAP S/4HANA. It reads from 1 data source (/sapapo/prof_txt) and exposes 5 fields with key fields SourcingProfile, Plant, Language. It has 1 association to related views. Part of development package VDM_MD_PRODUCT-SCM.

Data Sources (1)

SourceAliasJoin Type
/sapapo/prof_txt /sapapo/prof_txt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /sapapo/locmap plant $projection.LocationUUID = plant.locid

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IINTACTVSRCGTXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SourcingProfile view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Interactive Sourcing Profile text view view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SourcingProfile profile WBS sched. prof
KEY Plant plant ext_locno Ext. Location Id
KEY Language langu Primary lang.
SourcingProfileDesc Profile Descrn
LocationUUID locid Single-Character Flag

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_IntactvSourceProfileText.
-- 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: IINTACTVSRCGTXT

CREATE VIEW I_IntactvSourceProfileText AS
SELECT
  profile AS SourcingProfile,
  plant.ext_locno AS Plant,
  langu AS Language,
  cast( prof_txt as val_text) AS SourcingProfileDesc,
  locid AS LocationUUID
FROM /sapapo/prof_txt
LEFT OUTER JOIN /sapapo/locmap AS plant ON LocationUUID = plant.locid  -- association [1..1]
;