View external HTML page in a custom object container

Hi to All,
I have created a custom TAB in a standard transaction.
I want add a html page(external link) in custom container (like a browser).
On the forum I did't find anything, can you help me?
Best regards.
Umberto

Result:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/fdf8ee2a-0301-0010-e598-9a1ad4189bdd

Similar Messages

  • How to go to anchor html link from external html page in JEditorPane

    Hi people,
    I've been trying to jump to an anchor link from an external html page in JEditorPane, and I cannot get it working, I'm sure it can be done somehow...
    The HTML page has a link like:
    Hello
    and this is loaded into JEditorPane ok.
    The HyperlinkListener implementation:
    public void hyperlinkUpdate( HyperlinkEvent e )
    try {
    if ( e.getEventType() == HyperlinkEvent.EventType.ACTIVATED )
    editorPane_.setPage( getClass().getResource(
    MyDialog.this.getBaseURL().concat( e.getURL().getFile().substring(
    e.getURL().getFile().lastIndexOf( "/" ) + 1 ) ) ) );
    if ( e.getURL().getRef() != null )
    editorPane_.scrollToReference( e.getURL().getRef() );
    else return;
    } catch ( IOException ioe ) { ioe.printStackTrace(); }
    This code loads the new html file ok, but it does not scroll to the anchor. The MyDialog.this.getBaseURL() just returns something like com.name.package, I construct the URL by using this base url and the name of the html file to open.
    ANy help, thanks

    he! I'm not alone in my desperation. Take a look at my problem:
    I've got a JEditorPane (not editable) inside a JFrame. The JEditorPane is loaded with the HTML text and all the links to anchors are working properly when I click on them.
    BUT
    If I try to go to an anchor from outside this JFrame I can see how the JEditorPane scrolls to the right anchor and suddenly it scrolls back to the place where the caret was located!!!
    The "funny thing" is that my code is working in jdk1.3.1 but this is happening in jdk1.4.2. Is it a bug?!?!?!
    How could I figure out what position I have to set the caret to for every anchor in order to get the scroll working correctly???
    My implementation of hyperlinkUpdate (working properly, here isn't the problem):
       jEditorPane.addHyperlinkListener(new HyperlinkListener() {
          public void hyperlinkUpdate(HyperlinkEvent e) {
            if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
              MiEditorPane src = (MiEditorPane)e.getSource();
              src.goToAnchor(e.getDescription().substring(1));
        });My object jEditorPane is an instance of this class:
      class MiEditorPane extends JEditorPane {
        MiEditorPane() {
          super();
        public void goToAnchor(String anchor) {
          super.scrollToReference(anchor);
      }And this is the method I call from outside the JFrame containing the JEditorPane:
      public void goToAnchor(String anchor) {
         jEditorPane.goToAnchor(anchor);
      }Any help greatly appreciated ...

  • Display external html page in (Collapsible Panel widget)

    i everybody
    is there a way to display external html page in (Collapsible Panel widget)
    All the example a seen is with raw text in it
    is the panel can display different object instead of simple text
    At least a internal designed html page
    Thanks

    Thanks... surely a easy one for you
    But its a great tool and its exatly what i want
    even my js button works trough it
    Thanks again

  • External html page into flash

    how to load external html page into flash? (AS3)

    You cannot load an html page into Flash, though you can try to load the html code that it contains into a textfield.  Flash supports only a very limited number of html tags, so it is highly likely you won't get what you are after if you are reading an html file that hasn't been edited for Flash specifically.  Just look up the TextField.htmlText property in the AS3 help documents and it lists the html tags that are supported. 
    For AS3 you need to look into the URLLoader class as far as loadng an extrernal text file goes.

  • Embed external HTML page in Flash

    Does anybody know how to embed an external HTML page into Flash? I am envisioning something like an iFrame, but can't really figure how this would work. I've attempted using a scrollpane, but it didn't work at all.
    Any suggestions?

    you can display it in a popup window or in the same window or in an iframe in the same html page that displays your swf.
    When you say this, do you mean I can create an iFrame on the same html page that displays my swf, and have it be dynamically populated by what the user clicks on the swf?
    yes, exactly.
    use getULR() (as2) or navigateToURL() (as3) with the 1st parameter being the html page you want to display and the 2nd parameter being the iframe "name" property.

  • Load an external html page

    Hello,
    I tried to load an external html page inside the ide but not found the method. If I right click on my project name present in the Project Navigator I can choose the 'New' voice that leave me the possibilities to only load template pages. Is there a method to load an external page in the project? Say for example that I like the sun structure page and want to load it in the project so I can see the html and also the type of structure: what I can do to do this?
    However, I play a little bit with the ide and I like it. I am no an expert programmer. I start to program with vb5 but after I stop this passion; now I see that sun created this ide and I can see that it remember me the vb5 mode to create an interfance, and it is simple also for a seminovice.
    Regards,
    Marco Mangiante

    Marco,
    Use File > Add Existing Item > Web Page (on the main menus) to add an existing web page to your project. It will allow you to specify either a local HTML file or a URL.
    If for some reason you don't see this option, try downloading the latest version of the EA, posted on May 3.
    -jeff

  • Displaying an external html page.

    Hello,
    Does any know if its possible to display an external html page within a container or area inside a flash catalyst project ?
    We have created a media gallery and would like to display it within an area of the finished Flash Catalyst project.
    Thanks,
    Antonio

    Hi Laurence,
    There are two ways to do this:
    1.  If you are developing an AIR application, you can use the HTML component to load a page inside AIR's HTML engine. Here's a post on how to do that: http://blog.everythingflex.com/2008/02/25/air-html-control/
    2.  If you are developing a browser application, you can overlay an HTML iframe on top of your Flash movie. You do this in HTML code. I've never actually done it, but here's a thread about it: http://codingforums.com/showthread.php?t=95109
    -Adam

  • DPS In-App Folio Browser, Close Using External HTML Page?

    Is it possible to close the in-app Folio Web Browser from an external HTML page and return to the folio?
    Or, does syntax exist for me to place a button in an HTML web page to close the browser, in addition to having the "Back" button at the top of the screen (which is the standard way of closing the browser)?
    The javascript way of closing a window does not work with the Folio Browser:
    <button type="button" onclick="window.open('', '_self', ''); window.close();">Discard</button>
    -matt

    Doesn't look like there was a response to this question. Were you able to find a solution for this?

  • Close In-App Folio Browser From External HTML Page

    Is it possible to close the in-app browser window/overlay from an external html page, accessed from the HTMLResources directory for example?

    Doesn't look like there was a response to this question. Were you able to find a solution for this?

  • Can J2ME view a html page?

    I wan`t to make a J2ME programm that allow me to connect to a server, and view an *.html page from it.
    I have done the http connection, but when I try to view the html page, it appears as html source code.
    My question is: Can`t J2ME view a html page?
    I have sun`s J2ME wireless toolkit to compile my code.

    Does anybody know the answer??
    Please, help me.

  • View an HTML Page in a object

    Hi to All,
    I have created a custom TAB in a CRMD_ORDER.
    I want add a html page(external link) in custom container (like a browser).
    On the forum I did't find anything, can you help me?
    Best regards.
    Umberto

    Result:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/fdf8ee2a-0301-0010-e598-9a1ad4189bdd

  • Display external html page in a view

    Hi,
    following Problem,
    I have a Viewcontainer with 2 columns ans one row. In the left cell I display a tree. OnSelect Event I'd like to display a html page in the right cell.
    Example:
    Searchengine
      -> Google
      -> Yahoo
      -> ...
    On Klick at google in the treeview I'd like to show http://www.google.de in tghe right cell - this means the tree should still display.
    Is this possible - and has anyone an idea to do this?
    thanks in advance
    Gregor

    Hi
    We strongly donot recommend usage of Iframe, because its support is depcrecated and will not be available for future versions.
    For a short duration or for current version, use can Iframe only for static html links. Try using link to URl and display the htmls in external windows.
    Check out this link
    http://help.sap.com/saphelp_erp2005/helpdata/en/e9/7652a84fada444bd11ca73670ce7dc/frameset.htm
    My advice is to change your functionality accordingly
    If you have any specific requirements do let us know
    Thanks
    sathyanarayanan

  • A tree-view in HTML page with nodes generated with java script in run time is not visible in the UI Automation Tree. Need Help

    I have a HTML page with an IFrame. Inside the Iframe there is a table with a tree view
    <iframe>
    <table>
    <tr>
    <td>
    <treeview id="tv1"></treeview>
    </td>
    </tr>
    </table>
    </iframe>
    In UIA, i am able to traverse till the tree view but not able to see it.
    I have used the TreeWalker.RawViewWalker Field to traverse the node from the desktop Automation.RootElement. 
    I tried to use AutomationElement.FromPoint method to check whether i am able to get that element. Fortunately i was able to get the automation element. 
    i tried to get the path to root element from the node element using the TreeWalker.RawViewWalker. I was able to get the parent path to the root element.
    But trying the reverse way like navigating from root element to tree node, was not getting the element for me. 
    Please help me with suggestions or inputs to resolve this issue. 

    Thanks Bernard,
    It works fine with JInitiator but not working with
    the JPI. For JPI what settings I need to do ??hi TKARIM and Bernard, i am having similar problem even with the Bernard's recommended setup. could you post the webutiljini.htm (i presume you are using config=test) ?
    i am actually using jinitiator 1.3.1.28 with Oracle HTTP Server of OAS 10gR2) calling Forms Server 6i (f60cgi). After setting up according to Bernard's recommended setup steps, the java console showed that it loaded the icon jar file when it could not read the form, but it skipped the loading of the icon jar file once it read and started the form. How do we specify in the form to pick up the icon from the jar file instead from a directory ? Or do we need to specify ? Any ideas ?
    Thx and Regards
    dkklau

  • Rollover hyperlink in external HTML page

    Gentlefolk;
    I have an HTML page that contains a list of URLs.
    This page is imported into a dynamic text field in Flash.
    This part works fine.
    I would like to create a mouseOver (or other process) whereby
    when the cursor is moved over the links, the link text changes in
    some way - different color, bold, something to indicate to the user
    that the link is active.
    I have tried to place various font control tags within the
    HTML document, and these work when viewed in the browser, but they
    fail when viewed through the Flash player.
    Is there a way I can get a link in an imported file housed in
    a dyanamic text field to display links in a way that is similar to
    a straight HTML link displayed in a browser?
    Thank you!
    Don
    [email protected]

    ping.
    Just getting this back to the top of the queue.

  • Html page to TitleWindow custom component

    Hello all,
    I have a TitleWindow custom component to which I send a html page. Does anybody know why it doesn't work?
    This is what I send:
                        for (var i:Number = 0; i < sdeName.length; i++){
                            if (sdeName.getItemAt(i)["label"] == item.label){
                                item.label = sdeName.getItemAt(i)["data"];
                                var url:String = "http://myserver/getMetadata/metadata.aspx?sdeFeatName="+item.label+"&"+"outFormat=ISO";
                                item.label = sdeName.getItemAt(i)["label"];
                    var mycompMeta:popupMeta = new popupMeta();
                        mycompMeta.url = url;
                        mycompMeta.x = 100;
                        mycompMeta.y = 100;
                        //mycompMeta.formatpop = formatpop;
                        PopUpManager.addPopUp(mycompMeta,this.parentApplication as DisplayObject);
                        PopUpManager.centerPopUp(mycompMeta);
    TitleWindow:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" width="1100" height="800" showCloseButton="true" close="closeMe()">
        <mx:Canvas width="1068" height="700" backgroundColor="#FFFFFF" borderColor="#000000" borderStyle="solid">
        <mx:Script>
            <![CDATA[
                import mx.events.CloseEvent;
                import mx.managers.PopUpManager;
                [Bindable]
                private var _url:String;
                private var _formatpop:String;
                private var downloadURL:URLRequest = new URLRequest();
                public function set url(value:String):void {
                    _url = value;
                public function set formatpop(value:String):void {
                    _formatpop = value;
                public function clickHandler(event:MouseEvent):void
                   var fileReference:FileReference = new FileReference();
                   downloadURL.url = _url;
                   fileReference.download(downloadURL,"test.html");
                public function closeWindow (event:MouseEvent):void
                   PopUpManager.removePopUp(this);
                public function closeMe ():void
                   PopUpManager.removePopUp(this);
            ]]>
        </mx:Script>
    <mx:Image  source="{_url}"/>
    </mx:Canvas>
    <mx:HBox>
         <mx:Button label="Close" id="close" click="closeWindow(event)"/>
        <mx:Button label="Save" id="save" click="clickHandler(event)"/>
    </mx:HBox>
    </mx:TitleWindow>
    Regards,
    Manolo

    Read about an example of Swingscape browser.
    http://manning.com/sbe/files/uts2/Chapter27html/Chapter27.htm
    regards
    Stas

Maybe you are looking for

  • Boot Camp Mac Pro Vista 32 / 64 Nvidia 7300GT Maya / OpenGL apps freeze?

    I have successfully installed Vista 32 and 64 in addition to OSX. I have the latest BootCamp install. (which should not matter) I have installed the latest Nvidia drivers for the 7300GT in both 32 and 64. Whenever I try and launch any openGL applicat

  • How to use the method substituion in variable ODI

    Hi folks, I have a variable that run the follow query; select GER_LOT_EXEC_ODI('Fluxo', 1, 'C') FROM DUAL GER_LOT_EXEC_ODI is a function, and i need to pass the data shema name before this: I'd like that stay this: select data_shema_user.GER_LOT_EXEC

  • How to turn on the sound

    How can I turn on the sound and adjust the volume ?

  • Setting row and column constraints in FXML

    I've set the column and row constraints in my FXML controller like this: RowConstraints row1 = new RowConstraints(); row1.setVgrow(Priority.ALWAYS); RowConstraints row2 = new RowConstraints(); row2.setMaxHeight(150); row2.setVgrow(Priority.NEVER); pa

  • Anomaly when query timeout in Data buffer

    Hello experts I'm using MII12.2 and query buffered (allow buffering flag) on a database with several tables locks. When I get a query timeout (LastErrorMessage of the query is "Response timed out, request terminated"), the query is not queued in the