Difference between revisions of "REN Server"

From TekiWiki
Jump to: navigation, search
(Created page with "The PeopleSoft Real-time Event Notification (REN) Server is part of the PeopleTools Application Server. It is a vital part of the MultiChannel Framework (MCF). Someti...")
 
(PSREN)
Line 24: Line 24:
 
Contains one row for each server within the cluster.
 
Contains one row for each server within the cluster.
  
 
+
<pre>
 
select * from PSMCFRENURLID where ACTIVE_FLAG='A'
 
select * from PSMCFRENURLID where ACTIVE_FLAG='A'
 
;
 
;
Line 34: Line 34:
 
where
 
where
 
C.ACTIVE_FLAG='A'
 
C.ACTIVE_FLAG='A'
 +
;
 +
</pre>

Revision as of 21:03, 19 May 2016

The PeopleSoft Real-time Event Notification (REN) Server is part of the PeopleTools Application Server. It is a vital part of the MultiChannel Framework (MCF).

Sometimes the REN Server black box needs some prompting in its set up. To get an overview of the set up, use the following tables:


PSMCFRENURLID

Key: MCFREN_URL_ID

Contains one row for each cluster and shows the URLs to use for the cluster.


PSRENCLUSTER

Key: MCFREN_URL_ID, REN_ID

Is the link table between PSMCFRENURLID and PSREN


PSREN

Key: REN_ID

Contains one row for each server within the cluster.

select * from PSMCFRENURLID where ACTIVE_FLAG='A'
;

select R.* 
from PSMCFRENURLID C
Inner join PSRENCLUSTER RC on (RC. MCFREN_URL_ID=C. MCFREN_URL_ID)
Inner join PSREN R on (RC.REN_ID=R.REN_ID)
where
C.ACTIVE_FLAG='A'
;