Opening FPM Application in a seperate Model Window

Dear Experts,
I have a FPM Application which i need to open in new Window in my Webdynpro Application.
As of now I am using the URL of the Application to open it as an external WIndow, this causes some problem while refreshing the main Webdynrpo view While closing the FPM application window.
In the Main Webdypro view the refresh is not happeing since it is opening as an external WIndow.
If i open as a model window it may solve the issue. But Since i am using the URL if i open a model Window using the Window name it is not calling the FPM application.
Kindly give some suggestions or link to achieve the same.
Thanks,
Nalla B.

Hi Nalla,
I suggest you the below points to achieve your requirement
Create a view V_FPM_APP and insert an iFrame ui element
Create an attribute FPM_URL as string and bind it to the source of iFrame ui element
Create a window, W_FPM_APP and embed the view V_FPM_APP
Now, you can use method CREATE_WINDOW of interface IF_WD_WINDOW_MANAGER to open the FPM application and pass parameter MODEL = ABAP_TRUE
You can register the onClose action of popup window to your own action on view as below
          data lo_view_ctrl type ref to if_wd_view_controller.
          lo_view_ctrl ?= wd_this->wd_get_api( ).
          lo_window->set_on_close_action(
               exporting
                    view = lo_view_ctrl
                    action_name = 'ON_CLOSE'
Create an action ON_CLOSE in view from where the popup window is called
Now, you get the control when user closes the popup window, so, you can refresh the main view
Also other way, you can use the concept component usages to achieve your requirement
Hope this helps you.
Regards,
Rama

Similar Messages

  • I'm trying to load photoshop elements 12 on my mac os x and when i click setup.exe i get :    You can't open the application "Setup.exe" because Microsoft Windows applications are not supported on OS X.

    i'm trying to load photoshop elements 12 on my mac os x and when i click setup.exe i get : You can’t open the application “Setup.exe” because Microsoft Windows applications are not supported on OS X.  The premiere elements 12 out of the same box loaded just fine.

    An .exe file means you have the windows version. Go get the mac version:
    Download Photoshop Elements products | 12, 11, 10
    but I hope you have a mac serial number.

  • Why does 'You can't open the application "setup.exe" because Microsoft Windows applications are not supported on OS X.' pop up whenever i try to download the latest flash player?

    whever i try to access websites, most of them work but facebook, youtube, my school email, sometimes even google, and alot other websites wont work for me and will tell me i need to update the lastest Flash Player. but when i try to download it, it says 'You can’t open the application “setup.exe” because Microsoft Windows applications are not supported on OS X.' what does that even mean?? This happens on safari, google chrome and i downloaded firefox and it worked for a couple of hours and then stopped working again.
    please help, thanks in advance.

    1. Install Adobe Flash Player from Adobe site.
        http://get.adobe.com/flashplayer/
       Download it first. Click Safari in the menubar and select “Quit Safari”.
        Follow the prompts and install it.
        Restart computer. Relaunch Safari.
    2.  Allow  Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.

  • You can't open the application "MFI_Simulator.exe" because Microsoft Windows applications are not supported on OS X. Can someone assist. I have Office for Mac 2011 on MacBook Pro 13''.

    You can’t open the application “MFI_Simulator.exe” because Microsoft Windows applications are not supported on OS X. Can someone assist. I have Office 2011 on my MacBook Pro, OS X, 10.9.1.

    Your Office 2011, though a Microsoft product, is designed to work with OSX the Mac operating system.  Any program/application ending .exe is an executable program for Windows.  It will only work in Windows and is not part of or openable with Microsoft Office.
    the application you want to open needs Windows - you have a couple of alternatives:
    Open it on a Windows PC
    Install a valid version of Windows via Bootcamp (or Parallels or VM Fusion) which will allow you to boot your Mac into Windows where it will function like a Windows PC and you can use it to run the application.
    See if the manufacturers of MFI_Simulator have a Mac version available.
    Please note that if you follow the second option, then you will need to purchase a copy of Windows (if you do not have one already). BootCamp is free (part of OSX) but Parallels and VM Fusion cost too.  I see quite a few posts from people who buy Parallels and try to run the program under Parallels - this doesn't work - you need to install Windows as well.
    Hope this helps.

  • Opening PCUI application from ICWC in new window

    Hi all,
    In the inbox result list, on clicking sales order number, the PCUI application for Sales order is opened. The navigation link AuiItemsEvPCCUI is called from Agent Inbox to open the PCUI application. The PCUI application is opened in ICWC application itself (in the same view). Is it possible to open PCUI application in a new window?
    Regards
    G.Raja

    Hi H.K.Hayath Basha,
    Try to put in Button action cod for open in new windows.
    Regards
    Eduardo

  • You can't open the application "Lightroom_5_LS11.exe" because Microsoft Windows applications are not supported on OS X.

    I brought a Lightroom 5 via online , but finally cannot support by MAC, How come?

    You either, downloaded or were provided the Windows version instead of the Mac version. If you have a legitimate serial number, you can download the Mac Version from Adobe and use your serial number when prompted. Adobe - Lightroom : For Macintosh : Adobe Photoshop Lightroom 5.7

  • I have just bought Canon printer mg3560 and it won't upload the software, just says 'You can't open the application "MSETUP4.EXE" because Microsoft Windows applications are not supported on OS X.' Please help!

    Having trouble installing my Canon Printer MG3560 to my Macbook. Have put software disc in but then it comes up with that comment.

    ~Bee,
    I mentioned the Australian Canon download site because the MG3500 series printers are not mentioned in Apple's OS X: Printer and scanner software available for download page. The MX890 series is, so of course it needs no driver or additional software.

  • Opening SAP Transactions in a Maximised New Window

    Hi,
    I have an SAP Transaction iview that should open an SAP WinGui Transaction in a maximized new window.
    I have set the following properties
    Launch In =1
    Height Type = FULL_PAGE
    Height of External Window = -1
    Width of External Window = -1
    The new window is opened and the correct transaction is run, but the window is not maximised, and changinging the values of the properties of Width/Height of External Window has no effect.
    The portal version is EP6.0 SP2 Patch 4 Hotfix 7
    Thanks Hugh

    Hi Nalla,
    I suggest you the below points to achieve your requirement
    Create a view V_FPM_APP and insert an iFrame ui element
    Create an attribute FPM_URL as string and bind it to the source of iFrame ui element
    Create a window, W_FPM_APP and embed the view V_FPM_APP
    Now, you can use method CREATE_WINDOW of interface IF_WD_WINDOW_MANAGER to open the FPM application and pass parameter MODEL = ABAP_TRUE
    You can register the onClose action of popup window to your own action on view as below
              data lo_view_ctrl type ref to if_wd_view_controller.
              lo_view_ctrl ?= wd_this->wd_get_api( ).
              lo_window->set_on_close_action(
                   exporting
                        view = lo_view_ctrl
                        action_name = 'ON_CLOSE'
    Create an action ON_CLOSE in view from where the popup window is called
    Now, you get the control when user closes the popup window, so, you can refresh the main view
    Also other way, you can use the concept component usages to achieve your requirement
    Hope this helps you.
    Regards,
    Rama

  • Calling FPM application from another FPM application

    Hello Experts,
    I've created 2 FPM configurations, one displays the list of POs created by the user through a List UIBB and the other displays the Header and Item of the PO when selected.
    Scenario is that when I should click on the PO (which is a link) in my 1st application, I need to pas the PO number and some other details to my 2nd application and display the PO header and Item. My all Config is purely UIBB based and I'm not using webdynpro at all for designing any views, everything is designed using FPM UIBBs and feeder classes only.
    what I need to know is:-
    1) how can I pass the data between 2 different FPM applications?
    2) how to call and display my 2nd Application on the same page when I click on the link of 1st application? I need the BACK functionality as well.
    3) how to get the data into my 2nd application from 1st application?
    Plz suggest.
    Best Regards
    Jitin Kharbanda

    Jitin,
    The best option in your case would be to open a new browser window with the second application and pass an URL parameter along with the document number.
    Then you can read the URL parameter in the second application. Please see Re: Determining Edit/Display Mode from Within Freestyle Component how this can be achieved.
    Embedding another FPM application into an already opened FPM application (e.g. by embedding a freestyle UIBB and loading the second FPM application from there) won't work as the FPM runtime will cause a dump saying that two instances ofthe FPM are not allowed.
    If you MUST embedd your second application into the first one, the only chance that comes to my mind is the merge the configurations of both applications and pass the data via singleton / wires / events. Please see Data exchange possibilities in Floorplan Manager
    Regards, Uwe

  • FPM Application issue

    Hi All,
    When i am trying to open FPM Application in Self Service Administrator Role i am Getting Null Pointer Exception error. I am unable to find why i am getting this error.
    Please help me......
    Thanks,
    Rahul.

    It's mentioned in one of the SAP Notes. I don't have the Note number right now.
    You can follow below steps to resolve your issue
    Navigate to System Administration -> System Configuration
    Open the folder “Applications”
    Open folder com.sap.portal.appintegrator -> Services -> Common_Configuration
    Right mouse click on Common_Configuration->Configure
    Change the property Use_CustomerExit_ParameterProvider from false to true and press Save
    Right mouse click on com.sap.portal.appintegrator->Administrate
    On the right Tab click in “Application Details” on Link Restart.
    Now open the FPM app.
    Thanks
    Prashant

  • Exit from ABAP FPM application to anothor WD application in same window

    Hello experts,
    If anybody can please suggest how to exit an FPM application to another WD component without using suspend mode.
    I did following coding in the process event but this opens target wd abap application in the same window. But the problem is below code uses suspend method for FPM application hence there are performance issues.
    if io_event->mv_event_id = 'BACK_EMP_PRF'.
    DATA: lv_launch TYPE FPM_S_LAUNCH_URL.
    DATA: lo_navigate_to TYPE REF TO if_fpm_navigate_to.
    lo_fpm = cl_fpm_factory=>get_instance( ).
    lo_navigate_to = lo_fpm->get_navigate_to( ).
    lv_launch-HEADER_TEXT = ''.
    lv_launch-URL = lv_url (lv_url is target url for WD application)
    *USE_SUSPEND_RESUME = 'X'.
    *PARAMETER
    lo_navigate_to->LAUNCH_URL( is_url_fields = lv_launch ).
    endif.
    Is there any API to open new application in the same window without suspend_resume method.
    Thanks in advance
    Umang

    Hi Baskaran,
    Thanks for a reply. I have done following things. I added a toolbar button in EDIT step and  I have given  its FPM ID "EMP_PRF_BACK".
    Then on the process event method I have coded as following.
    if io_event->mv_event_id = 'BACK_EMP_PRF'.
    DATA: lv_launch TYPE FPM_S_LAUNCH_URL.
    DATA: lo_navigate_to TYPE REF TO if_fpm_navigate_to.
    lo_fpm = cl_fpm_factory=>get_instance( ).
    lo_navigate_to = lo_fpm->get_navigate_to( ).
    lv_launch-HEADER_TEXT = ''.
    lv_launch-URL = 'http://www.google.com/'.
    *USE_SUSPEND_RESUME = ''.
    *PARAMETER
    lo_navigate_to->LAUNCH_URL( is_url_fields = lv_launch ).
    endif.
    for the test purpose I am trying to open google. It open the link but It opens in a separate window. I want it to open in the same window. Please suggest how to do it.
    Thanks in advance
    Umang

  • Just downloaded mavericks, now iPhoto won't load because of an error message that says "You can't open the application "IPhoto" because it is not supported on this type of Mac" . I have a 17" MacBook Pro, mid 2010 model running 2.53 GHz and Intel Core I5,

    I just downloaded the new Mavericks operating sytem on my mid 2010 MacBook Pro, 17" 2.53GHz, Intel Core I5 machine. My IPhoto is no longer working at all, I'm getting an error message that says - "You Can't open the application "IPhoto" because it is not supported on this type of Mac". I also loaded Mavericks onto my other MacBook Pro 17", mid 2009 model and everything works fine. I would think that the newer Mac would easily work with IPhoto. Also, when I try to download from the App Store, it asks for my Apple ID and Password, I enter it, and then the little spinning color wheel just spins forever, with nothing ever happening. I tried downloading the IPhoto Upgrade but it never actually downloads, HELP!!!

    What version of iPhoto do you have installed?  Is if one of the versions shown as not compatible in this screenshot?
    If it is then go to the App Store and download iPhoto 9.5.  It will be free if you have an iPhoto 9 or later verson currently.
    OT

  • I installed Lion 10.7.4.  Went to use Photoshop Cs and got a popup window.  You can't open the application Adobe Photoshop CS because PowerPC applications are no longer supported.    Is there a way of getting this to work or do I have to get the all new!

    I installed Lion 10.7.4.     Went to use Photoshop Cs and got a popup window.  You can't open the application Adobe Photoshop CS because PowerPC applications are no longer supported.    Is there a way of getting this to work or do I have to get newest version of all of my Power PC apps?

    Welcome to Apple Communities
    PowerPC applications are unsupported in newer versions. You can upgrade Photoshop or you can install Snow Leopard in a partition.
    1. Open Disk Utility (Applications > Utilities) and select your drive
    2. Go to Partitions tab, press + button, create a new partition and press Apply
    3. Insert the Snow Leopard install DVD and reboot pressing C key
    4. Install it in the new partition
    5. If you want to change boot, go to System Preferences > Startup Disk and select 10.7

  • Opening an application in a new window

    Hi,
    I have an ordinary java class, which has access to request and response objects.
    From here, I need to open a third party application in a new window.
    Please let me know how I can do this.
    Thanks,

    do you mean a new window as in a browser? if so you could use javascript:
    <INPUT type="button" value="Open new application" onClick="window.open('http://www.sun.com')>

  • Since uploading Maverick, my Microsoft apps give an error message "(the app) quit unexpectedly.  Click Reopen to open the application again."  However, this does nothing but renew this window.  What to do?

    Since uploading Maverick, all of my Microsoft apps give an error message "(name of the app) quit unexpectedly.  Click Reopen to open the application again."  However, this does nothing but renew this window.  I have to click on the "OK" button to get rid of the error message.  What to do?

    Very Important, how much Free Space is on your Hard Drive first of all? Click on the Macintosh HD on the Desktop, then do a Get Info on it.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Do they launch OK while in Safe Mode?

Maybe you are looking for

  • How to create "Business Components Package" in the Jdeveloper ?

    Hi, I installed and set up "Patch 7523554 10G Jdeveloper With OA Extension ARU for R12 RUP6" I have ran out the test_fwktutorial.jsp and test_fwklabsolutions.jsp. All links work properly on these pages. I created HelloWorld page from "Oracle Applicat

  • Report for OBYC Setting

    Dear All, Can u please tell me in which report or table i get which valuation class is attach with which G/L in OBYC  and which transaction key. Regards, Pardeep Malik

  • Spinner when trying to connect to Lion Server

    At some point I tried to uninstall Lion Server (by dragging the server app to the trash, realize now that this was really dumb) Re-installed via the appstore, and now I can't connect to the server.  Run the Server.app Click on "This Mac" Enter curren

  • BPE is in RED status -Very urgent

    Hi all, I did post installation for PI and its successfully working. In run time workbench everything in green status except the business process engine.It indicates red color.Is there any configuration should we need to do? Please tell if there is a

  • Panasonic lumix dmc-fz35

    Looks like a great camera. One of the very few negative responses says she couldn't get it to work with iPhoto. Anyone have this camera? Will it work with iPhoto 08? Is there a patch? Thanks for any help...