Document revision checking

I'm the author of many PDF documents used throughout my company.  These PDF's are centrally located on a web server and employees typically DL them and store them on their PC's for later use.  Unfortunately these PDF's often change and there's no way of knowing if you have the latest revision unless you go back to the web server.  Is there a way to have a PDF check it's revision against the master PDF on the web server whenever it's opened and alert the viewer when a new version exists?

You will need to write a document level JavaScript to open the web based PDF and comparing the docID[0] property of each PDF or add a custom meta data field with a version ID. Of course the stored documents will not have the script needed to perform this task.
The docID is only available with version 6.0 on.

Similar Messages

  • Content Server - get content of document being checked in

    Hi,
    Is is possible to get the content of the document being checked-in via Java? Assuming I want to have a component which performs some action on the document being checked in, before this document is checked in. Is there some way to read the content of the document?

    Hi Jiri,
    Thanks again for pointing me in the right direction. From what I understand I just need to get the path to the document and then open it via Java. I believe sth like this does the trick:
    String docPath = binder.get("primaryFile:path");
    From my understanding there is this "vault" folder which holds the content server's files, revisions, temp files etc... Using the above code should work ok, but I understood that the CS can be told to save its files into some data base instead of the "vault" folder, in which case the above code won't be useful...
    I assume in this case reading the document is done in some other way...
    So, should I conclude that there is no general/abstract way of reading the document being checked-in which doesn't take into consideration the underlying structure which keeps the CS's files(vault or DB)?
    Thanks,
    V

  • How can I disable or turn off Document Revisions (revisiond)?, How can I disable or turn off Document Revisions (revisiond)?

    Hi,
    Today I upgraded my MBP-15 from Snow Leopard to Lion. Is there any way to disable or turn off Document Revisions (revisiond). Thanks.

    1. Use apps that don't take advantage of the feature - that's most right now.
    2. Ignore it. It's entirely invisble to the user.
    Regards
    TD

  • Unable to convert pdf to any other format. Tried cloud as well as acrobat reader. Reader error message "unable to contact service" and Cloud message "conversion error". I tried multiple pdf documents and checked security settings on all of them. Help Plea

    nable to convert pdf to any other format. Tried cloud as well as acrobat reader. Reader error message "unable to contact service" and Cloud message "conversion error". I tried multiple pdf documents and checked security settings on all of them. Help Please!

    Hi skydivingsnowman,
    I'm sorry you're having such trouble using the ExportPDF service. What browser are you using?
    Please try clearing your browser cache, or using a different browser (here's a list of supported browsers:   http://www.adobe.com/acom/systemreqs/.
    Please let me know if that works.
    Best,
    Sara

  • How to force a new document to check in using an event receiver

    Hello,
    I need someone to guide me how to achieve using an event receiver or any other method how to force a document to check in. I have some users that forget to check in their documents. I have a workflow that runs every time a new document is uploaded and check
    in to run an approval process. Hope anyone can help me with this.
    Best Regards,
    Fer

    You can check-in document in the ItemAdded event
    Example:
    namespace MultipleFileUpload.MultipleItemsAdded
    /// <summary>
    /// List Item Events
    /// </summary>
    public class MultipleItemsAdded : SPItemEventReceiver
    /// <summary>
    /// An item was added.
    /// </summary>
    private Guid siteID;
    private SPFile file;
    public override void ItemAdded(SPItemEventProperties properties)
    siteID = properties.SiteId;
    file = properties.ListItem.File;
    using (SPSite site = new SPSite(siteID))
    using (SPWeb web = site.OpenWeb())
    base.ItemAdding(properties);
    SPListItem oItem = properties.ListItem;
    oItem["Title"] = "Please add a title.";
    oItem["Description"] = "Please add a description.";
    oItem.Update();
    if (file.CheckOutType != SPFile.SPCheckOutType.None)
    file.CheckIn("Automatic Check In");
    [custom.development]

  • What is "Document Revision Text" ?

    Hello all,
    I just came across the term, "Document Revision Text" in UPK. Would appreciate if somebody can explain what it means!
    Also, where do we set "Document Revision Text" in UPK ?
    Thanks a lot !!

    i believe so. i think the current situation is that iTunes 7.0.0.70 supports burning CD Text (so you should be able to see track information on other PCs from yours with burned CDs). but i don't think "reading" CD text is supported yet.
    ... i can't find documentation on this though. so it might be a good idea to keep an eye on this document, to see if any more info comes through (via the Apple Knowledge Base) over the next couple of weeks:
    Articles modified in last 7 days

  • Payment Document with Check Print Out

    Hi All,
    When i posted a Document though F-58 for getting the
    output of Test Check Print Out, The Document was saved
    and showing a message of Print Job was generated. now
    where should i check the output print out veiw.
    shall i go to SM37.
    Please help me.........
    Thanks & Regards,
    Shekar

    Hi,
    Goto T.Code SP01.
    Enter User Name and Date created ,then Execute(F8).
    It will display all spool files.select correct one and print.
    If this helps,please assign points.
    Thanks,
    Rau

  • Purchase Order: Attaching a document and checking in

    Hi All,
    We are having an issue with regards to attaching a document to a PO.  We are able to get the document attached to the PO, but can't get it checked in to the server so others can look at the file.  It gives us an error of "C:\somefile cannot be found."  Thought's anyone.  Thanks.
    Regards,
    Victor

    HI Victor,
    Are you trying to attach to the services of the object? (using DMS)
    Please let me know the exact error offered by SAP.
    Cheers
    Arun.

  • BAPI_DOCUMENT_CREATE2 Document not Checking in

    Hi SAP Gurus,
    I am using fm 'bapi_document_create2' for creating douments.
    Document is created without attachments.
    I searched SDN and change the code accordingly with no luck.
    Please see the code where i am doing wrong.
    DATA: ls_doc    LIKE bapi_doc_draw2,
          ls_return LIKE bapiret2.
    DATA: lf_doctype    LIKE bapi_doc_draw2-documenttype,
          lf_docnumber  LIKE bapi_doc_draw2-documentnumber,
          lf_docpart    LIKE bapi_doc_draw2-documenttype,
          lf_docversion LIKE bapi_doc_draw2-documenttype.
    DATA: lt_files      LIKE bapi_doc_files2 OCCURS 0 WITH HEADER LINE,
          lt_drat       LIKE bapi_doc_drat OCCURS 0 WITH HEADER LINE,
          lt_drad       LIKE bapi_doc_drad OCCURS 0 WITH HEADER LINE.
    ls_doc-documenttype    = 'OPL'.
    ls_doc-documentversion = '00'.
    ls_doc-documentpart    = '000'.
    ls_doc-statusextern    = 'WR'.
    ls_doc-laboratory      = '002'.
    REFRESH lt_files.
    CLEAR lt_files.
    *lt_files-sourcedatacarrier = 'SAP-SYSTEM'.
    lt_files-storagecategory = 'SAP-SYSTEM'.
    lt_files-docfile = 'C:\Documents and Settings\LALIT\My Documents\ac.doc'.
    lt_files-wsapplication = 'WRD'.
    APPEND lt_files.
    CLEAR lt_drat.
    REFRESH lt_drat.
    lt_drat-language = 'EN'.
    lt_drat-description = 'Testing document from bapi'.
    APPEND lt_drat.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
      EXPORTING
        documentdata         = ls_doc
      IMPORTING
        return               = ls_return
      TABLES
        documentdescriptions = lt_drat
        documentfiles        = lt_files.
    BREAK-POINT.
    IF ls_return-type CA 'EA'.
      ROLLBACK WORK.
      WRITE : ls_return-message.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = '5'.
    ENDIF.
    DATA: doknr TYPE doknr.
    GET PARAMETER ID 'CV1' FIELD doknr.
    CALL FUNCTION 'BAPI_DOCUMENT_CHECKIN2'
      EXPORTING
        documenttype    = 'OPL'
        documentnumber  = doknr
        documentpart    = '000'
        documentversion = '00'
        hostname        = ''
        statusintern    = ''
        statusextern    = ''
        statuslog       = ''
      IMPORTING
        return          = ls_return
      TABLES
        documentfiles   = lt_files.
    Thanks in advance
    Lalit

    Hi Lalit,
    Please check the example source code given in documentation for function module BAPI_DOCUMENT_CREATE and check if it helps identify the issue.
    Regards,
    Shyam

  • Easy Document Management - Check In of documents question

    Hello everyone,
    I am dealing with Easy DM 6.00, SP12 and I have one specific request from my customer. My customer still doesn't have content server implemented, and he would like to learn and use Easy DM. Since it is not a good idea to check in large quantities of documents to DMS_C1_st storage location, we were thinking about one slightly different solution.
    We would like to set up Easy DM to work in the following way: When "drag-and-drop" function is used, we don't want to check in document. We just want to create a link to the original file on local computer (in our client's case to their shared folders).
    Is it possible to change some settings, so that this happens automatically when creating a new document through Easy DM?
    Thanks!
    Best regards,
    Karlo

    Thanks for answer  Athol.
    The problem is that my client doesn't want just to use it for testing purposes. He wants to use it for some time until he implements content server.
    Since they are working with CAD drawings, their files can be fairly big, and their SAP database could be full of documents in a very short time - which would have for consequence slowing down the SAP system.
    So, we need to turn on this functionality somehow.

  • Reverse document for check voided with FCH9

    I voided a manual check that was created by using FCH9. I want to be able to reverse the document, but when I tried to reverse, I got an error that the document was already cleared and could not be reversed. Is there a way to reverse the payment document?
    Any help would be greatly appreciated!

    Hi
    If no other new check has been issued for the payment document in FCHN, than you have to use FBRA to reverse the payment document. You should use the option reverse and reset
    Regards
    Sanil Bhandari

  • Pdf documents show checked background in safari

    When I open a PDF document in Safari the background shows as grey and white checks rather than white, how do I fix this

    Back up all data.
    Quit Safari. In the Finder, select Go ▹ Go to Folder... from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then launch Safari and test.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Document authorization check

    Hello,
    Is there a BAPI call, that being given a pair 'user name' + 'document number' will say whether the user is authorized for at least read access?

    Well, let say I have a document in that is visible with use of CV04N transaction.
    Clearly, when smb. tries to access (i.e. display) the document, SAP performs some authorization object checks:
    C_DRAW_BGR
    C_DRAW_TCD
    and so on, basing on the profile of that user.
    Also probably ACLs are checked if assigned any (in EasyDMS terminology).
    So my desire is know whether there is a way to perform these checks remotely via BAPI call - passing a user and a document in question.
    Please tell me if I can provide more details on my aim.

  • Document Printing -Checks to be printed

    After printing checks, it is automatically confirming all checks. Is there a setting for this?? We want to be able to confirm or set as damaged.

    When a check has been printed, it should be confirmed by default.  That is logical.  Unless you manually reject it as damaged, I don't see any benefit that user should control this process.  As for the setting, the only available ones are under Print Preference - Per Document - Check for Payment.
    Thanks,
    Gordon

  • Workflow to send a notification when a document is checked in

    I created some List Approval Workflows using SharePoint Designer 2010. I want to send an email out as soon as the user check in a document before uploading it into the Document Library. Can I do that in Designer 2010?
    Thanks!
    Mayank

    Hi Mayank,
    When a document is uploaded into the document library, the first action is the upload. Then if you have enabled Check-in/check-out on that library then user has to check-in the document for other's to see. It is not other way around. Even before you enter
    the metadata for the document, the document is uploaded to the library. So are you looking to send email when the document is uploaded or when it is checked-in?
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

Maybe you are looking for

  • 3d menu is grey(not clickable)

    Hey guys, I can't select the 3d menu in Photoshop CS6 Extended, it stays always grey. I know this problem was already answered many times before but nothing seemed to work for me. I've selected RGB and 8 Bit, newest drivers for my ATI Radeon Mobility

  • Adding text to URL

    I'm making a script that adds "&fmt=22" (The YouTube high quality &addon), and I need to know what to do in applescript to relay the edited url (Example: www.youtube.com/watch?v=hLE0DpKnJsA&fmt=22) back to safari. Here's what I have already: Get curr

  • Gateway Documents are missing or are  not correctly linked

    Hi, When I go to this page: http://www.oracle.com/technetwork/database/gateways/index.html and I click on the different documents: ex: Database Gateways Features Overview (PDF) or Database Gateways Certification Matrix (PDF) I'm still routed to this

  • TRANSFERRING PHONEBOOK TO PIONEER HEAD UNIT

    Just purchased a new Pioneer AVH-P4100DVD automobile head unit, and I have synched the my iPhone 3G, but I'm having problems transferring my phone's "contact information" to the head unit. Without access to the iPhone's phonebook, it's really annoyin

  • SSL termination and URL redirection

    Hi All, I have configured application in cisco ACE module for which i got more requirement for URL redirection. Application setup is as below. VIP : 10.232.92.x/24 which is pointing to 2 Web server 10.232.94.x/24 range. In addition to that app team w