CRMS4_PSSP_A_SRC

DDL: CRMS4_PSSP_A_SRC SQL: CRMS4_PSSPASRCH Type: view

Social Service Plan Search

CRMS4_PSSP_A_SRC is a CDS View that provides data about "Social Service Plan Search" in SAP S/4HANA. It reads from 1 data source (CRMS4_PSSP_H_SEARCH) and exposes 47 fields with key fields object_type, object_id. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
CRMS4_PSSP_H_SEARCH _ssp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] CRMS4_PSSP_I_SEARCH _PSSPI _ssp.guid = _PSSPI.header_guid

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CRMS4_PSSPASRCH 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 Service Plan Search view

Fields (47)

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_by created_by Version Created By
changed_at changed_at Timestamp
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
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
decision_h decision_h Decision Date
chng_process chng_process Change Process
SOLD_TO_PARTY_LIST SOLD_TO_PARTY_LIST Broker Name
person_resp person_resp Employee Responsible
PERSON_RESP_firstname PERSON_RESP_firstname Name2/First Nme
PERSON_RESP_lastname PERSON_RESP_lastname Name 1/Last Nme
PERSON_RESP_LIST PERSON_RESP_LIST Broker Name
approved_by approved_by Step Completed By
APPROVED_BY_firstname APPROVED_BY_firstname Name2/First Nme
APPROVED_BY_lastname APPROVED_BY_lastname Name 1/Last Nme
APPROVED_BY_LIST APPROVED_BY_LIST Broker Name
rejected_by rejected_by Rejected By
REJECTED_BY_firstname REJECTED_BY_firstname Name2/First Nme
REJECTED_BY_lastname REJECTED_BY_lastname Name 1/Last Nme
REJECTED_BY_LIST REJECTED_BY_LIST Broker Name
root_guid root_guid UUID
STAT_APPROVAL STAT_APPROVAL Approval Status
STAT_APPROVAL_DESC STAT_APPROVAL_DESC Short text
STAT_ACTIVATION STAT_ACTIVATION Activation Status
STAT_ACTIVATION_DESC STAT_ACTIVATION_DESC Short text
STAT_LIFECYCLE_DESC STAT_LIFECYCLE_DESC Short text
reduction_STATUS reduction_STATUS Reduction Status
stat_reduction_DESC stat_reduction_DESC Short text
rerun_required_STATUS rerun_required_STATUS Rerun Req.
stat_rerun_required_DESC stat_rerun_required_DESC Short text
private_flag private_flag Private Flag
_PSSPI _PSSPI

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_PSSP_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_PSSPASRCH

CREATE VIEW CRMS4_PSSP_A_SRC AS
SELECT
  object_type,
  object_id,
  guid,
  process_type,
  posting_date,
  description,
  DESCRIPTION_UC,
  created_at,
  created_by,
  changed_at,
  changed_by,
  btx_class,
  dec_type_txt,
  auth_scope,
  object_id_ok,
  verify_date,
  contstart_h,
  contend_h,
  valid_from,
  valid_to,
  decision_h,
  chng_process,
  SOLD_TO_PARTY_LIST,
  person_resp,
  PERSON_RESP_firstname,
  PERSON_RESP_lastname,
  PERSON_RESP_LIST,
  approved_by,
  APPROVED_BY_firstname,
  APPROVED_BY_lastname,
  APPROVED_BY_LIST,
  rejected_by,
  REJECTED_BY_firstname,
  REJECTED_BY_lastname,
  REJECTED_BY_LIST,
  root_guid,
  STAT_APPROVAL,
  STAT_APPROVAL_DESC,
  STAT_ACTIVATION,
  STAT_ACTIVATION_DESC,
  STAT_LIFECYCLE_DESC,
  reduction_STATUS,
  stat_reduction_DESC,
  rerun_required_STATUS,
  stat_rerun_required_DESC,
  private_flag
FROM CRMS4_PSSP_H_SEARCH AS _ssp
LEFT OUTER JOIN CRMS4_PSSP_I_SEARCH AS _PSSPI ON _ssp.guid = _PSSPI.header_guid  -- association [0..*]
;