
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
QvdCreate time
hi Team,
i am trying top get the create time for the QVD's. I am using below code and every time QVD create time is giving null().
Can anyone please tell me what is wrong with the code?
set vQVD = '..\QVD\';
QVD1:
Load * Inline [
ID, Sales,State
1, 200, NYC
2, 100, NJ
3, 260, MA];
Store QVD1 into $(vQVD)QVD1.(qvd);
Let vQVDCreateDate1 = QvdCreateTime('$(vQVD)QVD1.(qvd)'); // its giving null not sure the problem.
Thanks
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this working for me.
set vQVD='D:\Suresh';
QVD1:
Load * Inline [
ID, Sales,State
1, 200, NYC
2, 100, NJ
3, 260, MA];
Store QVD1 into [$(vQVD)QVD1.(qvd)];
Let vQVDCreateDate1 = QvdCreateTime('$(vQVD)QVD1.(qvd)');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this working for me.
set vQVD='D:\Suresh';
QVD1:
Load * Inline [
ID, Sales,State
1, 200, NYC
2, 100, NJ
3, 260, MA];
Store QVD1 into [$(vQVD)QVD1.(qvd)];
Let vQVDCreateDate1 = QvdCreateTime('$(vQVD)QVD1.(qvd)');
.png)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It appears the relative path you were setting may have been the issue, the Help does not show that in an example, so I am not sure if relative paths work here, just wanted to post this for future folks.
Regards,
Brett
I now work a compressed schedule, Tuesday, Wednesday and Thursday, so those will be the days I will reply to any follow-up posts.
