Can i do this?
i declare a global thinking it would be valid for all of the program, but it fails:
Global File &LogFileA05;
Global File &LogFileA10;
/***** Set the Log File *****/
&LogFileA05 = GetFile("C:\temp\DELETE_USER_PROFILE_A05.log", "w", "a", %FilePath_Absolute);
&LogFileA05.WriteLine("Begin: " | %Datetime);
&LogFileA10 = GetFile("C:\temp\DELETE_USER_PROFILE_A10.log", "w", "a", %FilePath_Absolute);
&LogFileA10.WriteLine("Begin: " | %Datetime);
writeln in later section fails
| Title | Under | Posted on |
|---|---|---|
| Peoplesoft technical | PeopleSoft Technical | 05/22/2013 - 2:37pm |
| Required Peoplesoft HRMS Functional Training | PeopleSoft Functional | 05/07/2013 - 10:29pm |
| Error while saving Voucher | PeopleSoft Functional | 05/02/2013 - 1:55am |
| santosh asking que | PeopleSoft Technical | 04/30/2013 - 10:22am |
Do you have them declared again in the "later" section?
Global File &LogFileA05;
Global File &LogFileA10;
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
thx that helped