CUAN_FORM

DDL: CUAN_FORM Type: view_entity

Form

CUAN_FORM is a CDS View that provides data about "Form" in SAP S/4HANA. It reads from 1 data source (cuand_cp_root) and exposes 25 fields with key field DB_KEY. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
cuand_cp_root Form from

Associations (2)

CardinalityTargetAliasCondition
[0..*] CUAN_FORM_RESULT _Results $projection.DB_KEY = _Results.PARENT_KEY
[0..*] I_AuthorizedCommunicationArea _AuthCommArea $projection.COMM_AREA_ID = _AuthCommArea.CommunicationArea and $projection.REF_ORG_STRUC = _AuthCommArea.ReferencedOrgStructure

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Form view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY DB_KEY db_key UUID
ID id WorklistID
NAME name Zone name
TYPE type Worklist Type
COMM_AREA_ID comm_area_id
REF_ORG_STRUC ref_org_struc
LANGUAGE_DEFAULT language_default
PREFILL_DATA prefill_data
PROG_PROF_ENABLED prog_prof_enabled
PROG_PROF_SHOW_CNT prog_prof_show_cnt
SUPPRESS_PERM_SUBS_DUPLICATES suppress_perm_subs_duplicates
CONTACT_TYPE contact_type
KEY_HASH key_hash Key Hash
STATUS status Workflow Status
STYLESHEET stylesheet
STYLESHEET_URL stylesheet_url
SOURCE source ViolationSource
EXT_ID_ORIGIN ext_id_origin
EXT_ID ext_id External Id
CREA_DATE_TIME crea_date_time Time Stamp
CREA_UNAME crea_uname User Name
LCHG_DATE_TIME lchg_date_time Time Stamp
LCHG_UNAME lchg_uname User Name
_Results _Results
_AuthCommArea _AuthCommArea

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 CUAN_FORM.
-- 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 CUAN_FORM AS
SELECT
  DB_KEY,
  ID,
  NAME,
  TYPE,
  COMM_AREA_ID,
  REF_ORG_STRUC,
  LANGUAGE_DEFAULT,
  PREFILL_DATA,
  PROG_PROF_ENABLED,
  PROG_PROF_SHOW_CNT,
  SUPPRESS_PERM_SUBS_DUPLICATES,
  CONTACT_TYPE,
  KEY_HASH,
  STATUS,
  STYLESHEET,
  STYLESHEET_URL,
  SOURCE,
  EXT_ID_ORIGIN,
  EXT_ID,
  CREA_DATE_TIME,
  CREA_UNAME,
  LCHG_DATE_TIME,
  LCHG_UNAME
FROM cuand_cp_root AS Form
LEFT OUTER JOIN CUAN_FORM_RESULT AS _Results ON DB_KEY = _Results.PARENT_KEY  -- association [0..*]
LEFT OUTER JOIN I_AuthorizedCommunicationArea AS _AuthCommArea ON COMM_AREA_ID = _AuthCommArea.CommunicationArea AND REF_ORG_STRUC = _AuthCommArea.ReferencedOrgStructure  -- association [0..*]
;