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:
Dawn B
Past 24 Hours:
1
Prev. 24 Hours:
0
Overall:
5325
People Online:
Visitors:
229
Members:
0
Total:
229
Online Now:
New Topics
Lawson Add-Ins for Microsoft Office
Lawson Add-in
9/30/2025 6:51 PM
I am looking for a Lawson Add-ins query to add new
Lawson S3 Procurement
Anyone getting PO 0000 not found for company error in PO23?
9/30/2025 2:45 AM
Anyone getting PO 0000 not found for company error
Lawson Add-Ins for Microsoft Office
PO20 - Cancel PO via Add-in
9/25/2025 8:03 PM
Is it possible to cancel PO's using add-ins? I
S3 Systems Administration
S3 Payroll - PayStubs
9/18/2025 6:58 PM
Looking for a reliable solution to streamline the
S3 Systems Administration
Quick Access report
8/25/2025 7:17 PM
Looking for a good way to see who has access Lawso
S3 Customization/Development
LP01 hiding a PTO plan from the list
8/13/2025 4:44 PM
Hi all. is there a way to hide a specific PTO&n
Lawson Business Intelligence/Reporting/Crystal
GLTrans - PO Line/MAInvdtl
8/6/2025 6:13 PM
Hello, we have an existing tabular model for fina
IPA/ProcessFlow
Retrieving GUID from InforOS
7/25/2025 2:22 AM
Hello everyone, I was wondering if there is a way
IPA/ProcessFlow
IPA for forwarding cost messages (MA64/MA66.3)
7/23/2025 6:07 PM
When a buyer has an invoice cost message where the
Lawson Portal
Lawson ESS customization
6/23/2025 10:28 AM
I want to add new links and customize the ESS (sel
Top Forum Posters
Name
Points
Greg Moeller
4184
David Williams
3349
JonA
3293
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.