Policies and Watermarks on docs with Signatures

Is there a way to add a watermark to a document that contains electronic signatures.  Unless I am doing something wrong, I get an error message saying something to the effect that, "encryptUsingPolicy: Cannot encrypt a signed PDF -- (error code bin: 777, hex: 0x309) -- (error code bin: 777, hex: 0x309)".
Whether the document is signed or unsigned, I get the same error.  The business case is such that if it is an electronically signed document, then anytime the print function is called, it should put a "COPY" watermark on the document to indicate that the printed version is NOT the original.  Unfortunately, there is one caveat to this rule....there is one special group of people who have the right to make an electronic document become a paper original by printing it out and destroying the electronic version.  In this case, we would NOT want the COPY watermark to appear on the document when printed.  I was thinking that a policy might solve the business requirements by adding the COPY policy to the document.  Then, if that special groups wants to print it, remove that policy.  But, I can't seem to add this policy to a signature-based document.....
Any help/suggestions would be appreciated!

Hi there,
There might be some holes in the business case or my understanding of it (but without knowing all the details this is only an observation) ....  Not sure what the differentiator between the electronic and printed version is .... that is in essence they are both just copies after it has been digitally signed. I realize that the online version can detect any changes made after the signature and show a change in status since signed where as someone could just use a tool to duplicate (whatever the document is and is meant to represent) the document and print out a fake. But even with a non-electronic solution and a wet ink signature at some point you need to trust a paper copy as being an original. So if they are not using some sort of embossing stamp on paper copies why the need to specifically stamp it 'copy'?  If they are using an embossing stamp to represent an original then could you not just watermark the electronic right from the start and hence any printed version will contain the word 'copy' and any original hardcopy is requested from the issuer and has the embossing stamp?
That observation aside, based on what is in the original post you could do a
few things each with potential challenges depending on the software and architecture you have...
1)  Code on the form
If the assumption that once this document is signed it becomes official holds valid; then this will work because if not signed then clicking print will trigger the watermark.  In this case, as soon as you sign it you will not get the watermark when printed, but of course you can print as many copies as you like.
To do this put code on the pre-print event that will turn a hidden read-only field (containing the "COPY" watermark) visible. This way when viewing online it is never watermarked and when viewing the printed copy it is always watermarked (you can put code behind the PrePrint event of the top level node in your form that will make a field's presence visible. That field at design time would have no caption / set to readOnly / have the default value by what you want the watermark to say / have its presence set to hidden and then you would just use code like <fieldname>.presence = "visible".
2)  Using Policies
Use two policies (because the dynamic watermark is based on a policy and cannot be assigned based on user/group in one policy)
a)  So you will be sure to policy protect the document prior to signing with one of the policies (assume the “user-watermarked”). The challenge here is that the individuals who approve will also need the ability to switch the policy (policy set admin permission) so they can use the Rights Management end-user web interface to switch to the “approver – nonwatermarked” policy and do whatever it is that makes it an original and then switch back to the "user-watermarked" policy.
Note:  What if while the policy is switched the regular user wants access and now can't get it or that the approved user even remembers to switch the policy back.  Another options is…
b)  Automate it based on the full requirements == something like
                i.     Capture who is authenticating to an automated LC Process.
               ii.     If it is a regular user then the process grabs the already completed/signed and protected PDF from a repository and records the licenseId of the protected documenet while passing the doc back to the user. 
             iii.     It is also possible that if in the future an approver is requested to generate a valid printed copy then when they authenticate it grabs the (user-watermarked) protected/signed PDF from the repository and switches the policy to the approver-nonwatermarked policy and passes that doc back to the approver who can print the document. 
               iv.     It is also possible that you could do a bunch of other things such as
                            i.   Auto switch back the policy to the user-watermarked after the approver prints by capturing the print event
                           ii.   Instead of above you could make printing part of the process if the approver doesn’t actually modify and resign the document. That is get the protected/signed doc from repository > switch the policy > send to a printer > switch the policy back. 
                         iii.   If for some reason the approver actually has to make changes to the document then although protected with the same policy you now have two documents. the one originally sent to the user and the one the approver wants to change and print as an original. In this case you could have that same process retrieve the licenseId of the original policy protected document distributed to the user and revoke it.
Hope those ideas will help you take your detailed understanding of the use case and apply some or all of the suggestions.

Similar Messages

  • How can I use Automator to open and save Word docs with links?

    Hi-
    I'm having trouble building a Workflow to open and save Word docs with links.
    My Workflow so far:
    1. Get Finder items
    2. Copy Finder items (to new folder)
    3. Rename selected items
    4. Open selected items (Word docs)
    Three problems occur.
    The first is a Word 2004 problem -- I can't get the warning "This document has links in it; do you want to open it with/without updating the links" to go away (Unilke the Macro warning toggle capability, there is nothing in the Preferences for Word 2004 that addresses the links warning, as far as I can tell; any insight you can shed on this would be terrific.)
    The second problem happens with Automator: if I manually accept the update of the first document's links, Automator opens that document but then halts completely, even though I've instructed it to open multiple documents.
    The third problem I have is that there's no Finder action in Automator that allows me to save the document that's now open (as far as I can see).
    Any suggestions for how to fix? If I can get this to work, and scheduled in iCal, it will be an unbelievable time saver.
    Thanks,
    Jeremy
    PowerPC G5   Mac OS X (10.4.6)  

    Hi there Jeremy,
    to do this you are going to have to add in some Run AppleScript steps...
    These will rely on GUI Scripting. So first you need to activate GUI Scripting.
    Now we need to add in a Run AppleScript action to the end of your workflow...
    This will replace your current number 4 in the workflow (Open Selected...)
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">on run {input, parameters}
    set allItems to every item of input
    repeat with currItem in allItems
    tell application "TextWrangler"
    open currItem
    end tell
    activate application "TextWrangler"
    tell application "System Events"
    tell process "TextWrangler"
    delay 2
    --when the Word document is opened I have told it to press okay !
    --I don't know what key you want it to press in the dialog box
    keystroke return
    delay 2
    --save the doc
    keystroke "s" using command down
    delay 5
    --close the doc
    keystroke "w" using command down
    end tell
    end tell
    end repeat
    return input
    end run</pre>
    The above script should open each Word Document, press a button in the dialog box then do a save and then close the doc...then loop through the rest of them.
    You need to replace the name Text Wrangler with Microsoft Word (or whatever it is called!), I don't have it on my Mac.
    You will have to let me know what button needs pressing in the first dialog, if it isn't the 'highlighted ' one then we will have to amend the script...
    regards
    Ric

  • How can I view all comments in a Pages doc and print the doc with comments?

    It seems that we can no longer view comments in the margin of a document.  It is also not possible to print the document with comments visible.  Anyone else having this problem?  Pages 09 Help does not even offer an up-to-date explanation.  "Show Comments" only shows color shading.  The option “Show Comments and Changes Pane" does not even exist.  How can I get the comments to print???

    You will have to wait for Apple to fix this deficiency in a forthcoming update to Pages v5. Or, you could use Pages ’09 v4.3, if originally installed before the v5 upgrade, and located in /Applications/iWork '09.
    Otherwise, use another solution (e.g. Office for Mac 2011, LibreOffice).

  • So, iDisk (great with MobileMe) is closed! Ok. I got the most expensive iCloud Plan and LOVED storing files online. Is that REALLY OVER??!! (besides Numbers', Pages', and Keynote's docs sync).. Will I REALLY have to downgrade to "free" on iCloud?!!

    So, iDisk (great with MobileMe) is closed! Ok. I got the most expensive iCloud Plan and LOVED storing files online. Is that REALLY OVER??!! (besides Numbers', Pages', and Keynote's docs sync).. Will I REALLY have to downgrade to "free" on iCloud and PAY for "DropBox", "Google Drive" or "Microsft's Sky Whatever.."?!!
    I could not log in to this Support Community with my UPDATED Apple ID (and this is another issue I can't believe Apple just says "NO, you CAN'T!" - deleting other (old) Apple IDs we've created by mistake or a long time ago and being able to have it all on ONE SINGLE UPDATED Apple ID - ALSO saving Apple's storage servers, etc.).
    Anyway, my Apple ID for better communication is [email protected] (but I really couldn't log in here - it kept saying that the e-mail is already registered, etc. I know it, I'm trying to use it here, that's all...
    So, really. Of course a lot of people don't care about the iDisk issue. That's fine, we all love and hate specific apps or software.. But why has Apple just shut it down, since it was so EASY to use (as DropBox) on all our Apple devices?!! So, we really can't upload/store any kind of files anymore and that's it?!
    I used iDisk when MobileMe was still alive, and it was great to have my files from work, home, any backup (whatever we want) uploaded and synced and used in our Macs, iPhones and iPads. If we have the OPTION of an iCloud Plan (the top one, for example), but we just don't like the automatick backups for the iPhones and iPads, nor the Pictures' sync function.. Why can't we just have the SAME simple and efficient/great service of the iDisk installed in each device?!
    Do we really have to go back and downgrade back to the free iCloud Option (just for keeping the e-mail) and paying extra for DropBox, Google, Microsoft, any other services?! I have nothing against them - I actually have DropBox and it works great because it REMINDS me of iDisk!! But WHY NOT just keep it simple and closed with 1 company/platform/option - Apple's iOS, OSX, etc.
    That's why I decided to have a Macbook Pro, an iPhone 4S and an iPad 3rd. Generation (for example, along with other products and services such as Apple TV).. I know I'm CHOOSING to stay with 1 world, that's fine. And that's why I didn't (yet) go for a Samsung phone or another tablet.. I wanna stick with 1 pattern and I have chosen Apple's..
    Just can't understand such an innovative company make such decisions (such as shutting down iDisk or not letting us just DELETE Apple IDs we do NOT use anymore).. Please, just some guidance or confirmation if that's correct: No way of uploading files others than Numbers', Pages' or Keynote's!!??
    Thank you very much!!
    Peace.

    Thank you Roger.
    That's exactly what I was afraid of...
    During all the time I have been a loyal customer of Apple's products and services, these have been the only 2 issues that I really can't understand (specially when we look at Apple's strategies and management)...
    1) Not being able to DELETE (simply delete or deactivate) old or duplicated Apple IDs... I have 3 different Apple IDs but only one is the real Apple ID I use for everything, with all my purchases and services (such as e-mail) related to it (Why won't Apple jus let people delet, deactivate or - at least - merge Apple IDs?! That would help everyone, including Apple when we think about costs, storage, database maintenance, etc.) - Actually, even when I gave up on trying to delete other Apple IDs, I tried to have the one I really use and have organized to use my @me.com address as the Apple ID itself (as Apple asks us to do - and makes sense, of course). But never worked. Just because I created that Apple ID with a @hotmail.com account (since it asks for a valid e-mail when you create an Apple ID, it NEVER lets me now change my Apple ID to my @me.com e-mail address - I mean JUST having my @me.com e-mail address as my primary e-mail and my Apple ID (for example, having that old @hotmail.com e-mail address out of it, cleaned..)!
    2) The other issue was this one, about iDisk. Of course there must be reasons for having it shut down, maybe the apps used by iPhone and iPad, along with the folder on Mac OSX, is way too complicated, expensive, full of bugs, I don't know. But if we decide to pay for 50GB of online storage, why even THINK about different options for files we use?! I have Dropbox, I've read about Google Drive and Microsoft SkyDrive, etc. But I just wanted to STICK with a single ALL-APPLE solution.. That is.. Pay the annual fee for the 50GB and just still keep any file I want on the cloud with iDisk. So, what Apple tells me is that if I have other files than iWork or PDF (and some few exceptions), I should actually downgrade to "free" iCloud and decide to PAY for another solution (organization), such as DropBox, Google Disk or Drive (I don't really know), Micrsoft's SkyDrive..
    Of course there's the strategy of getting more and more people to use Pages, Numbers and Keynote (buying them for iOS and Mac OSX, as I already have and love them). But "killing" iDisk and just telling users to look for other storage solutions doesn't really sound like Apple.
    I have seen so many questions here about both issues (deleting or merging Apple IDS + iDisk back since we pay for storage) that I really believe Apple should reconsider these issues or, at least, open the issue and let us know what would be the best "partner solution" for iCloud...
    Thanks a lot!
    All the best...
    Eduardo Rocha.
    [email protected]

  • My hard drive died last week, and I needed to install a new one.  Previously, I was able to save a .doc with text and inserted photo to .pdf and then to .jpg.  Now I can get the .pdf but can't determine what to do to convert to .jpg.  Does anyone know ?

    My hard drive died last week, and I needed to install a new one.  Previously, I was able to save a .doc with text and inserted photo to .pdf and then to .jpg.  Now I can get the .pdf but can't determine what to do to convert to .jpg.  Does anyone know ?

    Rather than do that, which means starting over from scratch, losing all your edits, organisation and so on, why not simply use iPhoto Library Manager to revert the Library to the older version? Easier, less destructive.
    The instructions on that are here
    If you really want to start over: you can access the Originals folder simply by going to your Pictures Folder and finding the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.

  • I just upgraded my iPhone 3GS to 4.3.5 and my universal doc stopped working with it?  It has worked flawlessly for the last year and suddenly I get the message: "this iphone is not optimized for this device."  The music comes out too quiet to the speakers

    I just upgraded my iPhone 3GS to 4.3.5 and my universal doc stopped working with it?  It has worked flawlessly for the last year and suddenly I get the message: "this iphone is not optimized for this device."  I dismiss the message, but the remote no longer works with it and the music is too quite to the speakers.  The remote works fine with my Macbook Pro.  I tried a restore on the iPhone and started from scrach, but the same problem exists.
    Any help with this?
    Thanks,
    JT

    yep... my iphone 4 also having problem like astoker.. u see on dock pin using torch light.. i found 2 pin touch each other.. i solve my problem ready.. thanks wjosten.

  • My folders take forever to open and then the docs within take a long time for the icon to pop up. the same thing with moving itmes from the desktop to a folder, and also emptying the trashh

    my folders take forever to open and then the docs within take a long time for the icon to pop up. the same thing with moving itmes from the desktop to a folder, and also emptying the trashh

    Don't know if that would be a failing hard drive, but it may be that you are out of available space. How much hard drive space do you have available? Please highlight the Macintosh HD icon and then press Command and I for a get info window. Once open, please copy and post the following:
    Capacity:
    Used:
    Available:
    Mac OS requires a minimum of 10 - 15% of total hard drive space available and empty at all times in order to operate properly.

  • Problem in Webdynpro and Adobe form with signature field

    Hi experts!
    I have a problem with Signature Field in Adobe Form showed in a Web Dynpro Abap.
    During the execution I fill the Signature field correctly but when I push any other button of the Webdynpro, the Adobe Form shows me the next error.
    After click OK, the webdynpro is hang and not respond.
    Any idea why not respond?
    Thanks.

    Hi friend,
    Its not like that the Adobe created using SFP is non interactive.
    We can create interactive forms using SFP transaction using java code.
    I think it will be the problem with ADS just check with your basis people i think they will configure you the settings which works fine.
    To check whether the settings are perfect you can try executing the standard programs FP_TEST_00 and
    FP_PDF_TEST_00. If it works fine then some other problem exists else check with your basis team.
    Just check this and revert me if you have any issues. I will help you
    Thanks,
    Sri Hari

  • Has anybody tried creating and validating a XML doc with XML Schema?

    Hi,
    Has anybody tried creating and validating a XML doc with XML Schema?

    With XMLBeans, an XML document may be created from and validated with an XML schema.

  • Can anyone recommend an alternative software programme to Pages? I have an OS X 10.7.5 macbook pro, so I am unable to get it. I want a programme that I can create docs with pictures and text on, invitations, posters etc. Many thanks in advance-..

    Can anyone recommend an alternative software programme to Pages? I have an OS X 10.7.5 macbook pro, so I am unable to get it. I want a programme that I can create docs with pictures and text on, invitations, posters etc. Many thanks in advance…..

    LibreOffice

  • I just installed Mountain Lion on my MacBook Pro and enabled dictation. It won't let me edit Google Docs with it. Any suggestions?

    I just installed Mountain Lion on my MacBook Pro and enabled dictation. It won't let me edit Google Docs with it. Any suggestions?

    It would be easier to just fix whatever is making your machine slow.
    I wrote a little diagnostic program to help show what might be causing these problems. Download EtreCheck from http://www.etresoft.com/download/EtreCheck.zip, run it, and paste the results here.
    Disclaimer: Although EtreCheck is free, there are other links on my site that could give me some form of compensation, financial or otherwise.

  • IMovie 11 with chroma-key and watermarks

    I'm new to iMovie. I did attempt to find the answers to the questions below here and on the web. Frankly iMovie so far seems to be pain....
    setup for my testing purposes only:
    a) borrowed chroma-key movie from the web
    b) borrowed m4p from the web
    I wanted to test my ability to use chrome-key and watermarks in making a short clip using 3 products...Screenflow 4, iMovie, Final Cut Pro X.
    Questions and/or statements:
    1) Green-screen:
    Screenflow and Final Cut took about 5-10 minutes with zero knowledge of either...Over an hour with with iMovie and never could make it work.
    2) Watermark:
    Aganin 5-10 minutes with Screenflow and Final Cut, with iMove it looks like I could have either keying or watermark, but not both.
    Screenflow is SUPER simple and cheep (on sale today for $70), I've seem it 50% off...
    Final Cut is OUTSTANDING but super costly for what I wanted to do....Really a great product.
    Anyway, here I am with a iMovie and so far it looks like it isn't a fit for me...Anyone know if a way to tweek it to make both chroma-key and watermarking work? I guessing it's just me, but the others seemed so simple.
    Attached are screen copies of each...in order below are iMovie, Final Cut Pro X, and the output of Screenflow....
    I want to thank those that I borrowed these images from...I will not use them beyond my testing....
    Thanks for any helpfull hints...

    iMovie is designed with a very forgiving green screen feature so you can hang a green bedsheet on a wall and get a decent effect. It is designed for people making home movies. Perhaps for this reason, if you have a perfect green key in iMovie, then iMovie might think you used the green on purpose. It expects some variation. When people are doing computer generated graphics, or creating a green background with Photoshop or Keynote or Powerpoint, I suggest using a gradient between close shades of green, rather than a monochromatic green.
    If you need sophisticated control of your keying, get FCPX. I am not familiar with Screenflow.
    Also, iMovie does all rendering in one pass. This means it cannot do effects that require a render on top of a render. Say you want a greenscreen effect with a watermark on top. That is two renders. This is easy in Final Cut Pro, but not possible in iMovie without jumping through some hoops.
    Also for this reason, longer movies should be done in FCPX. What for iMovie would be an immense job requiring huge resources, FCPX can do by chopping it up into bitesize pieces.

  • My iphone has been lost in spain what can I do besides make a complaint to the police and lock it with the located iphone ?

    my iphone has been lost in spain what can I do besides make a complaint to the police and lock it with the located iphone ?

    The only way to locate/disable/erase any lost/stolen iPhone/iPod Touch is through Find My Phone or a similar app. However, this requires that Find My Phone be setup/activated, on your phone, before it was lost/stolen. You would then login at iCloud.com & try to locate it. This requires the phone be turned on & have an Internet connection. There is no other way to locate a lost/stolen iPhone. Apple can't/won't help you, nor will your carrier. Report the loss to the Police, your carrier & Insurance company. Change all of your passwords.
    If your carrier offers Blacklisting & they Blacklist the phone, it will be unusable as a phone.
    If locked with a passcode, all a thief or whoever finds it has to do is force the phone into recovery mode & restore it. While this deletes all data on the phone, it also removes the passcode so the phone can then be used as a phone or touch.

  • Problem with Group policies and Administrator count

    I have one problem with Group policies and Admnistrator count.
    Win XP, Client 4.91, Client Zen 4
    I use DLU for users.
    the Group policies are well applied and i keep them after logout for
    security reasons.
    But my problem is, after logout, the Administrator count becomes this
    Group policies, and the only technique that I use, is to remove the
    repertories c:\windows\system32\GroupPolicy*. Administrator must
    loguing again for having good policies.
    Can you help me?

    Bill,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Lock page and signatures with signature

    I need to lock a document (including signatures). Currently, I can set the signature field to lock the page or parts of it, but all signatures can still be cleared and resigned by the signator. How do I stop that? I need it to be final and unchangeable once the final signature is applied.

    You can lock the entire document from changes when signing a field, but only if it's the last unsigned signature field in the document. The only change that is allowed is clearing the signature by the person who applied it, assuming no one else has access to your digital id (private key).

Maybe you are looking for

  • I can't get my Game to work...

    I bought The Sims 2 for my MAC OS X but it says I need 1 MB to play - I have that, it says I need to free space from my local disc but I don't know how to find it!! Please help!!

  • Games don't run?

    I have this ongoing problem where no games seem to run. It's weird - anything but modern 3d games runs great. Usually I'll open a game, it may or may not show the menus, then crashes. Any thoughts? Is there something common that might be corrupted?

  • Dng vs cr2 in lightroom

    Are there any advantages of either .DNG files or .CR2 in lightroom? What would be the extension of choice and why? Thank You

  • Help in get query id for cancel query

    xmlService.cancelQuery(QueryID, m_sessionID); QueryResults xmlresult= xmlService.executeXMLQuery(reportRef, XMLQueryOutputFormat.SAWRowsetData, executionOptions, rp, m_sessionID); I want to cancel the query that is currently being executed . It requi

  • Slider with Synth - Problems setting tick and text color

    Hi, I'm currently using Synth and I'm having some problems with sliders. The sliders appear and work fine, although I can't seem to change the color of the ticks and text. I would like the ticks and text to be orange, but it seems to default to black