CRMS4_REPA_A_SRC

DDL: CRMS4_REPA_A_SRC Type: view_entity

Search for In-House Service

CRMS4_REPA_A_SRC is a CDS View that provides data about "Search for In-House Service" in SAP S/4HANA. It reads from 1 data source (CRMS4_REPA_H_SEARCH) and exposes 27 fields with key fields object_type, object_id. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
CRMS4_REPA_H_SEARCH _repah from

Associations (1)

CardinalityTargetAliasCondition
[1..*] CRMS4_REPA_I_SEARCH _repai _repah.header_guid = _repai.header_guid

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Search for In-House Service view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY object_type object_type Type
KEY object_id object_id Transaction ID
header_guid header_guid Unique Identifier
guid guid UUID 22 char.
process_type process_type Type of Data
posting_date posting_date Posting Date
description description Well Code Des.
created_at_h created_at_h Created On
created_by_h created_by_h Created By
changed_at_h changed_at_h Changed On
changed_by_h changed_by_h Changed By
created_at created_at Uploaded On
created_on created_on Variant created on
created_by created_by Version Created By
changed_at changed_at Timestamp
changed_by changed_by User Name
object_id_ok object_id_ok ID Valid
verify_date verify_date Verify Date
dis_channel dis_channel Distribution Channel
division division Internal Division ID
division_ori division_ori Origin: Division
sales_org sales_org Sales Organization
sales_office sales_office Sales Office
sales_group sales_group Sales Group
person_resp person_resp Employee Responsible
stat_error stat_error Error Status
_repai _repai

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 CRMS4_REPA_A_SRC.
-- 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 CRMS4_REPA_A_SRC AS
SELECT
  object_type,
  object_id,
  header_guid,
  guid,
  process_type,
  posting_date,
  description,
  created_at_h,
  created_by_h,
  changed_at_h,
  changed_by_h,
  created_at,
  created_on,
  created_by,
  changed_at,
  changed_by,
  object_id_ok,
  verify_date,
  dis_channel,
  division,
  division_ori,
  sales_org,
  sales_office,
  sales_group,
  person_resp,
  stat_error
FROM CRMS4_REPA_H_SEARCH AS _repah
LEFT OUTER JOIN CRMS4_REPA_I_SEARCH AS _repai ON _repah.header_guid = _repai.header_guid  -- association [1..*]
;