× 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.



Ed and Mary,

We may get "into trouble" by posting stuff that is not MI related.  However, 
the answer to your question, if I understand correctly, is you must use the 
DIGITS scalar function to translate the numeric field into a string so you can 
then SUBSTR it.  The following example is, hopefully, relevant:  

/*------------------------------------------------------------------------*/
/* This query will show all the Invoices created        */
/* after 8 July that do NOT have a valid Order Time  */
/* placed into the Invoice Header record.  It also      */
/* is an example of how to display an 8.0 "date"      */
/* field in mm/dd/yy format (the century is dropped  */
/* for display purposes).                                        */
/*------------------------------------------------------------------------*/
    Select      All
                ENINV#,
  SUBSTR(DIGITS(ENINDT),5,2) || '/' ||
  SUBSTR(DIGITS(ENINDT),7,2) || '/' ||
  SUBSTR(DIGITS(ENINDT),3,2) AS
                InvDate,
                ENORD,
  SUBSTR(DIGITS(ENORDT),5,2) || '/' ||
  SUBSTR(DIGITS(ENORDT),7,2) || '/' ||
  SUBSTR(DIGITS(ENORDT),3,2) AS
                OrdDate,
                ENORTM,
                ENTYSL

    From        IHA

    Where       ENINDT  > 19990708
     and        ENORTM  = 0

/* ---  End of example  --- */

You may contact me "off-list" for clarification if desired.

rich hart

As an Amazon Associate we earn from qualifying purchases.

This thread ...


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.