Schedule artifacts,metadata and data backup in HFM

Hi,
Please let me know if there is any script / process by which I can schedule backup of artifacts, metadata and data of Hyperion application.
I am working on HFM 11.1.1.3

You can use HfmCopyAppCmd.exe Utility to schedule the migration of Complete HFM Artifacts and data.
But your Database servers should be in the same network. You will need to create two UDL files which should
point to your Source and Target Databases. To read more about this Utility.
Open the command prompt
do cd C:\Hyperion\products\FinancialManagement\Server
type HfmCopyAppCmd.exe and enter. It will show the complete description of the Utility. You can make a batch
of this commands and schedule it.

Similar Messages

  • Any interest in scheduled network TM and VM backups

    Hi,
    I spent sometime writing some launchctl and bash scripts to setup Time Machine backups on an Apple Desktop while excluding all meaningless items (Applciations, System Files, Downloads folders, Music etc...) and also excluding VMs from the Time machine backups. It is scheduled on a machine to run based on a CSV file (1 csv file per all machines, located on the hdd of each machine). The script will actually wake up the desktop to run the backup as well.
    It also will backup all VMs (Virtual Box & VMWare Fusion) that have been ran in the last week on a weekly basis. Just keeping a single backup every week.
    It was important for us to do this as we had problems with a bunch of TM Backups running at the sametime overloading the central backup server.
    Any interest so that I post the scripts etc... online?
    Thanks~

    Hi,
    Sorry to jump in on this thread,
    Once you change the preferences with the 'Time Machine App' (i.e. to once a week at 8.00pm) how do you go about changing it back in the future if this software isn't an actual application?
    Just asking because i'm sure i'll forget the link to this app and not be able to figure out how to change it back to an hourly backup in the future if need be.
    I've opened my Time Machine preferences but there's no options to change it back to an hourly backup.
    Thanks!
    UPDATE:
    Sorry, just figured out that I could drag the TimeMachineEditor.app to my applications folder to have it for future changes. It said earlier it wasn't a application so I assumed that it wouldn't create an App programme icon. Sorry, but hopefully it helps someone who had a stupid moment like me
    Message was edited by: dherron

  • IOS 7 upgrade and data backup restored issue reg.

    Sir,
    I have using Iphone with IOS 6. Last sunday I have
    upgraded my iphone IOS 6 to IOS 7 version.
    Before upgrading i had backuped my phone.
    After Upgrading my iphone to IOS 7. I tried to
    restore my backup data from itunes to my Iphone
    that time restoring process only compltes 20% and the
    iphone get hanged and not responding.
    Kindly help me solve the above problem and restored my old data from backup.
    thanks in advance.
    Jagadeesh
    email : [email protected]

    I was able to see it earlier. When the noticed the warning messgae to disable find my iphone while attempting a restore, i removed it from my account in web. Still i am not able to restore to a back up as iCloud is disabled. It is always popping up a message to accept iCloud terms and conditions. Upon clicking View Terms it opens the settings page.
    I think it might be related to the ongoing issue
    https://discussions.apple.com/thread/5335046
    Please confirm.

  • Re: Docs and Data - In my Jamie Oliver app (app size 244MB) i have used also used 633MB docs/data - is there any way to back up the docs and data so i dont have to download it all again when i update my operating system? (as i tunes only backup app itself

    Document and Data backup ? - can it be done??
    Sorry if this question has already been answered before but im not phone savvy...at all!!!
    I have a Jamie Oliver appl that is 244MB, but in it i have downloaded 633 MB docs and data - but the only bit that itunes backup is the 244MB app,...is there any way i can save/backup the 633MB bit too so i don't have to download all the videos/recipe packs again (i know it wont cost to download them again, i just dont want to take up the time and use my downloads).
    Any help would be appreciated...thanks, Kirst

    Document and Data backup ? - can it be done??
    Sorry if this question has already been answered before but im not phone savvy...at all!!!
    I have a Jamie Oliver appl that is 244MB, but in it i have downloaded 633 MB docs and data - but the only bit that itunes backup is the 244MB app,...is there any way i can save/backup the 633MB bit too so i don't have to download all the videos/recipe packs again (i know it wont cost to download them again, i just dont want to take up the time and use my downloads).
    Any help would be appreciated...thanks, Kirst

  • Querying metadata vs data

    Hi There,
    Say I had the option of coming up with whatever schema that works best for BDB XML from a performance standpoint to persist xml documents. That said, I now have the option of storing metadata as metadata or as part of the regular data/content. Given that both metadata and data/content can be indexed, is one option preferable over the other ?
    Just to be really clear, I am considering b/w options (1) and (2) below. Assume that 'custCreatedBy' will be indexed for both (1) and (2).
    (1)
    Metadata: <custCreatedBy>bar</custCreatedBy>
    Data/Content:
    <cust>
    <id>123</id>
    <name>foo</name>
    </cust>
    (2)
    Metadata: None
    Data/Content:
    <cust>
    <custCreatedBy>bar</custCreatedBy>
    <content>
    <id>123</id>
    <name>foo</name>
    </content>
    </cust>
    Cheers,
    Shashi

    Whether you opt to put data in the document or in
    metadata depends mainly on whether you need that data
    available outside of BDB XML. If you do, it should go
    in the document. There is not a major performance
    difference, because both can be looked up directly
    using indexes if they exist. I use metadata primarily
    when I need to store data that cannot exist in
    my XML, for such reasons as schema constraints, etc.
    Keep in mind that metadata is not XML, it's just
    name-value pairs.
    Agreed. Makes sense.
    When you can create your own XML, some of the things
    to keep in mind for ease of use with BDB XML are:
    I guess in my case, I wasn't very clear but I do not have as much control over the content as much as the rest of it which would be the metadata. But regardless, all of the below points are very valid and useful (some of which I gathered from Chapter 7). Thanks for reiterating these anyways.
    • Indexes are not used for negative presence. That
    is, you should avoid XML where you need to test for
    the absence of certain nodes. If you wanted to query
    for all documents missing an <id/> element, for
    example, indexes would not help. You'd need to
    instead test for documents with <id/> elements with
    an empty string value, and look that up with a
    query.Interesting. I find it hard to understand why a "presence" index cannot be leveraged for this as well. Anyways, just to satisfy my curiosity, I played with the two queries (exist, not exist) - below are query plans for both usecases with a "presence" index for "id" node.
    dbxml> queryPlan collection('junk.dbxml')/cust[id]
    <XQuery>
    <Navigation>
    <QueryPlanFunction result="collection" container="junk.dbxml">
    <OQPlan>P(node-element-presence-none,=,id)</OQPlan>
    </QueryPlanFunction>
    <Step axis="child" name="cust" nodeType="element">
    <Predicates>
    <Step axis="child" name="id" nodeType="element">
    <OQPlan>P(node-element-presence-none,=,id)</OQPlan>
    </Step>
    </Predicates>
    </Step>
    </Navigation>
    </XQuery>
    dbxml> queryPlan collection('junk.dbxml')/cust[not(id)]
    <XQuery>
    <Navigation>
    <QueryPlanFunction result="collection" container="junk.dbxml">
    <OQPlan>U</OQPlan>
    </QueryPlanFunction>
    <Step axis="child" name="cust" nodeType="element">
    <Predicates>
    <Function name="{http://www.w3.org/2005/04/xpath-functions}:not">
    <Step axis="child" name="id" nodeType="element">
    <OQPlan>P(node-element-presence-none,=,id)</OQPlan>
    </Step>
    </Function>
    </Predicates>
    </Step>
    </Navigation>
    </XQuery>
    I presume that you are referring to the first bolded line (indicating that the index is not kicking in for "cust[not(id)]" query. However, I am curious to learn about the second bolded line above which seems to indicate that the "presence" index is indeed kicking in. In my limited experience with db xml, this is the first query plan where I have seen the <OQPlan> node appear twice. Wondering if someone could shed more light or pointers to understand this query plan more. I did see the "Caution" line in your book citing that it is not documented anywhere - but i am hoping against hope that maybe that is not true anymore - since I see myself banking on it to do some tuning of my own.
    Thanks again for all your insightful comments/tips. Cheers.

  • Woes of the Z10, and now i want to use it as a backup phone for my contacts and data. Can I?

    Ok, this has been a real nightmare. I am an extensive user of BB since OS4. Wanted to try the new Z10, so I got myself a spanking new one. With my prior experience in switching devices, it would be a cinch. Transfer device over via blackberry desktop software, change the emails via BIS, and I'm all sorted out. 
    OMG dear blackberry. You made me jump through so many hoops I felt like a circus dog.
    Blacberry desktop doesn't work with the Z10. No one told me. I had to find out the hard way after not being able to detect the phone. wasted half an hour of my life. Downloaded Blackberry link. Transferred my contacts and everything over, couldn't be happier.
    Hurrah, thought the nightmare was done. It was just starting.
    Micro sim. Not everyone has a microsim cutter lying around. Great. Troop off to the shop. Figured after I get the sim cut, I could also transfer the emails via BIS server. So that's what I did. (oh by the way, having to buy a micro SD card was also a pain in the A but still acceptable). The BIS server detected the change in device so it disabled my emails. No problem. Until the technician told me at the store-sorry-BIS DOESNT WORK WITH Z10. Whaaaaat? Come on blackberry! Now its just normal emails, similar to that of iphone and samsung. Emails were your best feature. Ok, this I can stomach. What I cannot stomach is...blackberrry, you just killed your frequent traveller who needs international roaming. BIS emails and BBM was wonderful. I could get by travelling from country to country on 50mb a month unlimited. Apparently not anymore. I need a full fledged international roaming plan that will cost me an arm and a leg. This is insane. 
    Finally I had the Z10 working. I manually entered all my emails. ( i have 9 emails. Thank god they are all gmail based, especially for work, if not I would have ripped all my hair out). For the whole 2 hours, I looked at it and hated it. It was hard to use, I had to keep swiping up and to the right, sometimes it wouldn't swipe well, sometimes I couldn't tell if it was swiping or not. Neither did it help that Whatsapp hasn't even been sorted out on the Z10. Whatsapp is my life. My family's on it. My friends are on it. My suppliers and my customers are on it. Oh wait. Z10-well, you can download it from the appworld, but it doesn't install. Thinking it was a problem with the downloads, I kept at it..only to have the technician tell me, "sorry, Whatsapp not working on Z10, too bad"...anyway I made up my mind to go back to the Torch. So thinking it would be as simple as changing the hub ID on the Z10 and then reactivating the Torch. All will be well. Wrong. 
    I had to run to another tel shop to beg for a spare sim shell so I could stick the micro sim into it and have it back as a normal sim. Another 2 hours of my life later, I realise-changing the hub ID on the Z10 doesn't change anything. It doesn't mean you can just use the original hub Id and all systems are go on the first phone. Changing the hub ID means changing the original one. Argh. This was so frustrating especially when the BIS server refused to switch back to the old device. Ever clicked on detect device 200 times? Well that would be me. Eventually I figured it out. Change back to the old hub ID, security wipe the horrible thing, log in with the original hub ID and reset the device via BIS server. Finally, order is restored.
    Which leads me to my question. I am thinking of porting over my contact list and data to the Z10, and using it as another phone in another country. However I want to use a different Id from my Torch since it is considered a different device but with the same data. Will blackberry link allow me to do this, or will it only switch the data provided the hub ID is the same?
    Blackberry, hand over heart, I'll use the Torch till it dies ( I just changed out the nav pad cause it was completely worn out and would act wonky in sunlight- I call it the blackberry vampire version) and after that I'm off to another smart phone platform. You've made my life miserable. It was great while it lasted, but I'm going to be migrating to another platform eventually. Thanks for the memories.

    Hello,
    BlackBerry 10 has always been advertised as a revolutionary change from prior...not an evolution. And you have both now learned the hard way just how detailed that change is. As with so many things, the assumptions made from past experience with BB are not useful for this very significant change. Rather, research done prior to purchase is the most useful activity one can undertake.
    For BB10, BIS is not required. Indeed, on some carriers, having BIS on the account actually impedes some services for BB10. BB10 uses a full on-device ActiveSync client for email now. BIS-handled email is gone...as are "hosted" email accounts (though you can get 1-year of forwarding).
    Migrating of data from old to new involves many choices before beginning. For example, if you are not afraid of placing your Calendar and Contact data "into the cloud", the Z10 can excellently synchronize that against many different providers (many more than BIS ever could). Done correctly, one can attain full end-to-end OTA synchronization of Calendar/Contact data between Outlook desktop client (and perhaps others, though I've not tested), a Z10, a PlayBook, and more (for me, I've got 2 Outlook client instances, one Z10, one PB, and one Droid...all working beautifully OTA).
    Traveling is no more challenging than in the past...your specific device must be able to function on the networks upon which you wish to roam...this is no different from before (e.g., a GSM-only device simply cannot roam on a CDMA network). To compare specifics, I've found this useful:
    http://www.bbin.in/en/2013/03/03/4-types-blackberry-z10-models-fits-better/?utm_campaign=4-types-of-...
    There are many other differences...but please try to let go of what was before, for pretty much none of it applies anymore. BB10 is revolutionarily different from before.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Data Backup 2.1 and Mac Memory Management?

    I'm trialing a backup program called Data Backup 2.1. It keeps versions of my programs, which I need, as often I've had corruptions and have not notice this till a few days after the fact. I've been using Retrospect but read a review that praised Data Backup. The thing I've noticed with it is that although it is very fast, like SuperDuper, it seems to affect my free memory dramatically. I've noticed that it will finish and instead of having say 250 megs of Active memory in use I'll have 700 megs of active memory. Inactive will be low whereas normally its high. Free memory during its backup can drop to 20 megs (I have 1.5 gigs). The free memory, once you start to use your computer seems to recover to around 500 - 700 megs. The one thing I have noticed of concern is that while its running I get pageouts, which I never get and my reading about Mac memory management is you want to avoid pageouts and if you get them you need more memory (for what I'm doing 1.5 gigs should be plenty). I've asked the Data Backup people what's going on and they don't think its something to be concerned about but they said it is probably something to do with the way they are caching.
    I'm just wondering - do you think this is something to be concerned about. I'd like to switch from Retrospect as although I know it I'm not sure how committed they are to the Mac market any longer and it is way slower in terms of activities but it does manage memory well. However I don't want to get Data Backup if it is affecting RAM inappropriately.
    Kerry

    Synchronize! Pro X will maintain versioned archives, perform full, incremental, and bootable backups both to local and to network devices. I have found that SPX is just about as full-featured as Retrospect with certain limitations. It cannot backup across multiple media (CDs, DVDs, tape), no extensive browser windows like Retrospect, no backups without scanning (as SuperDuper does for its "fast" updating backup.
    SPX supports schedules, multiple-item backups (can select individual files and/or folders), extensive backup/synchronize customizations, can run as "root", can auto-mount devices (including network drives), and it's a universal binary.
    It's also nearly as expensive as Retrospect but in my opinion it's worth it.
    If you want a less costly backup solution without all the features of SPX, but with all the features of SuperDuper (and in my opinion better than SD) then try Deja Vu. Also a universal binary, it supports incremental archives, full, incremental, and bootable backups to local or network drives, supports scheduling and runs as a preference pane.
    Finally, for the the truly cheap there are PsyncX and RsyncX - both freeware. They are GUI wrappers around the basic backup and synchronizing tools that are part of Unix (ditto, rsync, and psync.)
    Download mentioned software from www.versiontracker.com or www.macupdate.com.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • What would happen if I turn off my backup and delete backup data From my device? Will it delete my music and everything for ever or just stay in the cloud but not on my device?

    What would happen if I turn off my backup and delete backup data From my device? Will it delete my music and everything for ever or just stay in the cloud but not on my device?

    If you have multiple devices backing up to the Cloud, you will see all of them listed. You would click on each device to change what is backed up from that device. You can then delete your individual back-ups.
    Once you have all your settings to your liking, you can then go back to Settings>iCloud>Storage & Backup, and click on Back Up Now (bottom of the screen) to create a fresh backup with your new settings.
    Cheers,
    GB

  • By backing up the iTunes Library via saving the iTunes folder on an external drive, is it also backing up all iPad and iPhone backups as well as App Data and Documents from your devices?

    If I backup my iTunes Library by saving the iTunes folder on an external hard drive using the instructions contained in the link below, will it also back up all my iPad and iPhone backups as well as App Data and Documents from my devices? In other words, will it also create backups for the backups? Thank you.
    Back up your iTunes library by copying it to an external drive
    Furthermore, when it is time to restore the iTunes folder I copied to my external drive to a new iTunes program on my new computer, how will it merge the information once I plug in my iPad or iPhone to that new laptop to sync? If I did the iTunes library backup a couple months ago and I've added documents/music/pictures on my devices since then, what will happen when I try to sync it with the new laptop now working off of the iTunes library backup from a couple months ago since the information is no longer the same? Which information will dominate and thus be kept? Will it delete the new information/data/pictures/documents/music off of the devices since it is not on the iTunes program when it syncs?
    Sorry for so many questions, but they are all related to backing up and restoring iTunes. I am not very tech savvy if you cannot tell

    It would be a good idea to look into a bigger hard drive. They are not that expensive any more and can save a lot of headach. This is even more important if you are buying music from the iTunes music store. If you lost those files they are gone.
    The point of having it on your PC and iPod is to have a backup. If the iPod fails, or you need to go back to the DVDs and find they are scratched, or just can not be read you have lost days of work converting and organizing all of those songs.
    Or the iPod could hard drive could fail and then you will have to try to bring all of those files back from DVDs. You end up with a mess since some songs will probably be on multiple DVDs, have different names ect. Trying to reorganize it all can be a pain.

  • My iPhone was stolen. I just got a new one and am trying to backup my contacts and data from iCloud. How do you do that?

    my iPhone was stolen. I just got a new one and am trying to backup my contacts and data from iCloud. How do you do that?

    If your backup is in iCloud, and your new iPhone is already set up, go to Settings>General>Reset, tap Erase All Content and Settings, then go throught the setup screens on the iPhone and when given the option, choose Restore from iCloud Backup and follow the prompts.  (If it isn't set up yet, just choose this option when setting it up.)
    Be sure your iPhone it connected to wifi and your charger while it is restoring the backup.

  • When I sync my iPhone 4S to my computer, where is the baseline data and documents coming from? Is the iPhone's set of apps and data the default set or are the apps and data on the computer (in the backup? in iTunes?) the default set?

    I am having a great deal of trouble with the upgrade to ios 7 on my 4S. The syncing and the software updates always leave generic icon apps that I have downloaded in the past but have deleted from my phone. But they keep reappearing. A restart of the phone fixes the icons but they are loaded not at the last page of the home screen but on completely random pages, screwing up my app and folder layout.
    I want to completely wipe the phone and restore the apps one by one, but I am concerned about whether the data and documents for those apps that I reinstall will be intact. Does the syncing for the apps on the phone retrieve the data from the last backup on the computer? If so, does it only sync the apps on the phone or does it try and reinstall all the apps that there is data for in the backup? In other words, does the resulting set of apps and data reflect the current state of the phone or the saved state of the backup?

    Apple guys are deleting posts. I have found my posts have been deleted. Apple should MUST let us downgrade at least to previous release from current which was working fine.

  • I performed a time machine backup without plugging my labtop into a power source. My computer died and all the settings were changed, ie the clock and date were changed back to 2001. So I tried to restore my computer using a previous time machine backup.

    I performed a time machine backup without plugging my labtop into a power source. My computer died and all the settings were changed, ie the clock and date were changed back to 2001. So I tried to restore my computer using a previous time machine backup. (which I now know was wrong). However, when time machine tried to restore it said there was not enough room to do a backup. It seems that it did a half backup because some essential  files such as system profiler are now missing. Can I undo this restore...? What can I do to fix this

    You need to do a full system restore, per Time Machine - Frequently Asked Question #14.
    If that sends a message, please note the exact wording.

  • I have had my Iphone 5s for 2 months and all the fotos and data (fotos and data were not backed up) that I had were erased after I restored it with my old Iphone 4s backup, can I get my unsaved fotos and data back? and if I can, how?

    I have had my Iphone 5s for 2 months and all the fotos and data (fotos and data were not backed up) that I had were erased after I restored it with my old Iphone 4s backup, can I get my unsaved fotos and data back? and if I can, how?

    If you never backed up your phone to iTunes and never backed it up to iCloud all of your content is gone forever.

  • HT201250 Mac OS 10.6 - How to restore OS and Data from Time Machine Backup

    my exisitng iMac have a defective hard drive that i need to be replace. how do i restore the OS and data to the new hard disk? i have Time Machine backup from the previous hard disk. (note: the OS is 10.6, and i do not have the install disk)

    cindy1023 wrote:
    i had a hacker get in my computer, got all my info used my name and passwords to convert safari into windows on another computer? and APPLE IS THE ONE GAVE HER THE PASSWORD.
    There is no way to "convert" Safari into Windows.   And very unlikely for a hacker to get into a Mac. 
    But, ok, your system is all messed-up somehow.
    First, what version of OSX is on your Mac?  If you don't know, click the Apple icon at the upper-left of the screen and select About This Mac.  You'll see a display like this:
    We need the Version number.
    Second question: do you have backups made with Time Machine (on an external HD or the like) that you want to restore, or do you want to start your Mac over fresh, the way it came from the factory?
    p.s. i dont have the disc it came with , my daughter set it up for me to get started !
    You may need that, depending on what version of OSX you're running, to restore the backups or start fresh.
    You really should have a copy of the original disc, as there's an Apple Hardware Test on it, tailored to the hardware on that Mac. You'll need it it there's ever a problem.  If your daughter can't send it,  call AppleCare (800-275-2273),and  give them your serial number -- they can send you a replacement for a nominal fee.
    Sorry, but it's late here, and I'm going to bed, but will be back tomorrow.

  • How to backup all database settings and data for SOA suite to file(s) ?

    During the installation of the SOA Suite a couple of tables and schemas are created
    in Oracle database through the irca.bat script.
    Later the tables are filled with content by all the servers and services of the
    SOA Suite.
    How can I backup all these tables and SOA related stuff to one (or more)
    files (for a possible later restore)?
    This backup should contain only SOA Suite related tables and data.
    Possible other tables (for other applications) should not be considered.
    Is there a script (e.g. for sqlplus) or menu which does the
    SOA database backup job for me ?
    If there is no official backup script maybe someone in this forum
    wrote a personal script.
    Thank you
    Peter

    I am facing the same problem.
    I have spend a few days to configure and train my Sony tablet to configure for all my remotes such as aircon and lighting. I did a backup using the Sony companion to my PC. When my tablet was faulty and serviced. But the backup did not recover the IR remote settings and codes which I programmed previously. I also tried your backup restore app but it also does not save the configuration.
    It is VERY IMPORTANT for me to backup the settings.
    Please provide the folders and path of where the IR REMOTE settings and personal configuration and codes trained were kept so that I could back them up. Are these path protected area that required rooted access?
    Hope that Sony could update the app to include backup of new trained codes and settings and in the meantime to provide a procedure of how to backup the setting and trained IR codes with or without rooting the device.

Maybe you are looking for

  • When I click on to a site . . . I get that page plus an empty Firefox page.

    Whenever I use Firefox . . . and, click onto an item to get more information or whatever . . . I always get the page I want but then I get a minimized page which has all the tool bars but is otherwise blank. Now, some times I get a full page which ju

  • Partner functions for SAP Customer Master

    I am in the MDM solution definition phase for SAP Customer Master at one of our Cients place. The requirement is to set up a central master data scenario where creation & modification of any customer record will be done via MDM. The following compone

  • I updated to IOS 6 last night and my phone won't turn on

    I know the update finished last night, but when I woke up my phone wouldn't turn on... what can I do?

  • Using Mac OS X Leopard

    We got a new iMac, naturally with OS 10.5 for Intel. My qustion is how do you use Mac OS X Leopard ? 1) Photoshop does not work. Note: I mostly use ImageMagic as my photos (hobby/family) mostly need little correction, but once in a while you want to

  • PDF attachment upside down?

    Hi This one has me a little perplexed. I receive a pdf attachment in email and when I opened it, the document is upside down. LOL. What's the deal? First time I have ever seen that. Thanks Rich