CRMS4_PSOA_A_SRC

DDL: CRMS4_PSOA_A_SRC SQL: CRMS4_PSOAASRCH Type: view

Social Application

CRMS4_PSOA_A_SRC is a CDS View that provides data about "Social Application" in SAP S/4HANA. It reads from 1 data source (CRMS4_PSOA_H_SEARCH) and exposes 33 fields with key fields object_type, object_id. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
CRMS4_PSOA_H_SEARCH _PSOAH from

Associations (1)

CardinalityTargetAliasCondition
[0..*] CRMS4_PSOA_I_U_SEARCH _PSOAI GUID = _PSOAI.header_guid

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CRMS4_PSOAASRCH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Social Application view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY object_type object_type Type
KEY object_id object_id Transaction ID
GUID GUID UUID 22 char.
process_type process_type Type of Data
posting_date posting_date Posting Date
description description Well Code Des.
DESCRIPTION_UC DESCRIPTION_UC Label Desc.
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_ON CHANGED_ON Variant Changed on
changed_by changed_by User Name
btx_class btx_class Trans.Classification
dec_type_txt dec_type_txt Short text
auth_scope auth_scope Authorization Scope
object_id_ok object_id_ok ID Valid
verify_date verify_date Verify Date
req_type req_type Trans. Request Type
req_group req_group
contstart_h contstart_h Contract Start
contend_h contend_h Contract End
valid_from valid_from Validity Start Time
valid_to valid_to Validity End Time
SOLD_TO_PARTY_LIST SOLD_TO_PARTY_LIST Broker Name
person_resp person_resp Employee Responsible
PERSON_RESP_LIST PERSON_RESP_LIST Broker Name
approved_by approved_by Step Completed By
APPROVED_BY_LIST APPROVED_BY_LIST Broker Name
rejected_by rejected_by Rejected By
REJECTED_BY_LIST REJECTED_BY_LIST Broker Name
private_flag private_flag Private Flag
_PSOAI _PSOAI

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_PSOA_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.
-- SQL view name: CRMS4_PSOAASRCH

CREATE VIEW CRMS4_PSOA_A_SRC AS
SELECT
  object_type,
  object_id,
  GUID,
  process_type,
  posting_date,
  description,
  DESCRIPTION_UC,
  CREATED_AT,
  CREATED_ON,
  CREATED_BY,
  CHANGED_AT,
  CHANGED_ON,
  changed_by,
  btx_class,
  dec_type_txt,
  auth_scope,
  object_id_ok,
  verify_date,
  req_type,
  req_group,
  contstart_h,
  contend_h,
  valid_from,
  valid_to,
  SOLD_TO_PARTY_LIST,
  person_resp,
  PERSON_RESP_LIST,
  approved_by,
  APPROVED_BY_LIST,
  rejected_by,
  REJECTED_BY_LIST,
  private_flag
FROM CRMS4_PSOA_H_SEARCH AS _PSOAH
LEFT OUTER JOIN CRMS4_PSOA_I_U_SEARCH AS _PSOAI ON GUID = _PSOAI.header_guid  -- association [0..*]
;