What is the process to "force close" a pdf that has opened in a separate browser opened by PeopleSft

PeopleSoft opens a new browser window to view a report from the application.  When the PeopleSoft session closes, is there a process to force close the PDF as well?
Thanks!
RMGHRMS
Bob

Hi Bob,
So are you closing all the web browser instances or not?  Or are you just closing out of PeopleSoft?  If it’s the latter and only PeopleSoft then Acrobat will remain open and the web browser should maintain the session cookies if I remember correctly.  It’s IE that is hanging on to the session information if we are embedded in the web browser.  If you want to force close IE then you need to do it through and IE JavaScript API.  You might find this helpful: http://stackoverflow.com/questions/1629801/javascript-to-close-ie6-ie7-ie8-and-firefox-wit hout-confirmation-box
-David

Similar Messages

  • Every time I close a window that has opened up (not a tab) all the open windows close and it's driving me nuts!

    If I have opened up a link and it comes up as a separate window and not a tab, then I go to close that window, all the other Firefox windows that are open will close too. Is there anything to prevent this? It is extremely annoying when I have to go and open all the windows/tabs again!
    == This happened ==
    Every time Firefox opened
    == since upgrading

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • What's the best way to make a DVD that has a slideshow and home movies?

    Is is better to make a slideshow on iphoto, then transfer it somehow to imovie, then add my home movies?  I'm new to Mac, so I don't want to get too into this project without advice.  Is there a way to make a slideshow in imovie and then add my movies? 

    There are many ways to produce slide shows using iPhoto, iMovie or iDVD and some limit the number of photos you can use (iDVD has a 99 chapter (slide) limitation).
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, place text exactly where you want it, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico:  http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie  as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, including adding other video clips, then send it to iDVD 7, or Toast,  for burning.
    You will be pleasantly surprised at how professional the results can be!
    To simply create a slide show in iDVD 7 onwards from images in iPhoto or stored in other places on your hard disk or a connected server, look here:
    http://support.apple.com/kb/HT1089

  • My iTunes force closes when I try to open it, what should I do?

    My iTunes force closes when I try to open it, what should I do?

    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • HT201250 I use Time Machine to back up my entire computer with my external hard drive. I am getting a brand new iMac this month and was wondering what is the process of using this back up to restore my new computer exactly how my old computer was?

    I use Time Machine to back up my entire computer with my external hard drive. I am getting a brand new iMac this month and was wondering what is the process of using this back up to restore my new computer exactly how my old computer was? I want to make sure I will still have various important files on my new computer, like my songs in iTunes, my photos in iPhoto, etc, etc. Thanks so much in advance!

    Welcome to the Apple Support Communities
    When you turn on the new iMac for the first time, Setup Assistant will ask you to restore a backup, so connect the external disk and follow steps to restore all your files to your new iMac. Your new Mac will have the same settings and programs as your old computer.
    In other cases, I would recommend to restore the whole backup without using Migration Assistant or Setup Assistant, but a Late 2012 iMac uses a special OS X build, so the OS X version that you're using on your old Mac won't work on the new one. For more information, see > http://pondini.org/OSX/Home.html

  • What is the proper way to close all open sessions of a NI PXI-4110 for a given Device alias?

    I've found that, when programming the NI PXI-4110 that, if a the VI "niDCPower Initialize With Channels VI" (NI-DCPower pallette) is called with a device
    alias that all ready has one or more sessions open (due to an abort or other programming error) a device reference results from the reference out that has a (*) where "*" is post-fixed to the device reference where and is an integer starting that increments with each initialize call. In my clean up, I would like to close all open sessions. For example, let's said the device alias is "NIPower_1" in NI Max, and there are 5 open sessions; NIPower_1, NIPower_1 (1), NIPower_1 (2), NIPower_1 (3), and NIPower_1 (4). A simple initialize or reset (using niDCPower Initialize With Channels VI, or, niDCPower Initialize With Channels VI, etc.) What is the proper way to close all open sessions?
    Thanks in advance. Been struggleing with this for days!

    When you Initialize a session to a device that already has a session open, NI-DCPower closes the previous session and returns a new one. You can verify this very easily: try to use the first session after the second session was opened.
    Unfortunately, there is a small leak and that is what you encountered: the previous session remains registered with LabVIEW, since we unregister inside the Close VI and this was never called. So the name of the session still shows in the control like you noted: NIPower_1, NIPower_1 (1), NIPower_1 (2), NIPower_1 (3), and NIPower_1 (4), etc.
    There may be a way to iterate over the registered sessions, but I couldn't find it. However, you can unregister them by calling "IVI Delete Session". Look for it inside "niDCPower Close.vi". If you don't have the list of open sessions, but you have the device name, then you can just append (1), (2) and so forth and call "IVI Delete Session" in a loop. There's no problem calling it on sessions that were never added.
    However - I consider all this a hack. What you should do is write code that does not leak sessions. Anything you open, you should close. If you find yourself in a situation where there are a lot of leaked sessions during development, relaunching LabVIEW will clear it out. If relaunching LabVIEW is too much of an annoyance, then write a VI that does what I described above and run it when needed. You can even make it "smarter" by getting the names of all the NI-DCPower devices in your system using the System Configuration or niModInst APIs.
    Hope this helps.
    Marcos Kirsch
    Principal Software Engineer
    Core Modular Instruments Software
    National Instruments

  • What is the process of "slpgwserver" Bell (Nokia 6...

    what is the process of  "slpgwserver"  Bell (Nokia 603).
    He constantly gets into the internet, through Wi-Fi or EDGE and the battery runs out.
    Interrupting him, but after a time he again establishes a connection.

    I also discovered this briefly on my Nokia 808.
    After 90 minutes of mobile data connected no data was sent or received.
    I suspect that it could be a widget of some of the following apps;
     My position
     Maps
     Wheater prognose
     Vlingo
     Or Nokia sleeping screen...
    I really dont know, but I was setting up some widgets just before I charged the phone.
    Well, perhaps it is not a problem at all, just when doing some adjustments with the widgets above mentiuoned.
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

  • What is the process for connecting ethernet.  Have ethernet cable connected to stereo received for internet radio and Blue Ray. However Network System Preferences indicates ethernet not connected and has red dot to left.  Note Airport wireless is working.

    What is the process for connecting airport extreme ethernet?  I have ethernet cables connected to stereo receiver for internet radio and another to blue ray player.  The system preference network indicates "ethernet not connected" with red dot to left of this message.  The airport wireless works and has green dot to left of it.  The stereo receiver and blue ray player do not respond and give message not connect to internet.  Thank you.  /  cfpirate 

    It worked for me finally. I took out the DNS numbers in airport admin utility, and restarted the airport express. I do not remember putting the DNS numbers in, I wonder from where the airport express got those numbers.
    After restarting, it worked.
    Thanks!

  • What's the process of uploading videos to youtube?

    This might sound like a silly question... but what is the process of uploading videos to youtube?
    Does the video get processed into youtube friendly format and then get uploaded to youtube?
    So therefore, no re-processing is required on youtube? And therefore the video appears intantly after upload
    This has been what I have experienced
    Or does the video still need to be processed by youtube as well?
    If the above is true... then I think the best way to do the work is to process the video on my laptop and output in best format
    And ONLY then upload to youtube
    From experience, I've found this takes time for the video to be processed and then published on youtube
    Problem: I've had about 40 videos, all of about 1 minute 30 seconds uploading from FCPX
    I left overnight. he queue is STILL processing
    I'd rather have youtube process and use up their CPU power!
    Any feedback to the above would be great
    Thanks
    Omar

    I think the best way to do the work is to process the video on my laptop and output in best format
    And ONLY then upload to youtube
    Encode before you upload use the share function or better with Compressor (export master file anad let Compressor encode with youtube preset and upload that file via Safari or the Uploader
    Problem: I've had about 40 videos, all of about 1 minute 30 seconds uploading from FCPX
    I left overnight. he queue is STILL processing
    I'd rather have youtube process and use up their CPU power!
    It is almost an hour it seems rather slow but not unusual and they were encoded before upload ?

  • What is the process to copy Master Data in Production to Development?

    Hi,
    we have an outdated master data in our BW development environment and we would like to bring it to the same level as our BW production environment.
    What is the process to copy Master Data in Production to Development?
    Thanks

    Hi,
    You can try system copy for this.
    Pls chk this document , might be useful
    Activity to be performed after client copy :
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/bff13df2-0c01-0010-6ba7-bc50346a6fd8
    BW system Copy :
    System Copy BW
    Re: bw system copy
    BDLS :
    Re: After R/3 Refresh
    BDLS on BW Q/A
    Check following OSS notes.
    Note 543715 - Projects for BW Migrations and System Copies
    Note 886102 - System Landscape Copy for SAP BW 2.X, 3.X and NW2004s BI
    Note 325525 - Copying and renaming systems in a BW environment
    Note 184754 - Procedure after BW database copy
    client copy
    http://help.sap.com/saphelp_nw04/helpdata/en/c2/17e73a86e99c77e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/69/c24cc34ba111d189750000e8322d00/frameset.htm
    Client Copy
    http://help.sap.com/saphelp_nw04/helpdata/en/ff/9be1817d811c41985662da25061f98/frameset.htm
    Thanks,
    JituK

  • TS1967 Every time that I try to open a video the program is forced close.  Any ideas?

    Every time that I try to open a video in iTunes, the program is forced close.  Any ideas on how to rectify the situation?

    Try the following user tip:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • What is the process to reauthorize a single computer once all 5 have been deauthorized?  Say I have 1000 songs.  Is it a few simple steps or do I have to reauthorize each song individually?

    What is the process to reauthorize a single computer once all 5 have been deauthorized?  Say I have 1000 songs.  Is it a few simple steps or do I have to reauthorize each song individually?

    akovash wrote:
    But there's no where where it says "Authorize this computer"  Now what?
    Have you read the article that Rysz posted a link to? It explains it there!
    The only thing you may need is to display the menubar at the top of the iTunes window. Use the CTRL button, CTRL+B and Store is on that menu.

  • What is the process code for Message type FUNDMA

    Hi,
    I am sending CO elements to the distributed server using ALE. Can somebody tell me what is the process code for the message type FUNDMA?
    Thanks
    William

    Check entries of table VEDI_TMSG1. This contains Message types and associated Process codes.
    Hope this helps.
    ashish

  • What is the process code for message type FIXEDASSET_CREATE?

    Hi all
    please tell me that what is the process code for
    MESSGAE TYPE = FIXEDASSEt_CREATE,
    FUNCTION MODULE = IDOC_INPUT_FIXEDASSET_CREATE,
    BASIC TYPE = FIXEDASSET_CREATE01 ?
    thanx in advance.......
    Edited by: Prachi Sharma on Jan 11, 2008 7:45 AM
    Edited by: Prachi Sharma on Jan 11, 2008 8:03 AM

    Hi,
    Check the Tcodes WE41 and WE42 for Outbound and Inbound process codes
    Check below Tables as well
    EDE1T
    EDE2T
    EDE5T
    EDE6T
    TEDE5
    TEDE6
    Regards,
    Satish

  • Can I know what is the process for us to do Good Return from customer?

    Can I know what is the process for us to do Good Return from customer?

    hi
    this ques need to be posted in sd forum..
    to answer this u can use order type RE to create Return order and then u can do the goods receipt..
    or u can use the process mentioned in first reply.
    regards
    CMM

Maybe you are looking for

  • Apple TV - Huge BUG, wait to buy

    I've now spent two days researching the problem of my Apple TV dropping of from my iTunes on my PC - without any success or help from Apple. My rig is as follows: Apple TV ver:3.0.1: PC Win Vista Ultimate, 4GB RAM, Intel Core Duo 2.13Ghz 32 Bit, iTun

  • Can you password protect pages folders

    When you create a folder in pages, can you password protect the folder, or it only that documents can have a password?

  • Trouble in a SAP system with load balancing

    Hello masters: I had a trouble with workitems that came from a SAP system with load balancing. They doesn't receive the workitem ID in the UWL. I created another system in the portal as a "dedicated application server", and made the necessary configu

  • Tar utility and metadata, OS 10.4.6

    I find that 'tar' (version 1.14) on OS 10.4.6 (PPC) now includes OSX metadata files (named "._filename") when creating a tar archive. Undoubtedly beneficial in the Mac environment, but leads to some minor annoyance when unpacking such archives on non

  • Exporting video in Encoder from Premiere locks up at very end

    I'm new to Premiere and Media Encoder, but for the past two days, I've tried multiple times to edit a video in Premiere and export the trimmed video via the Encoder "Queue" option.  The big problem comes at the end of the process, where the status ba