data finder sql
SET SERVEROUTPUT ON SIZE 100000 DECLARE match_count INTEGER; BEGIN FOR t IN (SELECT owner, table_name, column_name FROM all_tab_columns WHERE owner = 'FSUSER' and data_type LIKE '%CHAR%' and...
View ArticleArticle 2
I am having same issue, can you please let me know any solution for this. Forum category: Forum / HelpForum thread: SQRs completing, but showing Error in process scheduler
View ArticleArticle 1
Hey anyone can help on this? I am not receiving email with attachment. What confi should i tell admin to check w.r.t SMTP server?Please put your thoughts. Forum category: Forum / HelpForum thread:...
View ArticleQuery Expression to Anniversary for following month
I'm using the current case statement as an expression in my query to find service anniversaries. The why it's working now is if I run it anytime during September it's gives me employees whose...
View ArticleArticle 1
I am new to PeopleSoft Development, actually i am facing some issues that is, some application messages are stuck in working status and when i saw the details it seems no errors but in XML file it is...
View ArticleRecord (Table) Name to Page Map
Hello all, I am new to Campus Solutions (am using 9.2), and am wondering if there exists a document that shows how the out-of-the-box Record (Table) Names map to various pages throughout the software....
View Articlecohort retention query
I am new to PeopleSoft and would like to have a query available that summarizes fall to fall student retention rates by program. If anyone has a query they are willing to share please let me know....
View ArticleArticle 0
Hi , I have similar requirement where user have same field(BU) used as prompt multiple times. Say Business_Unit1, Business_Unit2 I tried above approach but I am not getting correct output, its only...
View ArticleRe: Comm delimited columns names for a record
another way SELECT LISTAGG (COLUMN_NAME, ', ') WITHIN GROUP (ORDER BY COLUMN_ID) FROM USER_TAB_COLS WHERE TABLE_NAME = 'YOUR_TABLE' Forum category: Forum / Hints, Tips & GotchasForum thread: Comm...
View Articleadding debug statement to sqr procedure using notepad++ regular expression
adding debug statement to sqr procedure using notepad++ regular expression in find field add begin-procedure (.*) and in replace field add begin-procedure \1 \r\n #ifdef debugx \r\n show '\1' \r\n...
View ArticleApp engine like SQL trace for SQR
Below query may help to get the sql executed by SQR, it works best only when single process running on the process scheduler select v.SQL_FULLTEXT, bc.position, bc.value_string from v$sql v ,...
View ArticleAR Update process
Why it is recommended to run AR update process in Batch and not online. What are the risks of different users running the AR update process online? Forum category: Forum / HelpForum thread: AR Update...
View ArticleSample html page for autologin for peopelsoft environment,
<form id="login" name="login" method="post" action="http://dpuma03l.unix.dev:8090/psp/GBFUDEV1/?cmd=login" autocomplete="on"> <input type="hidden" id="userid" name="userid" value="PSBATCH"...
View Articlesubpages hierarchy in peoplesoft
SELECT recname FROM pspnlfield WHERE recname<>' ' START WITH pnlname = :1 CONNECT BY PRIOR subpnlname = pnlname and PRIOR fieldtype=11 group by recname; Forum category: Forum / Hints, Tips &...
View ArticleData finder Oracle sql
Data finder sql SET SERVEROUTPUT ON SIZE 100000 DECLARE match_count INTEGER; BEGIN FOR t IN (SELECT owner, table_name, column_name FROM all_tab_columns WHERE owner = 'FSUSER' and data_type LIKE...
View ArticleRe: Data finder Oracle sql
another version but will take time. SELECT DISTINCT SUBSTR (:val, 1, 11) "Searchword", SUBSTR (table_name, 1, 14) "Table", SUBSTR (column_name, 1, 14) "Column" FROM cols, TABLE (xmlsequence...
View ArticleRe: all the translate values in Peoplesoft
Another version for give set of records select a.FIELDNAME, FIELDVALUE, EFFDT, EFF_STATUS, XLATLONGNAME, XLATSHORTNAME, LASTUPDDTTM, LASTUPDOPRID, SYNCID from PSXLATITEM A, PSRECFIELDALL B where...
View Articleoracle stats update in a SQR
https://it.toolbox.com/question/how-to-run-sysdbms-statsgather-table-stats-in-sqr-022412 BEGIN-SQL begin...
View ArticlePeoplesoft setup task sequence for given module
SELECT N.PTLT_TASK_CODE, N.NAVIGATION, SQ.PTLT_TASKSEQ_ID, SQ.PTLT_SEC_SEQNO, N.PTLT_PROD_CD_LIST , N.PTLT_FEATURES_LIST, RECSTRING FROM (SELECT PTLT_TASK_CODE,...
View ArticlePeoplesoft schedule item query
SELECT * FROM (SELECT S1.* , PG.PNLGRPNAME FROM (SELECT ROWNUM AS JBSEQ, 'LEVEL ' ||LEVEL, LPAD(' ',5*LEVEL,'*') ||PARENTJOBNAME AS PARENT1 , PARENTJOBNAME , S.PRCSTYPE , S.PRCSNAME, S.RUN_CNTL_ID ,...
View ArticleIdentify Peoplesoft temp tables with process instance
select sum(bytes)/(1024*1024)AS MB,segment_name, b.CREATED from user_segments a, all_objects b where segment_type='TABLE' and length(regexp_replace(segment_name, '\D')) >4 and a.segment_name =...
View ArticleArticle 0
Kindly help me please. The value was too long for the field HRS_APPITM01_VW.JPM_TEXT1325_1 (labeled 'User Text - 1325 Char' ). It requires truncation to 1325 characters. (126,141) A long edit box on...
View ArticlePrint AE flow , SQLs, and record objects with various level of nesting
Select sq.*,n.recname,n.refname from ( SELECT a3.*,b3.AE_STEP, b3.STMT_TYPE,b3.SQLTEXT FROM (SELECT DISTINCT ae1.stmt_tree , Ae1.AE_DO_APPL_ID AS AE_APPLID , Ae1.AE_DO_SECTION AS AE_SECTION FROM...
View ArticleStatistical model to determine complexity in PeopleSoft customization
— summary Sql to determine how many business unit in use and how many set id they use, to understand fucntional complexity. SELECT DISTINCT DECODE(LMC,1,'LOW',2,'MEDIUM',3,'HIGH'), COUNT(LMC) OVER...
View Articlein peoplesoft historically analyze why jobs are failing by taking log of...
SELECT PRCSINSTANCE, PRCSTYPE, PRCSNAME, DECODE(runstatus,1,'Cancel', 2,'Delete',3,'Error',4,'Hold',5,'Queued',6,'Initiated',7,'Processing', 8,'Cancelled',9,'Success',10,'Not...
View ArticleDecoding the table set control, when you move to some kind of support
Select * from PS_SET_CNTRL_REC a ,( sELECT PNLGRPNAME, RECNAME ,rCount,RANK1,PORTAL_URltext, DESCR254 FROM ( SELECT PNLGRPNAME, RECNAME ,rCount, RANK() OVER (partition BY RECNAME ORDER BY...
View ArticleQuickly cloning setid
SELECT /*+ INDEX(A) INDEX(R) USE_NL(R) */ rec_group_id,'INSERT INTO '||table_name|| ' Select '|| listagg(decode(a.COLUMN_NAME,'SETID','''TSETID''',a.COLUMN_NAME),',') WITHIN GROUP (ORDER BY...
View Articlestatistical model to identify problem process in your peoplesoft system
!!summary SELECT DISTINCT TRUNC(SUM(ntile1) over(partition BY prcsname,status order by status)/SUM(ntile1) over(partition BY prcsname),2)*100, prcsname, status FROM (SELECT 100-ntile(100) over...
View ArticlePeoplesoft question and answers may be of help in interview as well
1. What are Menu types available? 2. Where do you need to install connectivity software? 3. What is the purpose of state records? 4. What is the most important Record in PS HRMS? 5. What is dynamic...
View ArticleGet the customization in Peoplesoft
SELECT 'SELECT ''' ||'RecDescr.' ||A.RECDESCR ||'-Record.' ||A.RECNAME ||'.FieldName.' ||d.COLS1 ||'->' ||'''||' ||B.FIELDNAME||','||d.COLS1 ||', COUNT(1) OVER() AS CNT_OF_OBJECTS1 FROM ' ||...
View ArticleArticle 1
Hi all, I have SQR release 6.2 dateback to 2000. Is there anyone know if it can suppport chinese char. printing. We fail to print Chinese char and (override option —(-zifD:\PT8.51\SQR\PSSQRCHN.INI ))...
View ArticleSQR report 6.2 printing chinese
Our SQR version is very old 6.2 2000 and run on sun microsystem Solaris 10 and database is Sybase12. We have tried some suggestions from newer version but fail. like (override option...
View ArticleLinear Regression/machine learning in peoplesoft without any additonal software
SELECT B.PRCSNAME, RUNCNTLID, —MAX(PRCSINSTANCE) +1 PRCSINSTANCE_PLUS_ONE, — Y = MX+B TRUNC(REGR_SLOPE(RUN_TIME_SEC, PRCSINSTANCE) * (MAX(PRCSINSTANCE) + 1) + REGR_INTERCEPT(B.RUN_TIME_SEC,...
View Articlepredicting a likely process failure in peoplesoft
SELECT B.PRCSNAME, RUNCNTLID, —MAX(PRCSINSTANCE) +1 PRCSINSTANCE_PLUS_ONE, — Y = MX+B round(((REGR_SLOPE(PERCENTAGE_FAILURE, PRCSINSTANCE) * (MAX(PRCSINSTANCE) + 1) +...
View ArticleArticle 0
I got extensive experience as a representative of international cooperation in the Presidential Council . (From April \2017 to \ April 2020) My activates includes: Project coordinator with the Italian...
View ArticleLost admin password
Is there a way to regain lost admin password in PSFT v7.5 ? Forum category: Forum / HelpForum thread: Lost admin password
View Articlepublish Asynchronous Message in Application Engine
I have an Asynchronous Message and when I call PUBLISH from Record Peoplecode,it is working fine and it is showing me DONE status in Service Operations monitor. However,when I try to use same...
View ArticleThird Party to PeopleSoft Financial 8.4
I am trying to send a message from Postman to PeopleSoft 8.4 Financial using CustomerSync Message. It passes through the monitor message but it doesn't create a Customer or modify an existing...
View ArticleXML Publisher to PDF via Application Engine crashing
Application engine is crashing when generating more than 1000 PDF files. Log file doesn't have any error. Does anybody have any idea the cause and solution to this? Any help is greatly appreciated....
View ArticleArticle 0
Thomas, did you get any response for that, I'm basically trying to do the same "override Add Search Record" without having to clone Component Interface Forum category: Forum / HelpForum thread:...
View ArticleSQL To List Project Items in PeopleSoft
https://peoplesofttutorial.com/sql-to-list-project-items-in-peoplesoft/ Every PeopleSoft Developer may have worked on App Designer projects which have so many PeopleSoft objects and code changes that...
View ArticleIdentify sql executing for peoplesoft batch process
SELECT D.SESSIONIDNUM,PRCSINSTANCE, a.sql_fulltext, TO_CHAR(b.last_update_time,'DDMonYYY-HH24:MI:SS'), B.*, C.* FROM v$sqlarea a, v$session_longops b, V$SESSION C, PSPRCSQUE D WHERE a.sql_id =...
View ArticleHTML Area - value not being returned by %Request.GetParameter
I have an html area on a peoplesoft page. In the html area I have an input text called 'drivers_lic' to capture the employees driver license number. If we have the drivers license number I'm sending...
View ArticlePage missing in manage Related Content in peoplesoft
HI, I tried to assign a related content which works with other component to my component, I found the navigation in Manage Related COntent, but when I tried to select the page, the page is not there....
View ArticleCompare reports of peoplesoft output to tables for quicker analysis
SELECT * FROM ( SELECT DISTINCT RANK() OVER( PARTITION BY projectname, tgtdbname ORDER BY b.rundttm DESC ) AS latest_compare, tgtdbname, a.* FROM ps_pscompobjdif_vw a, pscompsession b WHERE...
View Articleperformance analysis for peoplesoft given process
SELECT * FROM ( SELECT to_char(begindttm, 'DDD') day_of_year, COUNT(1) OVER( PARTITION BY oprid, to_char(begindttm, 'DDD') ) count_for_user_in_day, COUNT(1) OVER( PARTITION BY to_char(begindttm,...
View ArticleFind the sql triggered by peoplesoft process
SELECT q.prcsinstance, h.module, h.action, sample_time,sql.sql_text FROM v$active_Session_history h ,dba_hist_sqltext sql , psprcsrqst q WHERE h.sample_time BETWEEN q.begindttm AND...
View ArticleRetrieve data from current to 3 yrs back
Using PS Query Manager, how do I get a set of data from current to 'x' years back, or using the Term, instead of years. Thanks Forum category: Forum / HelpForum thread: Retrieve data from current to 3...
View ArticleArticle 0
I am also having same requirement where the user should not be able to create any user profiles. For this, I removed Component USERMAINT from a permission list. But since user is having Peoplesoft...
View Article