Download Option with Go URL

Hi All,
I am using Go Url in my report columns, When I download those report to PDf, Powerpoint etc., I am seeing the GO URL code.
I want to see only the column values not the code, How to get rid of this.
Thanks,
Vino

Hi Kishore,
Thanks for the reply.
Since &Options = d will give me an download link, I already have that link on my reports.
I am facing problem in downloaded results.
The problem I am facing is I have some columns where I have used go url.
When I download these reports, the Go URL code I am using is also visible in the PDF, Powerpoint etc.,
Thanks,
Vino

Similar Messages

  • How to download contents with specific URL

    assumption: URL "http://www.game.com/login.php?name=joeCruiz&pwd=123456")" will show the logined info about me.
    I try to get the logined info in pure java program with following codes:
    url = new URL("http://www.game.com/login.php?name=joeCruiz&pwd=123456");
    connection = (HttpURLConnection)url.openConnection();
    input = connection.getInputStream();
    dataInput = new BufferedReader(new InputStreamReader(input));
    while ((line = dataInput.readLine()) != null) {
    buffer.append(line);
    But I just get info shown with "http://www.game.com/login.php?".
    Thanks for any comment.
    Joe

    Hi there,
    forgive me my bad english...
    i guess you have to use something like this
    HttpURLConnection conn;
    conn = new HttpURLConnection(new URL("http://www.game.com/login.php?name=joeCruiz&pwd=123456"));
    conn.setRequestProperty("name","joeCruiz");
    conn.setRequestProperty("pwd","123456");
    conn.connect();
    input = conn.getInputStream();
    dataInput = new BufferedReader(new InputStreamReader(input));
    while ((line = dataInput.readLine()) != null) {
       buffer.append(line);
    }All trick is to use setRequestProperty(String, String) instead of pairs in url string.
    Hope this helps.
    With best regards,
    Selivanov Mike.

  • With streaming music files I used to be able to hover over the file with the mouse and see a "Download" option. However, after a recent uninstall and reinstall of FireFox, I no longer see this option. Please help!

    Even with files I used to be able to see the download option with (Quicktime files) I do not see the option when I hover over it with the mouse.

    Which add-ons do you have that say "incompatible with Firefox 5.0"?
    Maybe something like download helper? You need to find an update for that add-on.

  • Download Option in Page Level

    Hi,
    I have 2 reports in a page. Instead of giving seperate download options for the 2 reports, I need a single download option with which both the reports can be downloaded in a single excle or pdf format.

    try Printer Friendly option at the bottom of a dashboard page... It's not a download, but pdf you can safe as a file...
    !http://i45.tinypic.com/66cio3.png!
    *and I couldn't find the way to download the whole dashboard page in Excel file.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Firefox closes when "tools"+ "options" clicked & won`t respond to Typed URLs but ok with "bookmarked"urls

    Investigating why FF was using so much memory I was advised to use "Restore Firefox" button.
    Did that but now I can`t use "tools" "options" `cos it closes the browser. Other menus under "tools" work OK.
    If I try to download any updates for plug-ins etc the FF browser closes down.
    Can`t browse my images folders to add to interactive sites.....closes down FF
    Can type a URL but nothing happens but if I enter a "bookmarked" url or a "history" url then it is OK
    Firefox is 16.0.1
    Any help appreciated please.

    Thanks for your response.Unfortunately when I try to download '''anything''' my browser closes so I can`t reinstall Firefox.
    Many of the fixes say "go to Tools & Options" but when I click on Options the browser again closes.
    I seem to have lost access to IE some while ago and have been using Firefox OK up until recently, but then my computer started to go very slow and the Task Manager keeps showing 100% usage of the CPU.
    When I start the pc with only the desktop displaying, the CPU usage is 60-70% and around 35 processes are running. Is this normal?
    When I open Firefox the usage increases rapidly until the CPU shows 100%.
    It was while resetting Firefox to try and sort this usage problem that I lost my download ability and the use of "tools" then "options" and also urls that are typed in.(bookmarks & history ok)
    Any advice welcome.

  • Problem with file download option in ALV via ITS. Please help!

    Hi Experts,
           I have a ALV report which I have web enabled using ITS service. In the ALV there is a delivered functionality for file download. It works fine when the report is run in the SE80. But when I run the ITS service for the report and choose file download option it displays a page saying "this page has been diaplayed due to technical reasons" with title "File properties". In addition it looks for Java runtime in the browser. After all this it opens a popup window for selecting path and file name.
    This is not user friendly and many customers have rasied their concerns on it.
    My question is that,
    Q1: What is the need of this "File properties page"? Why ITS calls this while ABAP editor does not?
    Q2: Is there any way we can suppress this so that it directly opens a popup window for selecting path and file name?
    Please help me.
    Thanks
    Gopal

    Hello Klaus,
    i have also the problem with these intermediate screens!
    We have in between installed patch 22 for ITS 6.20 and SP18 at SAP Netweaver 2004!
    But they are still not processed invisible for the users.
    Are there any additional parameters, which controls this behaviour(~webgui_updown_make_visible is not used!)?
    How can i check, if i have really a.ex. the actual ws.jar-file or other related files of the patch?
    We are using the standalone ITS with an own (modified) IAC with an own CI-design for the webpages. The intermediate screens are displayed with the "normal" SAPGUI-design because of the parameter ~generatedynpro. Without this it does not work, because the template SAPLSIT_0100 is missing!
    Or do you have an example for such a intermediate template with the applet for an upload of a file?
    Thanks in advance
    Felix

  • My Sync option is grayed out in I Tunes - I cannot sync my new downloaded tunes with my ipod

    My Sync option is grayed out in I Tunes - I cannot sync my new downloaded tunes with my ipod

    Please post about iPod Nano under their respective sections.
    https://discussions.apple.com/community/ipod/ipod_nano

  • Minitube 2.1.5 has no download option

    Just installed minitube 2.1.5 x86-64 and there is no download option in the toolbar or anywhere in the menus. Has the ability to download been removed recently or am I simply blind? Has anyone else got a download button?

    Make your own
    #! /usr/bin/env bash
    # ut.sh
    # Watch or download youtube and other videos. See (youtube-dl --list-extractors)
    # stream the video to the named pipe and play it with your media player, or download
    # it to (UT.mp4)
    # Requires youtube-dl and a player. Look at (youtube-dl -h) for options.
    # pipe name.
    FILE=~/uuu
    # If pipe does not exist make it.
    if [ ! -a $FILE ]
    then mkfifo uuu
    fi
    # List of otions.
    OPTIONS="Quit Formats Watch Download"
    # Read selection.
    select opt in $OPTIONS; do
    case $opt in
    Quit)
    clear
    exit;;
    Formats)
    echo "Paste UT Video URL"
    read ccc
    youtube-dl -F $ccc;;
    Watch)
    echo "Paste UT Video URL"
    read aaa
    echo "Wait a second"
    # use you favorite player here, slave it to the pipe.
    mplayer &> /dev/null uuu &
    # get the pid of player running in background.
    mp_id=$!
    # download the video to pipe.
    youtube-dl -q -f 18 $aaa -o uuu
    # stop the player that's running in the background.
    kill -9 $mp_id;;
    Download)
    echo "Paste UT Video URL"
    read bbb
    # Download the video, -f is the format, UT.mp4 will be the name.
    youtube-dl -q -f 18 $bbb -o UT.mp4;;
    esac
    echo "Press Enter to return to menu, or 1 to quit."
    done

  • Canot downloading from you tube,as downloading option is showing from add-on

    canot downloading from you tube,as downloading option is showing from add-on
    add on ballons showing with downloading option, but downloding is not happening

    Could they be viewed ... and used ... by QuickTime Player?
    Installing the Perian codec component package will normally allow FLV file containers to be played in QT players. However, it might be more helpful here if you could provide a specific YouTube URL (and resolution if applicable) of interest to check out. While I previously indicated content was typically converted to FLV, MP4 files may also be used and content may compressed as H.264/AAC in either container which, of course, should already be QT compatible without additional support.
    Could anything be done about improving video quality?
    That depends. If the file you are interested in is available in multiple resolutions, then downloading the highest available resolution would provide the best starting point for iMovie editing. If compressed content is already in an iMovie compatible compression format, then it might be possible to copy the content to an iMovie compatible file container (if not already in one) and thus avoid transcoding the data before import to iMovie. However, you still have the potential for some visual quality loss after editing when you export the finished project from iMovie.

  • Relative path for Download directory folder.I created a firefox profile and i wanted to use this profile in multiple machines.I wanted to use a relative path for download directory with respect to the profile folder.I need this on Linux machines

    I have a use case where I need to use different download directories with different firefox profiles.I need to use this profiles in multiple linux machines.
    I need to have a relative path to my download directory with respect to the profile folder.
    Ex: I have a selenium test which opens a website and downloads it to my machine.I want this downloaded file to go into some specific folder relative to this profile folder.How do I do this??

    That is not a practically empty xinitrc - that file only needs one line: exec WM.  Other things are entirely optional, and some of them very useful, but I'd encourage you to stick with the simplest xinitrc that will do what you require.
    Is slim involved?  Probably.  That is the source of many problems.  But to start narrowing this down, I have 3 suggestions:
    1) temporarily (at least) change your inittab to default to runlevel 3 ... actually, is it currently set to 5 or 3? if it is currently 3 that would explain why slim doesn't start.
    2) at a tty in runlevel 3 use "xinit" instead of "startx".  Startx is fine most of the time, but it is essentially just a complex wrapper for xinit.  That complexity can often iadd useful functionality, but it *always* makes troubleshooting more difficult.  So for now just use a vanilla 'xinit'.
    3) remove dbus-launch from your exec line in xinitrc.  This is done by console-kit so it is redundant and potentially problematic.  Further BOTH of these are taken care of by slim, so I'd even suggest getting both a jump start on being ready for slim and simplifying troubleshooting by removing both of them.  Just make that line "exec openbox-session"
    Edit: adding one more:
    4) temporarily switch out openbox-session for openbox.  I suspect the reason feh's setting of the background is getting overridden is due to a script or setting in openbox's autostart settings - many of these are only invoked when "openbox-session" is called, while "openbox" starts *just* the window manager itself.
    Last edited by Trilby (2012-10-03 17:30:36)

  • Portal with a URL using a Web browser in java stack

    Dear all,
    I can access the portal with our URL using a Web browser from your client machines .
    i got the following option :
    SAP Library
    SAP Library contains the complete documentation for SAP Web Application Server.
    Web Services Navigator
    Web Services Navigator is a tool that gives you a short overview of a specific Web service based on its WSDL, and enables you to test your Web service by creating and sending a client request to the real end point.
    System Information
    System information provides administrators with an overview of the system configuration and its state. It shows all of the system's instances and processes, their current state and important parameters (such as ports) that may be required for support cases, as well as the versions of the components installed.
    UDDI Client
    The UDDI client provides query and publishing functions for different Web service entities (tModels, business services) to any UDDI compliant registry.
    User Management
    The user management administration console provides administrators with the functions they need to manage users, groups, roles, and user-related data in the User Management Engine (UME). Users without administrator permissions can use it to change their user profile.
    Web Dynpro
    Web Dynpro is a User Interface technology available within the SAP NetWeaver Developer Studio.
    Various Web Dynpro tools provide administrators and application developers with performance measurement and application administration capabilities. The Web Dynpro runtime is already deployed.
    SAP NetWeaver Administrator
    A tool for administration and monitoring, offering a central entry point to the whole SAP NetWeaver system landscape. The SAP NetWeaver Administrator can be used in a central scenario where it is capable of operating an entire system landscape containing ABAP and Java systems as the application platform of SAP NetWeaver.
    J2EE Engine Examples
    This section contains several J2EE application examples that run on the J2EE Engine. The examples show some of the functions of both Java and the J2EE Engine. They can be easily deployed and tested by simply clicking on a button. The full source code of the examples is also available.
    when i click System Information:
    it ask user name () J2EE_ADMINand password (Installtion master password) ,after entered , i got below error .
    You are not authorized to view the requested resource.
      Details:   No details available
    Kindly suggest .

    Hello
    It means what it sais, your J2EE_ADMIN user doesn't have enough authorization.
    Chech if the appropriate authorization is assigned in your abap stack which belongs to the java stack you logon to:
    Role SAP_J2EE_ADMIN should be assigned to user J2EE_ADMIN.
    Kind regards
    Tom
    Edited by: Tom Cenens on Dec 17, 2010 2:55 PM

  • Access to a website with a URL ending on .exe does not work

    I need to access a website with a URL ending on .exe - Internet Explorer does not have any issues but with Firefox I only get the "file download" dialog box. Is there a setting where I can prevent this behaviour?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I am trying to download lion with the thumb drive how do i back up my files is time machine good enough or must i transfer everything to my hard drive

    I am trying to download lion with the thumb drive how do i back up my files is time machine good enough or must i transfer everything to my hard drive

    A erase of the drive or boot partition is not always necessary.
    Flashing question mark at boot could be a easy fix, sometimes it's the firmware that simply forgot what bootable volume to boot from.
    Try holding the Option key down while booting the machine, a choice of bootable options appears, select your OS X and boot up.
    When you get in, head to System Preferences > Startup disk and set it again new. This will tell the firmware what to boot from. Test it to see.
    Now if you don't have a selection of bootable options, it could be that the drive is dead, or OS X is erased or corrupted so it can't boot.
    You'll have to run through this list of fixes to see what's going on, if you need a hardware fix or what, I've also included links if you can't fix it and need to recover your data etc.
    (If it's not remmebering your boot selection then also run through the list to reset things.)
    Step by Step to fix your Mac

  • How can I do a backup listing of all of my bookmarks, with complete URLs to print out from a wordpressing program?

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    How can I make a backup listing of all of my Firefox bookmarks, with complete URLs, so I can print it out from a word precessing document? Please email me the answer-
    [email protected]
    == Firefox version
    ==
    2.0.0.4
    == Operating system
    ==
    PPC Mac OS X Mach-O
    == User Agent
    ==
    Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4
    == Plugins installed
    ==
    *-Netscape Navigator Default Plug-in
    *Runs Java applets using the latest installed versions of Java. For more information: Java Embedding Plugin. Run version test: Test Your JVM.
    *Plugin that plays RealMedia content
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in web pages. For more information, visit the QuickTime Web site.
    *Shockwave Flash 9.0 r260
    *Provides support for Digital Rights Management
    *Provides support for Windows Media.
    *Java 1.3.1 Plug-in (CFM)
    *Macromedia Shockwave for Director Netscape plug-in, version 8.5.1
    *Java 1.3.1 Plug-in

    You can export the bookmarks to an HTML file: Bookmarks > Organize Bookmarks > File: Export
    See http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    See also [tiki-view_forum_thread.php?forumId=1&comments_parentId=252551 How do I print off my bookmarks]
    You should at least update to Firefox 2.0.0.20 if you are on Mac OS X 10.3.9 or lower and can't use more recent versions that require at least OS X 10.4
    See http://kb.mozillazine.org/Installing_Firefox
    The most recent Firefox version for OS X 10.3.9 is 2.0.0.20.
    Mac: http://download.mozilla.org/?product=firefox-2.0.0.20&os=osx&lang=en-US

  • How do I disable Firefox's Download functionality, I would like to use another download manager with Firefox...many thanks Bruce

    Hi I am using version 3.6.15 with Windows 7, I would like to use another download program in place of Firefox's default option, how can I disable this in Firefox
    Many thanks
    Bruce Baxter

    Use this extension to integrate an external download manager with Firefox. <br />
    https://addons.mozilla.org/firefox/220/<br />
    http://www.flashgot.net/whats

Maybe you are looking for

  • How can you tell what users have which reports open in Infoview

    Hi! In Crystal Server XI, is there any way that you can see what reports are currently being viewed in Infoview and by what user?  Or a history of how many times a report has been viewed so that I can tell which reports are not used that often and ma

  • Rev 3 photo app bugs/issues

    Rev 3 photo app has unwanted changes/bugs: Photos won't orient with earphone jack in up position as they did before, sometimes this orientation is best for viewing the LCD screen in certain situations. When shuffle-displaying photos from a folder, if

  • DELL printer on a windows network w/ macbookpro client

    I purchased a macbook pro recently, which i run on a home WLAN. I keep finding my windows desktop in the printer browser, but I don't know the name required to acess it or the password. Can someon tell me what i am not doing?

  • Where do I find my plugins and extensions?

    Some malware infected my macbook air. How do I find the plugins and extensions? I need to turn them off one at a time until I find the culprit.

  • Adobe Reader X Crashing

    Every time I try to create a PDF plot file, I receive an error message.  It says, "PDF-X Change Driver Helper has encountered a problem & needs to close".  I then have to reboot my computer after it does that.  I have uninstalled the program, reinsta