Login
Register
Search
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Forums
Integration / Customization
IPA/ProcessFlow
Function Date=pfDate is a non-date?
Home
Forums
Jobs
LawsonGuru
LawsonGuru Letter
LawsonGuru Blog
Worthwhile Reading
Infor Lawson News Feed
Store
Store FAQs
About
Who's On?
Membership:
Latest:
John Bonin
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5270
People Online:
Visitors:
360
Members:
0
Total:
360
Online Now:
New Topics
Lawson S3 Procurement
Tolerance Settings
3/31/2025 2:01 PM
I've been trying to set a tolerance for some t
Dealing with Lawson / Infor
Printing Solutions other than MHC
3/27/2025 1:00 PM
What are others using for printing solutions besid
Lawson S3 Procurement
Green check marks in Lawson 9.0.1
3/20/2025 4:55 PM
Hi, How to remove green check mark on items when o
Lawson S3 HR/Payroll/Benefits
Pay Rate History to Show All Positions
2/26/2025 3:34 PM
Does anyone know how to modify payratehistory.htm
Infor CloudSuite
How to build a Pre-Prod tenant
2/7/2025 1:28 AM
After we finished our implementation and ended our
Lawson S3 Procurement
Browser issue with RQC Shopping
1/28/2025 5:49 PM
Since the recent Chrome/Edge updates, our RQC shop
Lawson S3 Procurement
S3-Procurement New Company
1/22/2025 10:38 PM
My Accounting Department has created a new Company
S3 Customization/Development
JUSTIFIED RIGHT
1/15/2025 7:41 PM
Is there a way in Lawson COBOL to make a character
S3 Systems Administration
ADFS certificate - new cert
12/3/2024 9:38 PM
The certificates on the windows boxes expired and
Lawson S3 HR/Payroll/Benefits
Post Tax Benefit Plan Table
11/14/2024 9:16 PM
Hi, totally new to Laswon. I have a repor
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3291
Kat V
2984
Woozy
1973
Jimmy Chiu
1883
Kwane McNeal
1437
Ragu Raghavan
1375
Roger French
1315
mark.cook
1244
Forums
Filtered Topics
Unanswered
Unresolved
Announcements
Active Topics
Most Liked
Most Replies
Search Forums
Search
Advanced Search
Topics
Posts
Prev
Next
Forums
Integration / Customization
IPA/ProcessFlow
Function Date=pfDate is a non-date?
Please
login
to post a reply.
9 Replies
0
Subscribed to this topic
52 Subscribed to this forum
Sort:
Oldest First
Most Recent First
Author
Messages
JudeBac
Veteran Member
Posts: 129
12/1/2008 3:36 PM
Hi all,
We are using ProcessFlow 8.03 Pro and j2sdk1.4.2_16. In the Start node, I declared a variable var_date as type Date and tried to assign the function Date=pfDate(var1,'mm/dd/yyy'). However I am getting an error "Cannot assign non-date expression to Date type variable". If I declare a string variable, this function gets assigned!
I am revising a processflow (from another company) that was able to assign function Date=pfDate(var1,'mm/dd/yyy') to a date variable.
What do I need to do?
Help!
David Williams
Veteran Member
Posts: 1127
12/1/2008 3:44 PM
Split
You should have a value assigned to var1 in order to use this function. Do you?
JudeBac
Veteran Member
Posts: 129
12/1/2008 3:50 PM
Split
I do, apologies, I should have mentioned it earlier. The value I am using is from a query. The field is REVIEW.ACTUAL_DATE, variable name is Review_ACTUAL_DATE.
JudeBac
Veteran Member
Posts: 129
12/1/2008 3:59 PM
Split
Additional info: the function Date=pfDate(var1,'mm/dd/yyy') (ex: var1 replaced by today()). If I declare a variable of type string, assign it to pfDate(today(),'mm/dd/yyy') it will work. I cannot assign this to a date type variable.
Sam Simpson
Veteran Member
Posts: 239
12/1/2008 4:22 PM
Split
Here's some tips is getting the right date format. Ask your dba what's the date format of ACTUAL-DATE in your REVIEW table. It could be in AGS (yyyymmdd) or DME (mm/dd/yyyy) formats. Also remember that when you use pfDate javascript function it will always result in a javascript date format which is very long. Having said that, declare var1 as string then after you query REVIEW do an ASSIGN node where:
var1=pfDate(Review_ACTUAL_DATE,'mm/dd/yyyy) or
var1=pfDate(Review_ACTUAL_DATE,'yyyymmdd') then
var1=getDateDME(var1) or var1=getDateAGS(var1)
So now you have a date in var1 and you could still convert var1 into another date variable.
JudeBac
Veteran Member
Posts: 129
12/1/2008 4:32 PM
Split
Thanks Sam, let me consider your tips and will get back with the result.
David Williams
Veteran Member
Posts: 1127
12/1/2008 4:33 PM
Split
The 2nd option in pfDate(var1,'yyyymmdd') corresponds with the format of the 'var1' variable not how the date is returned so like Sam said, you need to know the format (AGS or DME) of your variable. If your variable's format is like yyyymmdd then that's the function you choose.
The system returns the JavaScript date once it evalutes the value of your variable. var1 is usually a String variable (which is how the value is returned in your DME call).
JudeBac
Veteran Member
Posts: 129
12/1/2008 4:35 PM
Split
thanks David. I now have a starting point.
Sam Simpson
Veteran Member
Posts: 239
12/1/2008 4:50 PM
Split
Just a reminder and not to be confused if you are using var1 as a variable. It is perfectly okay to use it as a variable but just remember this is the default node name for MsgBuilder. So don't be confused between the two.
JudeBac
Veteran Member
Posts: 129
12/17/2008 1:01 PM
Split
Thanks for the help. Just thought I need to share what I did.
declare datevar=DATE, datestringAGS=STRING
datevar=pfDate(Review_SCHED_DATE,'mm/dd/yyyy')
datestringAGS=getDateAGS(datevar)
Please
login
to post a reply.