How to open Dialog Box by using webutil

Hi all,
I am using webutil in 9i(9.0.2)
as in the user manual i did the changes..
except one..when i set
baseHTMLjinitiator=d:\webutil\server\webutiljini.htm
it gives the
Duplicate Parameter on Command Line..
when i commented the above baseHTMLjinitiator=d:\webutil\server\webutiljini.htm
and run the form ..that time formd gives the following error
oracle.forms.webutil.file.FileFunctions...
How to solve ..this issue ?
any help ..
with anticipating the reply
Regards
A meet

Thanks Phuong. I try it, but still does not work. I have tried the followings:
CLIENT_HOST('CMD/C START "editor" C:\Program Files\Windows NT\Accessories\wordpad.exe D:\temp\out.txt' );
CLIENT_HOST('CMD/C START "editor" wordpad.exe D:\temp\out.txt' );
WEBUTIL_HOST.NONBLOCKING('CMD /C C:\Program Files\Windows NT\Accessories\wordpad.exe D:\temp\out.txt');
--trang                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • How to invoke 'File Open' dialog box in Forms (under unix)

    Hi all,
    On the Unix platform (motif), how do I get the File Open Dialog
    Box by using Forms45.
    Thanks and regards,
    Srinivasa.
    null

    going from 6i to 10g is a migration. That's no easy step normally.
    client-server-functionality has gone. web-functionality is new.
    Install the new webutil-toolset from oracle and use the new file-open-dialog from the webutil.pll. That's the way you work in the new 10g-environment.
    Read in the forms-section of the OTN the migration-papers and the webutil-doc's

  • Diable "open dialog box" on right mouse click so I can use l mouse to advance to next slide and r mouse click to "go back."  How in PP 2010 for mac????

    I do presentations in PP10.  I am new to macair, and used to Windows.  HOW DO I DISABLE THE "OPEN DIALOG BOX ON RIGHT CLICK"?  I would like to use L mouse to advance slide, and R mouse to go back.  The default is to use R mouse to open dialog box.  I can disable this by unchecking the box in "advanced" on the PC.  How do I do it with the Mac????
    Thanks
    hacmd

    Hi Rod,
    As originally stated in my opening post, the SWF is to be inserted into an Articulate '13 slide (what I called an aggregator originally - I tried not to bring them up since I don't want the chatter about "There's your problem - using Articulate"! ).
    Recall that posting this published file to our LMS did not allow right-mouse click functionality as the flash player menu just gets in the way.
    If I insert the captivate 6 files into Articulate as a Web Object (referencing the entire folder with html, htm and assets, and then posted to our LMS, and it DOES allow RM click operations in both IE and FF (although no sound on the Captivate slide in FF). But this is not what we want to do as this introduces 2 navigation controls (the Captivate one and the Articulate Player).
    Why must anything be posted to a web server for this functionality to work?
    I am able to go into the Captivate 6's published folder, and launch the Captivate demonstration by simply double clicking on the index.html file and this works great in both FF and IE after changing the security settings for flash.
    Again - I can not believe I am the only one out there trying to use the right-mouse click feature to do a software simulation by embedding the Captivate SWF into an Articulate '13 project.

  • 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

  • How to display image using from open dialog box?

    I've developed a program that can display image by named the file that I want to display in my program.
    But how can I display an image from an Open Dialog Box?
    I attch here with my program.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.filechooser.*;
    public class SuDisplayTool6 extends JFrame implements InternalFrameListener,ActionListener
    JTextArea display1;
    JDesktopPane desktop;
    JInternalFrame displayWindow;
    JInternalFrame listenedToWindow;
    static final String SHOW = "Show Image";
    static final int desktopWidth = 800;
    static final int desktopHeight = 600;
    private static final int kControlX = 88 ;
    private DrawingPanel panel;
    public SuDisplayTool6(String title)
    super("Internal Frame");
    desktop = new JDesktopPane();
    desktop.putClientProperty("JDesktopPane.dragMode","outline");
    desktop.setPreferredSize(new Dimension(desktopWidth, desktopHeight));
    setContentPane(desktop);
    addMenu();
    createDisplayWindow();
    desktop.add(displayWindow);
    Dimension displaySize = displayWindow.getSize();
    displayWindow.setSize(desktopWidth, displaySize.height);
    protected void createDisplayWindow()
    JButton b1 = new JButton("Show Image");
    b1.setActionCommand(SHOW);
    b1.addActionListener(this);
    display1 = new JTextArea(3,30);
    display1.setEditable(false);
    JScrollPane textScroller = new JScrollPane(display1);
    textScroller.setPreferredSize(new Dimension(200,75));
    textScroller.setMinimumSize(new Dimension(10,10));
    displayWindow = new JInternalFrame("Header Graph",true,false,true,true);
    JPanel contentPane = new JPanel();
    contentPane.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
    contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
    contentPane.add(Box.createRigidArea(new Dimension(0,5)));
    contentPane.add(textScroller);
    b1.setAlignmentX(CENTER_ALIGNMENT);
    contentPane.add(b1);
    displayWindow.setContentPane(contentPane);
    displayWindow.pack();
    displayWindow.show();
    protected void createListenedToWindow()
    listenedToWindow = new JInternalFrame("Image",true,true,true,true);
    listenedToWindow.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    listenedToWindow.setSize(800,450);
    panel = new DrawingPanel();
    listenedToWindow.setContentPane(panel);
    public void internalFrameClosing(InternalFrameEvent e)
    public void internalFrameClosed(InternalFrameEvent e)
    listenedToWindow = null;
    public void internalFrameOpened(InternalFrameEvent e)
    public void internalFrameIconified(InternalFrameEvent e)
    public void internalFrameDeiconified(InternalFrameEvent e)
    public void internalFrameActivated(InternalFrameEvent e)
    public void internalFrameDeactivated(InternalFrameEvent e)
    public void actionPerformed(ActionEvent e)
    if (e.getActionCommand().equals(SHOW))
    if (listenedToWindow == null)
    createListenedToWindow();
    listenedToWindow.addInternalFrameListener(this);
    desktop.add(listenedToWindow);
    listenedToWindow.setLocation(desktopWidth/2 - listenedToWindow.getWidth()/2,
    desktopHeight - listenedToWindow.getHeight());
    listenedToWindow.show();
    else
    public static void main(String[] args)
    JFrame frame = new SuDisplayTool6("Su Display Tool");
    frame.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0);
    frame.pack();
    frame.setVisible(true);
    private void addMenu()
    JMenuBar menuBar;
    JMenu menu, submenu;
    JMenuItem menuItem;
    final JFileChooser fc = new JFileChooser();
    fc.addChoosableFileFilter(new ImageFilter());
    menuBar = new JMenuBar();
    setJMenuBar(menuBar);
    menu = new JMenu("File");
    menuBar.add(menu);
    menuItem = new JMenuItem("Open...");
    menu.add(menuItem).addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    int returnVal = fc.showOpenDialog(SuDisplayTool6.this);
    menuItem = new JMenuItem("Save");
    menu.add(menuItem);
    menuItem = new JMenuItem("Save As...");
    menu.add(menuItem).addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    int returnVal = fc.showSaveDialog(SuDisplayTool6.this);
    menuItem = new JMenuItem("Close");
    menu.add(menuItem);
    menu.addSeparator();
    menuItem = new JMenuItem("Exit");
    menu.add(menuItem).addActionListener(new WindowHandler());
    menu = new JMenu("Edit");
    menuBar.add(menu);
    menu = new JMenu("View");
    menuBar.add(menu);
    menuItem = new JMenuItem("Zoom In");
    menu.add(menuItem);
    menuItem = new JMenuItem("Zoom Out");
    menu.add(menuItem);
    menu.addSeparator();
    submenu = new JMenu("Header");
    menuItem = new JMenuItem("CDPX");
    submenu.add(menuItem);
    menuItem = new JMenuItem("SX");
    submenu.add(menuItem);
    menuItem = new JMenuItem("CX");
    submenu.add(menuItem);
    menu.add(submenu);
    menu = new JMenu("Help");
    menuBar.add(menu);
    menuItem = new JMenuItem("About");
    menu.add(menuItem).addActionListener(new WindowHandler());
    private class WindowHandler extends WindowAdapter implements ActionListener
    public void windowClosing(WindowEvent e)
    System.exit(0);
    public void actionPerformed(ActionEvent e)
    if(e.getActionCommand().equalsIgnoreCase("exit"))
    System.exit(0);
    else if(e.getActionCommand().equalsIgnoreCase("About"))
    JOptionPane.showMessageDialog(null,"This program is written by Nenny Ruthfalydia.","About",JOptionPane.PLAIN_MESSAGE);
    class DrawingPanel extends Panel
    final ImageIcon imageIcon = new ImageIcon("image8.jpg");
    Image image = imageIcon.getImage();
    public void paint (Graphics g)
    g.drawImage(image, 10, 10, this);

    so much wrong with this post...
    a) use the code tags to format the code. Now it is an unreadable mess
    b) scriptlets in your JSP. I don't even want to look at that mess. Learn how to combine servlets and JSPs to create clean, readable and maintainable code in which view logic and business logic are separated. The rule: no java code in your JSP, only tags and EL expressions (learn about JSTL).
    So you get a blank screen. When you do "view source" in your browser, do you see anything there? If nothing, check if you are behind a proxy server. The solution to a post of not too long ago was that the blank screen was being caused by faulty proxy server settings (the user figured it out himself, I don't know what was done to solve it).
    If all this fails you will have to do some debugging magic using your favorite IDE. It will probably be something stupid you are overlooking in the code. It is annoying, but debugging code that does not work is a big part of your job. Better get good at it.

  • How to Use Open Dialog Box, & Save Dialog Box

    Hi Frens,
    Can You tell me how can i use open dialog box, and save
    dialog box using Flex. Because there is no such components are
    given here.
    Also How can i Do when I click on some button, or some event
    Please tell me abt this, Thks in advance frens
    Ashish Mishra

    for input requested try this
    String ar = JOptionPane.showInputDialog("Please, enter artist name");for any sort of message box try this
    int answer = JOptionPane.showConfirmDialog(null, "Enter another record?",
                                "???",JOptionPane.YES_NO_OPTION);This might help you buddy.

  • Problem with File Open Dialog box

    Gurus,
    I am using Forms 10g with Windows environment .. My requirement is, to display File Open Dialog Box, and whatever file I am selecting it has to open .. I am able to get Dialog box, problem is, when I select a file (for example, test.txt), I cant see the file getting opened .. Can anyone suggest me how to get the desired result ...
    Pasting my code below
    declare
         a varchar2(100);
    begin
         a := WEBUTIL_FILE.FILE_SELECTION_DIALOG('c:\temp','','*.*','c:\temp',OPEN_FILE, TRUE);
    end;
    Regards

    You can see the code in the webutil.pll library.
    FUNCTION CLIENT_GET_FILE_NAME (directory_name Varchar2 := NULL,
                                   file_name      Varchar2 := NULL,
                                   file_filter    Varchar2 := NULL,
                                   message        Varchar2 := NULL,
                                   dialog_type    Number   := OPEN_FILE,
                                   select_file    Boolean  := TRUE) return Varchar2 is                             
    * CLIENT_GET_FILE_NAME
    *   Client (Browser) side implementation of the standard GET_FILE_NAME Built-in
    *   Used to display File Open, Save  and directory listing dialogs
    *   Implemented using calls to WEBUTIL_FILE
    * Version 1.0.0
    * Change History
    *   1.0.0 DRMILLS 23/DEC/2002 - Creation
    \*********************************************************************************/ Here is one example:
    the_file := client_get_file_name('c:/', null, 'All Files (*.*)|*.*|',null,open_file,true);Francois

  • Regarding open dialog box

    how do we call an open dialog box when i press F4 in text field to select a file in the hard disk and the selected filename should be placed in the text field

    hi
    use the function module <b>F4_FILENAME</b>
    example code:
    DATA: REPID LIKE SY-REPID.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          PROGRAM_NAME  = REPID
          DYNPRO_NUMBER = SY-DYNNR
          FIELD_NAME    = 'P_FNAME'
        IMPORTING
          FILE_NAME     = P_FNAME
        EXCEPTIONS
          OTHERS        = 1.
    in reports, use this funct-module under <b>AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FNAME</b>
    in case of module-pool, use this funct-module under <b>PROCESS ON VALUE REQUEST</b> event.
    thx
    pavan

  • File open dialog box broken in all apps! ( 10.5.6/7

    Hi, I've got a very odd problem that Apple phone support seem to be unable to solve.
    Basically, every file open dialog box system wide is broken, from file->open in textedit to the browse button on websites for uploading files.
    When trying to display this finder panel, it beachballs for ten seconds then gives me a grey area where the usual finder browser usually resides and the open / cancel buttons at the bottom of the panel.
    I've repaired permissions which had no effect.
    The finder works perfectly other than it's little file open dialog which other applications use...
    Updating to 10.5.7 did nothing to fix the issue.
    Does anybody have any idea how to resolve this?
    Thanks!
    chris.

    V.K. had you create another user to eliminate the possibility that it is a preference file causing the problem. It was reported the problem remained with another user, so the problem is system wide, not with a single user's preferences.
    The Archive & Install is relatively painless. It only replaces the system and leaves everything else untouched. What is replaced is saved in a new folder it creates named Previous System, in case there is something there you might want to bring back (most often 3rd party files, but I have never needed anything from the Previous System folder).
    The only hassle with the A & I is resetting preferences. If you check the option during the A & I to retain user settings, there is usually not very much that needs resetting.

  • Open dialog box prefs for geany and gnumeric

    I did a reinstall so that /usr/ would no longer have its own partition.   Rearranging the partitions was just going to take too long.
    I use geany and gnumeric.  File -> Open, in either program, brings up the open dialog box.  It is titled Select a file for gnumeric and Open File for geany.
    Since the reinstall, I have to click the pad and pencil icon in the top left every time to open up the line for manual entry of the location.
    I am sure it used to remember its state before the reinstall.  Does anyone know where that setting is saved or how to get that functionality back?  Thanks.

    if i understand correctly you have a note item (based on table) on every child record? when you open the dialog box: how do you put data from notes to dialog box? in the same way as you can write it back ...

  • Small Icon sizes in Open Dialog Box

    When I upgraded from Snow Leapard to Lion I was very impressed that the icon sizes in the File->Open dialog boxes varied in size (per folder) on how you viewed them in Finder. For example, I would set my Finder Pictures folders and contents to a larger icon size to see them easier, then when I would open Photoshop and use the File->Open menu option, the icons would be the same size as how I viewed them in Finder.  It was beneficial to have a larger icon to view pictures when I would use File-> Open in Photoshop to select a photo. Since I have upgraded to Mountain Lion, it seems this feature has gone away?? It went back to the way it was with Snow Leapard. All icons are really small no matter how you view them in Finder.
    Is there a way to change the icon sizes in the Open/Save dialog boxes to be larger in Mountain Lion? Possibly using the command prompt? Please help?!

    I've used the Quicklook to get a larger image, but it's still not as convenient as it used to be with Lion. I'm confused on why the change was made to go back to small icons as a default?  When using Lion, you could have the icon size whatever you wanted.

  • Can't see psd thumbnails in the open dialog box.

    In the open dialog box, the thumbnails for psd files do not show the picture but show an Elements logo instead.  How can I see picture thumbnails for psd files as I do for jpg files?  I found a dng codec on the web site but not a psd codec.  The dng codec doesn't work for psd files.

    Hi,
    Is there any error message when you try to map network Drive manually? It would be better to provide more details about error message.
    Generally speaking, this problem can be caused by Network Connection problem, please make sure your Client PC could access to Network Drive PC.
    In addition, please check Network Drive PC security setting, if there is any firewall policy prevent this operation.
    If still no use, please check Event Viewer if it identify this problem.
    Roger Lu
    TechNet Community Support
    There is no error.  There is no connectivity problem.  THe drives map automatically and always have.  I can open up File Explorer and browse these drives all I want.  I can open up Word and browse to these drives just fine.
    However, when I open certain programs, and click File | Open, the mapped network drives just simply aren't there.  I only see C and D and that's it.

  • Photoshop crashes with open dialog box on Windows 8.1

    I just upgraded from Windows 8.0 to Windows 8.1. I have Photoshop CC, I also have Photoshop Elements installed. On occasion, Photoshop CC hangs when using the open dialog box. It then crashes explorer. The only way to resolve it is to restart the PC.
    Has anyone seen this behavior. I do not have any logs as of now.
    Thanks,
    Bill Byrnes

    I don't know if this is helpful or exactly on topic with this thread... but I have to share somewhere...
    I've been dealing this problem for months and I finally fixed it on my own.
    My Antivirus, AVG, which is great, except for this glitch, was the root cause of the issue. 
    History:  If I right-clicked a file in my Save/Open Dialogue Photoshop (CS6 Extended) would crash.. for the last few months, actually...  If I avoided right-clicking I'm ok, but my instincts are to organize, rename, etc. while in the save/open pop-up window ... So I've often crashed Photoshop when all I do is right-click on a file in the list of files...
    Well, I figured out the cause of the glitch:
    "Permanently Shred with AVG” .. this option, added without my knowledge during an AVG update, was added around the same time this problem started (realizing this in hindsight).. THIS was conflicting with my Adobe Photoshop file explorer window in the Save/Open dialogue!!! After months of trying to figure this out, this is definitely the solution.
    Once I turned that AVG Shell Extenstion off.... I am now able to right-click files in Photoshop save/open pop-up window again without it crashing…  finally !!!!
    ...hope this helps folks even if it's just a related clue to other issues....
    Basically ,run command prompt as Administrator, then type:
    For 32-bit :  regsvr32 /u “C:\Program Files\AVG\AVG2014\avgse.dll”
    For 64-bit:   regsvr32 /u “C:\Program Files (x86)\AVG\AVG2014\avgse.dll”
    I found this info about turning off  "Permanently Shred with AVG" option at this link:
    http://techdows.com/2013/09/avg-2014-how-to-remove-permanently-shred-with-avg-option-from- context-menu.html#comment-21176
    thanks!
    -Camilo

  • IPhoto Library in open dialog boxes

    Does the Mac community agree with me that this needs to be better implemented in Mac OS X for new Mac users?
    As the owner of a Mac consulting company in Los Angeles, we have switched about 30 people from PC to Mac this year.
    However, we have encountered a big problem that almost every "newbie Mac user" has when they first switch to the Mac. This is the #1 problem that we encounter with most "newbie" Mac users:
    There is no way to access the iPhoto library from within a standard open dialog box!
    So, week after week, we're witnessing users who have used webmail for years, and aren't quite ready to make the leap to Apple Mail yet. So when they go to attach photos to an outgoing email in their webmail program (Hotmail, Gmail, Yahoo), they'll get an "open" dialog box but absolutely no way of browsing their iPhoto Library in an easy-to-use manner!
    Oh sure, they'll try to click around in their "Pictures" folder inside the "iPhoto Library" folder, but as you know, that folder makes no organizational sense to mere mortals, and is nowhere NEAR the Mac experience that it should be! Even with the improvements in iPhoto 6, that "iPhoto Library" folder still makes no sense.
    So eventually, we tell them that they have to (a) drag their photos from iPhoto onto their desktop or export them if they want them to be a smaller size, (b) attach the files on their desktop from within their open dialog box, and (c) trash the photos from their desktop afterwards.
    But this is too confusing for new Mac users, particularly when it's already much better integrated on Windows, the platform they just switched from!
    New users should be able to **VISUALLY BROWSE** their iPhoto Library right from within any open dialog box, just like you can currently browse your iPhoto Library when you click on the "Media" button inside Pages or Keynote or iWeb or Comic Life.
    Some companies like Snapfish.com have actually addressed this limitation on Apple's behalf, by creating plug-ins for Safari that actually let you browse your iphoto library right from your open dialog box! This is how it SHOULD BE! It's simple as pie, and Snapfish.com should be commended for making up for this serious lack of intuitiveness on Apple's part.
    But Apple really needs to step up to the plate and do this for its users, instead of depending on a few companies here & there to make up for this limitation.
    Of course, we try to get as many new users as possible to use Apple's Mail program for complete integration with their system, but it's just not feasible right off the bat in all cases. For example, if they're a Yahoo webmail user or a HotMail user, it would cost them at least $24.95/year just to get POP access to their email. And regardless of what webmail system they use, not everybody is going to want to switch right away to a dedicated email client.
    Apple really needs to help new users have a great time when switching to the Mac, instead of confusing them, by really thinking these things through and really WATCHING new users in the field struggling with their Macs for the first time. Then, Apple can see that there's little things like this that can make all the difference for someone new to the Mac.
    Thank you,
    Scott
    Power Mac G4 QuickSilver Dual 800 MHz   Mac OS X (10.4.7)  

    Scott:
    Here are two sites, one a thread in the AD and the other a GMail site, on how to use Gmail via the Mail application:
    http://discussions.apple.com/thread.jspa?threadID=580746&tstart=0
    http://mail.google.com/support/bin/answer.py?answer=13275
    This is plugin to be able to access any web based mail that supports the HTTPMail protocol (HotMail and MSN mail at the time of the plugins creation. I'm sure more by now:
    http://www.automagic-software.com/products.php
    and how to make it work with intel Macs:
    http://www.macosxhints.com/article.php?story=20060606023130948&query=Hotmail
    I've not used any of these but you can certainly test them so see if they are as as advertised.
    If a user needs a file via the Finder for a web based email he can Command-click on a thumbnail and select the Show File Contextual menu item. The user will be taken to that folder in the Finder and the file will already be selected. However these will be the full sized files and may be larger than the user wants to send.
    The problem with encouraging users to visually browse and access files in the library folder via the Finder or some browser is that they may be inclined to rename, move or edit them via the Finder or browser an that is committing the cardinal sin of iPhoto: Don't tamper with files in the iPhoto Library folder from the Finder. So for a novice it's safer to have them export the file to the desktop via the File->Export->File Export menu route, resizing as necessary in the process.
    Do you Twango?
    G5 Dual Core 2GHz, 2G RAM, 250G HD; G4 Dual 1Ghz, 1.5G RAM, 80G HD,   Mac OS X (10.4.7)   22 LCD Display, 200G & 160G FW HDs, Canon S400, i850 & LIDE 50, Epson R200

  • How can a dialog box close itself?

    I have a dialog box which displays a little form for some extra information.  I have some non-standard buttons which are under my control.  The form is created as a view in a window which is launched by CREATE_WINDOW.
    I want the window to be able to close itself.  The concept is easy - get a ref to the window, then call close( ).
    But I cannot find a way to get a reference to the window from inside the window.
    Here is my current solution which I do not like, but it works.
    I create a context node 'POPUP' which has an attribute ME of type ref to if_wd_window.
    When I create the window, I do this:
    lo_window         = lo_window_manager->create_window( ... )
    lr_node = wd_context->get_child_node(   'POPUP'   ).
    lr_node->set_attribute( exporting name  = 'ME'
                                          value = lo_window ).
    lo_window->open( ).
    In the window, it gets ME out of the node, and does a lr_me->close( ).
    But there is a better way, right?  How does a dialog box close itself under program control?
    I should add that the dialog box is displaying a view from a used component, so POPUP is defined in the used component and mapped into the context of the using component. I don't think this changes the problem, though.

    Hi
    Try this following code in method of button you have created for popup i.e  method for example  ok,cancel etc in the view which you have emebedded in ur window for popup.
    Close the popup
      DATA:
        lo_api         TYPE REF TO if_wd_view_controller,
        lo_window_ctlr TYPE REF TO if_wd_window_controller,
        lo_popup       TYPE REF TO if_wd_window.
      lo_api         = wd_this->wd_get_api( ).
      lo_window_ctlr = lo_api->get_embedding_window_ctlr( ).
      lo_popup       = lo_window_ctlr->get_window( ).
      IF lo_popup IS BOUND.
        lo_popup->close( ).
      ENDIF.

Maybe you are looking for

  • GUI Applications unable to use command line tools

    Hi All- I've searched, but I can't find a thread about this one, so... On OS 10.4.5: Whenever I use a GUI app that wants to use a command line tool (e.g. curl, df, java), the app fails giving an error message to the effect of "unable to find curl" or

  • Why is this so long to recognize a new RAW format?

    Hi, I'm new to Mac and to Aperture. I use it with Dimage A1. It's great! But I am disappointed because I also use Pentax K10D which is not recognized by Aperture. I notice that it needed much time to import *ist RAW format. Is this so difficult to in

  • How to find out that one module is multi org or not?

    Hi Friends, Can any one tell me that how can we findout that one module is multi org or not? Thanks in Advance. Shravan Kumar Kota.

  • Application delivered/staging area /unable to install using Oracle  Installer

    I have developed a prototype product application in form developer and used project builder in managing the project ready for delivery to recepient i.e. stand alone PC WIN 2k. I tried installing the product using the ORACLE INSTALLER but it doesnt re

  • Useful function module for get month

    Dear experts, I need some FM to realise some functions : 1, get the month and year from system date 2, get the month by adding or subtracting from a given month ex: month(system date) - 11 Moderator message: date conversion questions = FAQ, please se