I_BPSupplierCompanyTextProcess

DDL: I_BPSUPPLIERCOMPANYTEXTPROCESS Type: view_entity BASIC Package: MDC_SUPPL_STAGING_BO

Supplier Company Descr Base

I_BPSupplierCompanyTextProcess is a Basic CDS View that provides data about "Supplier Company Descr Base" in SAP S/4HANA. It reads from 1 data source (lfb1_stxl_prc) and exposes 19 fields with key fields MasterDataChangeProcess, MDChgProcessStep, MDChgProcessSrceSystem, MDChgProcessSrceObject, ApplicationTextObjectType. It has 2 associations to related views. Part of development package MDC_SUPPL_STAGING_BO.

Data Sources (1)

SourceAliasJoin Type
lfb1_stxl_prc lfb1_stxl_prc from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BPSupplierProcess _Supplier $projection.MasterDataChangeProcess = _Supplier.MasterDataChangeProcess and $projection.MDChgProcessStep = _Supplier.MDChgProcessStep and $projection.MDChgProcessSrceSystem = _Supplier.MDChgProcessSrceSystem and $projection.MDChgProcessSrceObject = _Supplier.MDChgProcessSrceObject and $projection.BPAssignmentID = _Supplier.BPAssignmentID
[0..1] I_BPSuplrCoTxtGeneralProcess _SupplierCompanyTextGeneral $projection.MasterDataChangeProcess = _SupplierCompanyTextGeneral.MasterDataChangeProcess and $projection.MDChgProcessStep = _SupplierCompanyTextGeneral.MDChgProcessStep and $projection.MDChgProcessSrceSystem = _SupplierCompanyTextGeneral.MDChgProcessSrceSystem and $projection.MDChgProcessSrceObject = _SupplierCompanyTextGeneral.MDChgProcessSrceObject and $projection.ApplicationTextObjectType = _SupplierCompanyTextGeneral.ApplicationTextObjectType and $projection.TextObjectKey = _SupplierCompanyTextGeneral.TextObjectKey and $projection.LongTextID = _SupplierCompanyTextGeneral.LongTextID and $projection.Language = _SupplierCompanyTextGeneral.Language and $projection.BPAssignmentID = _SupplierCompanyTextGeneral.BPAssignmentID and $projection.CompanyCode = _SupplierCompanyTextGeneral.CompanyCode

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Supplier Company Descr Base 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 (19)

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
KEY BPAssignmentID assignment_id Assignment ID
KEY CompanyCode bukrs Value
KEY MasterDataTextLineIdentifier line_counter Counter
Supplier lifnr Vendor no.
LineTextFormat tdformat Tag column
MasterDataLineText tdline Text Line
MDChgProcSrceLastChgdDateTime source_recency Last Changed On
MDChgProcessSourceModified source_modified Modified
MDChgProcessSourceModifBinary source_modification_blip Modification
_Supplier _Supplier
_SupplierCompanyTextGeneral _SupplierCompanyTextGeneral

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_BPSupplierCompanyTextProcess.
-- 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_BPSupplierCompanyTextProcess 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,
  bukrs AS CompanyCode,
  line_counter AS MasterDataTextLineIdentifier,
  lifnr AS Supplier,
  tdformat AS LineTextFormat,
  tdline AS MasterDataLineText,
  source_recency AS MDChgProcSrceLastChgdDateTime,
  source_modified AS MDChgProcessSourceModified,
  source_modification_blip AS MDChgProcessSourceModifBinary
FROM lfb1_stxl_prc
LEFT OUTER JOIN I_BPSupplierProcess AS _Supplier ON MasterDataChangeProcess = _Supplier.MasterDataChangeProcess AND MDChgProcessStep = _Supplier.MDChgProcessStep AND MDChgProcessSrceSystem = _Supplier.MDChgProcessSrceSystem AND MDChgProcessSrceObject = _Supplier.MDChgProcessSrceObject AND BPAssignmentID = _Supplier.BPAssignmentID  -- association [0..1]
LEFT OUTER JOIN I_BPSuplrCoTxtGeneralProcess AS _SupplierCompanyTextGeneral ON MasterDataChangeProcess = _SupplierCompanyTextGeneral.MasterDataChangeProcess AND MDChgProcessStep = _SupplierCompanyTextGeneral.MDChgProcessStep AND MDChgProcessSrceSystem = _SupplierCompanyTextGeneral.MDChgProcessSrceSystem AND MDChgProcessSrceObject = _SupplierCompanyTextGeneral.MDChgProcessSrceObject AND ApplicationTextObjectType = _SupplierCompanyTextGeneral.ApplicationTextObjectType AND TextObjectKey = _SupplierCompanyTextGeneral.TextObjectKey AND LongTextID = _SupplierCompanyTextGeneral.LongTextID AND Language = _SupplierCompanyTextGeneral.Language AND BPAssignmentID = _SupplierCompanyTextGeneral.BPAssignmentID AND CompanyCode = _SupplierCompanyTextGeneral.CompanyCode  -- association [0..1]
;