Reputation: 1
I want to export System date using TI. I tried something like enter image description here
I also tried to export the date I can get from TODAY() in TI but when i tired to export it to a SQL table it gave error. I am assuming the reason for that was its format.
Later I also want to export the date of the respective data.
Upvotes: 0
Views: 158
Reputation: 149
I suggest you to try the TIMEST function if I clearly understood your issue.
Here is a linked of the IBM doc:https://www.ibm.com/support/knowledgecenter/SSD29G_2.0.0/com.ibm.swg.ba.cognos.tm1_ref.2.0.0.doc/r_tm1_ref_timst.html
You may look to others functions in this documentation. Here is a sample of code to how use it:
cTimeStamp = TimSt( Now, '\Y\m\d\h\i\s' );
Upvotes: 0