HRPY_PCC_BPCM_gen

DDL: HRPY_PCC_BPCM_GEN SQL: HRPY_PCC_BM_GC Type: view

Employee Related BPC Messages

HRPY_PCC_BPCM_gen is a CDS View that provides data about "Employee Related BPC Messages" in SAP S/4HANA. It reads from 3 data sources (pyt_d_bpc, pyc_d_msgty_t, pyt_d_bpc_type_t) and exposes 18 fields with key fields rec_ref_id, ac_ref_id, step_ref_id, rpt_chain_id, type.

Data Sources (3)

SourceAliasJoin Type
pyt_d_bpc bpc_info from
pyc_d_msgty_t msgty_text left_outer
pyt_d_bpc_type_t object_type_text left_outer

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName HRPY_PCC_BM_GC view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Employee Related BPC Messages view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY rec_ref_id step_recurrence acl_recur_ref_id
KEY ac_ref_id step_recurrence act_recur_ref_id
KEY step_ref_id step_recurrence ref_id Technical Object
KEY rpt_chain_id message rpt_chain_id
KEY type message rej_obj_type
KEY id message rej_obj_id
KEY seqnr message seqnr Tank ID
msgty message msgty Msg.Type (E,I,W..)
msgty_name pyc_d_msgty_t name Zone name
msgid message msgid Message ID
msgno message msgno Message Number
msgv1 message msgv1 Message variable 1
msgv2 message msgv2 Message variable 2
msgv3 message msgv3 Message variable 3
msgv4 message msgv4 Message variable 4
text message text User Group
type_name pyt_d_bpc_type_t name Zone name
message_key

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 HRPY_PCC_BPCM_gen.
-- 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: HRPY_PCC_BM_GC

CREATE VIEW HRPY_PCC_BPCM_gen AS
SELECT
  step_recurrence.acl_recur_ref_id AS rec_ref_id,
  step_recurrence.act_recur_ref_id AS ac_ref_id,
  step_recurrence.ref_id AS step_ref_id,
  message.rpt_chain_id AS rpt_chain_id,
  message.rej_obj_type AS type,
  message.rej_obj_id AS id,
  message.seqnr AS seqnr,
  message.msgty AS msgty,
  msgty_text.name AS msgty_name,
  message.msgid AS msgid,
  message.msgno AS msgno,
  message.msgv1 AS msgv1,
  message.msgv2 AS msgv2,
  message.msgv3 AS msgv3,
  message.msgv4 AS msgv4,
  message.text AS text,
  object_type_text.name AS type_name,
  concat( step_recurrence.ref_id, concat( message.rpt_chain_id, concat( message.rej_obj_id, concat( message.seqnr, concat( message.msgty, concat( message.msgid, message.msgno ) ) ) ) ) ) AS message_key
FROM pyt_d_bpc AS bpc_info
LEFT OUTER JOIN pyc_d_msgty_t AS msgty_text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN pyt_d_bpc_type_t AS object_type_text ON /* join condition not captured in parsed metadata */
;