Manufacture date

Manager SE specific technical issues
Locked
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Manufacture date

Post by brianp87 »

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.
User avatar
ricmorin
5K Holy Smokes Contributor
5K Holy Smokes Contributor
Posts: 5997
Joined: Mon Jul 25, 2005 10:11 am
Location: New Hampshire
Contact:

Re: Manufacture date

Post by ricmorin »

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
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Re: Manufacture date

Post by brianp87 »

I can post more if needed.
Attachments
mitch 1.JPG
mitch 1.JPG (20.81 KiB) Viewed 7799 times
mitch 2.JPG
mitch 2.JPG (18.13 KiB) Viewed 7799 times
mitch 3.jpg
mitch 3.jpg (137.23 KiB) Viewed 7799 times
User avatar
ricmorin
5K Holy Smokes Contributor
5K Holy Smokes Contributor
Posts: 5997
Joined: Mon Jul 25, 2005 10:11 am
Location: New Hampshire
Contact:

Re: Manufacture date

Post by ricmorin »

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.
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
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Re: Manufacture date

Post by brianp87 »

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.
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Re: Manufacture date

Post by brianp87 »

I just found one were its blank on the tech sheet but inputed on the vehicle.
Attachments
mitch 1.JPG
mitch 1.JPG (21.6 KiB) Viewed 7797 times
mitch 2.jpg
mitch 2.jpg (128.43 KiB) Viewed 7797 times
User avatar
ricmorin
5K Holy Smokes Contributor
5K Holy Smokes Contributor
Posts: 5997
Joined: Mon Jul 25, 2005 10:11 am
Location: New Hampshire
Contact:

Re: Manufacture date

Post by ricmorin »

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
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Re: Manufacture date

Post by brianp87 »

Thank you.
User avatar
Silky7
System Guru / Moderator
System Guru / Moderator
Posts: 1114
Joined: Mon Dec 31, 2007 10:07 am

Re: Manufacture date

Post by Silky7 »

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.
brianp87,

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
User avatar
Johnny5
500 Club: Champion Contributor
500 Club: Champion Contributor
Posts: 654
Joined: Wed May 26, 2004 2:03 pm
Location: John Dwulet

Re: Manufacture date

Post by Johnny5 »

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
John Dwulet AKA: Johnny5
Retired - Mitchell1
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Re: Manufacture date

Post by brianp87 »

Great thank you
User avatar
Rich
4K Ultra Amazing Contributor
4K Ultra Amazing Contributor
Posts: 4049
Joined: Tue Sep 06, 2005 10:16 am
Location: Somewhere in Michigan
Contact:

Re: Manufacture date

Post by Rich »

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! :lol:
Rich Hays
Work 9-11 or 616-696-0020
Being able to get CAPE off a Skew T chart is important in this hobby.
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Re: Manufacture date

Post by brianp87 »

Rich 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! :lol:
Its Spanish to me
User avatar
Rich
4K Ultra Amazing Contributor
4K Ultra Amazing Contributor
Posts: 4049
Joined: Tue Sep 06, 2005 10:16 am
Location: Somewhere in Michigan
Contact:

Re: Manufacture date

Post by Rich »

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.
User avatar
Johnny5
500 Club: Champion Contributor
500 Club: Champion Contributor
Posts: 654
Joined: Wed May 26, 2004 2:03 pm
Location: John Dwulet

Re: Manufacture date

Post by Johnny5 »

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
John Dwulet AKA: Johnny5
Retired - Mitchell1
User avatar
brianp87
3K Time Lord Contributor
3K Time Lord Contributor
Posts: 3133
Joined: Tue Oct 10, 2006 6:11 am
Location: Arizona
Contact:

Re: Manufacture date

Post by brianp87 »

Awesome as always great support. Merry Christmas.
Locked

Return to “Technical Issues”