SRW.SET_PDF_ACTION function with local path

Hello,
I need to lunch a new window browser from PDF generated by Report to start a
Web Form.
The documentation says i can put a local command in the SRW.SET_PDF_ACTION.
my command is : C:\Program Files\Internet Explorer\IEXPLORE.EXE
But when i generate the report from Report Server i get the following message :
Unable to find file://c:\\machine.7777\reports\\Program
Any idea ?

Hello,
Just add userid= in the URL , the reports Servlet will use the cookie to retrieve the
userid info provided for the execution of the first Reports
Regards

Similar Messages

  • Using functions with direct path load

    When loading data with sqlldr is it possible to have functions ( to alter the data) when loading in a direct path? Thanks

    When loading data with sqlldr is it possible to have functions ( to alter the data) when loading in a direct path?Did you try it? Which version do you use?
    How can I speed up the load?
    Did you study chapter 11 in the utilities guide Conventional and Direct Path Loads?
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/ldr_modes.htm#i1011553

  • EPMSAVEDATA Function with local member

    Hello Experts,
    I have an Input template where in I have account, Version and time in row/column axis. In accounts I have hierarchial members selected. Besides account I have a local member (Property of Account) to get the base Level account where I want to get the amount posted to. At the end of column I have EPM save function where in I have selected Dummy Account instead of account.
    Senario:
                                                                                                        Period
                                                                                                        Version
    ACCOUNT           Dummy Account
    Material Ac         6200000(Property of hierarchial account)
    When I save, it shows me 2 record saved. 1 against Account and other against Dummy Account.
    Regards,

    Hello Vadim
    In Column D I have Account which is a Dimension and members are Hierarchial members.
    In Column D I have put property of Accounts as GL's to which I want the planned figure to be saved.
    In Column BF onwards I have save function written but if i save data F77 it Returns saying 'There is no data to save'
    When I save in K Column it gets saved.
    In Sheet Options my 'Use as Input Form' is ticket.
    In Edit Report-->Options, I have unticked 'Use as Input Form'
      Is my understanding correct about your response above....
    Just 1 further question:
      I have 2 Dimension COst Center and Partner Cost Center which have same members. So there is issue of ambigious members coming up. How can I get over it in EPMSAVEData with out using Pre Fixes.
    Regards

  • Create book file on basis of txt file with local paths?

    I would like to be able to create a book file in FrameMaker 7 or FrameMaker 9 on the basis of a  .txt file reading for instance:
    c:/documents/job.fm
    c:/documents/15ss.fm
    c:/documents/sdf/job1.fm
    Preferrably I would like to be able to paste the lines into a prompt and have a script compiling the book file.
    Is it possible to write a script using FrameMakers API which would do this trick? It is probably possible to use FrameScript but I am not too keen on FrameScript and would rather avoid it.
    Who should one ask in order to have such a thing written?
    regards
    Bjørn

    StudioSm wrote:
    I would like to be able to create a book file in FrameMaker 7 or FrameMaker 9 on the basis of a  .txt file reading for instance:
    c:/documents/job.fm
    c:/documents/15ss.fm
    c:/documents/sdf/job1.fm
    Preferrably I would like to be able to paste the lines into a prompt and have a script compiling the book file.
    Is it possible to write a script using FrameMakers API which would do this trick? It is probably possible to use FrameScript but I am not too keen on FrameScript and would rather avoid it.
    Who should one ask in order to have such a thing written?
    regards
    Bjørn
    I started using FrameMaker in release 2.x, while I was using x-roff on UNIX; x-roff used a "makefile" to create books from independent chapters, doing all the pagination, numbering, etc. I suspected that FrameMaker's book file worked like that, but it wasn't until many years later that I met someone who'd worked with FrameMaker version 1.x, who confirmed my suspicion.
    Although I can't tell you how to do it, I'm certain that it can be programmed as you want, and that someone will post more information.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • SRW.SET_PDF_ACTION reference to directory Names with spaces

    Hello,
    I'm trying to create a hyperlink that will spawn a new browser from a PDF report by using the SRW.SET_PDF_ACTION function; however this is not working when my directory structure has spaces in the names
    SRW.SET_PDF_ACTION('C:\"Program Files"\"Internet Explorer"\iexplore.exe www.yahoo.com');
    SRW.SET_PDF_ACTION('C:\Program Files\Internet Explorer\iexplore.exe www.yahoo.com');
    Each of these returns an error - This does work when I place iexplore.exe in folders without spaces.
    Any suggestions?
    TIA
    Brian

    Acrobat does not support automation of the Reader-extension process by any method. It is a feature which Adobe reserve solely for their LiveCycle server product range.

  • Extending a function with logic stored in a table?

    Let's say I have a function with local variables and I have a select statement in it. This statement populates (using into) these variables, one of which contains a condition which has the name of some local variables in it. I would like for this to be evaluated. Is this possible?
    for example, if I have variables named local_value1, local_value2 and local_condition and local_condition is loaded from a table column in which the expression is: local_value1 < local_value2
    I'd then need to do a: if local_condition then blah....
    I've been looking at ways to use execute immediate to do this, but it doesn't look like I can do that, as it wont do substitution of local variables, only bound variables.
    I've done this with various scripting languages in the past, but I've not seen anything on the forums on how to do this with pl/sql.
    Any suggestions?

    wether this is really meaningful or not ... here is a way:
    michaels>  CREATE TABLE demo_logic
    ( demo_logic_id NUMBER,
    demo_logic_statement VARCHAR2(4000),
    CONSTRAINT demo_logic_pk PRIMARY KEY (demo_logic_id) ENABLE
    Table created.
    michaels>  -- The data:
    michaels>  INSERT INTO demo_logic
         VALUES (1, 'local_value1 < local_value2')
    1 row created.
    michaels>  INSERT INTO demo_logic
         VALUES (2, '(local_value1 = local_value2) or (local_value1 < 7)')
    1 row created.
    michaels>  -- Then the function:
    michaels>  CREATE OR REPLACE FUNCTION func_demo (condition_id IN NUMBER)
       RETURN NUMBER
    IS
       local_value1            NUMBER                                 := 5;
       local_value2            NUMBER                                 := 2;
       local_value_to_return   NUMBER                                 := 0;
       local_condition         demo_logic.demo_logic_statement%TYPE;
    BEGIN
       SELECT demo_logic_statement
         INTO local_condition
         FROM demo_logic
        WHERE demo_logic_id = condition_id;
    --next we would evaluate 'local_condition' and if true we would then continue and do more work
    --and assign something to local_value_to_return.
       EXECUTE IMMEDIATE 'DECLARE
                            local_value1 number := :1;
                            local_value2 number := :2;
                          BEGIN
                            IF '
                         || local_condition
                         || ' THEN
                              :out := 1;
                            ELSE
                              :out := 0;
                            END IF;
                          END;
                   USING local_value1, local_value2, OUT local_value_to_return;
       RETURN local_value_to_return;
    END func_demo;
    Function created.
    michaels>  SELECT func_demo ('1') res
      FROM DUAL
           RES
             0
    1 row selected.
    michaels>  SELECT func_demo ('2') res
      FROM DUAL
           RES
             1

  • How can I get a local path of the local disk with swf

    Since FileReference.download() doesn't download multiple
    files, I want to download files with php ftp_get by FTP.
    I need to pass the local path of the local disk where I can
    download the files from a remote serveur. How can I get a prompt to
    have a user choose a folder on his computor (local disk), if any
    way possible?

    OK, at least 3 is working.
    I don't know how you have a Tape Recorder icon on your Home Screen. I cannot add one myself. But, I am running Holo Launcher in replacement of the default LG "Optimus" User Interface. It's much better in my opinion.
    Try long pressing the icon and select Edit and maybe you can change some attribute of the icon.
    Another thing you could do, is long-press an empty area of your desktop, to add an icon. Select Shortcut, then Select Contact, and scroll through your contact list and choose the contact that you added for *86.
    You realize if you have voice mail you haven't heard, there is a tape recorder icon in the notification bar, which you touch and pull down, then press it to dial voicemail.
    If that functionality doesn't work, you MIGHT want to consider doing a factory data reset on your device, but that is going to nuke all your personalizations and cause you work to set up again.

  • The DFS Replication service stopped replication on the folder with the following local path: C:\Windows\SYSVOL\domain

    Hi,
    i am facing the problem SVSVOL folder replication, i also checked dcdiag and result is DFSRevent fail .
    in event log i found the event Error:
    The DFS Replication service stopped replication on the folder with the following local path: C:\Windows\SYSVOL\domain. This server has been disconnected from other partners for 173 days, which is longer than the time allowed by the MaxOfflineTimeInDays parameter
    (61). DFS Replication considers the data in this folder to be stale, and this server will not replicate the folder until this error is corrected.
    To resume replication of this folder, use the DFS Management snap-in to remove this server from the replication group, and then add it back to the group. This causes the server to perform an initial synchronization task, which replaces the stale data with fresh
    data from other members of the replication group.
    Additional Information:
    Error: 9061 (The replicated folder has been offline for too long.)
    Replicated Folder Name: SYSVOL Share
    Replicated Folder ID: 427F62C0-0316-4DEA-B7FA-06A7D6C06A4F
    Replication Group Name: Domain System Volume
    Replication Group ID: CBED9B54-58D5-4081-ABD0-0C9D4EBA6027
    Member ID: 67C302ED-F82A-4FC1-9A2C-62DBCC6BCA2A
    please suggest me the solution..

    > disconnected from other partners for 173 days, which is longer than the
    > please suggest me the solution..
    Increase the MaxOfflineTimeInDays. Try google or bing :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • VI Server - Open VI Reference is using local path, not remote

    First time posting to NI Developer Zone, so bear with me.
    I have a PXI-1050 chassis with a PXI-8187 controller that runs LabView RT.  I have set up this PXI system to utilize a VI server on port 3363 and opened access to my host PC which runs LabView 8.2 with the RT module.
    I am having trouble openning a remote VI using the VI Server and the "Open VI Reference" function.  I am fairly certain that the VI server is connecting using the "Open Application Reference" function, but it seems that the vi I wish to run cannot be found.
    Here is the error that is thrown back to me
    "Error 7
    Possible reason(s):
    LabVIEW:  File not found. The file might have been moved or deleted, or the file path might be incorrectly formatted for the operating system. For example, use \ as path separators on Windows, : on Mac OS, and / on Linux. Verify that the path is correct using the command prompt or file explorer.
    =========================
    NI-488:  Non-existent board.
    VI Path: D:\LabView_Projects\VI_Server_Test_Project\/ni-rt/startup/temp_1.vi"
    You will notice that the "Open VI Reference" is prepending the local path 'D:\LabView_Projects\VI_Server_Test_Project\' to my remote path.  If I specify the path using Windows style path, e.g. 'c:\ni-rt\startup\temp_1.vi', again the remote VI cannot be found.  I think I am missing something trivial, but I don't know what it is.
    Thoughts?

    Several things:
    1. When u open the vi reference u must use and invoke node to make the Run vi, if you dont make it the vi is loaded but not running.
    2. Insert correctly the path on your RT and the IP of your RT target
    3. is better to have the variables on your HOST than on your RT becoz of two things:
                - Not to use resources of your RT system as memory etc... is better to use the host ones that are more available
                - The library needs to be deployed when running the vi on the host. If you put it on the RT it would need to be redeployed, so it is better to leave it on the host becoz of that.
    4. Then as the library is on the host it needs to be deployed with the proper invoke node inside a stacked sequence to ensure is the first thing you do.
    5. The enable RT fifo on the variables is used only to pass data between different vi's or processes inside the RT, it has no sense to enable it when sharing data RT - Host coz it is not possible, Shared variable work with TCP/IP not as RT FIFO.
    See the attached vi for extra info.
    I give u these extra links for your info:
    http://digital.ni.com/public.nsf/websearch/F4010DD5C8D1B13D862565BC007384E9?OpenDocument
    http://digital.ni.com/public.nsf/websearch/04D9A85B6967EE87862571140065EEC6?OpenDocument
    http://digital.ni.com/public.nsf/websearch/48D244EC86971D3986256BD4005CCC28?OpenDocument
    Regards,
    Jaime Cabrera
    NI Applications Engineering Spain
    Attachments:
    Compartida.zip ‏66 KB

  • How can I extract a file name / path from a local path variable in TestStand?

    I have local TestStand string variable, call it 'locals.path', that contains a path to a file including the file name (c:\inputs\input.txt). I need to be able to split up the path (c:\input) and the file name (input.txt) and save them into 2 local variables. What is the best way to do this?
    After reading through some of the other forums, it looks like there are some built-in functions that can accomplish this, but I am unable to find how to use them anywhere on the NI web site. One forum said to use the File I/O>Strip Path.file function. How is this called? Is this function in a DLL?
    I know that there are a number of DLLs that are installed with TestStand into the c:\windows\system32 directory. One forum made note of CVI_OpenFile / CVI_ReadFIle functions in the cvirt.dll that I used to solve a problem that I had in the past. The problem is that I had no idea that that these functions even existed and would have never known unless a similar question had been posted previously. Is there some place that these DLL function interfaces are defined or documented? Is there a function that can extract the file name out of a string for me?
    Thanks,
    Mike

    Hi,
    There sound like functions in say LabVIEW or CVI.
    I have attached a small example which may help. (I have not allowed for any error trapping, if say you dont find the file and cancel)
    Regards
    Ray Farmer
    Message Edited by Ray Farmer on 10-16-2006 10:04 PM
    Regards
    Ray Farmer
    Attachments:
    Sequence File1.seq ‏33 KB

  • Can't use voice/video functionality with external domain connected users through federation

    Hello All,
    Hope you keeping well..!!
    We are communicating with external customers lync server through federation option setup on our corporate lync server.  We have received the federation setting from the customer with SIP address which has been setup on our corporate lync servers after
    that we were able to browse the customer contact through corporate lync account.
    We were also able to chat with external customer but however voice/video functionality are not working through same session.  Whenever we try to dial out external customer lync account it ended with error message "call ended due to network issue".
    We have checked the setting from corporate lync servers and network point of view but doesn't find any issue which cause the disconnection to voice/video over lync.  Could you pl help or guide with the way to resolve the issue.
    Thanks, MK

    Thanks for your reply.<o:p></o:p>
    Audio/Video works fine within corporate when dial any lync contact.  We only have issue while trying to use the same functionality with any other
    external lync contact configured over federation option.<o:p></o:p>
    We already checked the security rules and all required ports are open, as confirmed by local resolver group.<o:p></o:p>
    We have checked with external parties and according to them their systems are hosted by Microsoft as part of office 365 suite and they already have
    federation option for 17 different customers which works fine.  Which means issue must be your local end.<o:p></o:p>
    Is there any tool available to identify the issue from client end?<o:p></o:p>
    Also I have a question here....In my corporate environment...client is sitting in India and lync servers are hosted in UK and users connect to it
    over MPLS route.  In Client lync configuration we have  internal/external servers configured .....so when i tried to make a voice call with external lync users then I see from netstat -a command that traffic hitting to multiple public IP addresses
    directly from my machine..<o:p></o:p>
    Does it mean that client required internet connectivity with specific open media ports to connect with external parties for video/voice? or in ideal
    case all request should handle by corporate internal server which should took UK internet path to connect with external lync contact?
    Thanks, MK

  • Creating a symlink directory on a network share to a path below a mapped drive letter, local path, or UNC path does not work

    Am I correct in assuming I can not create a `symlinkd` to a network share, local path, or a UNC path on a network share that will be accessible by clients?
    ###Mapped drive letters don't work:
    1) navigate to a network share:
    pushd \\windows2008server\share\
    2) make a hardlink:
    mklink /d test_sharedir t:\directory\
    dir .\test_sharedir
    #Directory of Z:\test_sharedir
    #File Not Found
    UNC paths don't work:
    1) navigate to a network share:
    pushd \\windows2008server\share\
    2) make a symlink:
    mklink /d test_dirunc \\windows2008server\share
    dir .\test_dirunc
    #Directory of Z:\test_dirunc
    #File Not Found
    I can create a functional `symlinkd` on a local drive to a mapped drive letter or a UNC path.
    Are my assumptions above correct?
    We are in the middle of a migration and have created two symlinkd to UNC paths for shared DLLs, one below c:\windows\system32\ (directing to a share containing 64-bit DLLs) and one below c:\windows\syswow64 (directing to a share containing 32-bit DLLs).
    On the file server, we have had a path to 32-bit DLLs (from Windows 7 clients: s:\dll\).  I am attempting to rename this directory so that it is accessible via "s:\dll32\" and would like to create a symlinkd that links "s:\dll" to
    "s:\dll32" [again where S: is a mapped drive on a Windows 2008 server].  How do I do this?
    Thanks,
    Matt

    Hello Mandy,
    The link you sent me is for Netapp CIFS server daemon contained within DataOnTap (the Netapp OS) to follow symlinks.  I am inquiring about the Microsoft products Windows Server and Windows 7.
    To gain a better understanding of the Microsoft Windows Server and client (Windows) CIFS stacks and interaction of the stacks, I have referred to Figure 6 "Server Message Block Server Model" within the following (albeit older) document: http://download.microsoft.com/download/2/8/0/2800a518-7ac6-4aac-bd85-74d2c52e1ec6/tuning.doc
    You will see the following:
    I assume that the Windows Server CIFS server service must be "smart enough" to determine that a CIFS client is attempting access to a SYMLINKD and actually fill the request by following the SYMLINKD.  The CIFS server service does not appear
    to operate like this.
    1) Am I correct in my assumption that the CIFS client (redirector) and the CIFS server (server) do not following symbolic links (whether they be file or directory)?
    2) If not, how do I submit a feature request for this so that it can be reviewed and approved or not approved for inclusion/hotfix release?
    Thanks for your time,
    Matt Brown
    [UPDATE]
    Note that you can use a `directory junction` instead of using a SYMLINKD, to link to LOCAL resources (source). However, `directory junctions` do not allow access to resources over UNC.

  • Order split functionality with PP-PI

    Hello Forum,
    I am not sure whether we can use the order split functionality with process orders .  I had implemented it earlier for a client with discrete MFG production type but not aware whether we can do so in process industry (couldn't find the provision to do so in process order operation overview screen function menu path).
    Cheers
    Kaushik

    Hi Kaushik,
    Yes your right.
    Order split functionality is only applicable for Discrete manfg not for PI industry this is major difference between PI & DM.But you can achieve this at the time of process order confirmation.
    Example :-In the Goods Movement Overview of Process Order confirmation FG material is done Auto GR. This FG material Quantity needs to be splitted. Push button "Split" is provided in the bottom of the Goods Movement Overview screen of Process Order Confirmaton.
    Say FG quantity = 25 KG  which is to be confirmed. Client wants to split the FG quantity into 1 KG wise, for this he needs to split into 25 times.
    You can implement this by using below work order
    Please use the WORKORDER_GOODSMVT for splitting the GR in Confirmation
    This u can implement in PI.Also check Mr.Paulo reply that could be one possibility.
    check & revert.
    TnX

  • AppV 5 slow to refresh with roaming profile (no redirects) but fast with local profile

    Hi,
    I have an issue I can't get thought out. I have an AppV5 SP3 full infra, with SMB share and local caching of packages enabled. Everything works from a functional level. However I have an issue where users with a roaming profile get a very slow AppV refresh
    during login.
    I created a few testaccounts, a few with local profile and a few with roaming profiles. For these testusers there are NO folder redirects. The only difference between them is local profile or roaming profile.
    When I login with a local-profile user initially, the AppV client rather slowly refreshes the applications and shortcuts. It generates quite some CPU load on the RDS host, but as soon as the shortcuts are placed everything is fine. When I log that user off,
    and log in again, the shortcuts are there immediately and I can immediately start the applications (Office 2010 for example). Blazing fast. Also when logging in, the refresh-UI is there for about half a second, it really flashes and it's done.
    Then with a testuser with roaming profile, the initial refresh is about the same. But when I logoff that user and login again, it's all very slow. The shortcuts are there but blank initially, it takes about 5-10 seconds to get the correct icon. It takes
    much longer before the refresh actually starts (sometimes up to 30 seconds after login), and it takes 5-10 seconds to do the refresh, with 100% cpu load on the thread AppVclient.exe is running on. Also right after loging in when the shortcuts are blank they
    don't work until they get the proper icon. WHen everything is refreshed it works all fine though. It's just painfully slow at start.
    I don't understand this. I can reproduce this every single time. Without folder redirects I don't see the difference between roaming and local profile from AppV perspective, as the roaming profile is of course copied to the server and in that sense the server
    just works with a local copy anyway.
    Anyone encountered this, and how to troubleshoot, or better fix this?

    So is the fact that there is a 5-10 second delay during refresh actually an issue? What I mean by that is - are any users comparing the local profiles with roaming profiles experience, or complaining that the delay is there?
    Roaming profiles and Folder redirection are of course very simple to configure; however for the best user experience I recommend managing profiles with a real profile management solution.
    If you have MDOP, then you'll also have access to UE-V. You've mentioned your environment is RDS, which sadly doesn't get UE-V, even though you have App-V.
    Here are some resources on UE-V + App-V and what's required when managing App-V with roaming users:
    How To Use Microsoft User Experience Virtualization With App-V Applications
    Application Publishing and Client Interaction: Roaming registry and data
    Here's also some resources on App-V performance worth looking at:
    Performance Guidance for Application Virtualization 5.0
    App-V Performance Best Practices: New Project VRC White Paper
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Used of Sap text variable with replacement path in Bo designer

    Dear experts,
    I created a univers based on a SAp BW query. In this query I used a text variable in order to get dynamic header columns.
    The text variable is done by using "replacement path" that is the text is derived automatically from the user input triggered by a sap bw variable.
    example :
    the query contains a restricted key figure which shows net values for a selected year based on variable PYEAR.
    The name of this restricted keyfigure is &ZYEAR& where ZYEAR is the text variable with replacement path from the variable PYEAR.
    When generated the univers based on this query I get component &YEAR&.
    When I use this unvers in WebI my result containts header with &YEAR& althougth I selected for example the year 2006.
    According to several how to and white papers on SDN , it seems that text variables with replacement path are supported. So I am disapointed by this result.
    Can you give me advise to get a rigth result ?
    thanks a lot
    Olivier Doubroff

    Hi Rishit,
    I am trying to achieve the same as you, but it seems like text variables in restricted key figures do not work. I am using BO XI3.1 SP3 and SAP BW 7.01 SP6.
    A work-around for me has been to use the "user response" function in webi to create a webi variable that holds the dynamic text title. If the user inputs Jan 2010, I change the input to a date using the "user response" and "ToDate" functions in the webi variable editor. After changing the input to a date I use the RelativeDate to extract 1 month (e.g. 25 days) from the user input. Then I have both Jan 2010 and Dec 2010 as webi variables to use as headers for my restricted key figures.
    The formulas can easily become a little long, but by tweaking the user response string, you should be able to get dynamic headings by using webi functionality. But be aware that you need one webi variable for each dynamic heading if you use this method.
    Let me know if it works or if I can help more:-)
    Best regards,
    Morten

Maybe you are looking for

  • Help on Master Detail relation

    Im using XSQL command line processor 1.0.2.0. How I can I write a SQL query To display master detil relation in the output? For example Department and Emp are two different tables with master detail relation... I just want to display the output some

  • Bt's distinct lack of ability to downgrade a packa...

    I downgraded my infinity option 3 package to the infinity option 1 package and verbally agreed that the contract length would remain unaffected and was assured it would finish at my 18month point, 39 days later. True to their word, the package downgr

  • Error in Web service creation in CRM 7 Ehp1

    Hi, I am trying to define a web service  for the creation of letter templates in CRM 7 Ehp1 system using the WS_DESIGN_TOOL .But it is giving me error. The component GDCOIC ,Root object GDCOIRoot, does not have the key structure defined . So the syst

  • Steps to upgrade from leopard 10.5.8 to mountain

    Can I go direct or do I have to upgrade to snow leopard first?   What and how do I purchase?   All through the Apple online store?

  • Which user id is used in each data source?

    Using SQ: SSRS 2008 R2 - Beginner - Is there a report or query that provides which user ID is associated with the data source of each report? I need to be able to list out all the data sources being used and which user id is being used in the data so