|
Revision 81, 0.8 KB
(checked in by larry.grey, 22 months ago)
|
|
Initial Check-in. Sample code to accept ACCOUNT as a parameter and display it in a message box.
Please note that to enable this project, you need to copy the PeopleCode in this funclib
|
|
|
| Line | |
|---|
| 1 | /* ----------------------------------------- */ |
|---|
| 2 | /* Grey Sparling Solutions */ |
|---|
| 3 | /* INSTRUCTIONS FOR APPLYING THIS PROJECT */ |
|---|
| 4 | /* TO YOUR EXISTING PEOPLESOFT SYSTEM */ |
|---|
| 5 | /* ----------------------------------------- */ |
|---|
| 6 | |
|---|
| 7 | /* STEP 1 */ |
|---|
| 8 | /* ----------------------------------------- */ |
|---|
| 9 | /* First, Put this declare statement at the */ |
|---|
| 10 | /* begiining of the */ |
|---|
| 11 | /* JOURNAL_ENTRY2_IE PageActivate PeopleCode */ |
|---|
| 12 | Declare Function ApplyDrillCriteria PeopleCode FUNCLIB_GSDRILL.GS_DRILL_WRK FieldFormula; |
|---|
| 13 | |
|---|
| 14 | /* STEP 2 */ |
|---|
| 15 | /* ----------------------------------------- */ |
|---|
| 16 | /* Second, Put this declare statement at the */ |
|---|
| 17 | /* end of the */ |
|---|
| 18 | /* JOURNAL_ENTRY2_IE PageActivate PeopleCode */ |
|---|
| 19 | ApplyDrillCriteria(); |
|---|