× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



At the point I'm checking, I don't know the From Format of the date.

The reason why I'm doing this conversion is to cater for an 8 long date
(e.g. *ISO) and a 6 long date (*YMD)

Here's the code just after my 8 to 6 conversion:
           when FromFormat = '*ISO';
              Test(DE) *ISO LongDdate;
           when FromFormat = '*YMD';
              Test(DE) *YMD ShortDate;

Regards,
Terry

-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Michael_Schutte@xxxxxxxxxxxx
Sent: 09 August 2006 16:26
To: RPG programming on the AS400 / iSeries
Subject: Re: Converting from 8 long dec to 6 long dec

V5R3

ShortDate = %Dec( %Date(LongDate:*ISO) : *YMD);


What I've done on earlier releases (not sure when I was able to first
use)

ShortDate = %Int( %Char( %Date(LongDate:*ISO) : *YMD0 ) );

rpg400-l-bounces@xxxxxxxxxxxx wrote on 08/09/2006 11:11:46 AM:

Hi All

I'm sure the answer is easy, my brain isn't engaging today.

I have the following:

     D  LongDate       S              8S 0
     D  ShortDate      S              6S 0
      /FREE
           shortdate = %dec(Longdate : 6 : 0);
      /END-FREE

When running this, I get a "receiver too small" error.

So, my alternative (that works) is:
          shortdate = %dec(%subst(%char(Longdate) : 6):6:0);

Is there a better way?  I would have thought the first example would
work and don't understand why not.

Any ideas or thoughts?

Regards,
Terry
PS:  Obviously I understand that this can result in the loss of
data,
and that's perfectly ok in my scenario.


This message may contain confidential information and is intended
only for the individual named. If you are not the named addressee
you should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately by e-mail if you have received this e-
mail by mistake and delete this e-mail from your system. E-mail
transmission cannot be guaranteed to be secure or error-free as
information could be intercepted, corrupted, lost, destroyed, arrive
late or incomplete, or contain viruses. Although the company has
taken reasonable precautions to ensure no viruses are present in
this e-mail, the company cannot accept responsibility for any loss
or damage arising from the use of this e-mail or attachments. Any
views or opinions presented in this e-mail are solely those of the
author and do not necessarily represent those of the company.


--
This is the RPG programming on the AS400 / iSeries (RPG400-L)
mailing
list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.


--
This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing
list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.