Manufacture date
- brianp87
- 3K Time Lord Contributor
- Posts: 3133
- Joined: Tue Oct 10, 2006 6:11 am
- Location: Arizona
- Contact:
Manufacture date
I've noticed for a while and keep forgetting to ask. The manufacture dates are not printing correctly on the tech sheets after I updated to the version 7.1.2. I can post pics if needed.
- ricmorin
- 5K Holy Smokes Contributor
- Posts: 5997
- Joined: Mon Jul 25, 2005 10:11 am
- Location: New Hampshire
- Contact:
Re: Manufacture date
I'm not seeing any issues here. Can you post a pic of the problem? Also, which worksheet are you using?
Ric Morin - Volunteer Forum Moderator, Shop Owner, ASE Master L1
Motorcar Alternatives, LLC
603-622-6434 x203
www.motorcaralternatives.com
I find my life is a lot easier when I use Special Orders
Motorcar Alternatives, LLC
603-622-6434 x203
www.motorcaralternatives.com
I find my life is a lot easier when I use Special Orders
- brianp87
- 3K Time Lord Contributor
- Posts: 3133
- Joined: Tue Oct 10, 2006 6:11 am
- Location: Arizona
- Contact:
Re: Manufacture date
I can post more if needed.
- Attachments
-
- mitch 1.JPG (20.81 KiB) Viewed 7799 times
-
- mitch 2.JPG (18.13 KiB) Viewed 7799 times
-
- mitch 3.jpg (137.23 KiB) Viewed 7799 times
- ricmorin
- 5K Holy Smokes Contributor
- Posts: 5997
- Joined: Mon Jul 25, 2005 10:11 am
- Location: New Hampshire
- Contact:
Re: Manufacture date
Check your date format on that computer. Do you have another computer and does it appear the same?
There was a date formatting fix introduced in 7.1.4 that might address this issue if your computer formatting is ok.
There was a date formatting fix introduced in 7.1.4 that might address this issue if your computer formatting is ok.
Ric Morin - Volunteer Forum Moderator, Shop Owner, ASE Master L1
Motorcar Alternatives, LLC
603-622-6434 x203
www.motorcaralternatives.com
I find my life is a lot easier when I use Special Orders
Motorcar Alternatives, LLC
603-622-6434 x203
www.motorcaralternatives.com
I find my life is a lot easier when I use Special Orders
- brianp87
- 3K Time Lord Contributor
- Posts: 3133
- Joined: Tue Oct 10, 2006 6:11 am
- Location: Arizona
- Contact:
Re: Manufacture date
I am not sure what you mean. I input the dates manually. I did notice that since the update it is a little different to input could it be I have to now use the drop down menu as opposed to entering the date as I have in years prior. I used to be able to tab through and I know I can no longer do that.
- brianp87
- 3K Time Lord Contributor
- Posts: 3133
- Joined: Tue Oct 10, 2006 6:11 am
- Location: Arizona
- Contact:
Re: Manufacture date
I just found one were its blank on the tech sheet but inputed on the vehicle.
- Attachments
-
- mitch 1.JPG (21.6 KiB) Viewed 7797 times
-
- mitch 2.jpg (128.43 KiB) Viewed 7797 times
- ricmorin
- 5K Holy Smokes Contributor
- Posts: 5997
- Joined: Mon Jul 25, 2005 10:11 am
- Location: New Hampshire
- Contact:
Re: Manufacture date
I'm fairly sure this is addressed in 7.1.4.
Ric Morin - Volunteer Forum Moderator, Shop Owner, ASE Master L1
Motorcar Alternatives, LLC
603-622-6434 x203
www.motorcaralternatives.com
I find my life is a lot easier when I use Special Orders
Motorcar Alternatives, LLC
603-622-6434 x203
www.motorcaralternatives.com
I find my life is a lot easier when I use Special Orders
Re: Manufacture date
brianp87,ricmorin wrote:Check your date format on that computer. Do you have another computer and does it appear the same?
There was a date formatting fix introduced in 7.1.4 that might address this issue if your computer formatting is ok.
The concern here is your current system time and date format isn't correct. E.g., it might be set to YY/MM/DD or something odd. We can help you check that if you need to on a call to support.
M1 Product Manager
- Johnny5
- 500 Club: Champion Contributor
- Posts: 654
- Joined: Wed May 26, 2004 2:03 pm
- Location: John Dwulet
Re: Manufacture date
It's in the report, the formatting of the date string done by crystal report is the culprit.
This:
if IsNull({TechWorksheetInfo.MfgDate}) then
date(0,0,0)
else
DTStoDate({TechWorksheetInfo.MfgDate})
Should be:
if IsNull({TechWorksheetInfo.MfgDate}) then
" "
else
Totext ({TechWorksheetInfo.MfgDate})
I will report the problem to development. I will also endeavor to put a patch on M1Files
JD
This:
if IsNull({TechWorksheetInfo.MfgDate}) then
date(0,0,0)
else
DTStoDate({TechWorksheetInfo.MfgDate})
Should be:
if IsNull({TechWorksheetInfo.MfgDate}) then
" "
else
Totext ({TechWorksheetInfo.MfgDate})
I will report the problem to development. I will also endeavor to put a patch on M1Files
JD
John Dwulet AKA: Johnny5
Retired - Mitchell1
Retired - Mitchell1
- Rich
- 4K Ultra Amazing Contributor
- Posts: 4049
- Joined: Tue Sep 06, 2005 10:16 am
- Location: Somewhere in Michigan
- Contact:
Re: Manufacture date
This:
if IsNull({TechWorksheetInfo.MfgDate}) then
date(0,0,0)
else
DTStoDate({TechWorksheetInfo.MfgDate})
Should be:
if IsNull({TechWorksheetInfo.MfgDate}) then
" "
else
Totext ({TechWorksheetInfo.MfgDate})
Just what I thought it was!
if IsNull({TechWorksheetInfo.MfgDate}) then
date(0,0,0)
else
DTStoDate({TechWorksheetInfo.MfgDate})
Should be:
if IsNull({TechWorksheetInfo.MfgDate}) then
" "
else
Totext ({TechWorksheetInfo.MfgDate})
Just what I thought it was!

Rich Hays
Work 9-11 or 616-696-0020
Being able to get CAPE off a Skew T chart is important in this hobby.
Work 9-11 or 616-696-0020
Being able to get CAPE off a Skew T chart is important in this hobby.
- brianp87
- 3K Time Lord Contributor
- Posts: 3133
- Joined: Tue Oct 10, 2006 6:11 am
- Location: Arizona
- Contact:
Re: Manufacture date
Its Spanish to meRich wrote:This:
if IsNull({TechWorksheetInfo.MfgDate}) then
date(0,0,0)
else
DTStoDate({TechWorksheetInfo.MfgDate})
Should be:
if IsNull({TechWorksheetInfo.MfgDate}) then
" "
else
Totext ({TechWorksheetInfo.MfgDate})
Just what I thought it was!
- Rich
- 4K Ultra Amazing Contributor
- Posts: 4049
- Joined: Tue Sep 06, 2005 10:16 am
- Location: Somewhere in Michigan
- Contact:
Re: Manufacture date
Yah, I was thinking someone spilled his bowl of Alphabet soup on the key board. This is a reason I laugh when we ask something "simple" to be done. Most have no clue what has to be done to make it work.
Rich Hays
Work 9-11 or 616-696-0020
Being able to get CAPE off a Skew T chart is important in this hobby.
Work 9-11 or 616-696-0020
Being able to get CAPE off a Skew T chart is important in this hobby.
- Johnny5
- 500 Club: Champion Contributor
- Posts: 654
- Joined: Wed May 26, 2004 2:03 pm
- Location: John Dwulet
Re: Manufacture date
Just in time for Christmas... here are both tech worksheets with the MFG fixed. http://www.m1faqs.com/fix/SE/TechWorksheets.exe
Happy Holidays,
JD
Happy Holidays,
JD
John Dwulet AKA: Johnny5
Retired - Mitchell1
Retired - Mitchell1