FINOC_CHECK_REC_01_PRCTRS

DDL: FINOC_CHECK_REC_01_PRCTRS Type: view_entity

Org. Change: PRCTRS of RE Contracts

FINOC_CHECK_REC_01_PRCTRS is a CDS View that provides data about "Org. Change: PRCTRS of RE Contracts" in SAP S/4HANA. It reads from 10 data sources and exposes 12 fields with key field intreno.

Data Sources (10)

SourceAliasJoin Type
csks ccr1 left_outer
csks ccr2 left_outer
vitmoa moa left_outer
aufk ord1 left_outer
aufk ord2 left_outer
vicncn rec from
vibdcnsubject sbj left_outer
vicerule val left_outer
prps wbs1 left_outer
prps wbs2 left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Org. Change: PRCTRS of RE Contracts view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY intreno vicncn intreno Source Object
recnnr vicncn recnnr Contract No.
bukrs vicncn bukrs Value
moa_termtype vitmoa termtype Term Type
moa_termno vitmoa termno Term Number
moa_validto vitmoa validto Vers.Valid To
val_termno vicerule termno Term Number
val_valid_to vicerule validto Vers.Valid To
moa_prctr vitmoa prctr Profit Centers
prctrisnotnullthenXelseendasby_moa
prctrisnotnullthenXelseendasby_val
prctrisnotnullthenXelseendasby_subj

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 FINOC_CHECK_REC_01_PRCTRS.
-- 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 FINOC_CHECK_REC_01_PRCTRS AS
SELECT
  rec.intreno AS intreno,
  rec.recnnr AS recnnr,
  rec.bukrs AS bukrs,
  moa.termtype AS moa_termtype,
  moa.termno AS moa_termno,
  moa.validto AS moa_validto,
  val.termno AS val_termno,
  val.validto AS val_valid_to,
  moa.prctr AS moa_prctr,
  case when ( moa.prctr is not initial and moa.prctr is not null ) then 'X' else ' ' end as by_moa AS prctrisnotnullthenXelseendasby_moa,
  case when ( ccr1.prctr is not initial and ccr1.prctr is not null ) or ( wbs1.prctr is not initial and wbs1.prctr is not null ) or ( ord1.prctr is not initial and ord1.prctr is not null ) then 'X' else ' ' end as by_val AS prctrisnotnullthenXelseendasby_val,
  case when ( ccr2.prctr is not initial and ccr2.prctr is not null ) or ( wbs2.prctr is not initial and wbs2.prctr is not null ) or ( ord2.prctr is not initial and ord2.prctr is not null ) then 'X' else ' ' end as by_subj AS prctrisnotnullthenXelseendasby_subj
FROM vicncn AS rec
LEFT OUTER JOIN vitmoa AS moa ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN vicerule AS val ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN csks AS ccr1 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN prps AS wbs1 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN aufk AS ord1 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN vibdcnsubject AS sbj ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN csks AS ccr2 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN prps AS wbs2 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN aufk AS ord2 ON /* join condition not captured in parsed metadata */
;