Receiving error when trying to combine using Outlook 2013

When using the combine function, dragging and dropping emails from outlook 2013 is not working properly. It allows you to drag and then drop them but the combine is unsuccessful.  Has anyone else experienced this issue and know how ot fix it?

1.       She had Acrobat X and when that did not work, I installed Acrobat XI to test.  So I can rollback to X but that was not working.
2.
3.       Everything seems to work except emails that are drag and dropped
4.       I have done a repair and uninstall/reinstall
Kelly H. Fields | Technical Support Analyst
Desktop Services | Information Technology
Aflac Worldwide Headquarters
Tel: 706.243.8445<tel:706.243.8445> | Fax: 706.596.3072<tel:706.596.3072>
1932 Wynnton Road, Columbus, Georgia 31999
[email protected]<mailto:[email protected]> | aflac.com<http://aflac.com/>
• A Fortune 500 Company
• Fortune’s Best Companies to Work For
• Fortune’s Most Admired Companies

Similar Messages

  • Keep receiving error when trying to change device on my verizon.  Unfortunately, none of the lines on your account are eligible to receive the Online Authorization Code

    Keep receiving error when trying to change device on my verizon.  Unfortunately, none of the lines on your account are eligible to receive the Online Authorization Code. 
    Unable to change device on account.

    That would be great if they weren't 2 different size SIM cards.
    The code is a security feature and I realize this. It is to prevent someone from hacking your account and changing your devices without your knowledge. However, I am the account owner and I know exactly what is going on with my account at all times. I check data usage AT LEAST 2 times daily and I log into my account at least once daily. I would very quickly discover any issues. This feature is more of a (removed)
    Edited as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

  • Keep receiving error when trying to use a new Apple ID

    "Please sign in again. For added security, we need to reconfirm your Apple ID."
    I am beyond frustrated and have been working on this for about 2 hours. I don't understand how something so simple is becoming such a nusance. I created a new Apple ID however when trying to log into support, it gives me the phrase listed above. No matter how many times I try to log in, it completely shuts me out. If I use my old ID to log into the Apple ID site and then navigate to support, it logins me in no question.
    I have looked at others who have had this issue and it appears to be an email conflict on multiple accounts. However both account use completely different email addresses. Any help is appreciated.
    If I could just delete the conflicting account that would alleviate a lot of stress.

    Is Apple abandoning the forums?
    Unofrtunately, I don't have an answer to your problem - just wanted to let you know that these forums are user to user only; there are no Apple employees here.

  • "Could not find the application that created this file" error when trying to combine files

    I am working with a user that is trying to combine a pdf & word doc (docx).  When they try to combine the files she gets the error:  "Could not find the application that created this file" & "Please select a file created by an application that resides on your computer".  The computer is running windows XP, with office 2010 SP1, & Adobe Acrobat Pro X.
    Per previous suggestions, I have already checked to see if Adobe PDFMaker is enabled as a Word plugin, and it is.
    Recentley the user was running Acrobat 6, and this error did not occur.  It is only after upgrading to Acrobat X that this is happening.  Any help with this issue would be appreciated.

    This can also be caused if the files are in a folder deep in the file system. For example C:/xxxxxxxxxxxxxxx/yyyyyyyyyyyyyyy/zzzzzzz/aaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbb /cccccccccccccccccccc/dddddddddddddddd/eeeeeeeeeeeeeeeeeeee/ffffffff/ggggggg/hhhhhhhhhhhhh hhhhhhhhhh/myPDF.pdf
    At some point Adobe PDFMaker cannot handle the path length (also, Windows can't handle the path length either eventually)
    Solution: move the files to a shorther path (perhaps the desktop) and try from there.
    I am filing a bug report with Adobe. A descriptive exception message should be thrown instead of "could not file the app.."

  • AES Algorithm error when trying to encrypt using stored Java class.

    Dear All,
    We have a specific reuirement where in we cannot use DBMS_CRYPTO package to encrypt/decrypt data using AES Algorithm
    So I am trying to use a stored Java class and I am getting "AES algorithm not available".
    I am using Oracle 10gR2 standard edition.
    Below is my code
    1. Stored Java class
    2. Stored function to access the above Java class.
    3. Test anonymus PL/SQL to test above code.
    Please help me finding the problem why I am getting "AES algorithm not available" error when I call stored Java class in Oracle.?
    **** If I use "DES" algorithm, it works. Also the Java code works well if I execute it as normal Java class from Eclipse.
    I verified the java.security file in jre/lib/security and I see that there is provider entry for SunJCE.
    The jre version in Oracle is 1.4.2.
    I appreciate your help.
    Thanks,
    Priyanka
    Step1: Stored java class to encrypt and decrypt data
    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "EncryptUtil" AS
    import java.security.Key;
    import javax.crypto.Cipher;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.spec.SecretKeySpec;
    public class EncryptUtil
         public static String encrypt(String inStr)
         String outStr = "Test data 123";
    try
    KeyGenerator kgen = KeyGenerator.getInstance("AES");
    kgen.init(128);
    SecretKey skey = kgen.generateKey();
    byte[] raw = skey.getEncoded();
    SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
    byte[] encrypted =
    cipher.doFinal(inStr.getBytes());
    outStr =new String(encrypted);
    catch (Exception e)
         outStr = outStr + "exception thrown::" + e.getMessage();
    e.printStackTrace();
    return outStr;
    Step2: Stored function to access above stored java class.
    CREATE OR REPLACE FUNCTION SF_ENCRYPTUTIL(
    pKey1 VARCHAR2
    ) RETURN VARCHAR2 AS
    LANGUAGE JAVA NAME 'EncryptUtil.encrypt(java.lang.String ) return java.lang.String';
    Step3: Test encryption and descryption
    DECLARE
    outstr VARCHAR2(2000);
    BEGIN
    DBMS_OUTPUT.PUT_LINE('outstr-->' || SF_ENCRYPTUTIL('12345'));
    END;
    Below code example using DBMS_CRYPTO. This works, but we do not want to use this.
    declare
    l_in_val varchar2(2000) := 'Test data 123';
    l_mod number := dbms_crypto.ENCRYPT_AES128
    + dbms_crypto.CHAIN_CBC
    + dbms_crypto.PAD_PKCS5;
    l_enc raw (2000);
    l_enc_key raw (2000);
    l_dec raw (2000);
    begin
    l_enc := dbms_crypto.encrypt
    UTL_I18N.STRING_TO_RAW (l_in_val, 'AL32UTF8'),
    l_mod,
    HEXTORAW('156ae12300ccfbeb48e43aa016febb36'),
    HEXTORAW('001122230405060708090a0b0c0d0e0f')
    dbms_output.put_line ('Encrypted='||l_enc);
    end;
    Edited by: user5092433 on Sep 10, 2009 12:26 AM

    I guess I'd be a bit curious about why you can't use a DBMS_CRYPTO solution that provides identical output. It seems odd to want to have a procedure running inside Oracle and then dictate that it has to be Java and not PL/SQL...
    I verified the java.security file in jre/lib/security and I see that there is provider entry for SunJCE.
    The jre version in Oracle is 1.4.2.Which java.security file are you talking about? The JVM that is inside the Oracle database does not and can not use configuration files that are outside the database. I suspect when you talk about files and paths that you're looking at a JVM outside the database, which is not the JVM that your Java stored procedure would be using.
    Looking at the error, my assumption is that some JAR file needs to be loaded into the internal JVM in order for the AES algorithm to be available. But I'm unfortunately not familiar enough with these classes to say what that would be.
    Justin

  • Error when deploying LiteTouch image using MDT 2013 Media Flashdrive

    Please help! I have created a media flash drive (drive capacity: 64Gb) to deploy LiteTouch x86 and x64 images (Win7 and Win8, 8.1) to PCs but getting error for the 3rd time. I am using the following tools in my environment: i am using MDT 2013 on a Windows
    2k8 WDS server. PXE boot works fine deploying images but i keep getting this error after creating the Media flash drive). I first got the same failure with 14 errors but recreated the media on the WorkBench using a different selection profile but now i am
    getting this error: (by the way where is the BDD.LOG?)
    "Deployment Summary
    During the deployment process, 8 errors and 0 warnings were reported.
    Details...
    Failure ( 5456): Unable to determine destination disk, partition, and/or drive. See BDD.LOG for more information.
    Litetouch deployment failed, return code = -2147467259 0x80004005
    Failed to run the action: inject drivers.
    Unknown error (error: 00001550; source: unknown)
    The execution of the group (preinstall) has failed and the execution has been aborted. An acton failed. 
    Operation aborted (error: 80004004; xource: windows)
    Task sequence engine failed! code:enExecutionFail
    Task sequence execution failed with error code 80004005
    Error Task Sequence Manager failed to execute task sequence. code 0x80004005

    I am planning to build a WDS with Win2k12 and MDT2013 and perhaps will be lucky to create a successful media. I created one with my WDS Win2k8 it works on a HP laptop but failed on other machines like Dell...
    Did you get driver injection in configuration WDS and MDT?
    Considering if the incompatible drivers cause your issue.
    If you can post back the MDT log during the deployment on DELL computers, it would be helpful for us to determine your issue.
    Kate Li
    TechNet Community Support

  • TVAP not working Receive Error when trying to reinstall

    Hello,
    I am reaching out for help with getting my flashcards back up and running again. I have a toshiba Satellite C655D-S5300. 
    Here is the problem:
    When I press the fn key on my keyboard the flash cards should appear on my screen. However recently they no longer appear when I press the fn key. I have tried to uninstall TVAP, was unable to find it in the add remove programs list so resorted to a 3rd party application to remove it. 
    However now whenever I try to reinstal TVAP I recieve an error saying Error applying transforms. Verify that the specified transform paths are valid. C:\Users\Username\AppData\Local\temp\tc00290100v.temp\TVAP\1033.mst
    I have gone to this location using windows explorer and the file exists. Any help would most greatly appreciated. 

    Satellite C655D-S5300
    resorted to a 3rd party application to remove it.
    Things like this sometimes happen when we apply third-party tools.
    This one is a subtle registry glitch that you probably can't fix unless you're a computer nerd.
    The best I can do is refer you to an example. Scroll down to the Weather_Man's message.
    There's another example here.
    The fact that you find 1033.mst at the specified location can be misleading. Just one character (in either path) whose actual bit configuration differs from the visible character can produce this. 
    -Jerry

  • Receive error when trying to delete referenced masters

    When I try to empty the Aperture Trash and move referenced masters to the system trash, I receive an error that reads, "You don’t have access to the System Trash on the master files’ volume"
    The masters are stored on a photos share on my Windows Home Server. I have admin rights to everything. At least I thought I did.
    I can manually delete the masters by going through Finder, but how do I fix this so I can delete referenced masters through Aperture?
    Many thanks!
    Message was edited by: Pumpkin King

    Please check whether clearing the Contribute preferences helps you.
    To Clear the preference, quit Contribute, and then delete the Contribute  CS5  folder in C:\Documents and Settings\<user>\Local   Settings\Application Data\Adobe\ and also run the following command "   reg delete "HKCU\Software\Adobe\Contribute 6 " /f " if you are using  Contribute CS5.  Reconnect to the site and try the same scenario.
    Note that, if you clear the preferences then no  connection will be listed  in Contribute, you need to recreate the  connections. It will be like a  fresh installation.

  • Error when trying to build using sun studio compiler

    Hi ,
    When i try to build my appliation-1 and application-2 , I am experiencing below given errors
    OS:
    SUSE Linux Enterprise Server 10 (x86_64)
    VERSION = 10
    PATCHLEVEL = 1
    Compiler Version:
    cc: Sun Ceres C 5.10 Linux_i386 2008/03/24
    usage: cc [ options] files. Use 'cc -flags' for details
    Application1:
    Error:
    CC: Cannot find /comp/sun/sunstudioceres/bin/ccfe
    Application2:
    Error:
    cc: Warning: cannot open inline file /gan/q2/comp/sun/sunstudioceres/lib/amd64/libm.il
    cc: Can't exec /comp/sun/sunstudioceres/bin/acomp
    Please share your thoughts on how to solve this problem
    Regards,

    [http://forum.java.sun.com/thread.jspa?threadID=5307985]

  • User receives error when trying to access queues in SCSM 2012. Also cannot edit activities.

    Hi,
    I am trying to resolve an issue that a user has been struggling with in SCSM 2012 multiple times now. Everytime he tries to access a queue in the work items this error appears about 5 times:
    Error Message:
    Date: 7/29/2014 4:17:51 PM
    Application: System Center Service Manager
    Application Version: 7.5.2905.0
    Severity: Error
    Message: No matches were found for input string '$MPElement[Name=&#39;SMIncident!System.WorkItem.Incident.ProjectionType&#39;]$'. Cannot resolve ManagementElementReference.
    : No matches were found for input string '$MPElement[Name=&#39;SMIncident!System.WorkItem.Incident.ProjectionType&#39;]$'. Cannot resolve ManagementElementReference.
    After closing out all of the errors, the tasks panel no longer has any options.
    Also, when this user opens an activity, there is a red box outlining the form. He is unable to click 'OK' or 'Apply' even though the activity is In Progress. This means he is unable to make any changes to activity forms. I logged on to the user's compluter
    myself to see if this issue would just apply to him and I ended up with the same issues. This user experienced these issues before and switched to a new device where he no longer experienced these problems for a while. Now the issues have returned and I do
    not know how to help him. We have not had this problem come up before.
    Please help me understand what is causing these problems.
    Thanks,
    Nick

    Thanks for getting back to me so quick!
    You were correct to assume that I was referring to a View. All of our users have been added to a standard user role that providers that basic functionalities that they need. This particular user's access is exactly the same as the other users in his department,
    yet he is the only one who has experienced this problem. All of the user roles that we have added this user to contain at least 10 other users who have not reported any issue like this.
    I am wodering how this problem could only apply to this one user even after changing devices. I should also mention that with each of the devices that this user has worked on, there was a period of time when he was able to work in SCSM without
    any issues. What could have changed that caused this error to arrise on two separate occasions for just one user? 
    The biggest issue is the fact that he is unable to edit activities. Am I correct to assume that these two issues are connected?
    I hope this message helps to clarify the problem we are experiencing.
    Thanks,
    Nick

  • Receiving error when trying to install Oracle 8i Personal Edition

    I'm trying to install 8i personal edition, and the installer is attempting to use this file as the stage file: D:\stage\products.jar. I can only assume its corrupt. Can anyone help me?
    Steve

    The error message I get on the install is, "INVALID STAGING AREA. NO TOP LEVEL COMPONENTS FOR WINDOWS 95 AVAILABLE FOR INSTALL." The install is using C:\WINDOWS\TEMP\INSTALL\STAGE\ PRODUCTS.JAR, which is where the UNZIP placed the components. The 8i Personal Edition I downloaded was for Windows 98, so I don't understand why it's looking for Windows 95 components. Also, I have Windows ME, not Windows 98, but I assume this download should work for Windows ME?

  • Receiving Error When Trying To Enroll a class In Learner self service

    hi,
    i will appreciate that if anyone can help me to fix the problem.
    Steps to Reproduce:(ota.j)
    ==============
    1) Responsibility => "Learner self service"
    2) Try to enroll a class (need approval)
    3) check button "review "
    then Users receive the following error messages :
    "You have encountered an unexpected error. Please contact the System Administrator for assistance. Click here for exception details."
    oracle.apps.fnd.framework.OAException: No entities found, entityMaps not defined for attachment item (112).
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: No entities found, entityMaps not defined for attachment item (112).
    oracle.apps.fnd.framework.OAException: No entities found, entityMaps not defined for attachment item (112).
    Message was edited by:
    wallace

    Wallace,
    You can try one thing. Set the class to be restricted and disable the approval for user (Self Enrollment Option) and see if the error is there.
    Is there any personalization been done in the review page?

  • Error when trying to write to a socket using nio

    Hi,
    I am getting this error when trying to write using the new io
    The system detected an invalid pointer address in attempting to use a pointer argument in a call
    can anyone tell me what's wrong ?

    Please post the whole Exception.printStackTrace report. Also a small example that reproduces the problem.

  • OVM 3: error when trying to delete a virtual machine

    Hi,
    I enclose below the error when trying to delete, using OVM MANAGER, a VM that has been wrongly created.
    Thanks for you help.
    Job Construction Phase
    begin()
    com.oracle.odof.exception.ObjectException: Caught during invoke method: com.oracle.ovm.mgr.api.exception.IllegalOperationException: OVMAPI_2007E Find object name: (0}, class: interface com.oracle.ovm.mgr.api.virtual.VirtualMachine, returned null
    Wed Mar 21 14:42:20 CET 2012
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:151)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:751)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:401)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:459)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: com.oracle.ovm.mgr.api.exception.IllegalOperationException: OVMAPI_2007E Find object name: (0}, class: interface com.oracle.ovm.mgr.api.virtual.VirtualMachine, returned null
    Wed Mar 21 14:42:20 CET 2012
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:393)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:382)
    at com.oracle.ovm.mgr.api.system.FoundryDbImpl.deleteVirtualMachine(FoundryDbImpl.java:1302)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:247)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:207)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
    ... 7 more
    Job Aborted from server, cleaning up client.

    HI,
    I had this - the recommended solution was to re-install the OVM manager.

  • I keep receiving security errors when trying to open a pdf.

    I keep receiving a security error when trying to run my javascript program, the function previously worked, but now creates an error after I entered the addWaterMark function. I have put my whole code below for my script.
    The basic function is to load a text file into an array which has the path and file location, open the document, add a watermark, save the file, close the file, then repeat for the next array position.
    I am using Acrobat Standard so I am unable to debug using the console, therefore I am struggling to understand what I am doing wrong. I will point out that I am not a fluent programmer, only have a basic knowledge of programming.
    Code
    app.addSubMenu(
      cName:"Extras",
      cParent:"Edit"
    app.addMenuItem(
      cName:"Import File",
      cParent:"Extras",
      cExec:"main()"
    function main()
      var fileCount = 0
      var listOfFiles = []
      listOfFiles = importData()
      amountOfFiles = listOfFiles.length
      for (var i =0; i<listOfFiles.length; i++)   //calculates amount of entries in the array listOfFiles
      newFile = openFile(listOfFiles[i]) //Opens current file
      var d = app.activeDocs; //Gets current document title name 
      addWater(d[0]);
      app.execMenuItem("Save");
      for( var x in d ) d[x].closeDoc();
    function addWater(myName)
    { app.alert("watermark",0);
      myName.addWatermarkFromText(
      cText: "OBSOLETE",
      cFont: "Arial",
      nFontSize:36,
      aColor: color.red,
      nOpacity: 0.5
    //function SaveFile saves the current file but with an addition of WM to the filename
    saveFile = app.trustedFunction(function(currentDoc, currentFileName)
      { app.alert("savefile",0);
      app.beginPriv();
      currentDoc.saveAs(currentFileName);
      app.endPriv();
    //function openFile which opens the file named in the variable currentFilename
    openFile = app.trustedFunction(function(currentFileName)
      {app.alert("openfile" + currentFileName,0);
      app.beginPriv();
      app.openDoc(currentFileName);
      app.endPriv();
    //importData function imports the paths and filenames contained in the list.txt located on the desktop
    importData = app.trustedFunction(function()
      {app.alert("import",0);
      app.beginPriv();
      cFilePath = "/C/Users/103019944/Desktop/File_List.txt";
      var stmData = util.readFileIntoStream(cFilePath);
      var cData = util.stringFromStream(stmData);
      var cMsg = cData;
      var fileArray = cMsg.split("\r\n");
      for (var i =0; i<fileArray.length; i++)
      return(fileArray);
      app.endPriv();

    I have found the error, you are quite correct I had an extra letter in the filename, I thought I'd checked this but just shows that sattention to detail is the key.
    The script works perfectly now, thanks you for your help, really appreciated.
    Thanks again
    Ben

Maybe you are looking for

  • Error while creating class

    Error while creating class java/util/LinkedHashMap$EntryIterator ORA-29545: badly formed class: User has attempted to load a class (java.util .LinkedHashMap$EntryIterator) into a restricted package. Permission can be grant ed using dbms_java.grant_pe

  • Problems with image and audio in Premiere

    Hi! I'm using Premiere Elements 9, but there's no synchronization with imagen and audio because the image is slower than audio and it's causing problems when I'm editing. Why can I do? It's there a poblem that can I fix in "Preferences" or is my lapt

  • Best way of creating request for a query

    hi,     what will be the best process to create the request for the query. 1.go to rsa1-> transport connection -> select query -> select  BEx bus-> create the request, then change the query and save                                                    

  • RSS and Xcode projects (Mac)

    Is it possible to generate a controller or any type of file in Xcode and receive an rss feed to the application? I've looked around for examples and nothing has come to my attention that could work for my application. The only thing I can seem to fin

  • How can I get my home page toshow both web search and ountry search?

    My Home page no longer shows both google web search and uk search it only shows google web search. How can I correct this