Hi,
I would like to change the date format in a dw field from yyyy-m-d to m/d/yyyy, and have that format displayed regardless of the windows date format. How can I do this... Thanks
Hi,
I would like to change the date format in a dw field from yyyy-m-d to m/d/yyyy, and have that format displayed regardless of the windows date format. How can I do this... Thanks
Sometimes - especially when copying columns from one datawindow to another - internally the id= values "scr*w up".
The "id=number" of a column shown on the dw, has to correspond to the order of the columns in the section:
table(column=(type=char(3) update=yes ... name=currency dbname="cc_currency.currency" )
column=(type=char(24) update=yes .... name=description dbname="cc_currency.description" )
column=(type=char(2) update=yes ... name=short_code dbname="cc_currency.short_code" )
for the column "currency" the corresponding id would be "id=1"
for "description" id=2
for "short_code" id=3
So maybe it's a good idea to check on all the columns having the corresponding internal id's in the dw source code. Or, even better, create the dw all over if that's less work than checking all the id values.
regards