/FTI/V_BCO_PROP_DETAIL_VIEW

DDL: /FTI/V_DDL_BCO_PROP_DETAILS SQL: /FTI/V_BCO_PRDT Type: view Package: /FTI/COMMON

Details of BCO properties

/FTI/V_BCO_PROP_DETAIL_VIEW is a CDS View that provides data about "Details of BCO properties" in SAP S/4HANA. It reads from 5 data sources (/fti/bco, scprreca, /smb/bb_lib_i, /fti/bco_prop, /smb/bb_img_sobj) and exposes 14 fields. Part of development package /FTI/COMMON.

Data Sources (5)

SourceAliasJoin Type
/fti/bco bco inner
scprreca bcs left_outer
/smb/bb_lib_i lib_i from
/fti/bco_prop prop inner
/smb/bb_img_sobj sobj left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName /FTI/V_BCO_PRDT view
ClientDependent true view
ObjectModel.usageType.serviceQuality C view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass MIXED view

Fields (14)

KeyFieldSource TableSource FieldDescription
bco_name /fti/bco name Zone name
bbid /smb/bb_lib_i bbid Building Block
objty /smb/bb_lib_i objty Prj. Obj. Type
objid /smb/bb_lib_i objid Work Center
objfile /smb/bb_lib_i filename URL or Filenam Path
sobjfile /smb/bb_img_sobj filename URL or Filenam Path
sobj /smb/bb_img_sobj objid Work Center
paramname /fti/bco_prop paramname Parameter
img_act_sobj /smb/bb_img_sobj img_activity IMG Activity
img_act_bcs scprreca activity VAT Activity
cust_obj_bcs scprreca objectname Object name
cust_typ_bcs scprreca objecttype Type
property_id /fti/bco_prop id WorklistID
bco_id /fti/bco id WorklistID

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 /FTI/V_BCO_PROP_DETAIL_VIEW.
-- 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: /FTI/V_BCO_PRDT

CREATE VIEW /FTI/V_BCO_PROP_DETAIL_VIEW AS
SELECT
  bco.name AS bco_name,
  lib_i.bbid AS bbid,
  lib_i.objty AS objty,
  lib_i.objid AS objid,
  lib_i.filename AS objfile,
  sobj.filename AS sobjfile,
  sobj.objid AS sobj,
  prop.paramname AS paramname,
  sobj.img_activity AS img_act_sobj,
  bcs.activity AS img_act_bcs,
  bcs.objectname AS cust_obj_bcs,
  bcs.objecttype AS cust_typ_bcs,
  prop.id AS property_id,
  bco.id AS bco_id
FROM /smb/bb_lib_i AS lib_i
LEFT OUTER JOIN /smb/bb_img_sobj AS sobj ON /* join condition not captured in parsed metadata */
INNER JOIN /fti/bco_prop AS prop ON /* join condition not captured in parsed metadata */
INNER JOIN /fti/bco AS bco ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scprreca AS bcs ON /* join condition not captured in parsed metadata */
;