FILESAVE REPORT PATH - Are we limited to one location?

**self-hosted organization*

I see the FILESAVE REPORT PATH in T_DEFAULTS, but here is the thing - Marketing wants there reports in one place, Finance another, Philanthropy another, etc. Can I make that happen? Are all the reports just going to be save in this location regardless of who scheduled it?

My over all goal is to automate saving the pdf to the location that they want.

Thanks,

Ashley Elliott

Database Administrator

St. Louis Symphony Orchestra

314-286-4198

ashleye@slso.org

Parents
  • Someone just suggested to me that I use command prompt to move files... sounds interesting and I am going to investigate. Does anyone have experience using that??

    Ashley

  • "Command prompt" isn't really specific enough unfortunately, but what you could do is create a script (this could be a batch file, powershell script, or vbscript even depending on what you're most familiar with) that moves files to different locations based on a set of rules that you would program into the script.

    Then you could use a scheduled task to periodically execute your script every n minutes, so that the reports are automatically moved to the desired folders.

    If you wanted to get *fancy*, you could even have your script query the API to find out which user scheduled the request based on the request_no contained in the file name, and route the destination based on the user...

Reply
  • "Command prompt" isn't really specific enough unfortunately, but what you could do is create a script (this could be a batch file, powershell script, or vbscript even depending on what you're most familiar with) that moves files to different locations based on a set of rules that you would program into the script.

    Then you could use a scheduled task to periodically execute your script every n minutes, so that the reports are automatically moved to the desired folders.

    If you wanted to get *fancy*, you could even have your script query the API to find out which user scheduled the request based on the request_no contained in the file name, and route the destination based on the user...

Children