Cl_gui_html_viewer browser vs window

for my application I need to include a cl_gui_html_viewer in a respective custom container within a dynpro and then have a new explorer being opened for each modus instead of just a new window. Currently (default setting ) when I call my dynpro from two different sap modus on the same computer, then one opens the explorer and the other one just opens a new window to the same explorer.
Does anybody know if this can be changed, may be via property setting?
Thanks a lot!
Ana

Hi Ana,
I'm working on an application which also seems to have the same problem as you mentioned. My application opens a url which contains a Interactive Adobe Form using CL_GUI_HTML_VIEWER also. And the Adobe Form contacts SAP using a custom BAPI.
However, when another similar form (Not just using CL_GUI_HTML_VIEWER in SAP but even when opened in a standalone IE Browser) is opened and the BAPI is processed,  Both the Adobe forms are processed and and Both contain the same data once the forms are complete. This is more like a Session ID needs to be issued for each instance of the HTML_VIEWER.  Can this be specified using a Property? Please let me know if you have any thoughts on this.
Thanks in advance,
Jr.

Similar Messages

  • File procol hyperlink bug in the IE browser of Windows 8.1 Enterprise Evaluation

    Hyper links with standard file protocol don't work with the IE browser of Windows 8.1 Enterprise Evaluation
    The same hyperlinks work under the same Windows 8.1. Enterprise Evaluation:
    1. Google Chrome
    2. Opera
    3. Fire fox
    4. Safari
    The same hyperlinks work under the Windows 7.1
    Example:
    <a href="file:///E://xxxxxxxx/yyyyyyyy.html" target="_blank">zzzzzzzz</a>
    5. The problem arises what ever the drive i.e.
    F: G: H: I: ... R:  i.e. not only in I: as stated in some references

    Hi,
    Make sure the URLs are in correct format, just like examples listed in this link, some "bad" URLs can still work in other browsers, but not in IE.
    http://blogs.msdn.com/b/ie/archive/2006/12/06/file-uris-in-windows.aspx
    Or check you IE security settings, lower the security setting level in Internet Options\Security, or add the address to a trusted site, if you have turned on IE protected mode, then turn off it as a test
    Add: What happens if you directly drag the file from File Explorer to the IE address bar?
    Yolanda Zhu
    TechNet Community Support

  • How to open my Ireport in new browser tab window

    hi
    I'm using Jdev v 11.1.2.3.0
    Isucced in conneting and calling (ireport) generated report from my adf application in pdf file format
    All what I want to do now is to call or open the report in browser tab window
    I can call it in the same tab window
    using this line code
    response.setHeader("Cache-Control", "max-age=0");
    or
    make attachment download
    using this line code
    response.setHeader("Content-Disposition", "attachment; filename=\"report.pdf\"");
    please help me in this last setp
    here is my code to call ireport
    after adding nessesary jar files and Datasource in wedlojic
    maybe it help others
    ============
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.sql.Connection;
    import java.util.HashMap;
    import java.util.Map;
    import javax.faces.context.FacesContext;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import javax.sql.DataSource;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.type.WhenNoDataTypeEnum;
    import net.sf.jasperreports.engine.util.JRLoader;
    import oracle.adf.model.BindingContext;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    import oracle.binding.BindingContainer;
    //import oracle.adf.model.binding.DCIteratorBinding;
    public class mainNew {
    private RichInputText copyFrom;
    private RichInputText copyTo;
    public mainNew() {
    public void setCopyFrom(RichInputText copyFrom) {
    this.copyFrom = copyFrom;
    public RichInputText getCopyFrom() {
    return copyFrom;
    public void setCopyTo(RichInputText copyTo) {
    this.copyTo = copyTo;
    public RichInputText getCopyTo() {
    return copyTo;
    public String cb3_action() {
    String s =(String)copyFrom.getValue();
    String d =(String)copyTo.getValue();
    // copyTo.setValue(s);
    // DCIteratorBinding empIter = (DCIteratorBinding) getBindings().get("Employees1Iterator");
    // String empId = empIter.getCurrentRow().getAttribute("DepartmentId").toString();
    Map m = new HashMap();
    System.out.println(s) ;
    System.out.println(d) ;
    // m.put("eployeeId", copyFrom.getValue() );
    if (s!=null) {
    m.put("whr", "Where department_id ="+s); }
    if (d!=null) {
    m.put("whr", "Where employee_id= "+d);}
    if (s != null & d==null)
    { m.put("whr", "Where department_id ="+s);
    if (s==null & d!=null) {
    m.put("whr", "Where employee_id= "+d);}
    if (s!=null & d!=null) {
    m.put("whr", "Where department_id ="+s +" and employee_id="+d);}
    if (s==null & d==null) {
    m.put("whr", "Where 1=2");}
    try
    // runReport("empRep2.jasper", m);
    runReport("empsDyn.jasper", m);
    catch (Exception e)
    return null;
    public BindingContainer getBindings()
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    public Connection getDataSourceConnection(String dataSourceName)
    throws Exception
    Context ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup(dataSourceName);
    return ds.getConnection();
    private Connection getConnection() throws Exception
    return getDataSourceConnection("hrDS");
    public ServletContext getContext()
    return (ServletContext)getFacesContext().getExternalContext().getContext();
    public HttpServletResponse getResponse()
    return (HttpServletResponse)getFacesContext().getExternalContext().getResponse();
    public static FacesContext getFacesContext()
    return FacesContext.getCurrentInstance();
    public void runReport(String repPath, java.util.Map param) throws Exception
    Connection conn = null;
    try
    HttpServletResponse response = getResponse();
    ServletOutputStream out = response.getOutputStream();
    /// response.setHeader("Cache-Control", "max-age=0"); // opens in same page
    response.setHeader("Content-Disposition", "attachment; filename=\"report.pdf\""); // genreat adownload file
    // response.setHeader("Content-Disposition", "inline; filename=\"" + "Report.pdf\"");//opens in same page
    response.setContentType("application/pdf");
    ServletContext context = getContext();
    InputStream fs = context.getResourceAsStream("/reports/" + repPath);
    JasperReport template = (JasperReport) JRLoader.loadObject(fs);
    template.setWhenNoDataType(WhenNoDataTypeEnum.ALL_SECTIONS_NO_DETAIL);
    conn = getConnection();
    JasperPrint print = JasperFillManager.fillReport(template, param, conn);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    JasperExportManager.exportReportToPdfStream(print, baos);
    out.write(baos.toByteArray());
    out.flush();
    out.close();
    FacesContext.getCurrentInstance().responseComplete();
    catch (Exception jex)
    jex.printStackTrace();
    finally
    close(conn);
    public void close(Connection con)
    if (con != null)
    try
    con.close();
    catch (Exception e)
    }

    One solution would be to generate the report via an servlet which you then call with an af:golink with an target frame set to blank.
    For a sample how to do this check out http://tompeez.wordpress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-3/
    Timo

  • Audio tag not working in safari 5.1.7 browser on windows 7 machine

    Hi,
    I have a query. I need to play mp3 sound in the safari 5.1.7 browser on windows 7 machine using javascript code.
    I have tried all the three tags(<audio> <embed> and <object>) for playing mp3 audio in the javascript function. But I am not able to play sound. I also doubt whether there is a change needs to be done in safari browser settings. Can anyone please guide me on playing mp3 sound.
    function playSound() {
        soundURL = "LoginSound.mp3";
        <audio autoplay=\"true\" ><source src=\""+soundURL+"\" type=\"audio/mpeg\"></audio>
        <embed id=emb1 src='"+soundURL+"' hidden=true autostart=true loop=false>
        <object data='"+soundURL+"' type='audio' src='"+soundURL+"' autoplay=true autostart=true>

    Hi,
    I have a query. I need to play mp3 sound in the safari 5.1.7 browser on windows 7 machine using javascript code.
    I have tried all the three tags(<audio> <embed> and <object>) for playing mp3 audio in the javascript function. But I am not able to play sound. I also doubt whether there is a change needs to be done in safari browser settings. Can anyone please guide me on playing mp3 sound.
    function playSound() {
        soundURL = "LoginSound.mp3";
        <audio autoplay=\"true\" ><source src=\""+soundURL+"\" type=\"audio/mpeg\"></audio>
        <embed id=emb1 src='"+soundURL+"' hidden=true autostart=true loop=false>
        <object data='"+soundURL+"' type='audio' src='"+soundURL+"' autoplay=true autostart=true>

  • When I open my browser the window is very narrow. How do I get it to expand.

    When I opem my browser the window is very narrow How do I get it to expand?

    Grab the bottom right corner and expand it.  Quit the browser and start it again and see if it retains your setting.
    Captfred

  • End-user closes the Web browser's window...

    Hi ,
    I have an Exit_Form selection on a menu.....
    Is it possible the code being there to be executed whenever the end-user closes the web-browser's window.....???
    I use Dev10g.
    Thanks , a lot
    Simon

    Unfortunately... is is not applicable....because:
    1) Many users(application users) connect via a db user to the database.... , so i cannot relate each application user to a db session.
    2) The trigger on_logoff can not be used because of the first note....
    3) As i have written in my previous post the "exit_form" is not 'pure PL/SQL' code but 'forms' code.... It contains some 'erase(global_variables)' which are unknown to the db......
    Thanks , anyway...
    Simon

  • File Browser/Library window wont appear

    My file browser/ library window won't appear, it's gone? I tried checking and unchecking them under the window pull down menu.No Luck. I have all the latest updates
    Anyone have any ideas?
    THX

    OH GOOD LORD, MAN...
    Search is your friend:
    http://discussions.apple.com/thread.jspa?threadID=1958978&tstart=0
    you just had to slide your eyes down the page only slightly...
    Next time try the search, it's delicious!
    http://discussions.apple.com/search.jspa?q=libraryfilewindow&objID=f656&dateRange=all
    Patrick

  • How to enable IE11 x64 browser in windows 8.1 domain user

    Hi all,
    I was trying to enable IE11x64 bit browser in windows 8.1x64 bit ent for domain users and i was unable to enable it.
    step 1: i enabled Enable enhanced Protection mode
    step 2:It will be 64bit, only when this feature is checked, otherwise IE will still use a 32bit process.
    Tabs are displayed in 32 bit.
    can anybody help me with this issue.
    i want 64 bit tabs to be opened instead of 32 bit

    Start secpol.msc and go to Local policies > Security Options. Set "Accounts: Block Microsoft accounts" to "User's can't add Microsoft accounts".
    Blogging about Windows for IT pros at
    www.theexperienceblog.com

  • 10.6.8 Slow SMB browsing of Windows Servers 2008

    MY IMAC 21 .5 Inch MAC OS X 10.6.8 slow SMB browsing of windows Server 2008 kindly anybody have any idea why its happened or after LION release maybe this issue will be solve.

    Hehe... Servers are tricky things for sure. 
    It sounds like you're expecting to have users log in from outside your network, but that you're testing from within?  Is this the case?
    If your users are trying to log in from outside the local network of the server, then you'll need to ensure that the correct port forwarding is set up on your firewall.
    Next thing I'd try...  Simplify your share to ensure that the problem isn't with your group set up.  Eliminate all the ACL's associated with it.
    Add one sole user to the ACL, give it read and write, and try to log in using that credential.
    Ensure that the POSIX Permissions are set to default.  (administrator should be the owner, staff should be group, read and writable only by the owner, everyone else gets read only)
    If that works, remove that user, add a group to the ACL and try and log in using a user that's listed in the new group specified.
    Perhaps if you supplied a little more info about your server and how it's connected to it's network.  What it's roles are etc. we might be able to give a little more insight.
    HTH
    -Graham

  • Default browser in Windows...

    You know, I am just amazed that Safari 4 still...still cannot correctly set itself as the default browser in Windows. Nothing but love for Apple, but...why...
    In the beta of 4, selecting Safari as the default browser in the Safari settings or in the Program Access Defaults had no effect for me. That still seems to be the case, but, at one point, it seemed to work. However, using "Run..." from the start menu with a URL would bring up Safari and an error that, for instance, read: "Windows cannot find 'www.google.com'..."
    If anyone has been able to properly set Safari as the default browser, please let me know how.
    Message was edited by: slakr

    No go. I tried again, and I am back to Safari being default. However, if I go to the Start Menu, click "Run...", type "www.google.com", and click OK, Safari comes up with Google, but I get the error:
    "Windows cannot find 'www.google.com'. Make sure you typed the name correctly, and then try again. To search for a file, click the Start button, and then click Search."
    If I do the same thing with Firefox or IE when they pop up correctly with no error.
    Also, playing around with it some more, it appears that I can only get this far if I set Safari as the default browser from the dialog that asks if you want to set Safari as default when Safari starts up.
    If I go into the Safari preferences, set say Firefox as default, and then type a URL into the Run box, Firefox comes up. If I then change the default browser back to Safari in the Safari preferences, Firefox will still be the default browser.
    If I then close the preferences, close Safari, restart Safari, and look at the preferences, Safari is shown as default, but Firefox is still really the default browser.
    Same thing happens if I go through the Program Access Defaults dialog. Safari will show as default, but Firefox will still be the default browser.
    I am running XP SP3.
    Safari 4 runs beautifully on all of my Macs, though. I just can't use those for work.

  • Instance  Browser popup window is empty

    Hello all,
    I am trying to create My First Composite Application tutorial. In the topic "Configuring the Object Selector User Inferface" for Configurator Object List I need to select from Instance Browser popup window related ObjectEditor object but Instance Browser window is empty.
    Can any body help me?
    best regards,
    Natalia

    Hi Natalia,
    Were you able to resolve your problem?
    If yes can you tell me how if you want.
    I'm experiencing the same problem
    Thank you.
    Kind regards,
    Tom.

  • Browser/ Search window = Larger?

    The bottom right window that is the browser/ search window for apple loops . .
    How do I make it larger, especially wider?
    Is there a floating window option for this?

    You can just click the tab and drag it off into its own window, then resize it to your heart's content. Whenever I do this, I tend to lose it somehow, either by closing it or getting it buried behind the main window, so it's handy to note that you can find it under the Tabs subsection of the Window menu. (I think. I'm not actually sitting in front of Soundtrack right now, and am doing this from memory.)

  • I can not attach any files to email or Facebook. When I go to "browse" the window comes up and disappears immediately. I updated browser and Adobe Flash. Restarted computer and zapped pram. any ideas? Please help!

    I can not attach any files to email or Facebook. When I go to "browse" the window comes up and disappears immediately. I updated browser and Adobe Flash. Restarted computer and zapped pram. any ideas? Please help!

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box. Don't use the Safari-only Guest login created by Find My Mac.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in Mac OS X 10.7 or later, then you can’t enable the Guest account. The Guest login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled under Mac OS X 10.7 or later, or if a firmware password is set, you can’t boot in safe mode.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Safari browser/google window erased

    I accidentally erased the browser/google window in safari. How do I get it back?

    Good to see the problem was solved from the suggestions provided. Glad to have helped.
    Aloha from Big Island.

  • How to remove Nokia Phone Browser from Windows Exp...

    Hello :-)
    This is registry hacking and your lawn's going to curl up and die right in front of you if you do that. OK?
    OK -- if you're happy with that, here's information, based on experience with Windows XP Pro SP2 and Nokia PC Suite 6.7 Release 22. It will probably work with other versions of Windows and PC Suite.
    It should be possible remove Nokia Phone Browser from Windows Explorer by going to HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideMyComputerIcons\
    and creating a Dword Value named
    {416651E4-9C3C-11D9-8BDE-F66BAD1E3F3A}
    with data of 1.
    That didn't work for me so I went to HKLM\SOFTWARE\Classes\CLSID\ and changed the name of {416651E4-9C3C-11D9-8BDE-F66BAD1E3F3A}
    (by adding a - on the end) to
    {416651E4-9C3C-11D9-8BDE-F66BAD1E3F3A}-.
    That worked and it's easy to undo the change.
    Best
    Charles
    Nokia 5130c-2

    This is incorrect. You can turn iMessage off and unregister your phone number from the service.  Actually getting that done, however, is difficult.
    http://support.apple.com/kb/HT5538
    https://discussions.apple.com/thread/5459299?start=0&tstart=0
    https://discussions.apple.com/thread/5218844?tstart=0
    http://techcrunch.com/2012/01/05/imessage-bug-traps-android-converters-personal- conversations-but-theres-a-fix/?icid=tc_home_art&/
    I wish Apple would just have an "Unregister Phone #" option within the Messages settings, and possibly within your Apple Supprt Profile.

Maybe you are looking for

  • How do I use two external monitors with my laptop?

    I have a new Pavilion dm4-301 d cl Entertainment PC.   My OS is Windows 7.   I am used to using two external monitors with a docking station.   This new laptop does not have a docking station.  What do I need to get  to use two external monitors?  Th

  • I give up: Trying to change to app with In App Purchase

    This should be such a simple process and procedure. I have an app priced at .99 in iTunes. I have been trying to change it to a free download, first 7 pages of app free preview, with an In App Purchase of .99 to view the rest of the app. Have followe

  • Transportation Calendar depends on route - how can this be configured?

    APO GATP - Transportation and Shipment Scheduling Hello, how can a transportation calendar - depending on the route - be considered? When we change the route (e.g. in VA02 sales order change) and trigger an ATP check the correct transit time (TRAN) i

  • Wet macbook pro value

    Hi. Someone in my family recently soaked a mid-2014 retina MBP then turned it on and the screen "made pretty rainbows" and the computer wouldn't work. Well, it seems to run fine now, except the battery charge shows 99% and states that it should be re

  • Bulleted list indentations

    I am creating a list with several bulleted items and sub-items. In Pages, I know how to indent a Level 2 or 3 or 4 item, but the actual "bullet" itself stays lined up along the left edge; it doesn't indent along with the text that follows it. How do