AcroPDDoc.InsertPages() is failing

When I am trying to insert pages from another PDF file using AcroPDDoc.InsertPages(), it is returning false.
The PDF file used for inserting is created from Microsoft Powerpoint file.
The same scenario, we tried with Acrobat X Professional, we got "Bad Parameter" error.
Also, after this error, Save is failing, whereas "SaveAs" is working fine.

I write to a backup file every 60 seconds using the
following code. Could the fact that I wasn't closing
the Writer end up leaving a bunch of file handles
sitting around, thereby slowly slowing the app down?Yes. Any time you allocate a resource (file handle, socket, database cursor, statement or result set, etc.) immediately create a try/finally like this:
FileWriter myWriter = new FileWriter("someFile");
try {
} finally {
  myWriter.close();
}This guarantees that the resource will be released regardless of what happens in the "...".
Alternatively, abstract the above code into a reusable framework and pass functors to it that implement the "..." code.

Similar Messages

  • Insert pages from a single document multiple times

    I'm trying to create a simple program that I can use to display PDF files that I can use to play at the piano. I perform often, and need to create "play lists" from which I can pull all, or part of, a PDF file containing music and display it.
    I have it all working, except for one problem. I may need to "repeat" a section of a piece. I'm building up the play list by calling AcroPDDoc.InsertPages for each item in the play list. If a PDF file appears multiple times in the play list, when I call InsertPages, the call fails.
    In this code snippet, pdDoc is the main doc to which I'm adding pages. playList is a generic List of my own PlayList objects, and I need to iterate through all the items in the playList except the first one, which is already loaded.
    This code works great unless the fileName I specify has already been opened. The call to AcroPDDoc.Open succeeds just fine, but the call to pdDoc.InsertPages fails if the file has already had pages from it inserted. All other documents work fine. The documentation, of course, doesn't mention this.
            int insertPage = pdDoc.GetNumPages() - 1;
            for (int i = 1; i < playList.Count; i++)
              var newDoc = new AcroPDDoc();
              var item = playList(i);
              int startPage = 0;
              int endPage = 0;
              if (newDoc.Open(item.fileName))
                startPage = Math.Max(0, item.startPage);
                endPage = Math.Max(0, item.endPage);
                var totalPages = newDoc.GetNumPages;
                if (item.endPage < 0 || item.endPage > totalPages)
                  endPage = totalPages - 1;
                int numPages = (endPage - startPage) + 1;
                if (pdDoc.InsertPages(insertPage, newDoc, startPage, numPages, 0))
                  insertPage += numPages;
    So, the questions:
    1.) Is it possible to load pages from a single document multiple times?
    2.) Is there a better way to do this? (That is, loop through a list of file names, starting and ending page numbers, and add the documents to an existing document.)
    Any help appreciated! Thanks -- Ken

    Hi Ken,
    >The documentation, of course, doesn't mention this.
    The documentation does not state explicitly that you can't insert pages again from a PDDoc you open again and never close.
    But it mentions that you get references only from an already opened PDDoc.
    "...Opens the specified document. If the document is already open, it returns a reference to the already opened PDDoc. You must call PDDocClose() once for every successful open..."
    It doesn't state that you can't insert pages from a referenced PDDoc but it seems so.
    I would close the PDDoc within your for-loop after inserting pages and release newDoc.
    Regards
    Norbert

  • VBA Merge PDFs - Error when first and second PDF are the same

    Using http://khkonsulting.com/2009/03/adobe-acrobat-and-vba-an-introduction/ as a guide, I am able to successfully merge multiple pdf's together into one document using VBA (Access mdb), except when the PDF being merged to has the same name as the next PDF.
    Here's my scenario.  An Access table is updated with a list of reports that need to be printed.  All of these reports are PDF's.  I loop thru this table and merge the PDF's according to an identifier, then print the group.  There are times
    when there are multiple copies of the same report for an identifier.  If the PDF being merged to has the same name of the PDF being merged, an error occurs.  How can I handle this situation?
    Sample data:  This identifier (ESO and Pulling) needs to merge these PDF's (Aaa.PDF) together which happen to have the same name.  Aaa.PDF is trying to merge Aaa.PDF and this throws an error.
    Aaa.PDF ESO  Pulling
    Aaa.PDF ESO  Pulling
    This identifier merges fine despite having the same PDF twice.  But the first PDF is not named the same.  Xxx.PDF is the first PDF and merges the next two into it.  The last two
    are named the same.
    Xxx.PDF  916  Pulling
    Bbb.PDF  916  Pulling
    Bbb.PDF  916  Pulling
    Code:
    pdfDoc1.Open (filesToMerge(1))
    numPages = pdfDoc1.GetNumPages()
    Set pdfDoc2 = CreateObject("AcroExch.PDDoc")
    Dim i As Integer
    For i = 2 To intNbr - 1
    pdfDoc2.Open (filesToMerge(i))
    If pdfDoc1.InsertPages(numPages - 1, pdfDoc2, 0, pdfDoc2.GetNumPages(), True) = False Then
    MsgBox "Cannot insert pages"
    End If
    pdfDoc2.Close
    Next i
    If pdfDoc1.Save(PDSaveFull, "C:\....\ReportPacket__" & Trim(CStr(intReportCount)) & "__" & ... & ".pdf") = False Then
    MsgBox "Cannot save the modified document"
    End If
    pdfDoc1.Close
    The pdfDoc1.InsertPages command fails, displays "Cannot insert pages", then displays "Method 'Close' of object 'CAccroPDDoc' failed.
    Thanks for any help or advice.

    Hi
    As far as I know, Access didn't provide such method. But I think you are able to achieve this goal through some 3rd party PDF component
    Hope this will help you.
    Best Regards
    Lan
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • AcroPDDoc in Windows Server 2008 R2

    Simple line:
    Acrobat.AcroPDDoc pdfDoc = new Acrobat.AcroPDDoc()
    Works in Windows XP, but fails in AcroPDDoc in Windows Server 2008 R2.
    Is it a 64 bit issue?  Or I am missing some installations?
    Any one delt with this problem?  Returning error:
    Retrieving the COM class factory for component with CLSID {FF76CB60-2E68-101B-B02E-04021C009402} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).

    Thank you very much for your replay!
    Yes, it was not the smart question, answer was so abvious, but now I am glad I asked: it will be ran on a server, and it will be called from the web-service.
    If acrobat is not licenced to do it, what will be the solution?  What can we lisence to do it?
    Thank you.

  • What version Adobe is required for AcroPDDoc?

    I have a vb2005 program that uses the AcroPDDoc class to merge two pdf files and saves the new pdf to another name. The program then cycles through a list of the new pdf files and sends them to a network printer. I have Adobe Acrobat Standard 8.0 on my pc and the program runs great but when I try to run it on another pc with Abode 6.0 I get the following error message.
    Retrieving the COM class factory for component with CLSID{FF76CB60-2E68-101B-B02E-04021C009402} failed due to the following error: 80040154.
    What version of Adobe or SDK is required to use the AcroPDDoc class?

    Leonard,
         Thanks for getting back to me. I do have Adobe Acrobat 6.0, Acrobat Distiller 6.0, Adobe Reader 6.0 and Adobe Reader 9.0 on the pc. Should Acrobat version 6.0 run AcroPDDoc?
    Thanks,
    Tony Stancil
    ROYSTON LLC  l  www.roystonllc.com
     Please print this e-mail only if necessary.

  • Compiler Failed.

    I keep getting the following exception every now and them. What does it
    mean?
    web-svr1: Compiler failed
    executable.exec([Ljava.lang.String;[/usr/local/java/bin/javac,
    -classpath,
    /usr/local/java1.2/jre/lib/rt.jar:/usr/local/java1.2/jre/lib/i18n.jar:/usr/local/java1.2/jre/classes:/usr/local/weblogic/lib/weblogic510sp1boot.jar:./classes/boot:/oracle/product/816/jdbc/lib/classes12.zip:/usr/local/weblogic/lib/weblogic510sp1.jar:/usr/obws/classes:./license:./classes:./lib/rmi-iiop12.jar:./lib/weblogicaux.jar:./myserver/serverclasses:/weblogic/myserver/servletclasses:/usr/local/weblogic/myserver/jspclassfiles,
    -d, /usr/local/weblogic/myserver/jspclassfiles,
    /usr/local/weblogic/myserver/jspclassfiles/jsp_servlet/_myaccount/_myObuyAcceptBids.java])
    java.io.IOException: Compiler failed
    executable.exec([Ljava.lang.String;[/usr/local/java/bin/javac,
    -classpath,
    /usr/local/java1.2/jre/lib/rt.jar:/usr/local/java1.2/jre/lib/i18n.jar:/usr/local/java1.2/jre/classes:/usr/local/weblogic/lib/weblogic510sp1boot.jar:./classes/boot:/oracle/product/816/jdbc/lib/classes12.zip:/usr/local/weblogic/lib/weblogic510sp1.jar:/usr/obws/classes:./license:./classes:./lib/rmi-iiop12.jar:./lib/weblogicaux.jar:./myserver/serverclasses:/weblogic/myserver/servletclasses:/usr/local/weblogic/myserver/jspclassfiles,
    -d, /usr/local/weblogic/myserver/jspclassfiles,
    /usr/local/weblogic/myserver/jspclassfiles/jsp_servlet/_myaccount/_myObuyAcceptBids.java])
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.<init>(Throwable.java:94)
    at java.lang.Exception.<init>(Exception.java:42)
    at java.io.IOException.<init>(IOException.java:47)
    at
    weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:394)
    at
    weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:200)
    at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:284)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:174)
    at
    weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:164)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:99)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:143)
    at
    weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:93)
    at
    jsp_servlet._myaccount._myObuyRequestViewbid._jspService(_myObuyRequestViewbid.java:130)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:105)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:742)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:686)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:247)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    Set up each server (vm) with its own JSP working directory.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    +1.617.623.5782
    WebLogic Consulting Available
    "raj" <[email protected]> wrote in message
    news:[email protected]...
    >
    How to solve this issue?
    I am getting the samething. I am using weblogic 5.1sp8
    with two vms running on the same solaris box with different ip addresspointing
    to oracle8 db. when I request the jsp page, request goes to the both vmsand compilation
    starts with both the vms and vm's start giving the error listed below
    java.io.IOException: Compiler failedexecutable.exec([Ljava.lang.String;[/export/java/jdk1.3.0/bin/javac,
    -classpath,/export/java/jdk1.3.0/jre/lib/rt.jar:/export/java/jdk1.3.0/jre/lib/i18n.jar:
    /export/java/jdk1.3.0/jre/lib/sunrsasign.jar:/export/java/jdk1.3.0/jre/class
    es:/export/sb1/zilla18/weblogic/lib/weblogic510sp8boot.jar:/export/sb1/zilla
    18/weblogic/classes/boot:/export/sb1/zilla18/weblogic/eval/cloudscape/lib/cl
    oudscape.jar:/export/sb1/zilla18/weblogic/lib/weblogic510sp8.jar:/export/sb1
    /zilla18/weblogic/classes:/export/sb1/zilla18/weblogic/license:/export/sb1/z
    illa18/weblogic/lib/weblogicaux.jar:/export/sb1/zilla18/FutureTense/cs.jar:/
    export/sb1/zilla18/FutureTense/MSXML.jar:/export/sb1/zilla18/FutureTense/sse
    ed.jar:/export/sb1/zilla18/FutureTense/xcelerate.jar:/export/sb1/zilla18/Fut
    ureTense/framework.jar:/export/sb1/zilla18/FutureTense/assetmaker.jar:/expor
    t/sb1/zilla18/FutureTense/portal.jar:/export/db/oracle/8.1.7/jdbc/lib/classe
    s12.zip:/export/sb1/zilla18/TestHarness3.1/classes:/export/sb1/zilla18/Futur
    eTense/classes:/export/sb1/zilla18/weblogic/myserver/servletclasses:/weblogi
    c/myserver/servletclasses:/export/sb1/zilla18/weblogic/myserver/servletclass
    es,
    -d, /export/sb1/zilla18/weblogic/myserver/servletclasses,/export/sb1/zilla18/weblogic/myserver/servletclasses/jsp_servlet/_jsp/_cs_de
    ployed/_csX_629686889NewsBrick_0.java])
    atweblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.jav
    a:439)
    atweblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:245)
    at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:337)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:217)
    at weblogic.servlet.jsp.JspStub.checkForReload(JspStub.java:99)
    atweblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
    8)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :101)
    atweblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
    l.java:253)
    atweblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
    l.java:172)
    at COM.FutureTense.Servlet.f3.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.f3.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FRequestObj.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FRequestObj.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.ad([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.b([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.ak([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.fa.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.fa.InsertPage([DashoPro-V2-050200])
    at com.openmarket.Satellite.Seed.Page.genPageTag([DashoPro-V2-050200])
    at com.openmarket.Satellite.Seed.Page.Execute([DashoPro-V2-050200])
    atcom.openmarket.Satellite.Seed.Page$satellite_page.Execute([DashoPro-V2-05020
    0])
    at COM.FutureTense.JspTags.JSPSeed.doEndTag([DashoPro-V2-050200])
    atjsp_servlet._jsp._cs_deployed._csX278445071mainheadlines_0._jspService(_csX2
    78445071mainheadlines_0.java:642)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :106)
    atweblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
    l.java:253)
    atweblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
    l.java:172)
    at COM.FutureTense.Servlet.f3.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.f3.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FRequestObj.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FRequestObj.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.ad([DashoPro-V2-050200])
    at COM.FutureTense.ContentServer.e9.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.fa.CallElement([DashoPro-V2-050200])
    atjsp_servlet._jsp._cs_deployed._csX923063850main_0._jspService(_csX923063850m
    ain_0.java:820)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :106)
    atweblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
    l.java:253)
    atweblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImp
    l.java:172)
    at COM.FutureTense.Servlet.f3.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.f3.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FRequestObj.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FRequestObj.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.ad([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.a([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.b([DashoPro-V2-050200])
    at COM.FutureTense.Common.d6.ak([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FTServlet.a([DashoPro-V2-050200])
    at COM.FutureTense.Servlet.FTServlet.doGet([DashoPro-V2-050200])
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :106)
    atweblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:907)
    atweblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:851)
    atweblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java:252)
    atweblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:364)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:252)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "Michael Girdley" <[email protected]> wrote:
    I believe that would you are seeing is when two different threads of
    execution try to invoke the compiler at the same time on the same page.
    One
    will fail and throw this exception.
    I may be mistaken, but this is what it looks like to me. I have filed
    an
    issue for the developers to improve this message.
    Thanks,
    Michael
    Michael Girdley
    WLS Product Manager
    Shirish Kumar <[email protected]> wrote in message
    news:[email protected]...
    I keep getting the following exception every now and them. What doesit
    mean?
    web-svr1: Compiler failed
    executable.exec([Ljava.lang.String;[/usr/local/java/bin/javac,
    -classpath,
    /usr/local/java1.2/jre/lib/rt.jar:/usr/local/java1.2/jre/lib/i18n.jar:/usr/l
    >
    ocal/java1.2/jre/classes:/usr/local/weblogic/lib/weblogic510sp1boot.jar:./cl
    >
    asses/boot:/oracle/product/816/jdbc/lib/classes12.zip:/usr/local/weblogic/li
    >
    b/weblogic510sp1.jar:/usr/obws/classes:./license:./classes:./lib/rmi-iiop12.
    >
    jar:./lib/weblogicaux.jar:./myserver/serverclasses:/weblogic/myserver/servle
    tclasses:/usr/local/weblogic/myserver/jspclassfiles,
    -d, /usr/local/weblogic/myserver/jspclassfiles,
    /usr/local/weblogic/myserver/jspclassfiles/jsp_servlet/_myaccount/_myObuyAcc
    eptBids.java])
    java.io.IOException: Compiler failed
    executable.exec([Ljava.lang.String;[/usr/local/java/bin/javac,
    -classpath,
    /usr/local/java1.2/jre/lib/rt.jar:/usr/local/java1.2/jre/lib/i18n.jar:/usr/l
    >
    ocal/java1.2/jre/classes:/usr/local/weblogic/lib/weblogic510sp1boot.jar:./cl
    >
    asses/boot:/oracle/product/816/jdbc/lib/classes12.zip:/usr/local/weblogic/li
    >
    b/weblogic510sp1.jar:/usr/obws/classes:./license:./classes:./lib/rmi-iiop12.
    >
    jar:./lib/weblogicaux.jar:./myserver/serverclasses:/weblogic/myserver/servle
    tclasses:/usr/local/weblogic/myserver/jspclassfiles,
    -d, /usr/local/weblogic/myserver/jspclassfiles,
    /usr/local/weblogic/myserver/jspclassfiles/jsp_servlet/_myaccount/_myObuyAcc
    eptBids.java])
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.<init>(Throwable.java:94)
    at java.lang.Exception.<init>(Exception.java:42)
    at java.io.IOException.<init>(IOException.java:47)
    at
    weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.jav
    a:394)
    at
    weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:200)
    >>>
    at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:284)
    atweblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:174)
    >>>
    at
    weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:16
    4)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :99)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
    l.java:143)
    at
    weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:93)
    at
    jsp_servlet._myaccount._myObuyRequestViewbid._jspService(_myObuyRequestViewb
    id.java:130)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :105)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:742)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:686)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java:247)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

  • Bit locker drive encryption failed due to power failer and hard disk corrupted

    I ran Bitlocker drive ecryption drive D. My pc is windows 7 ultimate, while it was in progress of 1% due to power failer the encryption failed, when power resume the drive didn't showed the file format nor the size but it shows the size in disk management.
    It showed like this in My computer
    I do Have the recovery code password and back of recovery password so I ran the "manage-bde-_unlock D:-rp[my code ]
    and my pc got hang  no other option rather than to press the restart button. 
    then I used commang "repair-bde -force D:I:-rp[my rp] and following info showed but it stucked in 1% about 8 hours, and there was no increase in the pecentage
    I also connected the hardisk to mac but all othe partation showed but didn't showed the encrypted one.
    I had lots of memorable picture and other backups so any one kindly help me to get out of this problem. Thanks for help

    Hi,
    The BitLocker encryption and decryption processes can be interrupted by turning the computer off, and it will resume where it left off the next time Windows starts. This is true even if the power is suddenly unavailable.
    Bitlocker-repair (repair-bde)  tool
    can't repair a drive that failed during the encryption or decryption process.
    In addition, could you please explain a bit for what drive you are trying to deal with? external one?
    When you first restart your PC, have you seen any signs that indicate that the encryption is in process?
    Regarding your scenario, please take a look to see if the following articles could help here:
    Scenario 11: Recovering Data Protected by BitLocker Drive Encryption (Windows 7)
    Besides, when running manage-bde command, did we followed the steps mentioned in the below article?
    Scenario 14: Using a Data Recovery Agent to Recover BitLocker-Protected Drives (Windows 7)
    Best regards
    Michael Shao
    TechNet Community Support

  • Cannot send email from my Touch (connection to smtp server fails)

    Hello,
    I have a new iPod Touch with 1.1.4 and the January apps. I am having a problem setting the Mail application.
    I am trying to connect to the IMAP/SMTP servers at my university. I am using the exact same settings and passwords I use on my laptop, which works fine. I can receive email fine on my Touch, but every time I try to send one it fails tellings me "the connection to the outgoing server smtp.myuniversity.edu failed".
    If I on purpose write a wrong password for the outgoing mail, the error message I get is different ("check the account settings for the outgoing server smtp.myuniversity.edu").
    The university IT people confirmed my settings, and told me that there is nothing blocking any handheld device from using the server.
    Does anyone know why this would happen?
    Thanks,
    Marcelo

    Thank you very much for your responses
    1) the link to mail setup is (sorry, it's quite long)
    http://www.knowledgepak.com/kpaksonline/kpol.asp?PiAlias=kpolpi17&k2dockey=04096 3251575739@kpol17&ViewLink=true&SkipHeader=false&printformat=true
    2) I am indeed using SSL, as instructed by IT
    3) I do use port 587 instead of 25 (25 does not work either)
    Any ideas? Thanks again.
    MC

  • BSI ConnectToDataSet...failed

    Hi
    We have a problem with the BSI, we had been getting a dump "RFC_ERROR_SYSTEM_FAILURE", I followed the SAP Note 1068271 for the debug, and the result is:
    =Thu Jan 22 11:53:37 2009
    =SAP AG, Walldorf - Business API for BSI TaxFactory 8.0
    =RfcAccept called
    =Mapping ABAP RFC_PAYROLL_TAX_CALC_US_80 to C function srv_Payroll_Tax_Calc_US_80
    =Mapping ABAP RFC_HR_TAXLOCATOR_US_80 to C function srv_hr_taxlocator_us_80
    =Waiting for ABAP function calls
    =Running function srv_Payroll_Tax_Calc_US_80
    =Loading import parameters
    =Loading export parameters
    =Loading internal tables
    =Calling Payroll_Tax_Calc_US
    =Running Connect_DB_Payroll_Tax_Calc_US
    BSI dataset                  -> 110
    ConnectToDataSource...Succeeded 
    ConnectToDataSet...failed 
    Error String ->  7777 - [Oracle][ODBC][Ora]ORA-00933: SQL command not properly ended
    =RFC error
    operation/code Connect_DB_Payroll_Tax_Calc_US
    key RFC_ERROR_SYSTEM_FAILURE
    status
    message See RFC trace file or SAP system log for more details
    internal status
    The RFC under sm59 is working fine, the error is on the connection to the Dataset according to the Debug log "ConnectToDataSet...failed".
    I don't know what to check about the Dataset, could you please help me?
    Best Regards

    Yes, it's correct.
    I checked it's 8.0.
    I think is a problem with the parameters under tf80server.bat.
    SET
    TF80_CONNECT_STRING=DSN=;UID=;PW
    D=;
    SET TF80_SCHEMA_NAME=.TF80
    REM for SAP trace debugging, uncomment below & see file
    errors.txt in gateway working directory
    REM C:\BSI\TAXFACTORY\tf80serverdebug.exe %*
    REM else for usual operation
    C:\BSI\TAXFACTORY\tf80server.exe %*
    I don't know what is the "ODBC_DSN_NAME"
    I have the user, password, the database name...
    Best Regards

  • Installation of IPC AP 7.0 Jar is getting Failed when uploading in CRM

    Hello Experts,
    we did some changes in the previosly uploded version of IPC AP 7.0  customer user exit Jar file in eclipse.
    While uploading the new modified jar through transaction /SAPCND/UE_DEV in CRM we are getting error :" installation of module <Jar file name > has failed ".
    when we checked the logs in SM 53 we seen the below mentioned error:
    Message: Exception of type com.sap.sql.log.OpenSQLException caught: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permit ted)" is not supported
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permitted)" is not supported
    --> com.sap.sql.log.OpenSQLException: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is n" is not suppor ted
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is not permitted)" is not supported
    at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Object;)Lcom/sap/sql/log/OpenSQLException;(Syslog.java:85)
    at 
    if  required i can post the complete stack trace.
    any inputs/suggestions are most welcome.
    Thanks & regards,
    Siddharth

    Hi Mark,
    Yesterday after Posting the thread we found the same Note ,Issue occured because of  JAVA write access was not enabled on the table ,After enabling it as mentioned in SAP Note, Jar file get successfully uploaded.
    Thanks for your Help also.
    Regards,
    Siddharth

  • Upgrade to ERp6 phase STARTSAP_NBAS error: DDIC login fails

    Hi
    During an upgrade from 4.7  to ERP6  I get the following error
    message in phase STARTSAP_NBAS:
    SYSTEM START failed, code -2
    -2: the test rfc did not work.
    Try to log on to the system with user DDIC
    When I try to log on to the system as user DDIC, I get the following
    error message:
    DB-Error -0
    SAP* can log in .The password I submit is correct. I have not changed this password at
    any time.
    Any ideas are most welcome

    Hi,
    DB-Error -0 indicate problem with kernel, try to upgrade kernel.
    check Note 760175 - 6.20: Logon not possible (after DB export or system copy)
    regards,
    kaushal

  • Running workbook from .bat fails to start application missing CORE40 dll

    I have been running several workbook via windows task scheduler / vbscript &/or bat files.
    I now have a new box which I access thru Remote Desktop Connection, so I can run all these automated updates without having my screen blinking everytime a shedule workbook starts.
    If I click on the actual Discoverer icon, or the discoverer workbook shortuct, all works well.
    If I click on the .bat file, or try to run the workbook via the cmd , it gives me the following error:
    DIS4USR.EXE – Unable To Locate Component
    “this application has failed to start because CORE40.DLL was not found. Re-installing the application may fix this problem.”
    The dll is under c/orant/bin/core40.dll, which is where I've read it should be, and it works fine in my regular box...
    Please help! URGENT :)
    Thanks!

    Hello
    Check the PATH environment variables for the machine you are on and the one you are connecting to.
    You might not have Discoverer's objects in the PATH.
    Another possibility is that you have more than one piece of ORACLE software on the machine and you may need to also set the ORACLE_HOME within the BAT file.
    Best wishes
    Michael

  • Due to my laptop screen failing i have to return to facory settings, can i reinstall adobe reader and adobe air afterwards?

    Due to my laptop screen failing I have to return it to factory settings, can I reinstall adobe reader and air afterwards?

    I don't see why not. Do you foresee a special difficulty?

  • Downloads to documents folder fail due to parallel upload

    Hi, mobile documents is a great tool that I use to replicate all business relevant documents to mobile clients. However there is one great disadvantage for me. When you download a file that is a bit larger (>1 MB), during the download the client will already start uploading the temporary file. So the download then fails as it cannot convert the temporary file into the final one.
    This is something that does not happen for equivalent clients (for example skydrive). Do you think this is something that can be fixed?
    thanks,
    Heiko

    Hi Heiko,
    Let me explain again:
    You said "uploader locks the file so that it can no longer be changed". For the temporary file it is the downloader which have locked the file. Hence, the impression that file is getting uploaded because it is locked is hence not correct.
    The next version might be available in Q1\Q2 2014. We will keep everyone updated via community.
    Best Regards,
    Ashwani Kr Sharma

  • Jabber call to voice mail fails with fast busy over VPN

    I have an issue that I ran into with CIPC phones over a VPN.  If a CIPC phone called over a VPN and started ringing a phone the call would fail with fast busy at the time the call would be forwarded to voicemail.  I found the issue was when remote the CIPC phone would negotiate the g.729 codec, when forwarded to a voicemail pilot over a SIP trunk set to g.711 the call would fail due to codec missmatch when no transcoders are present.
    So now I am running into what I believe to be the same issue with Jabber, when on premise the calls to voice mail work just fine, but when remote they fail.  I can directly call the voicemail pilot without error, but if calling a phone the call gets fast busy at the point we are forwarded to voicemail.  Even though all my regions are set to talk to all other regions on G.711 and the voicemail SIP trunk is set to G.711, I believe with the new features in CUCM9 that a lower speed codec has been negotiated since the we are going over the VPN, or Jabber has done this as it knows it's over VPN (not sure).  WIth CIPC I could go into the settings and turn off the Optimize for Bandwidth check box and the call would negotiate G.711.  With Jabber I can't find anything that would tell my Jabber client to stay on G.711 and I can only imagine this is a codec missmatch as the following are true.
    1. CIPC and Jabber share the same line
    2. VPN established and CIPC optimised for low bandwidth un-checked
    3. Over the same VPN the CIPC phone can leave a voicemail
    4. Over the same VPN the Jabber client gets fast busy once forwarded to voicemail
    5. Voicemail environment is Exchange-UM over SIP trunk
    6. SIP trunk is assigned a Device Pool, that is assigned to a region that all other regions communicate G.711 to
    7. On CIPC if optimised for low bandwidth is checked I get the exact same issue as I get with the Jabber client (fast busy when forwarded to voicemail)
    Would anyone know what I can do in CUCM 9 to fix this issue, as said no issue when all devices are on premise.  Wondering if there is a service parameter or a way to change the codec selection so the Jabber client attempts to always negotiate G.711.  The correct answer would be to get some PVDM DSP resources and kick up a transcoder in my resource group, and that may be what I talk them into doing if I have no other options.                  

    We have been getting the exact same thing for almost a year now... since switching to FiOS Digital Voice in May of last year!  Every time I call in to report it they 'escalate' the issue but it never gets resolved.  The problem seems to be in the initial connection.  Most of the time it works fine but, several times a month, after I call to get messages and it starts to play the new message it goes dead and I get the busy signal.  I get the same message when I call back:  “I’m sorry – that account is in use at this time.  Please try again later!”  I have even called in with my cell phone and get the same message!  I HAVE EVEN used the Internet to see if I could get my messages and, when I hit Play, I get a pop-up saying: “Your Voice Mail box is currently in being accessed; please try again later.  If the problem continues, please contact our Customer Support Center at 1-888-553-1555. We apologize for any inconvenience.”  This is obviously a software bug that Verizon has no clue on how to troubleshoot OR fix!!!  I wonder how many people have the problem and just don’t bother reporting it because of the hassle?  When it first started happening they destroyed my entire mailbox and I had to re-enter the complete mailbox setup again – 3 times!!!  NEVER let them talk you into that!!!  It’s their problem and they need to fix it!!!!!!!  I wish I could go back to the ‘normal’ voicemail we originally had… they want hundred$ to switch back because I’d be breaking my #$@%^&* contract!  Good luck if you have Verizon………

Maybe you are looking for

  • Query to get list of customers with partial shipments

    I have a scenario where I need to find customers with open orders.  (Orders and Shipments have 1-to-many relationship ): Orders = (order_id PK, cust_id FK, prod_id FK, order_quantity, order_date) Shipments = (shipment_id, order_id FK, shipment_quanti

  • Unable to view document header text in MB51

    When creating a stock transport order in MB1B we are entering information into a field labeled "document header text". Then when running MB51 in the column labelled document header text nothing appears unless we enter under a specific movement type. 

  • Getting iTunes app onto iphone 4s?

    I used iTunes to download an app but don't know how to get it on my new iphone 4s.  How do I do this?  Thanks!

  • Page Number Display

    Hi Gurus, How can i print page numbers in standard report ( FAGLL03 ) which is not available now? I can use sy-pagno , but where exactly i need to add that , i tested the report by adding the code in end-of-page but i didnt get the output correctly .

  • WEB PAGE'S LOADING INTO AN AIR FOR iOS PROJECT

    Hi! I have a complicated problem. I try to find a solution everywhere but I didn't find anything. I'm creating a project Air for iOS with Flash CS5 and Flash CS6. I need to find somebody that know how to upload a web page inside an app. I try to expl