How to open URL stored in recordset

How can I make a URL in a displayed Recordset clickable in
such a way that the stored URL (like:
http://www.mysite.com) is
opened?

Make it a link in the normal way, but the src needs to
contain the field
name containing the url instead.
Highlight the words that will be a link, click the small
yello folder
icon next to the link box in the Properties panel. Choose
Data Sources
instead of file system and then select the field that
contains the url.
Einzig wrote:
> How can I make a URL in a displayed Recordset clickable
in such a way that the stored URL (like:
http://www.mysite.com) is opened?

Similar Messages

  • How to open url photoshop on mac OSX ?

    How to open url photoshop on mac OSX ?
    Safari doesn't know internet adress starting by "aam://" please help me...

    http://helpx.adobe.com/creative-cloud/kb/cc-download-button-gives-aam.html

  • How to Open URL value stored in a variable in JSP

    Hi all,
    I want to know how i can use value of a string variable in a JSP as url to open.
    <% String abc="some url value" ; %>
    then i want to open abc as URL in JSP
    Please suggest something on this.
    any help in advance will be highly appreciated.
    thanks,
    savdeep.

    thanks rahul but,
    I want to open the URL in
    <% String URLvariable="abc.htm" ; %>
    <% out.println("< a href=URLvariable>"+rs.getString("Some JSP value")+"</a>"); %>
    please suggest how should i open the above URL value stored in JSP variable.
    any help will be highly appreciated.
    thanks,
    savdeep.

  • How to open URL IView with dynamic url parameter (navigate_absolute)

    Hi Experts,
    i would like to open an URL-IView from the WebDynpro ABAP Application in the Enterprise Portal 7.0
    and i want to set the URL parameter dynamically. Is this possible and how can i achieve this!!
    Thx Markus

    Hi Markus,
    You can take help of the following code snippet.
    Here we are calling an Iview using absolute navigation and passing URL parameters as well
    * Select the input value entered and then pass it to REM INQ application---------
      DATA lv_inputbusobjid   TYPE          wd_this->Element_context-inputbusobjid.
      DATA lv_path            TYPE          string.
      DATA lv_tab_wd_param     TYPE          wdy_key_value_list.
      DATA lv_str_wd_param     TYPE          wdy_key_value.
      DATA lo_el_context      TYPE REF TO   if_wd_context_element.
      DATA api_component      TYPE REF TO   if_wd_component.
      DATA window_manager     TYPE REF TO   if_wd_window_manager.
      DATA window             TYPE REF TO   if_wd_window.
      DATA lo_api_component   TYPE REF TO   if_wd_component.
      DATA lo_portal_manager  TYPE REF TO   if_wd_portal_integration.
    * read the imput data first-------------
    * get element via lead selection
      lo_el_context = wd_context->get_element( ).
    * get single attribute
      lo_el_context->get_attribute(
        EXPORTING
          name =  `INPUTBUSOBJID`
        IMPORTING
          value = lv_inputbusobjid ).
    ** call remuneration inquiry window using absolute navigation
      CLEAR lv_tab_wd_param.
    * Adding parameters
      lv_str_wd_param-key = 'sap-wd-configId'.
      lv_str_wd_param-value = 'CACS_REMINQ_CONF'.
      APPEND lv_str_wd_param TO lv_tab_wd_param.
      lv_str_wd_param-key = 'BUSOBJ_ID'.
      lv_str_wd_param-value = lv_inputbusobjid.
      APPEND lv_str_wd_param TO lv_tab_wd_param.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_portal_manager = lo_api_component->get_portal_manager( ).
      if lo_portal_manager is BOUND.
    * PCD
      lv_path = 'ROLES://portal_content/com.sap.pct/specialist/com.sap.pct.erp.common.workset_reuse/com.sap.pct.erp.icmparticip.bp_folder/com.sap.pct.erp.icmparticip.15.bp_folder/com.sap.pct.erp.icmparticip.15.pages/com.sap.pct.erp.icmparticip.RemInquiry'.
      lo_portal_manager->navigate_absolute(
        navigation_target   = lv_path
        navigation_mode     = if_wd_portal_integration=>co_show_external
        window_features     = 'toolbar=no,resizable=yes,scrollbars=yes'
        business_parameters = lv_tab_wd_param
      endif.
    Hope this helps
    Regards
    Manas Dua

  • How to open PDF stored as blob

    Hi,
    How can i open PDF that is stored in the database as BLOB from Forms 10g. Any method to directly open the PDF instead of generating physical PDF file in AS and open in client by webutil.showdocument.
    Thanks in advance

    Hi,
    The second option is not working here.
    I have another solution
    WEB.SHOW_DOCUMENT('http://abc.com/efg.pdf'); this open the pdf file in the browser without displaying
    a blinking command prompt (as like in the option 1).
    But in all the cases we are opening the physical file, I am looking to open directly from the BLOB column.
    If I should first generate the physical file from the BLOB column, then plz help me to get the code
    Thanks to both of you.

  • How to open a stored text file using java???

    Respected Sir / Madam
    I have a JList containing absolute path of files stored in my operating system in String format....I have added a ListSelectionListener...Now when i select an absolute path in the JList, the file should open ....I don't know how to do that....Hope you got my problem....Can any one pls help me out???
    Thank you[                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    thats ok buddy! best of luck
    U need to import
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public void valueChanged(ListSelectionEvent e)
    if (!e.getValueIsAdjusting()) {
            String fileName=
              optionList.getSelectedValue().toString();
    final JFrame dialog = new JFrame(fileName);
              JEditorPane viewer = new JEditorPane();
              viewer.setEditable(false);
              JScrollPane jsp = new JScrollPane(viewer);
              try {
                   viewer.setPage("file:/" + fileName);
              } catch (Exception e) {
                   viewer.setText("Error opening " + fileName + ": " + e);
              dialog.getContentPane().add(jsp, BorderLayout.CENTER);
            JButton closeButton = new JButton("Close");
            closeButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    dialog.setVisible(false);
                    dialog.dispose();
              dialog.getContentPane().add(closeButton, BorderLayout.SOUTH);
              dialog.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
              //dialog.pack();
              dialog.setSize(600, 600);
              dialog.show();
    }

  • How to open URL from Shell program or Oracle?

    Hi
    I required to open a URL (any link like ‘http://www.google.com’) either from Oracle or from shell script.
    Is there any command in shell programming to open a URL? If not, can we do the same in Oracle?
    Thanks & Regards,
    Sreekanth

    Sreekanth Munagala wrote:
    Is there any command in shell programming to open a URL? Yes. It is called wget.
    If not, can we do the same in Oracle?Yes. Oracle supplies HTTP interfaces, like UTL_HTTP. Sample code that shows how do a "webbrowser" (minus rendering engine of course) posted in {message:id=1925297}

  • How to open URL in a new tab? NOT in new window!

    Dear All,
    I am a newbie to Flex and this is my first application here. Kindly forgive me for the ignorance.
    I have a tabbed pane created using ViewStack. When the user click a button on the first tab, an external URL has to be invoked in a new tab. I have written this function which successfully creates the new tab but when I try to open the URL using navigateToURL it opens in a new window:( What I need is to open the URL in the newly created tab. I have tried out navigateToURL parameters such as _self, _blank, top etc but none seems to work out. Could anyone kindly let me know the standard way to do this? is it ExternalInterface or ModuleLoader or something else? Please give me some references that would help me do it. I am trying this for quite some time now but no luck . Thanks a million in advance.
    protected function button2_clickHandler(event:MouseEvent):void
        var newVBox:VBox = new VBox();
        var newLabel:Label = new Label();
        newLabel.text = "Hotspot Mngmt panel";
        newVBox.label = "Hotspot Mngmt";
        /* navigateToURL( new URLRequest( "http://ipmsit.tsmc.com.tw/Hotspot/Hotspot/index.html" ), "_self" );*/ --opens in same window, not new tab.
        var my_loader:Loader = new Loader();
        my_loader.load(new URLRequest("http://ipmsit.tsmc.com.tw/Hotspot/Hotspot/index.html"));
        newVBox.addChild(my_loader.content as DisplayObject); - throws exception
         vs.addChild(newVBox); -- "vs" is the id of the ViewStack
    Warm Regards
    Anand Uthaman

    Anand,
    use iFrame in HTML Wrapper
    https://github.com/flex-users/flex-iframe
    Thanks
    Pradeep

  • How to open URL as a popup window through BRANCH in APEX reports

    Hi
    I am using APEX 4.0
    I have a branch with a target type of URL. The branch is triggered by pressing a button. There is also a plsql process on the same button which fires at the process point of "On Submit-After Computations and Validations". I want to open the branch URL as the popup Window. I tried doing it with javascript, but then the plsql process doesn't execute. Any pointers will be helpful.
    Thanks
    Hina

    You can use the apex.submit javascript function. This function allows to store some item value from session scope to database scope. So that a page process picks the correct item value. Not sure if it works with computations thou.
    See the docs: JavaScript APIs
    Example
    Submits the current page with a REQUEST value of 'DELETE'.
    apex.submit({ request:"DELETE", set:{"P1_DEPTNO":10, "P1_EMPNO":5433});
    Then add a branch with type "branch to function returning URL" This page branch can be made conditional on the same request as the page process.
    The returned url would be either include the javascript popup or window.open function or simply be the url. Important thing here would be to use a function that reads the url item  from database state, since at that moment the computation or page process will have set the item on database level, but it is not directly available on page level.
    meaning ":p2_item" or v('P2_ITEM') should work. &P2_ITEM. in the url will probably not work.

  • How to open url in acrobat reader using command line

    Hi,
    I need to open file from url using command line, but I'm still getting some error (wrong filename).
    I've tried for example this command:
    AcroRd32.exe http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf
    Can anyone help me and tell me what's wrong?

    You can't use a URL as parameter for AcroRd32.exe.

  • HTML presentation how to open url on the same page

    I have a presentation in keynote that I exported in HTML; it works no problem.
    What I want to do is to open a url embedded in the presentation on the same browser window, and not in a new tab so I can go back to the presentation with the browser point.
    Help please!!!

    I was wondering if there's an edit tom insert the "_self" command for links
    place a shape on the slide to act as a button
    right click the shape and select > add link
    from the add link to  dropdown menu:  select web page
    type in the URL
    click open to test the link

  • How to open URL iView in new window

    HI,
    We are not able to open the URL iView, which is assigned to page, in new window.
    We set the property "Launch in New Window" to Launch in Separate Window but no use.
    Please let us know the solution
    Thanks

    Hi Tatayya,
    Remove the delta-link that you have done for that iview to the page. Change the necessary settings on the iview level (skip this part if you have already done). Then re-"delta-link"the iview to the page and test if it open in a different window.
    Could also be your cache, so go ..navigate via Sys adm--> Navigation -> clear cache.
    Hope that helps.
    Ray

  • How to open url from string on JOptionPane?

    hello there
    i've made a JOptionPane that contains a string url
    and i'm wondering if it is possible to add MousMotionListener
    to the url and if it is possible to open that url in the default Browser?
    JOptionPane.showMessageDialog(null, " Visit us at www.google.com" ,"Visit us",JOptionPane.ERROR_MESSAGE);

    so i have to invoke a mouse event to the url
    meaning when the mouse passes on the url it is
    highlited and when he presses it the browser is openedYes, there is no prepacked "hyperlink" widget in the J2SE, so you have to listen for
    a mouse press. Unless you use JEditorPane, but that's overkill:
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import javax.swing.*;
    public class HyperExample extends MouseAdapter implements Runnable {
        @Override
        public void run() {
            JLabel label = new JLabel("<html><u>http://java.sun.com</u></html>");
            label.addMouseListener(this);
            JFrame f = new JFrame();
            f.getContentPane().add(label);
            f.pack();
            f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
        @Override
        public void mousePressed(MouseEvent evt) {
            try {
                URI uri = new URI("http://java.sun.com");
                Desktop.getDesktop().browse(uri);
            } catch (Exception e) {
                e.printStackTrace();
        public static void main(String[] args) {
            EventQueue.invokeLater(new HyperExample());
    }

  • How to open url request in the same window

    hail unto theeeee..
    I finally got my buttons to work, but now I need help getting
    them to open in the same window. As of now each button opens a
    separate new window. UGGGGG!
    Thanks in advance!

    Thank you thats what I needed alright! problem solved.

  • How to open url with two varible

    Hi everyone
    Could you tell what wrong is in this line.          
    String x="http://localhost/Test.php?memberID=ww&movieID=mm";
         Runtime.getRuntime().exec("cmd /c start iexplore "+x);
    why does my Test.php always only get the first parameter?
    Test.php only got member id is ww.
    However movieID become undeclared.
    Is '&' not working in java?
    Thank you very one
    Yang Bin
                   

    The browser is trying to parse the ampersand and following characters as an entity.
    You could try this:
    String path = "http://localhost/Test.php?";
    String parameters = "memberID=ww&movieID=mm";
    try {
        String request = path + java.net.URLEncoder.encode(parameters);
        Runtime.getRuntime().exec("cmd /c start iexplore " + request);
    } catch (Exception e) {
    }This may also require modification of your php.ini file (not sure).
    Check here for more:
    http://www.w3.org/TR/html4/appendix/notes.html#h-B.2.2
    Hope this helps...

Maybe you are looking for