Search results

  1. A

    How to write dd/mm/yyyy format to file?

    I get dd/mm/yy in output file rather than dd/mm/yyyy. Using the following codes I expect the output to be abc,14/05/2013 but got abc,14/05/13 instead. How can I output yyyy? output to "/tmp/test.txt". DEFINE VARIABLE var-date AS date NO-UNDO format "99/99/9999". define variable var-char as...
  2. A

    Help to export decimal to outptu file with trailing zeros

    Tried a number of different ways to export trailing zeros but unsuccessful. Please help. Much appreciate. output to "/tmp/test.txt". DEFINE VARIABLE var-price AS decimal NO-UNDO. var-price = 123.1230. export delimiter "," "bac" var-price format "999999.9999". Output "bac",123.123 Problem...
Back
Top