Displaying transaction  in IFrame

Hi All,
   Is it possible to display SAP transaction in IFrame UI control in webdynpro application, If so can some one explain me how to do that.
Regards,
Tarun.

Hi,
have a look at following message
This UI element is too broken to be really useful and cannot be fixed.
For integration of non-Web Dynpro applications, please use the Enterprise Portal instead.For embedding (help) texts and the like, please use the appropriate mechanisms, e.g. TextView, FormattedTextView, Explanation etc.
Portal layouts are way to presenting your iviews in portals.
Ashu

Similar Messages

  • OBIEE content cannot be displayed in the IFrame

    Hi,
    After embedding OBIEE 11.1.1.6.0 into EPM 11.1.2.1 EPM System Workspace ,i am getting below message ,while navigating through different dashboards (I have several tab's/pages under one dashboard and several dashboard links are present under each tab/page).
    OBIEE content cannot be displayed in the IFrame .
    I have tried the instanceconfig.xml and web.xml modifications And cleaning browser cache as per below blog ,but still the message is getting displayed .
    http://atlantabi.blogspot.com/2011/12/obiee-11g-obiee-content-cannot-be.html
    And After clicking OK , I am getting logged out of OBIEE .
    Am I missing anything ?
    Waiting for ur replies
    sayak

    sayak wrote:
    Hi,
    After embedding OBIEE 11.1.1.6.0 into EPM 11.1.2.1 EPM System Workspace ,i am getting below message ,while navigating through different dashboards (I have several tab's/pages under one dashboard and several dashboard links are present under each tab/page).
    OBIEE content cannot be displayed in the IFrame .
    I have tried the instanceconfig.xml and web.xml modifications And cleaning browser cache as per below blog ,but still the message is getting displayed .
    http://atlantabi.blogspot.com/2011/12/obiee-11g-obiee-content-cannot-be.html
    And After clicking OK , I am getting logged out of OBIEE .
    Am I missing anything ?
    Waiting for ur replies
    sayakHi Sayak,
    Read through the content of this in MOS: Integration Of Obiee In 8.1.1.3: "OBIEE content cannot be displayed in the IFRAME" [ID 1296232.1]
    Although applying the security setting is a workaround to fix this problem, oracle highly recommends to use Virtual IP or single OHS/Apache/IIS solution be adopted instead.

  • MIRO : Click Event Link to PO Display transaction

    Hi
    I am using MIRO transaction.
    I have added new custom tab along with PO reference/GL account tab.
    In Custom tab i have called subscreen with table control and added few fields including
    PO number field. Now when i click PO number it has to go PO display screen like one already exist in PO reference tab.
    I followed below solution but does not work out.
    ->In subcreen PAI,i wrote
          FIELD WA_TC_LIV-EBELN    Module call_me23n.
    MODULE CALL_ME23N INPUT.
    GET CURSOR FIELD WA_TC_LIV-EBELN.
    if sy-subrc = 0.
    call transaction 'ME23N'.
    endif.
    ENDMODULE.    
    But when i click outside tab also its goes to display transaction. I need it to work only on
    Click of particular PO number.
    Pls advice.
    Regards

    Hi
    Thanks for support
    I solved myself doing below. just for reference
      data: cursorfield(30) type c,
            cursorline(30) type c,
            cursorvalue(30) type c.
      GET CURSOR FIELD CURSORFIELD LINE CURSORLINE VALUE CURSORVALUE.
      IF NOT CURSORVALUE IS INITIAL.
        CASE CURSORFIELD.
          WHEN 'WA_TC_LIV-EBELN'.
           SET PARAMETER ID 'BES' FIELD CURSORVALUE.
            CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
        ENDCASE.
      ENDIF.
    Edited by: princeck on Oct 14, 2011 7:45 AM

  • Columns in table control in display mode in display transaction

    Hi all,
    I have a table control in a custom screen .Now i have few columns in the table control which need to be input enbaled but should be dislay only when thetransaction mode is "display" e.g VL33N.
    I have written the follwoing lines of code:
    IF sy-tcode = 'VL33N'.
        IF g_trtyp = 'A'.
          LOOP AT tc01-cols INTO wa_tc01.
            IF wa_tc01-screen-group1 = 'G2'.
              wa_tc01-screen-input = 0.
              MODIFY tc01-cols FROM wa_tc01.
            ENDIF.
          ENDLOOP.
    ENDIF.
    ENDIF.
    However the specific olumns in table control are not displayed in display mode when in display transaction!
    Can anyone suggest what am i doing wrong?
    thanks.

    I would have answered if you followed forum rules (as I can see in your previous posts, missing feedback, closed without any info)

  • Field and Link T. Code selection for display transaction

    Hi,
    I want to know the transaction code with which we can customize whixh field to be disply when we execute  the display transaction like ME2L  ,ME2M  ,MB5B  , MB51 etc. and as when we click on PO in ME2M we directly switch to ME23N how to do configuration of all this.
    regards,
      zafar

    Hi
    Any report like ME2M, ME2K, ME2L, MB51 already link has been provided . If you click on the purchase order number, material etc., it will take to the dispaly of the particular screen.
    Thanks
    raman

  • Highlight current menu item whose page is displayed in an iFrame

    Greetings,
    Looking for the Holy Grail here...
    So the parent page has static menu and an iframe which then loads in a specific pages as the user clicks on the menu items (which are ul li tags).
    I would like to be able to highlight a menu item based on the page content being displayed in an iframe. It seems to be quite difficult to do for this style of page load using iframe method. I know it would be easier using php, but I can only use iframe (long story).
    When page 1 is displayed in the iframe, I would like for the corresponding menu item to be highlighted.
    I'm hoping the answer is out there somewhere as iframe has been around forever. If you would like to see my code, I'm happy to provide this.
    Thanks!

    Sure, here you go...
    1. Add this code between your <head> tags:
    <script type="text/javascript">
        function offclass(id)
        {document.getElementById(id).className = 'class_off';}
        function onclass(id)
        {document.getElementById(id).className = 'class_on';}
    </script>
    2. In your css, create your on and off styles (I used <a> you can use <li> the same way)...
    a.class_on {
        color:blue;
    a.class_off {
        color:red;
    3. Add id's (individual to each link), classes (set to the off class you make) and onclick events (one to turn the link on and several to turn off the others) to your links...
    <a id="link1" class="class_off" href="http://www.apple.com" target="mr_jones" onclick="onclass('link1'); offclass('link2'); offclass('link3');">Link 1</a>
    <a id="link2" class="class_off" href="http://www.adobe.com" target="mr_jones" onclick="onclass('link2'); offclass('link1'); offclass('link3');">Link 2</a>
    <a id="link3" class="class_off" href="http://www.foxnews.com" target="mr_jones" onclick="onclass('link3'); offclass('link1'); offclass('link2');">Link 3</a>
    4. Give your iframe the name used for your target and a base "on page load source" (I used a # so it's blank on load)...
    <iframe id="mr_jones" name="mr_jones" width="420" height="315" src="#" frameborder="0"></iframe>
    That's it. As you increase the number of links, you just need to make sure you have an offclass for each new one added in to turn those off when you click.

  • Display Transaction Number

    Hi,
    Is there any way to display Transaction No, while processing Transaction. For, e.g
    Once I click on 'Add' button to process A/P invoice or A/R Invoice or A/R Credit Note, it should display 'Trans No'. This field is visible as Trans No in Journal Entry form.
    If so, can anyone help me in resolving this issue.
    Regards
    Ronald

    Hi Ronald,
    Answering your question you cannot invoke SHIFTF2 on Add.  SHIFTF2 is the key combination to fire the query manually which is saved in a particular field.
    There are only 2 ways to go about this.
    One creating a formatted search as Dinesh suggested and refresh the A/P invoice or A/R Invoice or A/R Credit Note with the transaction no.
    Two,  using the SBO_TransactionNotification Stored Procedure at the database level and updating this user field.  This will need some coding and you would need to identify the ObjectTypes for (A/P invoice or A/R Invoice or A/R Credit Note ) and update the user field with the transid
    Suda

  • FM to display transaction CN23

    Hi all,
    Is there any Function module which can display transaction CN23?
    If you have any inputs, please let me know.
    Thanks and regards,
    Ridhima

    Hi Ridhima,
    You don't need an Fm for this:
    you can simply do this:
    if you capture the network number into a variable, say v_network.
    set parameter id 'ANR' field v_network.
    call transaction 'CN23' and skip first screen.
    sample code:
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
        I_CALLBACK_PROGRAM                = W_REPID
        I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS'
        I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
    FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM
                            P_SELFLD TYPE SLIS_SELFIELD.
    v_network = p_selfld-value.
    set parameter id 'ANR' field v_network.
    call transaction 'CN23' and skip first screen.
    ENDFORM.
    Regards,
    Ravi
    Message was edited by:
            Ravi Kanth Talagana

  • Generate report for displaying transaction codes role wise

    hi,
    i want to generate a consolidated report in which all transactions codes are displayed role wise.In TR SUIM the report is generated using one role at a time.i want an option where i can fill the require roles and get the consolidated reports.is it possible.please help..
    thanx,

    Hi,
    Your question is not about SOA.
    You should ask you question in an appropriate forum (Security ?) where you will have more chances to get a useful answer.
    Regards,
    Olivier

  • Error while displaying transaction

    Hi,
    I m new to EP6 and getting a problem in viewing any sap transaction in an IView.
    I added a new system and supplied appropriate attributes.
    In the connection test it gave me following result:
    Results
    SAP Web AS Connection - Aug 27, 2005 6:45:37 AM
      Test Details:
    The test consists of the following steps:
    1. Check that the system object defines an SAP system
    2. Validate the following parameters: wap.WAS.protocol; wap.WAS.hostname
    3. Check the HTTP/S connection to the defined backend application
      Results
    1. The system object represents an SAP system.
    2. The following parameters are valid: wap.WAS.protocol (http) ; wap.WAS.hostname (ko.mysap.erp)
    3. HTTP/S connection failed. Make sure the protocol, host name, and user mapping are correctly defined.
    ITS Connection - Aug 27, 2005 6:45:37 AM
      Test Details:
    The test consists of the following steps:
    1. Check that the system object defines an SAP system
    2. Validate the following parameters: wap.ITS.path; wap.ITS.protocol; wap.ITS.hostname
    3. Check the HTTP/S connection to the defined backend application
      Results
    1. The system object represents an SAP system.
    2. The following parameters are not valid: wap.ITS.path () ; wap.ITS.protocol () ; wap.ITS.hostname ()
    Test Connection with Connector - Aug 27, 2005 6:45:37 AM
      Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this system object
      Results
    Retrieval of default alias successful
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    Then when tried to preview an IView (sap transaction type) with the system created above it asked username :passowrd but then gave the following error:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Application URL ':///webgui/!' is not valid! Please check the protocol and host entries for system 'ERP3'..
    I have set the TCODE for iview to be SE16 with WEBGUI type.
    Plz tell me what could be the cause for this and how toresolve this.
    Thanks & Regards,
    Ankur

    Hi Raja,
    I already have supplied WAS parameters.
    However after supplying ITS parameters the runtime error is gone but now i m getting "page cannot be displayed".
    The connection Test Results are as follows:
    Results
    SAP Web AS Connection
      Test Details:
    The test consists of the following steps:
    1. Check that the system object defines an SAP system
    2. Validate the following parameters: wap.WAS.protocol; wap.WAS.hostname
    3. Check the HTTP/S connection to the defined backend application
      Results
    1. The system object represents an SAP system.
    2. The following parameters are valid: wap.WAS.protocol (http) ; wap.WAS.hostname (ko.mysap.erp)
    3. HTTP/S connection failed. Make sure the protocol, host name, and user mapping are correctly defined.
    ITS Connection
      Test Details:
    The test consists of the following steps:
    1. Check that the system object defines an SAP system
    2. Validate the following parameters: wap.ITS.path; wap.ITS.protocol; wap.ITS.hostname
    3. Check the HTTP/S connection to the defined backend application
      Results
    1. The system object represents an SAP system.
    2. The following parameters are valid: wap.ITS.path (/sap/public/bc/gui/sap/its/webgui) ; wap.ITS.protocol (http) ; wap.ITS.hostname (ko.mysap.erp)
    3. HTTP/S connection failed. Make sure the protocol, host name, and user mapping are correctly defined.
    Test Connection with Connector 
      Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this system object
      Results
    Retrieval of default alias successful
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    Thanks & Regards,
    Ankur
    Message was edited by: Ankur Jain

  • PDF display problem in Iframe

    I have a main JSF page MainPage.jsp.
    User clicks on a button in this main page and a new JSF page ChildPage.jsp is opened in another window.
    The ChildPage.jsp has some data in it and also has 3 iframes and each of them again is a jsp
    (say Iframe1.jsp, Iframe2.jsp and Iframe3.jsp. )
    Onload of Iframe3.jsp it submits to a servlet and a pdf document is displayed in that.
    Iframe1.jsp and Iframe2.jsp are JSF pages where as Iframe3.jsp is a pure html as below
    <html>
    <head>
    <script>
    function tryMe(){setTimeout("submitForm()", 1000);}
    function submitForm(){
    document.forms[0].action="/ctx/MyServlet?Id=300";
    document.forms[0].submit();
    </script>
    </head>
    <body onload="tryMe()">
    <FORM NAME="MyForm">
    Please wait, the document is loading...
    </FORM>
    </body>
    </html>
    Now here is the problem.
    Sometimes this works fine and sometimes this just doesnt show up the pdf.
    I have put debug messages in servlet and it seems there is no error and
    the messages shows that the pdf is written to the outputstream,
    however i dont see anything on the browser.
    I tried adding a delay of 1 minute (as in the javascript above) in submission of the page
    the error reduced by 80% but still it occurs sometimes.
    What could be the cause. I couldnt think much .
    Any help will be appreciated.
    Thank You

    After so many hours of searching, I finally found both culprits!!!
    A) the blue: It was stupid of me, really... it was simply that the "highlight existing fields" was selected (right top corner, usually). Once I de-selected it, all the blue went away... but data continued to disappear except when a box was selected. See B...
    B) Do NOT, Never ever, use Preview to make changes in a .pdf file and then save the file... That was the problem!
    It must've happened a few times, for example it just did this morning, on my new laptop on which I hadn't set Adobe to be my default program for .pdf and the file opened in Preview... I didn't even notice...
    And after searching some more I found a few threads and all had in common that people had used Preview to make changes and save the file... seems that Preview corrupts the files!
    By the way, Eric, no, opening in Preview did NOT give the same results... but files I opened that had never been opened (or, at least, not tempered with) in Preview were all fine...
    Thanks for your help though!

  • PDF locking when displaying it in iFrame in browser

    Hi guys,
    I have a webpage written in ASP.NET which displays a PDF in the browser using an iFrame. Relevant ASPX code is below:
    <iframe id="ifrmPDF" src='<%=sFile %>'></iframe>
    Where the variable sFile is the path to the PDF that I am displaying.
    But for some reason displaying the PDF in this way is having the effect of locking the file so it cannot be updated on the server while somebody is viewing it. I was under the impression that when you view a PDF in a browser a copy was downloaded to the local machine and it was that which was being viewed but this doesn't appear to be the case.
    Can anyone tell me of another way to display a PDF in a browser which will allow the file to be overwritten in the background?
    Any help would be greatly appreciated and if you need anymore info then please let me know.
    Thanks,
    Al

    Hi,
    have a look at following message
    This UI element is too broken to be really useful and cannot be fixed.
    For integration of non-Web Dynpro applications, please use the Enterprise Portal instead.For embedding (help) texts and the like, please use the appropriate mechanisms, e.g. TextView, FormattedTextView, Explanation etc.
    Portal layouts are way to presenting your iviews in portals.
    Ashu

  • Display data and iframe side by side

    Hi Experts,
    I have a requirement like to display the header and item details on left side of the page and another webpage using iframe tag on right side. How is it possible? I should not use the tabstrips.
    Can anybody please help me out how can I display the data and iframe side by side?
    Regards,
    Ranganadh.

    Hi Ranganadh,
    First you need to create a BSP page that holds the header and Item details(Let's say this as custom.htm).
    Secondly create a new page with frame set tag and call the custom.htm page and other webpage with URL.
    Sample coding will be like
    <%@page language="abap" forceEncode="html" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design           = "classic+design2002+design2003"
                   controlRendering = "sap"
                   rtlAutoSwitch    = "true" >
      <htmlb:document>
        <htmlb:documentHead title="Testing for Frames" >
                 <frameset cols="50%,50%" framespacing="0" frameborder="0">
                   <frame name="menu" src="h t t p://www.google.com" scrolling="auto" noresize>
                   <frame name="main" src="h t t p://www.yahoo.com" scrolling="auto">
                 </frameset>
        </htmlb:documentHead>
      </htmlb:document>
    </htmlb:content>
    In the above code replace "http://www.google.com" with your custom.htm page
    Remove spaces between http and noresize will not allow user to resize the frame.
    Regards,
    Ravi
    Edited by: Ravi A on Mar 14, 2011 7:32 PM

  • Issue displaying content on iframes.

    Hello everyone,
    I am trying to display a few pages on an iframe for a few seconds each on a loop. 
    I have been able to display content on the iframe when I do it by adding this line.
    frame1.Attributes["src"] = "http://intranet.contoso.com/sites/Report";
    Unfortunately it does not work when I try to put it in a loop:
    do
    frame1.Attributes["src"] = "http://intranet.contoso.com/sites/Report";
    Thread.Sleep(5000);
    frame1.Attributes["src"] = "http://intranet.contoso.com/sites/dashboard";
    Thread.Sleep(5000);
    } while (true);
    Is there something I am missing?
    Thanks so much for your help.
    There is always something above the sky

    Please post ASP.NET related questions in the ASP.NET forums:
    http://forums.asp.net

  • Display file in iframe

    I have a main report and using webelements to display a detail rpt in an iframe. Is it possible to change the opendoc coding and display an Excel file in that iframe? Instead of a CR rpt?
    Also, would it be possible to send some parameters to the embedded Excel file?
    Thanks

    you can use opendocument to open an excel file with using just the file name in the repository.
    for example
    stringvar path:= "/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sDocName=myexcelfile";
    WEIFrame ("myiframe", path, 600, 400, "no")
    note that in a web viewer you don't get the full excel toolbar. also, not being an excel user, i am not sure how you would pass any context parameters to excel.

Maybe you are looking for