/SMB/CDS_CCF_SOLDATA

DDL: /SMB/CDS_CCF_SOLDATA SQL: /SMB/V_SOLU Type: view

CDS view for ccf framework

/SMB/CDS_CCF_SOLDATA is a CDS View that provides data about "CDS view for ccf framework" in SAP S/4HANA. It reads from 7 data sources and exposes 14 fields with key field solution_id.

Data Sources (7)

SourceAliasJoin Type
/smb/bb_lib_i actid left_outer
/smb/bbpr_i bbtid left_outer
/smb/bc_variant bcset left_outer
dd02l dd02l left_outer
dd26s dd26s left_outer
/smb/bb_img_sobj objid left_outer
/smb/bb_prj_et01 scoid left_outer

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName /SMB/V_SOLU view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality C view
ObjectModel.usageType.sizeCategory M view
ObjectModel.usageType.dataClass MASTER view
EndUserText.label CDS view for ccf framework view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY solution_id solid scope Visibility
scope /smb/bb_prj_et01 prjid Scope Item
bbid /smb/bbpr_i bbid Building Block
actid /smb/bb_lib_i objid Work Center
actyp /smb/bb_lib_i objty Prj. Obj. Type
tabname /smb/bc_variant tablename Table/View Name
subobjname /smb/bb_img_sobj subobjname Table/View Name
cust_obj /smb/bb_img_sobj cust_objname Object
cust_typ /smb/bb_img_sobj cust_objtype Type
objectname dd26s viewname View Name
subobjtype dd02l tabclass Table Category
filename /smb/bb_img_sobj filename URL or Filenam Path
filename1 /smb/bb_lib_i filename URL or Filenam Path
contflag dd02l contflag Delivery class

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 /SMB/CDS_CCF_SOLDATA.
-- 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: /SMB/V_SOLU

CREATE VIEW /SMB/CDS_CCF_SOLDATA AS
SELECT
  solid.scope AS solution_id,
  scoid.prjid AS scope,
  bbtid.bbid AS bbid,
  actid.objid AS actid,
  actid.objty AS actyp,
  bcset.tablename AS tabname,
  objid.subobjname AS subobjname,
  objid.cust_objname AS cust_obj,
  objid.cust_objtype AS cust_typ,
  dd26s.viewname AS objectname,
  dd02l.tabclass AS subobjtype,
  objid.filename AS filename,
  actid.filename AS filename1,
  dd02l.contflag AS contflag
LEFT OUTER JOIN /smb/bb_prj_et01 AS scoid ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /smb/bbpr_i AS bbtid ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /smb/bb_lib_i AS actid ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /smb/bc_variant AS bcset ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /smb/bb_img_sobj AS objid ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dd26s ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dd02l ON /* join condition not captured in parsed metadata */
;