It looks like by default it is not in 'development' mode, and you can't make changes to the delivered Context Definition, or its Selection Mapping.
Change the configured value and all the fields on the configuration pages become editable.
SELECT *
FROM PS_SCCPS_INSTALL;
This should equal 'DEV'.
Population Selection - Context Definition
Posted by
Michael Nitschke
on Wednesday, 25 July 2012
Labels:
Population Selection,
Population Update
/
Comments: (0)
Instance Variables
Posted by
Michael Nitschke
on Thursday, 5 July 2012
/
Comments: (2)
This does not work:
If any(&instanceVariable) Then
...
This does work:
Local string&x = &instanceVariable;
If any(&x) Then
...
Haven't had time to look at why that is the case yet.
If any(&instanceVariable) Then
...
This does work:
Local string&x = &instanceVariable;
If any(&x) Then
...
Haven't had time to look at why that is the case yet.
User has no access to Component Interface - Security
Posted by
Michael Nitschke
on Thursday, 16 February 2012
/
Comments: (0)
Use the following to compare a user that does have access to a user that doesn't. Provide the user that does, the user that doesn't, and the CI name.
Will return the Role, Permission List that is missing.
Will return the Role, Permission List that is missing.
select * from (
select
r.rolename
, c.oprclass
, ci.bcname
from
PSOPRCLS c
, PSROLECLASS r
, PSAUTHBUSCOMP ci
where c.oprid = 'E87637' -- User that DOES have access.
and r.classid = c.oprclass
and ci.classid = c.oprclass
minus
select
r.rolename
, c.oprclass
, ci.bcname
from
PSOPRCLS c
, PSROLECLASS r
, PSAUTHBUSCOMP ci
where c.oprid = 'S3286436' -- User that is missing access
and r.classid = c.oprclass
and ci.classid = c.oprclass
--) where bcname like 'HCR_PERSONAL_DATA_SRV'
) where bcname like 'AMS_CI_CHESSN_DATA'
Handling XML Files in SQR
Posted by
Michael Nitschke
/
Comments: (0)
Nice little example of reading an XML file, {input}, and using it to update values in a Table. Note that it first inserts the XML file's data into a CLOB field at the end of the Table it is updating. Field.RAWXML.
!*******************************************************************************
! Procedure: Read-Input-File *
! Description: Loads Request File data into Suspense tables *
! using Oracle XML DB functions to extract data from the XML *
!*******************************************************************************
!
begin-procedure Read-Input-File
#debugp show ''
#debugp show 'Enter procedure Read-Input-File'
! Read file in
open $Request_Filename as {INPUT} for-reading record=32767:fixed_nolf status=#result
if #result <> 0
show {REQUEST_FILE_OPEN_ERR_MSG}
stop quiet
end-if
let $SQL-STATEMENT = 'amssr197.sqr, Read-Input-File, insert into PS_AMS_CART_RQ_HDR'
begin-sql on-error=Sql-Error
INSERT INTO PS_AMS_CART_RQ_HDR (
PRCSINSTANCE,
AMS_SYSTEM_CODE,
AMS_CART_TIME_STMP,
AMS_ABN_NBR,
AMS_CART_USER_ID,
AMS_CART_RECS,
RAWXML
) values (
#prcs_process_instance,
' ',
0,
0,
' ',
0,
empty_clob()
)
end-sql
while 1=1
let $xml = ''
read {INPUT} into $xml:32767 status=#result
if #result <> 0
show {SUSPENSE_TABLE_ERR_MSG}
stop quiet
end-if
if #end-file
break
end-if
let #xml = length($xml)
! Begin: QC1555
! The given XML file may have Microsoft Byte Order Mark at the beginning. If so just trim it off else can't be read.
! http://en.wikipedia.org/wiki/UTF-8#Byte_order_mark
let $checkBOM = substr($xml, 1,4)
if $checkBOM = '0xEF' or $checkBOM = '0xBB' or $checkBOM = '0xBF'
let $xml = substr($xml, 5, #xml - 4)
end-if
let $checkBOM = substr($xml, 1,3)
if $checkBOM = ''
let $xml = substr($xml, 4, #xml - 3)
end-if
let #xml = length($xml)
! End: QC1555
#ifdef debugx
show '$checkBOM= ' $checkBOM
show ' xml : ' $xml
#endif
let $SQL-STATEMENT = 'amssr197.sqr, Read-Input-File, update PS_AMS_CART_RQ_HDR(RAWXML)'
begin-sql on-error=Sql-Error
declare
cartXml CLOB;;
begin
SELECT rawXML INTO cartXML
FROM PS_AMS_CART_RQ_HDR
WHERE PRCSINSTANCE = #prcs_process_instance
FOR UPDATE;;
DBMS_LOB.WRITEAPPEND(cartXml, #xml, $xml);;
end;;
end-sql
#ifdef debugx
commit
#endif
end-while
let $SQL-STATEMENT = 'amssr197.sqr, Read-Input-File, select PS_AMS_CART_RQ_HDR'
begin-select on-error=Sql-Error
hdr.systemCode
hdr.cartTimeStamp
hdr.instAbn
hdr.userId
hdr.numRecords
FROM
XMLTABLE('/studentStudyCircRequest005'
PASSING (SELECT XMLTYPE.createxml(rawXML) FROM PS_AMS_CART_RQ_HDR WHERE PRCSINSTANCE = #prcs_process_instance)
COLUMNS
systemCode varchar2(4) PATH 'header/system',
cartTimeStamp number(14,0) PATH 'header/timestamp',
instAbn number(11,0) PATH 'header/instAbn',
userId varchar2(12) PATH 'header/userId',
numRecords number(38,0) PATH 'trailer/numRecords'
) hdr
end-select
let $SQL-STATEMENT = 'amssr197.sqr, Read-Input-File, update PS_AMS_CART_RQ_HDR'
begin-sql !on-error=Sql-Error
UPDATE PS_AMS_CART_RQ_HDR
set AMS_SYSTEM_CODE = &hdr.systemCode,
AMS_CART_TIME_STMP = &hdr.cartTimeStamp,
AMS_ABN_NBR = &hdr.instAbn,
AMS_CART_USER_ID = &hdr.userId,
AMS_CART_RECS = &hdr.numRecords
WHERE PRCSINSTANCE = #prcs_process_instance
end-sql
Redirecting a User after Login / Logon
Posted by
Michael Nitschke
on Monday, 13 February 2012
/
Comments: (1)
This situation can be common in places like Universities. Students need to be redirected after login to some 'special' page, or an employee needs to be redirected if it is their first login, etcetera.
You could be forgiven for thinking this might be easily configurable somewhere. It doesn't seem to be (leave me a message if it is). Here's how I've done it.
I've modified:
AppPackage.PT_BRANDING
Note You're going to need a Global Variable to hold whether the user has been redirected yet or not, we only want to redirect once. You could easily put them into an endless redirect loop.
(You have to place that just after end-class;)
There is a Method getHomepageJS that, as its name implies, get JavaScript for the home page.
Note the getCSSOverride method. This is where I've added my extra JavaScript, the 6th bind variable.
If they're a student, and they haven't already been redirected once, redirect them to the student home page.
You could be forgiven for thinking this might be easily configurable somewhere. It doesn't seem to be (leave me a message if it is). Here's how I've done it.
I've modified:
AppPackage.PT_BRANDING
Note You're going to need a Global Variable to hold whether the user has been redirected yet or not, we only want to redirect once. You could easily put them into an endless redirect loop.
Global boolean &blnStudentHasBeenRedirected;
(You have to place that just after end-class;)
There is a Method getHomepageJS that, as its name implies, get JavaScript for the home page.
Return GetHTMLText(HTML.PT_HP2_JS_INCLUDE, &cookieJS, &refreshJS, &refreshPgltJS, &saveWarnCrossDomainJS, &saveWarnJS, &hpDndJS | Char(10) | Char(13) | %This.getCSSOverride());
Note the getCSSOverride method. This is where I've added my extra JavaScript, the 6th bind variable.
method getCSSOverride
/+ Returns String +/
/* derived classes can override this method to add their own css override */
Local string &override = "";
If %Request.BrowserType = "IE" Then
&override = "<!--[if lt IE 9]>" | Char(10) | Char(13) | "<script type=""text/javascript"" src=""" | %Response.GetJavaScriptURL(HTML.AMS_IE9) | """></script>" | Char(10) | Char(13) | "<![endif]-->";
End-If;
Local AMS_PT_BRANDING:AmsHeader &myAmsHeader = create AMS_PT_BRANDING:AmsHeader();
If &myAmsHeader.isStudent Then
&override = &override | Char(10) | Char(13) | "<link rel=""stylesheet"" href=""" | %Response.GetStyleSheetURL(StyleSheet.AMS_SSS_STYLE_REF) | """ type=""text/css"">";
/* Begin: QC1302 */
If &blnStudentHasBeenRedirected <> True Then
&blnStudentHasBeenRedirected = True;
&override = &override | Char(10) | Char(13) | "<script type=""text/javascript"">window.top.location.replace(""../c/AMS_EOL.AMSW3_STDNT_HOME.GBL"");</script>";
End-If;
/* End: QC1302 */
End-If;
Return &override;
end-method;
If they're a student, and they haven't already been redirected once, redirect them to the student home page.
Data Integrity Error
Posted by
Michael Nitschke
on Wednesday, 1 February 2012
Labels:
Data Integrity Error
/
Comments: (0)
Data Integrity Error (124,85)
The data structure from the page does not match the data structure in the database.This error often appears after you've made a change to the Component. As a developer you see it all the time and just reload the Component.
However, on some rare occasions it appears out of nowhere for a given Component. And it won't go away. And there's no reason for it. And you've been forced to search the web for an answer, and now you're reading this sentence like approximately one person per day does. Hello.
Run a trace file for each SQL statement.
You'll need to log out and back in again, this time via the link for tracing on the log in page. If you can't see it go ask your friendly infrastructure team to/how to enable it.
Trace each SQL statement and then search the trace file for 'deserialization integrity failure'. This will point you to the object that is causing the issue.
What's happened is that the version number on the object, and the version number on Table PSVERSION no longer match. There is an inconsistency between PeopleSoft's list of latest versions of objects and the version as reported on the object.
This can be fixed in two ways:
1) by running the AppEngine VERSION, or
2) If you want a quick fix and you don't mind having your ID as the last person that updated the object, you can simply open the object causing trouble, make any minor change to it, save it, and now the versions will match up again.
More detail here:
http://peoplesoftdbafriend.blogspot.com.au/2012/09/version-application-engine.html
Trace each SQL statement and then search the trace file for 'deserialization integrity failure'. This will point you to the object that is causing the issue.
What's happened is that the version number on the object, and the version number on Table PSVERSION no longer match. There is an inconsistency between PeopleSoft's list of latest versions of objects and the version as reported on the object.
This can be fixed in two ways:
1) by running the AppEngine VERSION, or
2) If you want a quick fix and you don't mind having your ID as the last person that updated the object, you can simply open the object causing trouble, make any minor change to it, save it, and now the versions will match up again.
More detail here:
http://peoplesoftdbafriend.blogspot.com.au/2012/09/version-application-engine.html
Content Reference Menu Path SQL
How to find a "lost"content reference.
(Note that the 'Valid From Date' of the parent Folder must be less than a content reference/common mistake post migration)
Graciously lifted from Jim's PeopleSoft Journal (check out his book too).
http://jjmpsj.blogspot.com.au/2007/12/query-for-component-andor-cref.html
WITH PORTAL_REGISTRY AS (
SELECT RTRIM(REVERSE(SYS_CONNECT_BY_PATH(REVERSE(PORTAL_LABEL), ' >> ')), ' >> ') PATH
, LEVEL LVL
FROM PSPRSMDEFN
WHERE PORTAL_NAME = 'EMPLOYEE'
START WITH PORTAL_OBJNAME = &1
CONNECT BY PRIOR PORTAL_PRNTOBJNAME = PORTAL_OBJNAME )
SELECT PATH
FROM PORTAL_REGISTRY
WHERE LVL = (
SELECT MAX(LVL)
FROM PORTAL_REGISTRY )
(Note that the 'Valid From Date' of the parent Folder must be less than a content reference/common mistake post migration)
Graciously lifted from Jim's PeopleSoft Journal (check out his book too).
http://jjmpsj.blogspot.com.au/2007/12/query-for-component-andor-cref.html
WITH PORTAL_REGISTRY AS (
SELECT RTRIM(REVERSE(SYS_CONNECT_BY_PATH(REVERSE(PORTAL_LABEL), ' >> ')), ' >> ') PATH
, LEVEL LVL
FROM PSPRSMDEFN
WHERE PORTAL_NAME = 'EMPLOYEE'
START WITH PORTAL_OBJNAME = &1
CONNECT BY PRIOR PORTAL_PRNTOBJNAME = PORTAL_OBJNAME )
SELECT PATH
FROM PORTAL_REGISTRY
WHERE LVL = (
SELECT MAX(LVL)
FROM PORTAL_REGISTRY )