Hyperlinks from converted excel file are not working after pdf file is moved

I have created a pdf file from an excel file that has hyperlinks in it. The hyperlinks work fine if the files are all kept in the same exact location as the time they were created. Once the files are moved (i.e. emailed to another user) the hyperlinks no longer work. An error message pops up that the file can not be found. Is there a setting or something that I'm missing in acrobat that allows for the files to be moved, so that the hyperlinks still function properly, after creation

No settings adjustments.
The issue is that links, once made, have a specific path (as shown when you view the link's text string).
When you email the files the person who recieves the email and downloads the attachments would have to have the same layout of files/folders you have.
Without that links are "broken"
You email a zip file that, when extracted, would create the folders/files in the required layout to reflect what you have.
Be well...

Similar Messages

  • File- Export not working after upgrade from 11i to R12

    Hi,
    File -> Export not working after upgrade from 11i to R12.1.3 in few systems. Can you please let me know what could be the issue.
    If export record count more than 200 it is working fine in all the systems and if change the profile option "Export MIME type” value to ‘text/tab-separated-values’ from application/excel also it is wokring.
    Thanks and Regards,
    Jagadeesha

    Enabled the FRD. Below are few last lines. Can you please let me know what i can in this log file contents.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing GET_ITEM_PROPERTY/FIELD_CHARACTERISTIC Built-in:
    In Argument 0 - Type: Integer Value: 196613
    In Argument 1 - Type: Number Value: 54
    Out Argument 0 - Type: String Value: 12
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Entering app_menu.set_prop.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing FIND_MENU_ITEM Built-in:
    In Argument 0 - Type: String Value: FILE.EXPORT
    Out Argument 0 - Type: Integer Value: 19
    Executing GET_MENU_ITEM_PROPERTY Built-in:
    In Argument 0 - Type: Integer Value: 19
    In Argument 1 - Type: Number Value: 79
    Out Argument 0 - Type: String Value: TRUE
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_menu.set_prop.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_synch.menu_toolbar_sync. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.APP_CUSTOM_MODE
    Out Argument 0 - Type: String Value: NORMAL
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.APP_CUSTOM_MODE
    Out Argument 0 - Type: String Value: NORMAL
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: NULL
    In Argument 1 - Type: String Value: GLOBAL.OUT
    Executing USER_EXIT Built-in:
    In Argument 0 - Type: String Value: FND GETPROFILE NAME="UPK_RECORDING_ENABLED" FIELD="GLOBAL.OUT" N
    FNDCPVCM, 11, Built-In, Entry, 316509814, USER_EXIT
    FNDCPVCM, 11, Built-In, Exit, 316509814, USER_EXIT
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.OUT
    Out Argument 0 - Type: String Value: N
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_form
    Out Argument 0 - Type: String Value: FNDCPVCM
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_block
    Out Argument 0 - Type: String Value: MASTER
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_form
    Out Argument 0 - Type: String Value: FNDCPVCM
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_block
    Out Argument 0 - Type: String Value: MASTER
    Executing GET_APPLICATION_PROPERTY Built-in:
    In Argument 0 - Type: Number Value: 75
    Out Argument 0 - Type: String Value: IHR40P
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed call_all_libraries. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_standard.event. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    FNDCPVCM, 10, Prog Unit, Exit, 316509814, /FNDCPVCM-3/P45_30_DEC_201223_28_33
    FNDCPVCM, 9, Trigger, Exit, 316509814, WHEN-NEW-ITEM-INSTANCE
    FNDCPVCM, 8, Prog Unit, Exit, 316509814, /DMU-4/P8_30_DEC_201223_23_12
    # 15 - FNDCPVCM:MASTER.USER_CONCURRENT_QUEUE_NAME.1359399301498413820
    WINDOW FNDCPVCM PROGRESS_INDICATOR RESIZE 4198 1500 3
    # 16 - FNDCPVCM:MASTER.USER_CONCURRENT_QUEUE_NAME.1359399301512613925
    WINDOW FNDCPVCM PROGRESS_INDICATOR RESIZE 4198 1500 3

  • List of materials from the excel which are not posted

    I have written bdc,
    that ware house storage locations should not be allowed.
    All the storage locations in the table T320 are ware house storage locations.
    so i have written
    if not  it_data1 is initial.
    SELECT *  into table iT_320 FROM  T320
      for all entries in it_data1
    where WERKS = it_data1-werks and
               LGORT  = it_data1-lgort.
    endif.
    LOOP AT IT_DATA1 .
      read table iT_320 INTO wa_320 with key werks = it_data1-werks
                                              lgort = it_data1-lgort.
      IF sy-subrc = 0 .
        delete it_data1 index sy-tabix.
      ENDIF.
    endloop.
    So its working fine till then.
    but i wanted a list of materials from the excel wch are not posted,so tht the user is aware tht some items are not consumed.
    How to display that list in bdc.
    Please give the code for that.

    MY EXCEL DATA IS IN IT_DATA1.
    LOOP AT IT_DATA1 .
      read table iT_320 INTO wa_320 with key werks = it_data1-werks
                                              lgort = it_data1-lgort.
      IF sy-subrc = 0 .
        delete it_data1 index sy-tabix.
      ENDIF.
    endloop.
      LOOP AT IT_DATA1 .
        MOVE-CORRESPONDING IT_DATA1 TO IT_DATA_h.
        Collect it_data_h.
      ENDLOOP.
      Clear it_data_h.
    clear : it_data1.
    THEN MY BDC IS LIKE THIS.
    LOOP AT IT_DATA_H .
    perform bdc_dynpro      using 'SAPMM07M' '0400'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RM07M-WERKS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'MKPF-BLDAT' LV_DATE  .
    perform bdc_field       using 'MKPF-BUDAT' LV_DATE.
    perform bdc_field       using 'RM07M-BWARTWA' '261'.
    perform bdc_field       using 'RM07M-WERKS' IT_DATA_H-WERKS.
    perform bdc_dynpro      using 'SAPMM07M' '0421'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSEG-WERKS(03)'.
    CLEAR : FLAG1, W_FLAG.
    LOOP AT IT_DATA1 WHERE aufnr = it_data_H-aufnr.
    W_FLAG = 1.
    CONCATENATE 'MSEG-MATNR' '(' W_FLAG ')' INTO W_MATNR_C.
    perform bdc_field       using  W_MATNR_C
                                   IT_DATA1-MATNR.
    CLEAR : QTY.
    QTY = IT_DATA1-ERFMG.
    SHIFT  QTY LEFT DELETING LEADING SPACE.
    END LOOP.
    NOW HOW TO COMPARE THE MATERIALS IN EXCEL AND  BDC POSTED.
    PLEASE PROVIDE THE CODE FOR THAT AND HOW TO DISPLAY.

  • The MSS ECM FPM Steps are not working after the upgrade

    Hi all,
    The MSS ECM FPM Steps are not working after the upgrade. We use Java Webdynpro and MSS ECM (SP17), version 603.
    On cliking the FPM steps, nothing is happening, however we can navigate using the buttons.
    But this functionality was working before the upgrade.
    Please let me know what should I do.
    Thanks,
    Sarayoodharan.K

    clinet provided in the backend system was not correct during SSO certificate using tx-code strustsso2 -  Cleint should be 000

  • Why does iTunes freeze up for minutes at a time when modifying INFO (CMD-i) ?  My files are not corrupted after it is done like many other threads i have readed.

    Why does iTunes freeze up for minutes at a time when modifying INFO (CMD-i) ?  My files are not corrupted after it is done like many other threads i have readed.  Sometimes it's changing the title of a movie or editing the season and episode number of a TV show ect.....

    Yup same here
    I am running the latest iTunes, the latest updates to the OS and on an iMac 3.4GHz Quad core i7 with 8GB of RAM and the music stored on local HDD.
    Still locks up iTunes for between 2 minutes up to 20 minutes.
    Really annoying.
    If you find a fix please, please let me know, I have just been throwing hardware at it with no joy at all

  • Head phone volume controls are not working after updating to ios 6.1 y?

    head phone volume controls are not working after updating to ios 6.1 y?

    I have tried my head phone with other iphone still the same problem may be my head phones has been not working need to chek my iphone with other head phones which are working

  • How do I maintain my hyperlinks when converting a Microsoft Word Document to a PDF file?

    How do I maintain my hyperlinks when converting a Microsoft Word document to a PDF file?

    Hi Marbarrose,
    When you make word file including hyperlinks then convert in pdf.
    It will automatically maintain hyperlinks.
    Regards,
    Florence

  • My printers are not working after mavericks install. What can I do to fix - PLEASE HELP! It is my lifeline - we are a print shop!

    My printers are not working after mavericks install.
    The printer just PAUSE and can't be resumed.
    What can I do to fix - PLEASE HELP!
    It is my lifeline - we are a print shop!

    Go to the printer manufacture website and download the drivers for your printer model for OS X v10.9 Mavericks.
    Then open System Preferences > Printers & Scanners > Print
    Select your printer on the left then click -  (minus)
    Then click + (plus) to add the printer.

  • Online audio and video files are not working

    i got a plugin for shockwave flash(adobe flash player) i thought it is the latest version so i downloaded it and installed it. Before installing the new flash player i was able hear song online and can watch videos but now both audio and videos are not working.

    thanx for your advise but i got to hav one more problem and that is...i have downloaded the new version setup of firefox but after extracting it stops working and the installation process ends automatically...so please help.
    the file that i downloaded had the "Firefox Setup Stub 23.0.1"

  • JMS & File adapters not working after SPS20 update

    Hello,
    after an update to SPS20, which was proposed by SAP support to resolve an
    issue with the CPA cache, the File adapter sender and receiver and the
    JMS adapter sender are not working any more, however JMS receiver
    adapters are still functional. In communication monitoring the error
    message for the file receiver is:
    Message processing failed. Cause:
    com.sap.engine.services.ejb.exceptions.BaseEJBException: Exception in
    method process.
    resp. for the file sender:
    Attempt to process file failed with
    com.sap.engine.services.ejb.exceptions.BaseEJBException: Exception in
    method process.
    and for the JMS adapter I006_GX1TG_JMS_Sender:
    Error while processing message 'db056357-5232-4c35-028e-bc51fa858038';
    detailed error description:
    com.sap.aii.adapter.jms.api.channel.filter.MessageFilterException:
    Exception in method process.: BaseEJBException: Exception in method
    process. at
    com.sap.aii.adapter.jms.core.channel.filter.SendToModuleProcessorFilter.filter(SendToModuleProcessorFilter.java:95)
    when invoking an ftp sender channel, polling works, the files are
    retrieved from the server, but after that, we get an error. What could be
    the cause of this behaviour?
    log & trace files could be provided.
    Thanks,
    Gordon
    points will be rewarded  ***

    Hi Gordon,
    Patch 9 for XI 3.0 SP20
    SAPXIAFC20P_9
    contains a few fixes for the file adapter,
    e.g., it is strongly recommended by SAP to apply the note :-
    Note 1083488 - XI FTP/JDBC sender channel stop polling indefinitely(04/04S)
    Regards
      Kenny

  • Brightness Control Hotkeys are not working after windows 10 Update

    Hi Experts, I am Using HP Pavilion 15-NOO3TXRecently I Updated Windows 10 from Windows 8.1All Drivers are updated Sucessfully.I have Intel Graphics and AMD Radeon HD 8600both are also updated Sucessfully. but F2 and F3 hotkeys are not working for brightness adjustments.when i Unistall AMD Radeon drivers then hot keys are working properly(only with intel graphics)  Please Take a look for my Drivers But in Video Memory it showing only 128MB Dedicated Video Memory   I Installed AMD Drivers using autodetectutility.exe from AMD Website.how can install both AMD Radeon Drivers and brightness hotkey adjysutment. 

    Hi Erico,I tried your method It says The best driver software for your device is already installed I Used this tool http://www.techspot.com/drivers/driver/file/information/16748/and I cleaned up all display drivers.windows searched in updates for drivers and updated all video drivers.now brightness control key is workingbut when i checked dedicated video memory it says 128 MB.but my dedicated video memory in 1024 MB.Take a look for Video memory

  • Quartz filters are not working (for PDF)

    It seems that quartz filters are not working for me under Mountin Lion. I have tried to export, print, etc everything in Preview, Automator, ColorSync. It simply won't apply the filters to my PDFs.
    Anyone experienced similar issues? Is it a known bug?

    I kinda have the same problem, except its only my custom filters that aren´t working in ColorSynch. The other filters get applied as usual, but I can not change any of the preformed filters within ColorSynch, and the "live update from filter inspector" doesn´t work if I try to apply changes or use my custom filters.
    The custom filters I have, were created prior to my upgrade from snow leopard to moutain lion.
    I´ve understood that there has been multiple problems with the filters in lion ++
    If there isn´t a quick fix to this, does anybody know of any programs I can use to apply filters without having to buy Adobe Pro, my use is not for simply decreasing file size, but mostly for editing colors prior to prinitng. And its  not sufficient to use the preformed filters unfortunately.

  • Cascading prompts are not working after UNX conversion.

    Hi,
    We have converted universe to UNX format, but after conversion the cascading prompts are not working. Following is the one of the example of the cascading prompt which is having issue:
    We have cascading object named u201CGroup - Deviceu201D as below:
    CONCAT(CONCAT(@select(Performance Management\Group\Group Name),' - '),@select(Performance Management\Device\Device Name))
    In the SQL Assistance windows, validate button properly validates this object.
    Based on the above object, we have filter named u201CEnter/Select Group u2013 Deviceu201D with following definition:
    @select(Performance Management\Performance Reporting Objects\Performance Custom Dimensions\Group - Device) In  @prompt('Enter/Select Device Names','A','Performance Management\Performance Reporting Objects\Performance Custom Dimensions\Group - Device',Multi,Free,Not_Persistent)
    When I click on the validate button for this filter, it doesnu2019t says whether the expression invalid or valid. It does not return anything. I checked the error log windows of IDT and it shows below error once we validate the above filter:
    Message: Unhandled event loop exception
    java.util.ConcurrentModificationException
         at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:372)
         at java.util.AbstractList$Itr.next(AbstractList.java:343)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getScriptWithAnswers(ParseExpressionServiceImpl.java:753)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getGeneratedScript(ParseExpressionServiceImpl.java:695)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getGeneratedScript(ParseExpressionServiceImpl.java:673)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getObjectSQLCombinations(ParseExpressionServiceImpl.java:369)
         at com.businessobjects.semanticlayer.qt.internal.ParseExpressionServiceImpl.getWhereParseSQL(ParseExpressionServiceImpl.java:298)
         at com.businessobjects.bimodeler.universe.panes.properties.ExpressionParserSQLBindings.parseExpression(ExpressionParserSQLBindings.java:58)
         at com.businessobjects.bimodeler.shared.dialogs.expression.ExpressionEditorComposite$7.widgetSelected(ExpressionEditorComposite.java:330)
    This problem is for all the cascading prompts, and only single level prompts are working after conversion to UNX.
    Can anyone please help on this? Am I missing any manual changes which are mandatory after UNX conversion for this to work.
    Thanks,
    Nilesh

    Hi Henry,
    Thanks for your reply. Yes I have raised SAP ticket for this.
    We are at BI 4.0 SP2 Patch 12.
    This problem is for all the cascading prompts which created using objects which are having u201CLOV based on Query Panelu201D, it doesnu2019t return the results, when I edit the LOV > edit the query and then click refresh to see the data, the refresh button does not appear.
    So I tried creating u201CLOV based on a custom hierarchyu201D as indicated in SAP note u2013 1666504 but it also doesnu2019t work. I used the object (that uses the LOV based on a custom hierarchy) to create the new cascading prompt, when I used this prompt in WEBI report, it only displays prompts for first value and not the second based on first input.
    I searched SAP KB and found this note u2013 u201C1620378 - Cascading (nested) prompts are not working for Web Intelligence reports in BI 4u201D which describes bug related to cascading prompts in unv as well as unx. But I am not sure if itu2019s the same which I am getting.
    Thanks,
    Nilesh

  • PHP scripts are not working after deploying it on website

    Hi,
    I have recently deployed my flex application on a web hosting (000webhost.com) and now my application is getting launched properly. Visit (www.kpratik.webatu.com).
    I have used PHP script to interact with database MySQL. Locally everything was working fine but when I have deployed it to internet my PHP scripts are not working and any database opeartion is not getting performed. I have already chaned to host, username password in the PHP file as given my service provider.
    Please let me know if you have any input on this.
    Reponse will be highly appreciated.
    Regards,
    Pratik

    Hello,
    Ok let me explain you where exactly it is going wrong.
    I am constructing SQL query in my ActionScript code and I am passing this query to my PHP script using HTTPService. Now when I am hardcoing the query in PHP script i found it is working perfectly which means my query is not getting passed to PHP script.
    Please let me know what could be the reason.
    I am using POST method for HTTPService.
    Thanks,
    Pratik

  • Sound from apps/radio/browsers clicks not working after IOS 8.3 update

    aafter the new update 8.3 my iPad sounds are not working like "app games" "app news" " sound clicks from keyboard and browser, is someone else having problems with sounds, however, the speakers are working, I went to "music" and it is fine, sound from web browsers stream is fine or playback videos are all ok.
    any ideas, I'm lost in this issue, besides the new update made my iPad faster, as well as, the wifi.
    how can I contact apple support??. cant send even an email to this guys for an answer? My service tags are over.
    thanks, community, I hope some one can advice me. also, I did unistall and install all my apps.

    Check that the mute switch (top right side switch above volume control) is pushed up OR
    pull up from the bottom of the screen to bring up control Center & make sure the bell with a line going through it  (mute) is not highlighted. It would only be there if the side switch is set to lock screen rotation.
    Settings->Sounds->check the volume slider is up & that lock sounds & keyboard clicks are enabled.
    If the first two don't work, try a general reset:
    Settings->General->Reset->Reset All Settings.  You won't lose data but will have to log back into your wifi network(s)

Maybe you are looking for

  • Hard drives not detected after bios update

    Hello K7T Turbo 2 kt133a I bought a new chip a while back and therefore updated my bios. My system has worked on and off for a while now, however i have not been able to get it to boot for 2 days. I have tried bios version 3.4, 3.5, and 3.6, the same

  • Is there a way to pre-set the alarm volume on iPhone?

    Is there a way to pre-set the alarm volume on iPhone? Every evening I have to remember to adjust the volume to 3 bars, versus full volume during the day.

  • Question about java virtual machine

    Hi, Recently I met a strange conflict. I used Netbean to build a project and execute this project very well. However, when I opened a command window promt and tried to use the default command 'java' to execute my main class, the virtual machine repor

  • PO status - Transaction completed

    Hi Experts, I have the following scenario: I am checking which PO's are not fully receipted, and I have found some examples of PO's that are not fully receipted but the status is "Transaction Completed". I am trying to understand how is a PO flagged

  • Facebook is broken in Safari

    I have updated to Mavericks and all the new bits to support it. That said, Facebook will not load in Safari. It works fine in Firefox and Chrome. I have reloaded, rebooted, emptied the cache and everything else I can think of, but it still hangs. Ide