Questions tagged [peoplesoft]

PeopleSoft is an Oracle ERP that has its pages generated from metadata. It has a development IDE for interaction with Application Engine programs, and PeopleCode. It also has legacy COBOL and Hyperion SQR code.

PeopleSoft is an Oracle ERP that has its pages generated from metadata. It has a development IDE for interaction with Application Engine programs, and PeopleCode. It also has legacy COBOL and Hyperion SQR code.

Oracle's Online PeopleBooks (documentation for PeopleSoft) http://www.oracle.com/pls/psft/homepage

An unofficial PeopleSoft wiki http://peoplesoft.wikidot.com/

499 questions
-3
votes
1 answer

Transfering variable from one page to antother page containing HTML area same component in people code

I amd new in people code , creating one application in which we need to transfer variable from one peoplecode page to antother page containing HTML area. When i am trying to do the same i am getting blank page.
sandeep
  • 1
  • 5
-4
votes
1 answer

How to make a row in a grid not appear if it's value is 0?

I only have two fields in my grid. Just need the entire row to not appear, if the value in one of the fields is 0.
-5
votes
2 answers

How to use multiple values in when (Evaluate)? - PeopleCode

I have the following code and as can be seen that in both the cases I'm using Section = A. But, is there a way to check both 1&2 in "When" so that to avoid more lines of code? Evaluate INTERFACE When "1" SECTION = "A"; Break; When "2" …
1 2 3
33
34