7/8/2025 2:34:22 PM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
|
|
|
|
Get the location of the Document Library?
Posted: 18 Nov 09 7:30 AM
|
I need to get the location of the server documents for my SLX installation, is the only way to do a SELECT from the SYNCSERVER table, or is there a built-in function to do this?
Do the SYNCSERVER records exist on setups not using remote sync? Basically, I need SYNCSERVER.SERVERPATH.
thanks,
Mark |
|
|
|
Re: Get the location of the Document Library?
Posted: 19 Nov 09 2:45 AM
|
Are you looking for the Library or for the Attachments folder?
Use the Following function: Application.BasicFunction.GetAttachmentPath [This will give you the "Documents" path]
For a typical Installation of SLX, if you the Library Path, you should be able to replace \Documents with \Library: e.g. docPath = Application.BasicFunction.GetAttachmentPath libraryPath = Replace(docPath, "\Documents", "\Library")
|
|
|
|
Re: Get the location of the Document Library?
Posted: 19 Nov 09 3:21 AM
|
I actually want the one above that, although perhaps I'm storing things in the wrong place.
I have an external app that generates charts for each entity in SLX, and I've told them to put these in it's own folder, on the assumption that documents and library are already "used" by SLX and I didn't want to collide with anything. So I now have:
\\servername\saleslogix\documents\... \\servername\saleslogix\library\... \\servername\saleslogix\charts\...
With the first two being the usual SLX paths. |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|