Using dialog-window in CE 7.1 without gray-scale

I'm using the new "dialog-popup" feauture in my CE 7.1 WebDynPro.
When i'm integrating the WD into an Portal iView (eg. URL-IView or WebDynPro)
the "gray-screen" is over the portal masthead. So I can't navigate anymore!
I tried allready URL-Iview or Webdynpro with nearly any parameter.
Is there an other possibility, so that the dialog-screen is only into the "IView" or better say content-part?
Regards
Marco

Hi Manuel
i don't use any "external window". I use an Model-Window like an Dialog.
And we talk about the new NetWeaver CE 7.1 Version - in which one the "issue" appears.
Something like this, i use to create the dialog.
public void showAddressbookPopup() {
// @@begin showAddressbookPopup()
// get the repository content at runtime of the Web-Dynpro-
// Window u201CAddressbookWindowu201D
IWDWindowInfo windowInfo = (IWDWindowInfo) wdComponentAPI.getComponentInfo().findInWindows("AddressbookWindow");
// create the u201CAddressbookWindowu201D
IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
// set the WindowPosition on the screen
window.setWindowPosition(300, 150);
// and show the window
window.show();
// Save WindowInstance in Context
wdContext.currentPopupElement().setWindowInstance(window);
// @@end
My problem at all is only how to prohibit the interaction between the webdynpro an the portal or better say how to integrate the webdynpro, so that webdynpro itself doesn't know that he's into a portal and so on can't interact with it!
Regards
Marco

Similar Messages

  • File without opening the dialog window

    How do I open a file on Mac without dialog window using a pre-defined path network?
    example: myfile / mytest / mytestfile.ai
    Thanks

    Hi Ferrarezzi
    Just a tip
    If you look at your computer..in the same folder where Extended Script Toolkit application is installed, there´s a PDF called JavaScript Tools Guide.
    This guide has a chapter that covers all the File and Folder methods and properties. Read it. This would give you a great overview of what you can do with Files and Folders
    Best Regards
    Gustavo.

  • How can I convert an outlook pst file to mac mail without using a windows based computer

    I recently bought the new iMac as my older Windows based computer crashed with a bad motherboard.  I have been trying to find a way to convert Outlook 2007 pst files to Mac Mail without the need to use a Windows based computer since all I have now is a Mac.  I have the copies of the pst files on my Mac, so I am looking for the most efficient way to convert them to the format that I can then open them in the Mac Mail.  Any suggestions would be greatly appreciated.

    Hi - thanks for the instructions but where do you get the option for Quicktime. If I do File - Export I only get the options for File name, place and size but no option that allows to select quicktime:-(
    Have you got any more tips?

  • Using a dialog window to select a name and directory to save the file

    Hi there
    I have a problem with the FILE_SAVE_DIALOG method or better with the windows that will be shown.
    Before I save a file (e.g. PDF file) on the presentation server (the PC), I want to open a dialog window to have the option to give another directory and file name, under which I will save the file.
    Therefore I use the method CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG. I found many information about this FILE_SAVE_DIALOG in this forum, but these tips didn't satisfy me.
    The main problem is the FILE_FILTER. How to use this filter (is it a STRING?) properly, when I want to have a list in the dialog window? Nothing worked till now.
    I use ERP 2005 with JAVA 1.4.1-07.
    My Code:
    DATA: fileName         TYPE  STRING,
          path             TYPE  STRING,
          workdir          TYPE  STRING,
          user_action      TYPE  I,
          encoding         TYPE  ABAP_ENCODING.
        fileName = I_FILENAME.
        path = I_PATH.
        CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
           EXPORTING
             WINDOW_TITLE         = 'Save Adobe PDF file'
    *         WITH_ENCODING        = 'X'
             INITIAL_DIRECTORY    = workdir
    *         DEFAULT_EXTENSION    = '*.pdf'
             DEFAULT_FILE_NAME    = fileName
             FILE_FILTER          = '*.pdf'
             PROMPT_ON_OVERWRITE  = 'X'
          CHANGING
             FILENAME             = fileName
             PATH                 = path
             FULLPATH             = fullpath
             USER_ACTION          = user_action
             FILE_ENCODING        = encoding
          EXCEPTIONS
             CNTL_ERROR           = 1
             ERROR_NO_GUI         = 2
             NOT_SUPPORTED_BY_GUI = 3
             others               = 4.
        IF SY-SUBRC <> 0.
          EXIT.
        ENDIF.
        IF user_action <> CL_GUI_FRONTEND_SERVICES=>ACTION_OK.
          EXIT.
        ENDIF.
    When I call this method with these parameters, I get the dialog window, but there is no filtering for PDFs.
    I also tried the ideas with:
      FILE_FILTER = 'Adobe files (*.pdf)|(*.pdf)'
    and so on. But nothing made the dialog window work properly, even the selection list didn't show the right content to select.
    Who can help with this method SAVE_FILE_DIALOG?
    Thanks
    Frowin

    HI,
    check this program.
    <b>
    report ZTEST2.
    data:  file type string,
           path type string,
           file_path type string.
    data: itab type standard table of cskt.
    start-of-selection.
      SELECT * FROM cskt INTO TABLE itab.
      call method cl_gui_frontend_services=>file_save_dialog
          exporting
                    FILE_FILTER = '*.PDF'
          changing FILENAME = file
                   path     = path
                   fullpath = file_path.
      check not file_path is initial.
      call method cl_gui_frontend_services=>gui_download
        exporting    filename                = file_Path
                      WRITE_FIELD_SEPARATOR = 'X'
         changing    data_tab                = itab.
    </b>
    REgards,

  • How to open a text file without using dialog box

    I can open a file using dialog box but I want to open a file without using any dialog box for writing.
    With the following commands a new file is created.
    File outputFile = new File("outagain.txt");
    FileWriter out = new FileWriter(outputFile);
    I want to open an existing file and put some more text in it using FileWriter or any other object
    rgds,
    Arsalan

    import java.io.*;
    class UReader
        BufferedReader in;
        BufferedReader input;
        String fileName;
        public UReader(String fileName)
            this.fileName = null;
            this.fileName = fileName;
            try
                in = new BufferedReader(new FileReader(fileName));
                input = new BufferedReader(new FileReader("A.b"));
            catch(IOException _ex) { }
        public final String getContent()
            String txt = "";
            try
                while(in.ready())
                    txt = txt + in.readLine();
                    txt = txt + "\n";
                in.close();
                txt.trim();
            catch(IOException _ex) { }
            return txt;
        public final String getLine(int row)
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            if(row <= getRows()) {
                try
                    for(int i = 0; i < row; i++)
                        txt = input.readLine();
                    input.close();
                catch(IOException _ex) { }
            } else {
                txt = "Index out of Bounds";
            return txt;
        public final int getRows()
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            int rows = 0;
            try
                while(input.ready())
                    txt = input.readLine();
                    rows++;
                input.close();
            catch(IOException _ex) { }
            return rows;
    import java.io.*;
    import java.util.*;
    class UWriter
        PrintWriter out;
        String fileName;
        String[] txt;
        static int NEW_LINE = 1;
        static int APPEND = 0;
        public UWriter(String s)
            fileName = null;
            txt = null;
            fileName = s;
            try
                out = new PrintWriter(new BufferedWriter(new FileWriter(s, true)));
            catch(IOException ioexception) { }
        public final void addContent(String s, int i)
            int l = 0;
            StringBuffer sb = new StringBuffer(s);
            s.replaceAll("\n\n", "\n###\n");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            if(i == 0) {
                try
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception) { }
            } else {
                try
                    out.println();
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception1) { }
        public final void writeContent(String s)
            int l = 0;
            s.replaceAll("\n\n", "###");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            try
                PrintWriter bufferedwriter = new PrintWriter(new BufferedWriter(new FileWriter(fileName, false)));
                for (int j = 0; j < txt.length; ++j) {
                    bufferedwriter.println(txt[j]);
                bufferedwriter.close();
            catch(IOException ioexception) { }
    }Maybe they are not the best codes, i wrote them a long time ago, so dont ask why i did anything wierd. :D
    But anyway it works.

  • HT5639 if i use boot camp to establish windows on my Macbook pro can i then install a windows program and run it without another software ie parallels?

    Can I use a windows program such as QuickBooks on my macbook pro 15inch with only using boot camp or do i need to have another program?

    Boot Camp is everything you need to run a Windows application.
    Boot Camp allows you to install Windows in a second volume, so you can start up there and run all your Windows apps without needing any Mac OS X app. It's true that OS X apps like Parallels or VMware Fusion allow you to use your Boot Camp partition in Mac OS X, but it looks like you don't want that

  • I would like to use the windows explorer open dialog box instead of the adobe open dialog box. How can I change that?

    I would like to use the windows explorer open dialog box instead of the adobe open dialog box. How can I change that?

    The top screenshot is the Windows Open dialog box. All File > Open... commands in all Windows programs bring it up.   Try File > Open in Notepad for example.
    It belongs to Windows not Adobe. You cannot change this because there is no such thing as an Adobe Open dialog box.
    The bottom screenshot is Windows Explorer. It is Windows' OS File Browser, not an Open dialog.  It is not called up by Photoshop or any Windows program.
    You have to click on "My Computer" or a Folder icon to get to it. You can double-click a psd, jpeg or other image file in the Explorer window so that it opens in Photoshop.
    There is Adobe Bridge and Minibridge   Alt + Ctrl + O or File > Browse in Bridge

  • Locale not used in dialog-window

    Hey,
    My application uses properties-files for all the labels shown in the adf application and all the labels are shown in the proper language using the locale which is stored in a managed bean.
    The only page that doesn't seem to use the locale is my dialog-window. I've used the same coding to use the resourcebundle in the proper locale using the locale-attribuut on the f:view component but doesn't seem to do the trick for the dialog-window.
    Does anybody have any idea if this is a common issue ?
    Regards,
    Nathalie

    Frank,
    I've finally figured out what the problem was with the dialog-screen, it's very weard behaviour because it works differently in a dialog-screen than in a normal jspx-screen, a main window.
    In a main window my structure is as follows (code sample):
    <f:loadBundle basename="EPremierUI" var="uires"/>
    <f:view locale="#{userInfo.locale}">
    <afh:html>
    <afh:head title="#{uires['eDossiers.title.header']}">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    </afh:head>
    <afh:body>
    In the dialog-window I have to set the f:loadBundle tag inside the adf:html tag otherwise it wont work, the following code sample works for the dialog-screen:
    <f:view locale="#{userInfo.locale}">
    <afh:html>
         <f:loadBundle basename="EPremierUI" var="uires"/>
    <af:outputText value="#{facesContext.viewRoot.locale}"/>
    <afh:head title="#{uires['lovIndieners.header']}">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    </afh:head>
    What's the difference between a dialog-screen and a main-screen, isn't rendered differently using the adf-framework?

  • Enable to record the File Open Dialog window using SHDB

    Hi All,
    I am using CV02N for BDC recording.
    In this transaction I hae a File Browser button, which opens File Open Dialog window (using CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG method). Using this I can given the file name and Open.
    But, this File Open Dialog windows is not getting recorded using SHDB.
    Please help me how to solve this problem.
    Thanks in Advance,
    Shashidhar

    Hi,
    I doubt you can record the file open functionality in BDC.
    if there is any field which requries file path and directory better make it uniform and hard code it.
    Regds,

  • Can I use my Leopard (OS 10.5.8) to write a downloaded Windows file to a cd without being able to read the file?

    Can I use my Leopard (OS 10.5.8) to write a downloaded Windows file to a cd without being able to read the file?

    Thanks, Zombaby.
    I was trying to drag and drop the file out of the download file instead of where the actual file was stored.
    This it doesn't do.
    All these little twists between the brain and  success. 
    Thanks again.
    ghopper

  • How can we print using the windows printer dialog window?

    Hi,
    We recently got new printers and a printer setup on our server that are set to print in greyscale as a default. In the past the printers defaulted to printing in color. When I create VI's and reports I have used to set "Print on completion" or the print option from the Report Generation Toolkit, and I have received my prints in color. After changing the printer drivers on the server any printing method I used to do from LabVIEW will always produce greyscale prints. These prints are fine for everyday use, however we need color prints when the documents are for customers or for other official use.
    If I could only send documents/VI's to that process the user could override the "greyscale" setting and select "color" in the cases where we need a better looking print. Obviously the other option is to save the document/VI as a file and later print it from any windows software (Excel, Paint etc.).
    Do anyone have any neat tricks for printing using the windows printer dialog?

    You can change printer settings programmatically via a .NET assembly. You can also bring up the Print Dialog to change settings manually before printing.
    More info on the .NET assembly for colour settings here:
    https://msdn.microsoft.com/en-us/library/system.drawing.printing.pagesettings.color(v=vs.110).aspx
    An NI KB link on calling a print dialog:
    http://digital.ni.com/public.nsf/allkb/80DD23A28BD8ADF9862575AC0077B1BB?OpenDocument
    CLD

  • Without dialog window?

    I have an AppleScript that sends a message from one computer to another via Bonjour. I don't want dialog window to pop up. Is it possible? There is property "fisible" for vindows, but I am not sure how to impement it. Or may be there is the way to close window after message is sent. I think, it should be easy, but I am new in AppleScript, so any help will be appreciated.
    I posted this question in iChat forum too, but think here it's more appropriate.
    Thank you in advance
    Vera

    I send message by iChat, computers connected via Bonjour. Very simple script:
    tell application "Finder"
    set the_message to "....."
    set the_account to "Bonjour:...account id....."
    tell application "iChat"
    send the_message to first account whose id is the_account
    end tell
    end tell
    I don't want the window to pop up on the machine which sends the message. I know in InDesign there is an option "without showing window", but here it does not work.
    Best regards
    Vera

  • Use Native Windows Dialogs in Firefox 10

    I like to set Firefox 10 to use the original Native Windows Dialogs when Open, Save, Save as, etc. are called.
    I use Direct Folders to quickly navigate to any folder I need, this has been working fine until now, but not with this new version.
    I need to know what to set in "about:config" to use the old Windows Dialog boxes

    Hi,
    Firefox uses the Windows native dialog boxes by default. You can try to check this in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode].
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]
    Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > '''Use hardware acceleration when available'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u Options > Advanced]. All these settings/add-ons can also be individually or collectively disabled/enabled/changed in Firefox normal mode to check if an extension, theme or hardware acceleration is causing issues.
    [https://support.mozilla.org/en-US/kb/Options%20window Options]
    If the problem persists, you may have to change the settings in Direct Folders or any other Windows enhancement/theme software.

  • Smartform output without print dialog window

    i mean..,
    when i clicked execute button in smartforms
    i don't want to give the values in print dialog window (like LP01 and clicking print preview button)
    i want the smart from output when i click on execute button ..,
    so can anybody help me plllllzz.
    Moderator message: please search for available information/documentation before asking, do not use SMS speak.
    Edited by: Thomas Zloch on Nov 10, 2010 1:55 PM

    you can help yourself by searchin the SDN, this has been asked & answered more than once.
    Just a tip on a sidenote: Studying the interface of the FM which calls the smartform can help a lot.

  • Duplex printing. No dialog window on the HP LaserJet 1020

    I'm running WinXP Pro, but I think it doesn't matter so much, because I've used duplex printing on it for a year without any problems. But now the dialog window, which must appear while using duplex printing is gone
    When the Print on both sides instruction dialog window appears on the PC's monitor, follow the instructions, says the Duplexing Manual.
    How to solve it, please help 

    Victory at last.  OK, in case there is anyone out there who still has this (and start up no start) problems.
    1. Delete the HP 1020 printer software via the Printers box from Control Panel (Visa 32 bit OS).
    To do this, right click on the HP 1020 printer image, open the box, click on delete to remove the old driver & printer. 
    2. Go to HP 1020 site and find software downloads (words to that effect). 
    3. Download most recent driver (it is a plug and play driver -- currently [2-2011] there are 3 choices, this one is on top)
    4. Install this driver.  It will take a few minutes to complete
    5. Plug in the printer and power up.
    6 Once the dialogue box on the task bar says the printer is installed it's time to restart (if you look in the Printers Menu you probably won't find the printer. Don't panic yet)
    7. Restart
    8. Now look in the Printer Menu again. You 1020 should be there.
    9. Test and good luck.
    If this isn't the exact sequence for your computer, try a variation. The plug and play doesn't work on top of old software. Clear that old dog out and install the latest [Nov 2010 date] driver first, then plug in, then restart your computer. 
    Too Bad HP didn't publish this "fix" or even explain it on its woebegotten website. You can't drag this stuff up with a search engine.  Next time you shop printers, tell the salesperson you deserve a big price break for putting up with all of this nonsense from HP.

Maybe you are looking for

  • Data acquisition from switching 500lbs load cell to 100lbs load cell

    I am using 500lbs load cell, and acquiring data by inputing 2volts from 2345 signal conditioning board, and sensor output is connected to SCC-AI03 pin 3 and 4 , and configure this load cell to a channel using NI MAX, data neighborhood, traditional NI

  • Clean install... should i have all these frameworks and plug ins

    from system profiler. it seems weird many aren't found in help. just curious if these are standard load with a complete erase and clean install? thanx for the help in advance Frameworks: Accelerate: Version: 1.4.2 Last Modified: 3/5/09 4:56 PM Get In

  • Can i using Adobe Reader plugin to generate signature in Reader X?

    I noticed that user can add annotation in Reader X, so i want to know if i can add signature or custom annotation in Reader X by my plug in? Thanks in advance.

  • Load Method of MimeMessage

    Hi all, I have tried a number of ways of using the method load(session, inputstream) to create a new MimeMessage from a MIME compliant piece of text (in a byte array form). The headers get created OK but the attachments are still encoded. I would lik

  • Custom Google Results Page

    Hi, I would like to integrate a search form and results page into my site. I saw this one: http://www.lapmaster.com/ and liked how it took a google search and placed the results on the site but without any Google branding. Can anyone show me how to d