For instance, the following PeopleCode would error out:
Local date &myDate;
&myDate = null;
To perform this kind of assignment, you may use the Date function in the following way:
Local date &myDate;
Comments, tips & tricks on PeopleSoft products and technology.
9 comments:
Hi Sir
faced same issue last week , tried this one
local date &testdate ;
Record.field.value = &testdate;
by default &testdate is NUll :
That's right Neeraj, although I prefer to specifically assign values to variables rather than use their default vale. Anyway, that's more a question of programming style of each developer.
Thanks for your feedback.
PeopleSoftNet
Hello Javier,
Thanks for such a nice blog.
We would like to have your comments on below site being developed for peoplesoft developers to help PeopleSoft Community.
we expect response from you.
Thanks in advance for your time and comments.
PeopleSoftNet
Hi Anand
No problem, I'll be happy to contribute to your PeopleSoft community. It seems a good place to share information among PeopleSofters.
Cheers!
or you could simply do it with %DateNull
Hi Parag
The %DateNull seems to be Meta-SQL and as far as I tried would not work in PeopleCode (I've tried with PeopleTools 8.50). Also checked the PeopleBooks documentation and it does not appear as a system variable but only as Meta-SQL.
Which PeopleTools version were you using to make the %DateNull value work?
Thanks for your contribution.
Parag is right.
%DateNull is applicable for use in PeopleCode, AE, SQL
Last week a delivered code was throwing an error like this. We found that the culprit was a month() to which a null value was being passed.
Post a Comment