Custom comments on pdf

Hi,
Is it possible to enable commenting in a pdf, via reader extensions without enabling the "attach a File as a Comment" or the "Record Audio Comment" options?
Thx,
João

No its not that granular .....its either commenting is on or off.
Paul

Similar Messages

  • Email Invoices to customer as a PDF attachment

    Hi,
    I have a requirement as follows:-
    SAP will get multiple invoice numbers from an external system. I need to send all the invoices(for a given customer) in one pdf and email it to the customer  as an attachment.
    Please provide your expert and detailed advice.
    Thanks,
    Ani

    Hi Ani,
    Go through this u definetly got ur solution.
    Here is the code to send the Smartform to mail as PDF attachment.
    *& Report ZTEST_NREDDY_PDF_MAIL
    REPORT ZTEST_NREDDY_PDF_MAIL.
    Internal Table declarations
    DATA: I_OTF TYPE ITCOO OCCURS 0 WITH HEADER LINE,
    I_TLINE TYPE TABLE OF TLINE WITH HEADER LINE,
    I_RECEIVERS TYPE TABLE OF SOMLRECI1 WITH HEADER LINE,
    I_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
    I_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
    WA_OBJHEAD TYPE SOLI_TAB,
    W_CTRLOP TYPE SSFCTRLOP,
    W_COMPOP TYPE SSFCOMPOP,
    W_RETURN TYPE SSFCRESCL,
    WA_DOC_CHNG TYPE SODOCCHGI1,
    W_DATA TYPE SODOCCHGI1,
    WA_BUFFER TYPE STRING, "To convert from 132 to 255
    Variables declarations
    V_FORM_NAME TYPE RS38L_FNAM,
    V_LEN_IN LIKE SOOD-OBJLEN,
    V_LEN_OUT LIKE SOOD-OBJLEN,
    V_LEN_OUTN TYPE I,
    V_LINES_TXT TYPE I,
    V_LINES_BIN TYPE I.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = 'ZTEST'
    IMPORTING
    FM_NAME = V_FORM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    W_CTRLOP-GETOTF = 'X'.
    W_CTRLOP-NO_DIALOG = 'X'.
    W_COMPOP-TDNOPREV = 'X'.
    CALL FUNCTION V_FORM_NAME
    EXPORTING
    CONTROL_PARAMETERS = W_CTRLOP
    OUTPUT_OPTIONS = W_COMPOP
    USER_SETTINGS = 'X'
    IMPORTING
    JOB_OUTPUT_INFO = W_RETURN
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    I_OTF[] = W_RETURN-OTFDATA[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = 132
    IMPORTING
    BIN_FILESIZE = V_LEN_IN
    TABLES
    OTF = I_OTF
    LINES = I_TLINE
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    OTHERS = 4.
    IF SY-SUBRC <> 0.
    ENDIF.
    LOOP AT I_TLINE.
    TRANSLATE I_TLINE USING '~'.
    CONCATENATE WA_BUFFER I_TLINE INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    I_RECORD = WA_BUFFER.
    APPEND I_RECORD.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Attachment
    REFRESH: I_RECLIST,
    I_OBJTXT,
    I_OBJBIN,
    I_OBJPACK.
    CLEAR WA_OBJHEAD.
    I_OBJBIN[] = I_RECORD[].
    Create Message Body Title and Description
    I_OBJTXT = 'test with pdf-Attachment!'.
    APPEND I_OBJTXT.
    DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
    READ TABLE I_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    Main Text
    CLEAR I_OBJPACK-TRANSF_BIN.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    I_OBJPACK-BODY_NUM = V_LINES_TXT.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    APPEND I_OBJPACK.
    Attachment (pdf-Attachment)
    I_OBJPACK-TRANSF_BIN = 'X'.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
    READ TABLE I_OBJBIN INDEX V_LINES_BIN.
    I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    I_OBJPACK-BODY_NUM = V_LINES_BIN.
    I_OBJPACK-DOC_TYPE = 'PDF'.
    I_OBJPACK-OBJ_NAME = 'smart'.
    I_OBJPACK-OBJ_DESCR = 'test'.
    APPEND I_OBJPACK.
    CLEAR I_RECLIST.
    I_RECLIST-RECEIVER = '[email protected]'.
    I_RECLIST-REC_TYPE = 'U'.
    APPEND I_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    COMMIT_WORK = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    DOCUMENT_TYPE_NOT_EXIST = 3
    OPERATION_NO_AUTHORIZATION = 4
    PARAMETER_ERROR = 5
    X_ERROR = 6
    ENQUEUE_ERROR = 7
    OTHERS = 8.
    IF SY-SUBRC <> 0.
    WRITE:/ 'Error When Sending the File', SY-SUBRC.
    ELSE.
    WRITE:/ 'Mail sent'.
    ENDIF.
    If you want to send some text as Body of the Mail then follow this once
    when u r callin the FM'SO_NEW_DOCUMENT_ATT_SEND_API1'.. points to remember
    1.u have to pass the body of content in table CONTENTS_TXT(ia m using I_OBJBIN) (each line a record) then. suppose i have appended 11 records to the table CONTENTS_TXT .
    2.PACKING_LIST(iam usign I_OBJPACK) table u ahve to append a redord as follows
    I_OBJPACK-TRANSF_BIN = ' '.
    I_OBJPACK-HEAD_START = 000000000000001.
    I_OBJPACK-HEAD_NUM = 000000000000001.
    I_OBJPACK-BODY_START = 000000000000002
    I_OBJPACK-BODY_NUM = 000000000000010.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    append I_OBJPACK-.
    by the above code system treat the first line in table I_OBJBIN as header and the 2nd line to 10 lines tread as body.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    DOCUMENT_TYPE_NOT_EXIST = 3
    OPERATION_NO_AUTHORIZATION = 4
    PARAMETER_ERROR = 5
    X_ERROR = 6
    ENQUEUE_ERROR = 7
    OTHERS = 8.
    Reward points if helpful.
    Thanks
    Naveen khan

  • How can I see the comments in PDF document on Chrome OS?

    Hi, I am trying to view the comments in a PDF document on my Chromebook (Chrome OS). The PDF viewer in Chrome cannot show them (I see only the graphical hints, like yellow background and such). I tried several apps in the Chrome store, but none of them could show the comments in the PDF document. There is an app to comment a PDF file, but it uses a proprietary format, and is incompatible with the comments created by Adobe Acrobat. I also tried to upload the PDF to the Acrobat.com webspace. While it provides an online viewer, even the Acrobat.com webspace viewer does not show the comments . So I am running out of ideas, and still cannot see the comments of the PDF on my Chromebook...
    Is there something obvious I am missing? Is there an app that can show comments on Chromebooks?
    Thank you!
    Claus

    Nike+iPod -> Settings -> Distances -> Miles
    This should change Miles to Kilometers. If it doesn't, try restoring your iPod on iTunes or you have a defective one so take it back to the store you bought it and have it exchanged.

  • Is it possible to override the built-in PDF format handler with a custom IFilter for PDF?

    Hi,
    SharePoint 2013 comes with a built-in "format handler" for PDF now, so it can index PDF files out of the box. This is great for most users, as it now no longer is necessary to install a third-party IFilter for crawling PDF documents.
    My question is, is it possible to override the built-in format handler for PDF with a custom IFilter for PDF? I played with the Set-SPEnterpriseSearchFileFormatState and Remove-SPEnterpriseSearchFileFormat cmdlets. While it is possible to deactivate
    the built-in format handler, I was not able to remove it and to create a new one that activates a custom IFilter for PDF files.
    Background of the question: While the new built-in format handler for PDF will probably be sufficient for many SharePoint users, some need additional capabilities regarding indexing if PDF documents, e.g. extraction of custom metadata from PDF's document
    information dictionary and embedded XMP metadata. PDFlib GmbH, the company I work form, sells an IFilter for PDF, and of course we would like to continue to offer this for SharePoint 2013.
    Thanks
    Stephan

    You should be able to replace it with any ifilter you want, this is the procedure for installing it:
    Install PDF iFilter 9.0 (64 bit) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025 (http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025)
    Download PDF icon picture from Adobe web site
    http://www.adobe.com/misc/linking.html (http://www.adobe.com/misc/linking.html)  and copy to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\IMAGES\
    Add the following entry in docIcon.xml file, which can be found at: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\XML
    <Mapping Key="pdf" Value="pdficon_small.png" />
    Add pdf file type on the File Type page under Search Service Application
    Open regedit
    Navigate to the following location:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\15.0\Search\Setup\ContentIndexCommon\Filters\Extension
    Right-click > Click New > Key to create a new key for .pdf
    Add the following GUID in the default value
    {E8978DA6-047F-4E3D-9C78-CDBE46041603}
    •Restart the SharePoint Server Search 15
    •Reboot the SharePoint servers in Farm
    •Create a Test site (with any out-of-box site template) and create a document library upload any sample PDF document(s).
    •Perform FULL Crawl to get search result.
    Once the crawl is completed we will get search results.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Problems with comments-enabled PDF: I can't see my client's comments

    Hello,
    I really hope somebody can help me.
    THE SITUATION: I have a comments-enabled PDF. The comments repository is located on my externally hosted webdav server. Both my client and I have local copies of the PDF, and up until today, my client was able to post comments on the PDF.
    THE PROBLEM:
    - Today, my client suddenly noticed that the review had "expired" and she can't post her comments.
    - I am able to see and post my own comments in the PDF, but I can't see my client's comments in the PDF.
    - My client can see her own comments. (I don't know if she can see mine.)
    - If I log into my webdav site with FTP, I can see my client's XML file which contains all her comments. I can also see my own XML file which contains my comments, and it is indeed updating each time I add a new comment.
    I thought it would be possible to import the XML file containing all her comments into the PDF. However XML is not a format that Acrobat allows you to import!!! It only will accept FDF, XFDF, or PDF!
    Phone tech support was spectacularly unhelpful. I seriously doubt "Nelson" from Bombay has ever used Acrobat in his life. He asked me to send the file to him, which I did, but I haven't heard back.
    So my question is:
    1) How can I get my Acrobat file to view the comments which are sitting on the comments server in an xml file? Why would it see mine but ignore hers?
    2) If I can't get the comments to show up, then can I at least import my client's comments, which are currently sitting in an XML file, into my PDF?
    bonus question: Why is there so little documentation about dealing with webdav comments repositories? Is it considered better to use acrobat.com instead of our own webdav server or something?
    This is Acrobat 9.1.0 Pro for Leopard.

    Thanks for your reply, Steve. Yes, she did say that there was an end date, but when I go there, I don't see one. Baffling.
    I have decided to go over to her office, create an archive of her PDF, then try to pull those comments into a new PDF.
    This is a GIANT PAIN. And egg in my face, after I've sold this client on the ease and convenience of a PDF workflow!
    So is there any way to get xml comments back into a PDF???

  • How to enable commenting into pdf files using java?

    Hi All,
    Is there any way available to enable comments into pdf files through java. I have a Adobe Reader 9 and also I want put some comments into pdf file, but the reader is not allowed to place a comment into pdf file before enabling the Comments into pdf. After enabling the comments in pdf file then only we can place the comments and we can the pdf file with comments.
    Is there any way available to enable comments into pdf file to view acrobat reader.
    Thanks in advance.

    The end user who uses the web application has Acrobat installed in their mahcine needs it only for the purpose of enabling comments in pdf. If this task of enabling comments in pdf is done through my application there is no need for acrobat in such user's machine which was requested as a cost cuttnig measure.
    For this purpose, i need to know about how to enable comments in pdf through java api.
    I have used itext java api for other pdf related manipulation in java. But it does not have feature as per the requirement posted above. Can any body suggest relevant java api to achieve the task requested?
    Tahnks in Advance.

  • Commentable/saveable PDF no longer works in Reader 9

    Greetings all,
    I have seen this on the web, but have not seen the solution.  Can anyone provide one?
    Some years back we received commentable/saveable PDF versions of the Bible.  My husband has been highlighting and commenting these for a long while.  Since Adobe 9 and for a number of months now, he can no longer comment/save the PDF.
    I downloaded another set of the PDFs (there are two).  When you open one of the PDFs, it says that commenting is allowed.  After you comment and save the document (something that has been done MANY TIMES for a year or more), you get a message: "The document enabled extended features in Adobe Reader. The document has been changed since it was created and use of the extended features is no longer available.  Please contact the author for the original version of this document."
    I know this situation is happening to others since Adobe 9.  Surely we do not all have to try to find and contact the orginal author who enable commenting to have them fix something that is now apparently broken when using Adobe 9?
    Help anyone?  Adobe rep, are you there?
    Thanks in advance,
    Tink

    Enabling usage rights in reader grants specific rights for a given document - form fill in, saving, signing, etc. Reader checks if something else has been done to the document beyond the scope of the rights granted and apparently the program you are using to add the form data is triggering this test for some reason. There is a digital signature which isused to check this, plus an analysis of what has changed in incremental save sections.
    What you are trying to do should work in principal. If the developer of the application is available, have them look at what else is being changed besides the addition of form data. They should be able to fix the problem.
    If the pre-fill data is the same for each user, you can definitely run the pre-fill and then enable usage in reader.

  • How to get crop tool in comment enabled pdf file?

    Hi,
    I want to place comments in pdf file using Reader 9. So i opened the pdf file in acrobat 8 and did 'Enable for commenting in Adobe Reader' so that i place the comments in Reader. I need all advanced editing tools. But when i comment enabled Crop tool will disappear. How can i enable crop tool in comment enable pdf?
    Thanks in advance...

    You can't. By enabling commenting, you're adding certain usage rights to the document. In order for those usage rights to be preserved, certain types of changes (most) need to be prevented. If such changes were allowed (and actually made), the usage rights would be invalid and Reader would no longer be able to add comments to the file. So you can enable commenting in Reader, or allow for other changes in Acrobat, but not both with the same file.

  • Custom "Save as PDF" directly to a destination folder overwrites previously saved PDF files

    Custom "Save as PDF" directly to a destination folder overwrites previously saved PDF files
    As many of you will know, within Mac OSX it is possible to "print" any document off as a PDF.  You simply prepare your document then invoke the "Print" command and in the resulting print dialog box, click the "PDF" button in the bottom left corner which spills out a menu with various options including "Save as PDF..." as shown in the image below:
    Selecting the last option "Edit Menu" permits users to add specific folders to which a PDF of the document will be saved.  As you will note from the image above, I have created a number of destinations such as "Bank Transfers" (for anything on screen in Safari I wish to preserve when using my on-line banking facility); "Bind" (which I use with an Automator workflow to consolidate many PDFs into one long document); "Officeworks" (for stuff I need to copy to a USB stick and have printed on on large plotters); "iPad" (for anything I need to put on my iPad through "iAnnotate" or "Documents") etc
    The problem I have discovered is that with the introduction of Mountain Lion, PDFs that get saved directly to a destination folder get overwritten by later versions of PDFs that are produced from the same document.  This is fine when working on a single document that you may want to have the latest print of a document but not so when you produce many different PDFs from the same browser window in Safari as you surf through a number of websites etc.
    Prior to Mountain Lion, pervious versions were never over-written but rather preserved them with new versions having version number suffixes added e.g., untitled.pdf, followed by untitled1.pdf, untitled2.pdf, untitled3.pdf etc.
    Does anyone else have this problem?
    Does anyone have a solution to this problem? (other than a workaround like switching to Finder to rename or move files around)

    The "Save to Web Receipts" bug existed for a long time - here's a MacOSXHints article offering a workaround in 2007.  Here's another reference to it in 2009.  Your contention that:
    Prior to Mountain Lion, pervious [sic] versions were never over-written.
    is, I'm afraid, wrong.
    Apple fixed (worked around) that bug by using a .pdfworkflow, as I indicated.  As I also indicated, this file can't be opened with Automator (or I just don't know how, which is no great surprise ).  But it's the answer to your problems.
    You can either wait for Apple to fix what is, admittedly, a huge bug in their PDF Services feature, or you can find a way of implementing the same fix they did for your own folders.
    I should be doing the same, as I use PDF Services regularly, but I'm too lazy and have had too little success with Automator in general to give it a shot.  You may have more success than I did.
    Good luck

  • How to set Custom Properties in PDF

    Hi,
    We are using BIP embedded in EBS R12.
    For post-processing of PDF files, we need to embed information in PDF files which can be read by a script.
    There is Customer Properties section in every PDF file (File > Properties > Custom (tab)) where information may be stored in Name-Value pair where in Name will be a predefined information while value should coming from XML data file.
    I could not find any help/guide which demonstrates how to insert custome properties in PDF file generated from RTF template in EBS. Is this capability available in BIP?
    Please share your thoughts on this.
    br.

    You may be able to make changes to the web.xml for Infoview to handle that.
    For infoview questions you will need to create a forum post in the [Enterprise Admin forum|BI Platform;
    Edited by: Jason Everly on Aug 16, 2010 10:01 AM

  • Enable for commenting in PDF

    Hi,
       How to enable for commenting in PDF through Acrobat JavaScript? Is it possible?
    Kindly advice me.
    Regards
    Kumar

    How many times do you need to hear it's not possible before you believe it?

  • Edited/commented on PDF using Adobe Reader iphone 5 and e-mailed to myself so I could review on PC laptop.  I opened on laptop and although I could see the comment bubbles, I was not able to open them to see the comments.

    Edited/commented on PDF using Adobe Reader iphone 5 and e-mailed to myself so I could review on PC laptop.  I opened on laptop and although I could see the comment bubbles, I was not able to open them to see the comments.

    Back to life**
    Oh I know there are many other vocabulary mistakes but never mind them I was just too excited when I wrote all of that while typing very quickly
    P.S: if you have any question then ask and please do tell me if it works or not with u but I'm definitely sure it'll work so tell me this and we'll get excited together
    Also if you have an experience to share then do share it as well please.
    Peace

  • Import/Export comments from PDF

    Hi
         I am using Adobe Acrobat 6.0 Professional. I am an application devleoper [.Net 4.0 , C#] . I need to export/ import comments from pdf. I will explain my scenario :-
       1.  I have three copies of the same pdf file. Each copy contains different comments.  i need to combine the comments from these three pdf file into a single             pdf file. Can i do this programattically ?
       2. From where i can get the API for the same ? [.Net 4.0]
      Looking for your responses.
       Regards
       Dominic

    Open a PDF having sticky note and underline annotations applied with Acrobat XI Pro (the trial release will do  just fine).
    Open the Comments List.
    From the Options menu select "Create Comment Summary".
    Because you've an interest in getting comment annotation content into a Word file select the "Comments only" layout.
    Complete configuration as desired.
    Click the "Create Comment Summary" button.
    Save the resultant PDF.
    With this PDF open in Acrobat XI Pro use the click-path:
    File :: Save As Other :: Microsoft Word :: Word Document or Word 97-2003 Document
    Be well...

  • Why would my customer reading my pdf file get this message: 'Licensing for this product has stopped'?

    why would my customer reading my pdf file get this message: 'Licensing for this product has stopped'?
    The message goes on to say, 'you cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling this product or contacting your IT administrator or Adobe customer support for help.'

    Hi sivey@pdx,
    Can you please let us know the following:
    - Operating System installed;
    - Name and version of the Adobe Product (Adobe Reader or Adobe Acrobat);
    - Screenshot of the error message.

  • Comment enabled pdf's, showing pop-up when opening in acrobat professional.

    Hi all,
    We are sending the comment enabled pdf's to authors for review.
    Some of the authors stating that its showing an pop-up when they open the PDF's:
    We opened the same document in Acrobat 6,7,8 & 9. Professional and Reader. We did't get the above said message.
    Are the authors using the outdated version of acrobat which was not compitable for "comment enable".
    Please suggest.
    Shaji

    HI all,
    I did't get any help related to this issue.
    Can anyone respond.
    Shaji

Maybe you are looking for

  • How do I sync voice memos from an iphone 4s to my PC?

    i plugged in my phone via usb to my computer and then i authorised the computer for the phone and now, I want to transfer the voice memos from my phone to my computer so that I can listen to it there however whenever i click sync it says that i've sy

  • Resultset in the same order as saved in the database

    Hi Folks! I'm having some trouble with an old development, because for some really strange reason, the same select statement i'm getting the same records but in different order from time to time randomly. For example in day 1 i can get: 1 Text1 2 Tex

  • Unable to insert records in PRPS and PROJ tables.

    I want   to insert entries in PROJ and PRPS  tables with new company code. I am selecting entries  with existing company code and changing old co. code to new co. code in work area. Then I am using insert PRPS from work area in the same way inserting

  • Actionscript debugging HELP!

    function preloadProgress( event:ProgressEvent ):void { var loadedPercent:int = event.getBytesLoaded( ) / event.getBytesTotal( ) * 100; loaderText.text = loadedPercent + "% loaded"; twirlsMask.scaleY = loadedPercent / 100; Anyone knows the problem? It

  • Hardware error - Tracking servo failure - what does it mean?

    Thanks in advance. I was trying to burn a disc, and started having trouble with burning this movie (have done several before, including earlier versions of this movie). After wierd things happening twice - the first disc would burn, then the second o