/smb/cds_Solution

DDL: /SMB/CDS_SOLUTION SQL: /SMB/V_SOLUTION Type: view

CDS view for Solution with Parameters

/smb/cds_Solution is a CDS View that provides data about "CDS view for Solution with Parameters" in SAP S/4HANA. It reads from 8 data sources and exposes 22 fields with key field solution_id.

Data Sources (8)

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/sb_t_005 ecatt left_outer
/smb/bb_img_sobj objid left_outer
/smb/bb_prj_et01 scoid left_outer

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName /SMB/V_SOLUTION 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 Solution with Parameters view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY solution_id solid scope Visibility
prjid /smb/bb_prj_et01 prjid Scope Item
bbid /smb/bbpr_i bbid Building Block
objid /smb/bb_lib_i objid Work Center
objty /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
ecatt_id /smb/sb_t_005 objid Work Center
param_name /smb/sb_t_005 pname SNC name
pos /smb/sb_t_005 pindex ParameterIndex
dom /smb/sb_t_005 pdom Domain
datlen /smb/sb_t_005 pdatlen Length
datatyp /smb/sb_t_005 pinttyp ABAP Data Type
rollname /smb/sb_t_005 pref_name2 Parameter Reference
objectname dd26s viewname View Name
tablename dd26s tabname Table/Constant Value
subobj_typ 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_Solution.
-- 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_SOLUTION

CREATE VIEW /smb/cds_Solution AS
SELECT
  solid.scope AS solution_id,
  scoid.prjid AS prjid,
  bbtid.bbid AS bbid,
  actid.objid AS objid,
  actid.objty AS objty,
  bcset.tablename AS tabname,
  objid.subobjname AS subobjname,
  objid.cust_objname AS cust_obj,
  objid.cust_objtype AS cust_typ,
  ecatt.objid AS ecatt_id,
  ecatt.pname AS param_name,
  ecatt.pindex AS pos,
  ecatt.pdom AS dom,
  ecatt.pdatlen AS datlen,
  ecatt.pinttyp AS datatyp,
  ecatt.pref_name2 AS rollname,
  dd26s.viewname AS objectname,
  dd26s.tabname AS tablename,
  dd02l.tabclass AS subobj_typ,
  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 /smb/sb_t_005 AS ecatt 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 */
;