Pivot created in office 2010, Not working in office XP.

Hi,
I have a issue, created a excel file in office version 2010 with pivot, but when i am trying to open it in office xp, File is opening but pivots are not working.I have also set it on compatible mode.
Please suggest if anyone have idea.

There might be no way to solve the pivots compatiblity issue in old Office version. We highly recommand upgrade Office XP to Office 2007 or higher version to avoid this kind of issue.
Tony Chen
TechNet Community Support

Similar Messages

  • 'Create' Push button is not working in BDC and LSMW while uploading G/L master data

    Hello Experts:
    I am facing the following problem:
    While uploading G/L master data with the BDC program, 'create' push button is not working  even after executing following lines.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=ACC_CRE'.
    Create G/L account  screen is not coming in BDC. Please suggest me what to do.
    Thanks !!

    Re: 'Create' Push button is not working in BDC and LSMW while uploading G/L master data
    Re: 'Create' Push button is not working in BDC and LSMW while uploading G/L master data
    Hi Glen Anthony
    Thank you for the reply Glen Anthony please take a look at the following code.
    REPORT  ZFI_BDC_FS00
            NO STANDARD PAGE HEADING LINE-SIZE 255.
    *INCLUDE BDCRECX1.
    TYPES : BEGIN OF STR,
       BUKRS TYPE GLACCOUNT_SCREEN_KEY-BUKRS,        "Company Code
       SAKNR TYPE GLACCOUNT_SCREEN_KEY-SAKNR,        "G/L Account Number
       KTOKS TYPE GLACCOUNT_SCREEN_COA-KTOKS,        "G/L Account Group
       XPLACCT TYPE GLACCOUNT_SCREEN_COA-XPLACCT,    "P&L statement account
       XBILK TYPE GLACCOUNT_SCREEN_COA-XBILK,        "Indicator: Account is a balance sheet account?
       TXT20_ML TYPE GLACCOUNT_SCREEN_COA-TXT20_ML,  "G/L account short text
       TXT50_ML TYPE GLACCOUNT_SCREEN_COA-TXT50_ML,  "G/L account short text
       WAERS TYPE GLACCOUNT_SCREEN_CCODE-WAERS,      "Account currency
       XSALH TYPE GLACCOUNT_SCREEN_CCODE-XSALH,      "Indicator: Only Manage Balances in Local Currency
       MWSKZ TYPE GLACCOUNT_SCREEN_CCODE-MWSKZ,      "Tax Category in Account Master Record
       XMWNO TYPE GLACCOUNT_SCREEN_CCODE-XMWNO,      "Indicator: Tax code is not a required field
       MITKZ TYPE GLACCOUNT_SCREEN_CCODE-MITKZ,      "Account is reconciliation account
       XOPVW TYPE GLACCOUNT_SCREEN_CCODE-XOPVW,      "Indicator: Open item management?
       XKRES TYPE GLACCOUNT_SCREEN_CCODE-XKRES,      "Indicator: Can Line Items Be Displayed by Account?
       ZUAWA TYPE GLACCOUNT_SCREEN_CCODE-ZUAWA,      "Key for sorting according to assignment numbers
       FSTAG TYPE GLACCOUNT_SCREEN_CCODE-FSTAG,      "Field status group
       XINTB TYPE GLACCOUNT_SCREEN_CCODE-XINTB,      "Indicator: Is account only posted to automatically?
       END OF STR.
    DATA : ITAB TYPE TABLE OF STR WITH HEADER LINE,
            IT_BDCDATA TYPE TABLE OF BDCDATA WITH HEADER LINE,
            TXT(4096) TYPE C OCCURS 0,
            MSG TYPE STRING,
            COUNT(5) TYPE N.
    SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
       PARAMETERS : MY_FILE TYPE RLGRAP-FILENAME.
    SELECTION-SCREEN : END OF BLOCK B1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR MY_FILE.
    CALL FUNCTION 'F4_FILENAME'
      EXPORTING
        PROGRAM_NAME        = SYST-CPROG
        DYNPRO_NUMBER       = SYST-DYNNR
    *   FIELD_NAME          = ' '
      IMPORTING
        FILE_NAME           = MY_FILE
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
       EXPORTING
    *   I_FIELD_SEPERATOR          =
    *   I_LINE_HEADER              =
         I_TAB_RAW_DATA             = TXT
         I_FILENAME                 = MY_FILE
       TABLES
         I_TAB_CONVERTED_DATA       = ITAB[]
      EXCEPTIONS
        CONVERSION_FAILED          = 1
        OTHERS                     = 2
    IF SY-SUBRC <> 0.
    * IMPLEMENT SUITABLE ERROR HANDLING HERE
    ENDIF.
    START-OF-SELECTION.
    COUNT = 0.
    LOOP AT ITAB.
    *PERFORM OPEN_GROUP.
    REFRESH  IT_BDCDATA.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_KEY-BUKRS'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=ACC_CRE'.
    *PERFORM BDC_FIELD       USING 'BDC_CURSOR'
    *                              'GLACCOUNT_SCREEN_KEY-BUKRS'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_KEY-SAKNR'
                                   ITAB-SAKNR. "'5'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_KEY-BUKRS'
                                   ITAB-BUKRS. "'TATA'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=2102_GROUP'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_COA-KTOKS'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   ITAB-KTOKS. "'GL'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                   ITAB-XPLACCT. "'X'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=2102_BS_PL'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_COA-XBILK'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   ITAB-KTOKS. "'GL'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                   ITAB-XPLACCT. "''.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                   ITAB-XBILK. "'X'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=TAB02'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   ITAB-KTOKS. "'GL'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                   ITAB-XBILK. "'X'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_COA-TXT50_ML'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                   ITAB-TXT20_ML. "'G/L ACCOUNT'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                   ITAB-TXT50_ML. "'G/L ACCOUNT'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=TAB03'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-WAERS'
                                   ITAB-WAERS. "'INR'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XSALH'
                                   ITAB-XSALH. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-MWSKZ'
                                   ITAB-MWSKZ. "'*'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XMWNO'
                                   ITAB-XMWNO. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                                   ITAB-MITKZ. "''.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_CCODE-ZUAWA'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XOPVW'
                                   ITAB-XOPVW. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XKRES'
                                   ITAB-XKRES. "'X'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                                   ITAB-ZUAWA. "'1'.
    PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                   '=SAVE'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                   'GLACCOUNT_SCREEN_CCODE-XINTB'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                                   ITAB-FSTAG. "'G019'.
    PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XINTB'
                                   ITAB-XINTB. "'X'.
    *PERFORM BDC_TRANSACTION USING 'FS00'.
    CALL TRANSACTION 'FS00' USING IT_BDCDATA MODE 'E' UPDATE 'S'.
    COUNT = COUNT + 1.
    *PERFORM CLOSE_GROUP.
    ENDLOOP.
    CONCATENATE COUNT ' RECORDS UPDATED SUCCESSFULLY' INTO MSG.
    MESSAGE MSG TYPE 'I'.
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
       CLEAR IT_BDCDATA.
       IT_BDCDATA-PROGRAM  = PROGRAM.
       IT_BDCDATA-DYNPRO   = DYNPRO.
       IT_BDCDATA-DYNBEGIN = 'X'.
       APPEND IT_BDCDATA.
    ENDFORM.
    *        INSERT FIELD                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
    *  IF FVAL <> NODATA.
         CLEAR IT_BDCDATA.
         IT_BDCDATA-FNAM = FNAM.
         IT_BDCDATA-FVAL = FVAL.
         APPEND IT_BDCDATA.
    *  ENDIF.
    ENDFORM.

  • How enter the values in to table when create entries option is not working

    hi everyone,
         can u please tell me How enter the values in to table when create entries option is not working.
    it's urgent.
    thanking u all

    Hi Shree,
    how many entries u want to insert ,,
    is it a ztable or custom table ..
    just tell me ur clear requirement ..
    clarify the same ..
    if no options avaliable then if its less entries or some value u can do it through debugging ..
    if its bulk entries then u can write a program ..
    just let me know ..
    regards,
    VIjay

  • Transfer Order auto create for Posting Change not working

    Hello Gurus -
    When we release an inspection lot from "Q" status, it creates a posting change notice, and we have it configured to create a TO in the background to the same bin, and auto confirm.  The desired and intended result is to take something from "Q" status to unrestricted status, while keeping it in the same bin - and avoiding the user having to deal with the transfer orders.  Essentially it is seamless and all in the background, the user just sees that he has changed something from quality status to unrestricted.
    It works fine when the entire quantity is selected for the usage decision, but when a partial usage decision is made, the transfer order does not create - and requires processing in LU04 for the posting change.
    Why would this work for an entire qty, but not work for a partial qty - and simply require someone to go in to LU04 and hit "create transfer order" - with no additional information?
    Any help would be most appreciated.  Does it have something to do with a setting of quants?

    Hi,
    In case of a usage decision for a partial quantity, it is not possible to create the Transfer Order for the generated posting change notice automatically. This is only possible when the full quantity is released. The same happens if you release a partial quantity and post the rest to blocked stock or scrap. The reason is, there needs to be a user decision, which part of the quantity has to be posted, this is necessary for example when the quantity is distributed in the warehouse over many storage bins. But even if the full quantity is on one storage bin, there is no automatic TO creation. You can see this also in the online
    processing (LT05), in case of partial quantities you have to enter the selected quantity in the quant list, for a full posting this is not necessary.
    Hope this helps,
    Sinéad Curran

  • Pdf email attachments - error msg after download "not decoding" - creating DWORD key did NOT work!

    I went to REGEDIT and installed the DWORD key as suggested by ADOBE to fix problem created by security update & it did NOT work!! Attempting to save then open the files gives same error msg.  I sent multiple emails from a book scanner at the library with pdf files in quick and searchable formats & neither will open! Someone else that I forwarded the email to was able to open with no problem & he is running version 10.  There is no option to load earlier versions!!!!  I am running version 11 on Windows XP.

    I scanned hundreds of pages using a book scanner @ the law library - the USB port was not working so I had to choose the send by email attachment option. Received 30 emails & NONE (so far) of the pdf attachments will open - the error msg states "Reader could not open "doc" because it is either not a supported file or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)." I forwarded 2 emails to someone else running version 10 - he had no prob opening from email (I have version 11 & then I also reinstalled 9.5 & STILL getting the same error msg)! Used someone elses's computer who is running version 10 & same error msg. Each time I try a fix I then go to a 'new' unopened email & attempt to open an attachment that hasn't been previously downloaded. Adobe supposedly has a fix - from Regedit - create DWORD key @ HKCU/Adobe/Reader/11/AV General "bValidateBytesBeforeHeader" - I did that & restarted computer each time I installed etc - still NO solution! So unless you have another idea I have a THIRD 6 hour roundtrip to the Law Library in KC in my near future!
    Drew Davis
    Sent from my BlackBerry® powered by Virgin Mobile.

  • Create Type as Object not working in linux oracle 11g

    Pleae refer to the following simple create type as object statement.
    CREATE OR REPLACE TYPE EC_VIEWABLETYPES as object ( CASE_TYPE_ID NUMBER)
    It is working in oracle 11g and windows server 2008 environment.
    But it is not working in oracle 11g with linux environment.
    I am executing this statement as dynamic sql as follows
    CREATE OR REPLACE PROCEDURE TEMP_SP
    AS
    BEGIN
    DECLARE vcType VARCHAR2(30);
    BEGIN
    SELECT OBJECT_TYPE into vcType FROM USER_OBJECTS
    WHERE OBJECT_NAME='EC_VIEWABLETYPES' AND OBJECT_TYPE='TYPE';
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXECUTE IMMEDIATE 'CREATE OR REPLACE TYPE EC_VIEWABLETYPES as object ( CASE_TYPE_ID NUMBER) ';
    COMMIT;
    RETURN;
    END;
    END;
    exec TEMP_SP
    please let me know what i am missing ?

    And error is:ORA-00600: internal error code, arguments: [kothc_uc_md5:lxerr], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "ATIPAGENT.TEMP_SP", line 10
    ORA-01403: no data found
    ORA-06512: at line 1
    ..Query:exec TEMP_SP...Previous Query:CREATE OR REPLACE PROCEDURE TEMP_SP AS BEGIN DECLARE vcType VARCHAR2(30); BEGIN
    SELECT OBJECT_TYPE into vcType FROM USER_OBJECTS
    WHERE OBJECT_NAME='EC_VIEWABLETYPES' AND OBJECT_TYPE='TYPE'; EXCEPTION WHEN NO_DATA_FOUND THEN
    EXECUTE IMMEDIATE 'CREATE OR REPLACE TYPE EC_VIEWABLETYPES as object ( CASE_TYPE_ID NUMBER) ';
    COMMIT;
    RETURN;
    END;
    END;

  • Apex link (Created using href) is not working

    Hello All,
    1. I have created a click able on the APEX page for the attached link (stored in the oracle db table)
    Using below query
    SELECT '<a href="' ||'file:///'||Package.function(p_parameter)||'" target="_blank">'|| package.function (p_parameter_id )||'</a>'
    AS href
    FROM prag.t1, t2 
    WHERE    condition.t1 = condition.t2
    AND ID =p_id
    2. The attached link from the path are opening in a new window perfectly for me.
    \\sih82566\k1_ora$\K1IS\TEST1I\WORKDIR\Gaurav\146539_Scripts.SQL
    3. The attached link from the path such as
    C:\Documentss%20and%20Settings\gaurav\Desktop\f120.sql
    are not accessible to me. There is not any error message also on click on this link.
    Note:I am using using APEX in my citrix machine
    Thank you.
    Regards,
    Gaurav Nagpal.

    Hello Hari ,
    I was expecting suggestion from you and finally you replied  thanks a ton.
    For your first question :->
    I think the problem is with "citrix". Can you just run the application from your machine and see if you can access the file?
          Yes, I copied the link "  C:\Documentss%20and%20Settings\gaurav\Desktop\f120.sql "  and paste on IE its working perfectly.
    When you run browser from citrix, then C:\.. will refer to local drive of Citrix machine, not your local machine!
        Attached link  from  C:\. is not working (either I attach  link  from citrix machine or my local machine)
    It would be really very helpful if you can suggest me more in solving this issue.
    Thank you.
    Regards,
    Gaurav Nagpal.

  • Added barracuda LB. owa 2010 not working on virtual IP - works using host IP. IIS home page works on virtual IP

    Hi,
    I have 2 exchange servers in a DAG. (exc1 and exc2) (DAG is called: outlook.domain.com)
    I added 2 load balancers in front of them to distribute the load + ensure uptime for the users.
    the load balancers have a virtual IP - 192.168.1.33
    there is an A record in DNS pointing to this IP called: outlook.domain.com
    SSL offloading is enabled and certificate has been imported to the LBs
    Outlook clients work just fine using outlook.domain.com - everything OK
    OWA works using https://exc1/owa and https://exc2/owa
    but OWA does NOT work using Https://outlook.domain.com/owa
    I get "connection reset"
    IIS front page works just fine (https://outlook.domain.com gives iis7 welcome page) - its only when I add /owa to it, that the error appears.
    any ideas?
    thanks in advance
    /chris

    Do both sets not say to
    set Client certificates, select Ignore?  
    I'm skimming so may be missing something. 
    You can have session persistence using IP affinity, but depending on what you want to publish and achieve you may need to inspect the traffic on the LB.  I was curious as it adds a bit more complexity.
    And is Outlook 2010 upto date?  What is the exact build string on a client that is getting the prompt please?  This is a person bugbear of mine:
    http://blogs.technet.com/b/rmilne/archive/2013/07/18/patching-exchange-don-t-overlook-outlook.aspx
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Redirect emails in OWA and Outlook 2010 not working in Exchange 2013

    I have an new install of Exchange 2013 with all updates.
    When I setup an inbox rule to redirect messages to another contact it is not working.
    When I used Outlook 2010 and ran the rule manually I received this error:
    "the redirect action is not currently supported with run rules now"
    It seems that I didn't setup up something correctly in Exchange 2013 or a feature is not turned on. Please assist.
    In the EM console when I setup forwarding that is working. Its the inbox rule redirect not working.

    Hi,
    From your description, I recommend you use the following cmdlet to ensure that the DeliverToMailboxAndForward parameter is set to $True.
    Get-Mailbox <identity> | fl DeliverToMailboxandForward
    If this parameter is false, you can use the Set-Mailbox cmdlet to set it and check the result.
    Hope this can be helpful to you.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Amy Wang
    TechNet Community Support

  • Kuler's Create colors from image not working

    Whenever I try to create a color scheme from a photo, the
    little spin graphic hangs and the percentage done gets stuck on 19%
    or 31%. It's not working. Any help??

    Hi,
    We were experiencing issues with one of our servers
    yesterday. It should all be working now. Please let us know if
    you're still experiencing the same problems.
    Thanks,
    The Kuler Team

  • MacBook pro 13 2010 not working

    my computer is not working anymore, was working perfectly until a moment's notice when I was very slow to start and would not go to the system just stayed in the logo and now I get a folder with question mark and nothing happens more. What I do?

    The following support article is somewhat outdated. Where it refers to booting from an installation disc, you should boot from your recovery partition (if running 10.7 or later) by holding down the key combination command-R at the chime.
    Mac OS X: Gray screen appears during startup

  • Help required - animation created in edge animate not working on chrome mobile

    Hi,
    Here is the link :
    www.knowledge-hive.com
    The animation is working well on default mobile browsers for android and iOS but it is not working on chrome mobile. Has anybody faced a similar issue?
    Thanks,
    Ankur

    Actually yes...!
    Failed to load resource: net::ERR_FILE_NOT_FOUND file://www.youtube.com/player_api
    But why only when opening the HTML directly...?
    There is another error...maybe this is the problem source:
    Uncaught SecurityError: Blocked a frame with origin "https://www.youtube.com" from accessing a frame with origin "http://localhost:54321". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "http". Protocols must match.

  • Nokia Music - Create a Mix / Personalize not worki...

    I have subscribed to Nokia Music + for $3.99 a month to take advantage of the added features etc.
    But... when I go to "Create a Mix" and "personalize" then click on "create music profile" it scans my phone, finds about 956 songs... then gives me a message:
    Are you connected?
    Looks like there's no internet connection.
    Check and try again.
    Of course I'm connected. I have 5 bars of AT&T LTE, and at home I'm connected to my super fast Xfinity WIFI where I get close to 40Mbps downloads on my phone (according to the Speedtest app).
    So.. what gives here?
    Attachments:
    wp_ss_20130812_0001.jpg ‏50 KB

    Nevermind... I figured it all out.
    All I had to do was to first download the PC music scanner from http://music.nokia.com/us/en/scanner
    Ran that, then all of a sudden my create a mix/personalized music works on my 920!
    Attachments:
    wp_ss_20130812_0002.jpg ‏180 KB

  • Creat PDF funtion in Word 2010 Not Working Correctly

    Hello.
    We recently installed Adobe Acrobat XI Standard within our orginization. We are having issues with our company letter head and the Create PDF function within Word 2010. When we attempt to use the Create PDF function, it creates a PDF that has the letterhead elements, but no text on the page. When we select to print to PDF, that option works without issue. Can someone lend some advice here?
    Thank you!

    Hi LotteNZ,
    Just for clarification, I'm using PowerPoint 2010 and Adobe Pro XI.  I have an ongoing project for which I have to produce a PDF based on a PowerPoint file that has a lot of links.  I eventually found an actual Adobe person who answered my question so I could stop looking for features that don't exist.
    Here's the bottom line:
    - Links that go to Next, Previous, First, or Last slide will work correctly in the PDF
    - Links that go to other specific slides within the file will not be transferred to the PDF
    - The links that don't get "inherited" in the PFD have to be re-created in the PFD (which isn't difficult -- just tedious when there are a lot of them)
    Adobe is aware of this but the person who wrote me did not know of any specific plans to fix it in future releases (which doesn't necessarily mean that they won't).
    I think Adobe supports "its own" first, which makes sense.  I believe that If the source file was created in InDesign, all of the links would be supported.  But for a variety of reasons, in my case, my source file has to be PowerPoint.
    It's annoying having to recreate links every time I make changes in my source file and so one trick I've learned is to only replace pages that have changes.  It's an imperfect system, but it does speed things up.
    Hope that helps!
    Fifi
    www.FifiKlein.com

  • Office 2010 not working well with iCloud

    I am using Office 2010 Home & Business on a Windows 8.1 64 bit computer, and my calendar, tasks and contact list sync with iCloud.
    I am noticing lately (since installing Windows 8, perhaps), that when entering an appointment (in Calendar), it takes several seconds to "register" whereas before it was immediate.
    I also find that when I switch from Calendar to Mail or Mail to Calendar (or Tasks), it also takes several seconds.
    Is there a fix for this?

    Hi
    It can be resulted from the permission for Office related files and folders.
    Create a new standard user account to check.
    Login with your admin account.
    Check permission for folders related to your Office program(Right click>Properties>Security>Set full permission to all user account)
    Login with new user account and try to run Office program.
    If the issue persisit, check the following article to see if it helps:
    http://office.microsoft.com/en-001/support/why-cant-i-start-my-office-2013-application-HA104011864.aspx
    Tylor Wang
    TechNet Community Support

Maybe you are looking for

  • How can i query an apple device's information?

    hi, i am a newcomer developer,i am now on a App project about the apple device,we think the corrct information of a device is vital, so our new App will ask user to enter the device id like "DLXFH......",then comes the problem, how can our new App ge

  • Playing music on I-phone or I-pod

    Is there any way to exclude songs from playing in the shuffle mode? For example if I want to exclude Christmas songs from playing in the shuffle mode can I uncheck the box next to the song in i-tunes when I sync my i-phone or i-pod?

  • Connecting Snow Leopard to Printer shared on XP Pro

    I am attempting to connect my Snow Leopard machine to my printer that is shared on my XP Pro machine. Here are the steps I have taken. 1. Printer shared on XP with printer name that is 12 characters or less 2. Verified the XP Firewall is set to allow

  • How can i opened my BI system in WEB page

    Dear All, Please Explain How can i configure web configuration for my newely created BI system Regards

  • How to remove create placement option from action of HRMS people screen

    Hi All, Please can you suggest me the way to remove 'create placement' option from action field of UK Super HRMS manager responsibility or any responsibility .I have tried it by task flow approach.So kindly suggest different approach. Regards Akash