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:
Quinn
Past 24 Hours:
0
Prev. 24 Hours:
0
Overall:
5293
People Online:
Visitors:
449
Members:
0
Total:
449
Online Now:
New Topics
Lawson Portal
Lawson ESS customization
6/23/2025 10:28 AM
I want to add new links and customize the ESS (sel
S3 Security
Securing forms and programs that use Company Group
6/17/2025 5:41 PM
Is there a way to write a rule, that looks up a co
S3 Customization/Development
Self-Serve Customization and Modification of home page
6/17/2025 3:40 PM
Hi, I want to add new links and customize the E
S3 Customization/Development
Data / List view on Lawson Portal
5/21/2025 2:37 AM
Client is on S3 V10. All delivered and custom form
Lawson S3 Financials
Applying credits to open AP invoices
4/28/2025 1:26 PM
Hello, I am new to the Lawson system and after ru
Lawson S3 Financials
Lawson APIA
4/28/2025 1:22 PM
Has anybody recently installed Lawson's APIA m
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
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
1377
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.