Web page within a IFrame

Hi all,
I want to open a web page within a IFrame of Web Dynpro.
How can I do it? Could any body give me the code and suggestion?
Thanks & Regards
sudip

Hi Sudip,
There is UI element called IFrame (see http://help.sap.com/saphelp_nw04/helpdata/en/e9/7652a84fada444bd11ca73670ce7dc/frameset.htm).
Best regards, Maksim Rashchynski.

Similar Messages

  • Embed BI website into a web page using an IFRAME tag in HTML

    Hi
    I have got a requirement below.
    # Embed BI website into a web page using an IFRAME tag in HTML
    (Build a webpage and provide the links to BI Dash Board (10 reports))
    How to start and where to add the code and Is there any code available?
    Please help me out.

    Thank You for reply.
    I have created a website with dashboard links by using IFRAME tag .As of now there is no security restriction since it was POC for two reports.
    My question here how to Provide a link directly to BI public website from a web page on client site(Assume in gmail for example)

  • Problem keeping web pages within Portal Framework

    Hello,
    I am having a difficult time trying to force a URL (e.g. my.yahoo.com) on my TopLevelPage(for Oracle Portal Ver.1) to remain under the portal frame when I click on a link on the web page itself.
    Specifically, I can easily display my.yahoo.com on my TopLevelPage and keep it within the portal framework (eg displaying tabs, the Navigator button, etc.). However, when I click on an article, for example, it is displayed in the entire browser window. I no longer can view the tabs, Navigator button, etc. without hitting the back button. How do I keep the article under the portal framework?
    Any suggestions would be GREATLY appreciated!
    Thank you.

    Check out Portal PDK and look for "iframe".

  • Buttons opening a web page within a web page.

    I want to click on a button that will open a web page inside the same web page. How how I do this?
    Thanks, L

    The frame option is to use an inline frame, or <iframe> into which you place a source url, which can be a page on your site or a pdf or a page on the internet. This call is placed inline, as its name implies. You might want to experiment with its placement in your page, floating, various widths and heights, until you get it the way you want it.
    <iframe src="http://[path to your page here]" name="appropriateName">Content 1</iframe>
    Be sure to style your iframe tag to have an adequate width and depth; those will not style automatically.
    If you want it accessible only by mouse-click, consider putting it into a Spry Collapsing Panel that defaults to "closed". Be sure to put the <iframe> tag and its closing tag </iframe>, in this case, in the content area on the Collapsing Panel.
    Beth

  • Hyperlink to web page with an iframe in PHP

    I want to be able to have a hyperlink to a web page, the page
    has a iframe on. When you click the link to the actual page, I want
    to contol what is called into the frame in php?
    Any ideas??

    Mac OS 10.9.4, Firefox 30.0

  • Creating Links for other Web pages within Flash C23

    Hello Everyone,
    First of all, I'm sure you're tired of answering the
    questions regarding "Links". Although, I'm having a very
    difficult time with this issue. I just purchased Flash C23,
    taken all the tutorials from www.lynda.com, but
    I do not find answers for linking one web page to another
    within Flash C23. I have read all the answers
    on this forum and still can not get my buttons to link up to
    my other web pages.
    I have figured out how to create the buttons, although, I'm
    not doing something right when I try to link up my web
    pages. You have to realize I'm coming from Adobe Golive (no
    need for codes or scripts). I do not want to stop
    using Flash... Can someone help?
    Thank you so much, it's appreciated.

    replace 'siteName' with whatever you use to target your site
    in a browser. 'FranchelleDesigns' is what you named your page in
    GoLive.
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.siteName.com/FranchelleDesigns.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);
    EX: my website is
    http://www.damonedwards.net
    lets say I create some HTML page that I want to link to, and I save
    it as, ContactMe.html... this is what I would use in flash to link
    to it
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.damonedwards.net/ContactMe.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);

  • Show web page within abap web dynpro

    Hi,
    I am looking for a way to show a web page (like www.google.com for instance) inside an abap web dynpro application.
    Any suggestions would be very welcome.
    Regards,
    Bert

    I dont think you can open a Web Browser within a Browser.
    But you can call the URL in a new window using the following code;
    data lo_window_manager type ref to if_wd_window_manager.
    data lo_api_component  type ref to if_wd_component.
    data lo_window         type ref to if_wd_window.lo_api_component  = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_api_component->get_window_manager( ).
    CALL METHOD lo_window_manager->CREATE_EXTERNAL_WINDOW
      EXPORTING
        URL            = 'http://www.google.co.in/'
        MODAL          = ABAP_FALSE
        HAS_MENUBAR    = ABAP_TRUE
        IS_RESIZABLE   = ABAP_TRUE
        HAS_SCROLLBARS = ABAP_TRUE
        HAS_STATUSBAR  = ABAP_TRUE
        HAS_TOOLBAR    = ABAP_TRUE
        HAS_LOCATION   = ABAP_TRUE
      RECEIVING
        WINDOW         = lo_window.lo_window->open( ).

  • Can Spry display another web page within a detail region?

    I currently have a non-Spry enabled site I would like to add
    Spry to. Basically, it is a story/photo web site and I have
    separate pages created already for each photo "event" that includes
    text, pictures, etc. Right now I have a menu with all of the
    stories that the users clicks on and it takes them to that
    particular story. I also use templates to control a common look and
    feel and header, but basically, one web page per story (they are
    all similar, but varying # of pictures, paragraphs, etc.). It works
    fine, but it does reload the web page for every story.
    So, what I would like to do is have one region defined where
    I have a sorted list of "stories" with dates and brief descriptions
    and when a user clicks on one of the stories I would like it to
    display the web page I have already created in another
    region....kind of like message preview in Outlook. Anyway, I know
    it is easy enough to create an XML data set that defines the title
    of the story, date, etc., and I could even include a relative link
    of the actual web page story in the data set to define where the
    web page is. I guess my main question is, how would I display an
    entire web page inside the detail div "region"? I know if you just
    had a simple picture, it would look something like this: <img
    src="images/{@path}"><br/>Name:{@path}, but what tag could
    you use to pull in an entire web page to preview inside the detail
    div region?
    Thanks in advance!

    Well I don't know if this is exactly what you're looking for, but you can have a browser window pop up from an event in an applet. If you use something like:
    getAppletContext().showDocument(new URL(theUrl), "_blank");
    a new browser window will pop up with whatever URL you want.
    Hope that helps a little.
    -Sheepy.

  • Embedding third party web pages within a site

    Duplicate post - sorry - can a mod delete?

    Frames are not usually the optimal choice. However, this
    application
    requires that you would use them. Iframes are no better than
    frames, they
    just work a bit differently.
    > That's the thing with this web design lark - sometimes
    it seems no matter
    > what
    > you look to do, someone somewhere is saying :
    > 'I wouldn't do it like that....'
    Isn't that true with everything?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Iain71" <[email protected]> wrote in
    message
    news:f4cik4$2fl$[email protected]..
    > This isn't going as well as it might have :D (ever since
    i managed to post
    > it
    > so many times)
    >
    > Someone else said that d'uh - that's what frames /
    iframes are for - so I
    > guess I can just remind myself how to use them -
    although I had gotten the
    > impression that frames were considered bad practice
    these days, so thought
    > maybe there was a better way using <div>s.
    >
    > I'm also guessing that iframes are somehow better than
    regular frames,
    > although I saw that they only work in IE - which isn't
    that helpful.
    >
    > That's the thing with this web design lark - sometimes
    it seems no matter
    > what
    > you look to do, someone somewhere is saying :
    > 'I wouldn't do it like that....'
    >
    > :D
    >

  • Help with linking to a web page within same browser window

    I just upgraded my Flash MX to CS5.5 and am completely stumped at what would appear to be the most basic of functions.
    I have a small Flash movie that is embedded on a site. At the end of the movie, there is a call to action to click to another page on that site. However, it appears the only action in the Code Snippets panel is for an action that opens a new browser window. I miss the basic actions panel! Am I missing something here? How do I accomplish what I need to? I tried changing the code to "_self" instead of "_blank" but that doesn't work
    Here's the code:
    button_5.addEventListener(MouseEvent.CLICK,fl_ClickToGoToWebPage_9);
    function fl_ClickToGoToWebPage_9(event:MouseEvent):void
        navigateToURL(new URLRequest("purchase.html"), "_blank");

    You know, I tried that twice, and it didn't work...now it worked. Go figure
    Must have had something else wrong in the code.
    Thanks!

  • My web page opens an iframe, so that the iframe does not load only on FIREFOX 14.0.1 in previous versions it opens normally link to the test ..

    https://www.promocoesvisa.com.br/p/vaidevisa/asp/conta/cadastro-rapido/cadastro-rapido.asp?m=CAD

    This header? [https://developer.mozilla.org/en-US/docs/The_X-FRAME-OPTIONS_response_header The X-Frame-Options response header]
    There was a change in Firefox 14.0.1 regarding this header. In earlier versions of Firefox, if you had a duplicated value in your header, a bug in Firefox caused it to ignore the header. This was fixed in Firefox 14.0.1. See: [http://www.mozilla.org/security/announce/2012/mfsa2012-51.html MFSA 2012-51: X-Frame-Options header ignored when duplicated].
    If you are using SAMEORIGIN now, are the origins identical: e.g., same protocol://hostname:port number/?

  • Web page in iframe does not maintain scroll position on refresh in FF4

    I have a web page on my local drive which refreshes live sports commentary every minute in an iframe.
    In FF3.6.x the page in the iframe retained the scroll position of where I had moved to.
    In FF4 the page within the iframe goes back to the top so I now have to scroll down every time to where I want to read.
    I disabled all addins in FF4 and have tried this on different URLs but the page in the iframe still returns to the top.

    Similar problem running a 27" iMac only it occurs in Excel and inDesign. Hit the cell with the curser and the worksheet moves over to the right 7 or 8 cells away. Have to curser back to the cell quite frequently. This issue make the machine unusable when working with those two aps. Today I did the ultimate and completely reloaded Yosemite and the problem is still there.

  • Any way to embed web page in PDF page - like IFRAME

    Is there any way in Acrobat to embed a web page within a PDF page - similar to an IFRAME in an HTML page?

    [discussion moved to Acrobat Creating, Editing, and Exporting PDFs forum.]

  • How to print chinese web page with netscape browserver in Solaris 9 OS ?

    Dear All,
    I would like to print chinese web page within netscape browser in Solaris 9 Traditional Chinese OS, the print out result is garbage code on the paper not correctly chinese fonts.
    I can print out correctly the chinese document create by StarSuite 7.0 on Solaris 9 OS environment and also the chinese web page is correctly display within Netscape browser but for printing is abnomal result.
    Can someone point me to how to do print chinese web page with browser in Solaris 9 environment ?
    Best Regards,
    -- Kuo

    hi
    i have encountered this problem before and i remember downloading some fonts package and installing it. u could google search your question and it should provide the solution.thats how i stumbled upon the package.
    cheers,
    bunny

  • How to display response of http request as a web page in ABAP?

    Hi all,
    In ABAP, we can use class <b>cl_http_client</b> to send a http requst and then got the response data as a XSTRING variable. Usually, the response data is the html source of a web page. How to display this web page within dynpro?
    I found we can use class <b>cl_gui_html_viewer</b> to display the web page of a URL or data in SAP web respository. Is there any way of using it to load response data in cl_http_client and display that web page?
    Thanks a lot.

    Welcome to SDN.
    1. use http_client->response->get_cdata( ).
    to get the response data in string format instead of xstring format.
    2. use FM CONVERT_STRING_TO_TABLE to covert the string to table of type W3HTML
    3. use method
    data: l_doc_url(255) type c.
          call method html_control->load_data
                      exporting
                         type         = 'text'
                         subtype      = 'html'
                      importing
                         assigned_url = l_doc_url
                      changing
                         data_table   = html_table.
    call method html_control->show_data
                      exporting
                         url       = l_doc_url.
    to load the html content and show it in cl_gui_html_viewer
    Regards
    Raja

Maybe you are looking for

  • Macbook air startup disk full, after removed 149GB pic folder

    After I removed ALL pictures worth of 149GB, I still get the "startup disk full" message. It pops out all the time, more than frustrating, my air is not just a typewriter.

  • Driver for C-844

    hi everyone I need your Help, I am working with C-844 this is a PRECISION MOTOR CONTROLLER from Physik Instrument (PI) and I want to link this equipment with PC form NI "PXI-1033". The LabVIEW Diver that I found is too old and is not compatible  with

  • New DW Web Manager

    I have just been given the task to obtain DW and create a web site for our town. I have experience with Front Page but not DW. I have downloaded the trial version and have seen where there are tutorials. I am looking for a structured approach to quic

  • Muvo^2 5.0GB with Windows Vi

    I'm having trouble with the down- and uploading of music on my Muvo^2 5.0GB. Everything works perfect on my old desktop with windows XP and the muvo firmware is as up to date as possible. Though for some reason I cant maintain connection with the mp3

  • Contacts missing and does not save

    Hi. I updated software 10.2.0.424. All my contacts dissapeared. When I wanted to reload them it does not save and the contact field remains empty. I have rebooted and taken my sim out. No contacts are displayed even when I select bbm contacts. What c