Hi evreybody,
i have a problem. i work on a qlikview app that i've almost finish,
but my company is a big company and i have a lot office.
in my script the path is [Q:\DT-MOAD-HTA\....
that path work on my office but in another office this server it's not always "Q" .
I want to find some way to fix that.
Thanks
UNC stands for Universal (or Uniform or Unified) Naming Convention and is a syntax for accessing folders and files on a network of computers. The syntax is as shown:
\\<computer name>\<shared directory>\
followed by any number of directories and terminated with a directory or file name.
The computer name is always preceded by a double backward slash (\\).
In UNC, the computer name is also known as the host name.
You need to use relative path in your script, Check this out -
Hi ,
May be try:
Path = [...\...\....\filename]
Thx guys,
i know what relative path do, i dont want that because they want to copy the qvw file in their computer (thats the problem)
so i heard somting called UNC path but i dont know how to apply to qlikview.
Thanks
Hi,
Try:
\\<computer name>\<shared directory>\
like this?
\\servername\d$\Folder1\Folder2\xxx.qvw
UNC stands for Universal (or Uniform or Unified) Naming Convention and is a syntax for accessing folders and files on a network of computers. The syntax is as shown:
\\<computer name>\<shared directory>\
followed by any number of directories and terminated with a directory or file name.
The computer name is always preceded by a double backward slash (\\).
In UNC, the computer name is also known as the host name.
i want to thanks all of you. Thats work great.
Thanks you