Lindie, I recommend that you review the release notes that PeopleSoft publishes for each product suite (FSCM, HCM, etc.) on Customer Connection. A review of...
Check the release notes on Customer Connection. ... From: peoplesoft-fans@yahoogroups.com [mailto:peoplesoft-fans@yahoogroups.com] On Behalf Of lrmaddenpaps ...
WebLogic Clustering/Weblogic Session Cookie Name First, a detailed background on our issue: We are encountering an issue on our WebLogic Cluster setup. Our ...
Hi Folks, We are implementing full position management. On the job record, there is a reports_to field. This field displays the emplid and name of the employee...
Greetings to the group... We are implementing PS at a new facility. They currently print AP checks to an HP printer and they download the signature and MICR...
We used to print both from HCM and FIN at one location I worked at and it worked for both, just need to make sure the files going to them are in the same...
... Usually the signature and MICR font chips require an embedded ASCII control string to unlock/activate the ability to use them, where as a soft font is...
Here at UCF (we use oracle also), we wrote a program that loads jpg's directly to the photo table. We used OCI (programming in C) to insert the data. SQR's...
You can also use App Engine/PeopleCode to load or unload '.jpg' photo files. The commands to do this in PeopleCode are a bit obscure and unfortunately I don't...
It is possible using PL/SQL procedure in SQR. I had done it long time back.. ________________________________ From: peoplesoft-fans@yahoogroups.com ...
I"ve written a couple of letters in XML Publisher and put things like <?choose:?><?when:somefieldintheXMLDataSource = 'abc'?>print this<?end when?><?end...
When we hire a POI "Other Payee" by adding a Person, and fill out the JOB Data pages, then hit OK, usually the POI hire would save. Now it doesn't seem to. Any...
What version are you on? did you clear our Application Server Cache and re-try again? is it also happening in the demo system? ... http://www.learnpsoft.info ...
I have a search view that includes a field with translate values. The search results (list box items) is defaulting to the short translate value from the...
I need one field out of 30 activated on a page. I have tried making it display only in security and adding peoplecode to open it up which did not work. I know...
Amy, it might be the event that you have the PeopleCode on that is the problem. Try putting it on the PostBuild event, which fires after the page is built. ...
I have it on component post build. I also tried page peoplecode to make the page display only which it did, and then enable the field afterwords and it did...
Why not just make each field display only (by double-clicking each field) except for the one you want enabled? Don ... [Non-text portions of this message have...
Amy, I have limited it to one field before. It may not be hitting your criteria. Here is an example I recently did, this code is in record, row init on...
By the way I have more elaborate code for self service which I do multiple hides, displays, and allow edit or not, so you can do more fields, the code I am...
Thank you; that is what I did as well; I was just trying to avoid entering 50 fields which I went ahead and did. Thank you again for your time. Amy ... ...
Well never tried this and it may be a ridiculous idea but could make two subpages identical except for one has the fields editable and the other display only...
I have a grid on a secondary page and I want all the fields in the grid to be from a derived record. Application Designer is not letting me do it. The...
Greg Coles
Greg.Coles@...
Nov 14, 2008 6:57 pm
49119
We hit this wall last week and ended up creating a SQL view to be used on the grid with no updates allowed on the page. HTH Julia ...
You also can do in case of your record is TEST &rec = GETRECORD(RECORD.TEST); For &J = 1 To &rec.FieldCount &rec.GetField(&J).Enabled = False; End-For; This...