I'm guessing this is a databasic/jQL function: You could easily write some databasic to do this 001 FUNCTION BACKWARDS.DATE(Date) 002 NewDate=OCONV(Date,'D2Y'):' ':OCONV(Date,'DM')"R%2":' ':OCONV(Date,'DD')"R%2" 003 RETURN (NewDate) This is consumed by any databasic code by adding the line DEFFUN BACKWARDS.DATE at the beginning of the program You can then use a statement such as CRT 'Weird Date Format :':BACKWARDS.DATE(MyInternalDateVar) You can use the function in a similar way in a jQL Dictionary Hope this helps Simon
On Wednesday, 26 June 2013 20:55:43 UTC+1, itzsak wrote: > Dear All > > Is there any function already available with jbase to get the date in > below format. > > YY MM DD > 13 06 26 > > Many thanks for your time > > Cheers, > -- -- IMPORTANT: T24/Globus posts are no longer accepted on this forum. To post, send email to [email protected] To unsubscribe, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jBASE?hl=en --- You received this message because you are subscribed to the Google Groups "jBASE" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
