Coll_Wl_Cct

DDL: V_COLL_WL_CCT SQL: V_COLL_WL_CCT Type: view

Kundenkontakte ohne Konversation

Coll_Wl_Cct is a CDS View that provides data about "Kundenkontakte ohne Konversation" in SAP S/4HANA. It reads from 7 data sources and exposes 26 fields with key field guid.

Data Sources (7)

SourceAliasJoin Type
udm_cct_attr cct from
Coll_Wl_Rel cdis left_outer
Coll_Wl_Rel cnts left_outer
Coll_Wl_Rel cp2p left_outer
Coll_Wl_Rel crsm left_outer
udm_cct_resultt rest left_outer
udm_cct_typet typet left_outer

Parameters (1)

NameTypeDefault
language abap.lang

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_COLL_WL_CCT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Kundenkontakte ohne Konversation view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY guid udm_cct_attr cct_guid Customer Contact Key
customer customer Sold-to Party
coll_segment coll_segment Segment
cct_id cct_id Contact ID
contact_key contact_key NodeID
name cct_name Contact Person
email cct_email Email
phone udm_cct_attr cct_phone Telephone No.
fax udm_cct_attr cct_fax Fax Number
faxcountry udm_cct_attr cct_faxc C/R of Fax No.
type udm_cct_attr cct_type Contact Type
type_text udm_cct_typet cct_type_txt Contact Type
cct_result udm_cct_attr cct_result Result ID
result_text udm_cct_resultt cct_result_txt Result
xreached xreached Reached
time Contact Time
duration cct_duration Duration
created_by created_by Version Created By
created_at Uploaded On
changed_by changed_by User Name
changed_at Timestamp
attachments udm_cct_attr cct_attch_count No. of Attchmts
no_of_nts Coll_Wl_Rel countquali
no_of_dis Coll_Wl_Rel countquali
no_of_rsm Coll_Wl_Rel countquali
no_of_p2p Coll_Wl_Rel countquali

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 Coll_Wl_Cct.
-- 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: V_COLL_WL_CCT
-- Parameters: language : abap.lang

CREATE VIEW Coll_Wl_Cct AS
SELECT
  cct.cct_guid AS guid,
  customer,
  coll_segment,
  cct_id,
  contact_key,
  cct_name AS name,
  cct_email AS email,
  cct.cct_phone AS phone,
  cct.cct_fax AS fax,
  cct.cct_faxc AS faxcountry,
  cct.cct_type AS type,
  typet.cct_type_txt AS type_text,
  cct.cct_result AS cct_result,
  rest.cct_result_txt AS result_text,
  xreached,
  cast(cct_time as tzntstmps) AS time,
  cct_duration AS duration,
  created_by,
  cast(created_at as tzntstmps) AS created_at,
  changed_by,
  cast(changed_at as tzntstmps) AS changed_at,
  cct.cct_attch_count AS attachments,
  cnts.countquali AS no_of_nts,
  cdis.countquali AS no_of_dis,
  crsm.countquali AS no_of_rsm,
  cp2p.countquali AS no_of_p2p
FROM udm_cct_attr AS cct
LEFT OUTER JOIN udm_cct_typet AS typet ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN udm_cct_resultt AS rest ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Coll_Wl_Rel AS cdis ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Coll_Wl_Rel AS cp2p ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Coll_Wl_Rel AS crsm ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Coll_Wl_Rel AS cnts ON /* join condition not captured in parsed metadata */
;