This is a really great presentation about using jQuery for UI – works you through the real examples of jQuery structure and jQuery and CSS.
AdobeTV – Enhancing the user experience with jQuery by Karl Swedberg
This is a really great presentation about using jQuery for UI – works you through the real examples of jQuery structure and jQuery and CSS.
AdobeTV – Enhancing the user experience with jQuery by Karl Swedberg
Here is a link to an excellent presentation from Oracle of PeopleTools 8.50 features. PeopleSoft is really going Web 2.0!
peoplesoft_workspace_and_pt850.swf (application/x-shockwave-flash Object)
Also please see our previous post about Tools 8.50 overview
There are a few people who mention different tools for Application Development in PeopleSoft. Over the past years I have tried many of the IDEs like TextPad, UltraEdit. For the past 6 months I have started extensively using Notepad++ and I absoltely love it. Unfortunately App Designer does not include a good syntax highlighting, Intellisense and other features that have been long implemented in other IDEs like Visual Studio, JBuilder, Eclipse. It seems that so far Notpad++ developers did a great job with developing enough options that the tool could be easily configured to support multiple languages, specifically SQR and PeopleCode. I have started by downloading initial syntax color scheme files from greysparling.com (they are always on the forefront of peoplesoft development). Then, I have played with options a little and voila – I finally have an IDE that makes it all easier – syntax highlighting, IntelliSense (I wish it could access AppDesigner API too). Below I would like to provide a 5 minute guide to configuring NOTEPAD++ for use:
3. Download PeopleCode and SQR syntax and Intellisense files below
a) Paste Intellisense File below
into C:\Program Files\Notepad++\plugins\APIs\
and %appdata%\Notepad++\plugins
Download Files -
b) Paste PeopleCode and SQR Syntax files attached below into %appdata%\Notepad++\
Download File – PeopleCode SQR Syntax Filesc) Close and restart Notepad++
4. Configure Notpad++ to recognize sqr and peoplecode by following the instructions below:
Choose the desired language e.g. Peoplecode or SQR and change the color scheme to the way you like it. For PeopleCode I suggest specifying rem and remark in the comments & Number section. For the slash comments to work properly / / – we need to specify them in the Operators section (screenshot), because for some reason PeopleCode has more that 2 types of comments –
/+ your comment +/
/* your comment */
rem your comment
remark your comment

Enjoy – in my next post I will explain how Notepad++ can be effectively used for looking at PeopleCode Trace files.
SELECT DISTINCT ltrim (rtrim (a.classid)) AS classid, ltrim (rtrim (b.menuname)) AS menuname, ltrim (rtrim (b.barname)) AS barname, ltrim (rtrim (b.baritemname)) AS baritemname, ltrim(rtrim(d.pnlname)) AS pnlname, ltrim (rtrim (d.itemlabel)) AS itemlabel, ltrim (rtrim (e.itemlabel)) AS itemlabel, ltrim(rtrim(c.pageaccessdescr)) AS pageaccessdescr, b.displayonly, ltrim (rtrim (f.portal_label)) AS portal_label, ltrim (rtrim (f.portal_objname)) AS portal_objname, ltrim(rtrim(f.portal_uri_seg1)) AS portal_uri_seg1, ltrim (rtrim (f.portal_uri_seg2) ) AS portal_uri_seg2, (SELECTCASE WHEN ltrim(rtrim(descr)) = ''THEN ltrim(rtrim(menulabel))ELSE ltrim(rtrim(descr))ENDFROM psmenudefnWHERE menuname = b.menuname) || ' > ' || ltrim(rtrim(f.portal_label)) AS pathFROM psroleclass a, psauthitem b, pspgeaccessdesc c, pspnlgroup d, psmenuitem e, psprsmdefn f, psprsmperm gWHERE a.classid = b.classidAND d.pnlgrpname = e.pnlgrpnameAND b.menuname = e.menunameAND b.barname = e.barnameAND b.baritemname = e.itemname--AND a.rolename LIKE 'GLIC_PO%'AND b.menuname NOT IN ('APPLICATION_DESIGNER', 'CLIENTPROCESS', 'DATA_MOVER ', 'IMPORT_MANAGER ', 'OBJECT_SECURITY ', 'QUERY ', 'PERFMONPPMI ')AND b.menuname NOT LIKE 'WEBLIB%' AND B.PNLITEMNAME IN (SELECT DISTINCT PNLNAMEFROM PSFSSYS.PSPNLFIELDwhere RECNAME ='PYMNT_ADVICE')AND NOT EXISTS (SELECT 'x'FROM psprsmsysattrvlWHERE portal_name = f.portal_nameAND portal_reftype = f.portal_reftypeAND portal_objname = f.portal_objnameAND portal_attr_nam = 'PORTAL_HIDE_FROM_NAV'AND f.portal_objname NOT IN ('CO_NAVIGATION_COLLECTIONS', 'PORTAL_BASE_DATA'))AND b.authorizedactions = c.authorizedactionsAND f.portal_reftype = 'C'AND f.portal_cref_usgt = 'TARG'AND f.portal_name = g.portal_nameAND f.portal_reftype = g.portal_reftypeAND f.portal_objname = g.portal_objnameAND a.classid = g.portal_permnameAND b.classid = g.portal_permnameAND f.portal_name = 'EMPLOYEE'AND f.portal_uri_seg1 <> ' 'AND f.portal_uri_seg2 <> ' 'AND f.portal_uri_seg3 <> ' 'AND f.portal_uri_seg1 = b.menunameAND b.pnlitemname = d.itemname WITH UR;
It seems that Oracle have caught on with the Virtual Documentation, not only lots of books are available in common formats, but they allow you to format your search results as a book as well. Now you can take just what you need and read it on your screen or printed and stapled. I guess they really want us to know know more about their products!
Here is a link to
Oracle Database Online Documentation 11g Release 1 (11.1)
And here PeopleBooks Link:
http://download.oracle.com/docs/cd/E12341_01/crm9pbr0_run2/eng/index.htm![]()
Recent Comments