I_BPSupplierTextGeneralProcess

DDL: I_BPSUPPLIERTEXTGENERALPROCESS Type: view_entity BASIC Package: MDC_SUPPL_STAGING_BO

BP Supplier General Desc Process Data

I_BPSupplierTextGeneralProcess is a Basic CDS View that provides data about "BP Supplier General Desc Process Data" in SAP S/4HANA. It reads from 1 data source (lfa1_stxh_prc) and exposes 14 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject, ApplicationTextObjectType. It has 1 association to related views. Part of development package MDC_SUPPL_STAGING_BO.

Data Sources (1)

SourceAliasJoin Type
lfa1_stxh_prc lfa1_stxh_prc from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BPSupplierProcess _Supplier lfa1_stxh_prc.process_id = _Supplier.MasterDataChangeProcess and lfa1_stxh_prc.process_step_no = _Supplier.MDChgProcessStep and lfa1_stxh_prc.source_system = _Supplier.MDChgProcessSrceSystem and lfa1_stxh_prc.source_id = _Supplier.MDChgProcessSrceObject

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label BP Supplier General Desc Process Data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChangeProcess process_id Process Instance ID
KEY MDChgProcessStep process_step_no Step Number
KEY MDChgProcessSrceSystem source_system Source System
KEY MDChgProcessSrceObject source_id UUID
KEY ApplicationTextObjectType tdobject Text object
KEY TextObjectKey tdname Text Name
KEY LongTextID tdid Text ID Header
KEY Language tdspras Language
BPAssignmentID assignment_id Assignment ID
Supplier lifnr Vendor no.
MDChgProcessSourceModified source_modified Modified
MDChgProcessSourceModifBinary source_modification_blip Modification
MDChgProcSrceLastChgdDateTime source_recency Last Changed On
_Supplier _Supplier

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_BPSupplierTextGeneralProcess.
-- 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_BPSupplierTextGeneralProcess AS
SELECT
  process_id AS MasterDataChangeProcess,
  process_step_no AS MDChgProcessStep,
  source_system AS MDChgProcessSrceSystem,
  source_id AS MDChgProcessSrceObject,
  tdobject AS ApplicationTextObjectType,
  tdname AS TextObjectKey,
  tdid AS LongTextID,
  tdspras AS Language,
  assignment_id AS BPAssignmentID,
  lifnr AS Supplier,
  source_modified AS MDChgProcessSourceModified,
  source_modification_blip AS MDChgProcessSourceModifBinary,
  source_recency AS MDChgProcSrceLastChgdDateTime
FROM lfa1_stxh_prc
LEFT OUTER JOIN I_BPSupplierProcess AS _Supplier ON lfa1_stxh_prc.process_id = _Supplier.MasterDataChangeProcess AND lfa1_stxh_prc.process_step_no = _Supplier.MDChgProcessStep AND lfa1_stxh_prc.source_system = _Supplier.MDChgProcessSrceSystem AND lfa1_stxh_prc.source_id = _Supplier.MDChgProcessSrceObject  -- association [1..1]
;