Generate document as single object ?

Hi All,
We have an .net application(Visual studio 2003)  and we do generate documents using Crystal reports 10 and we  apply security on the documents using third party tool,Now we have a requirement from the client,they want to the see the documents as single image,like when we do scan a document and try to select some content on it,it will select whole document.Do we have feature in CR10 to meet this requirement or any suggestions to achieve this?
Please let me know if you need more information,thanks for your help in advance.
Regards,
Ajith

Here is my description with example.
We designed a document using CR10 contain items,
Header --- logo (image),Header Text and Address
Details --Some Text  and database fields stuff
Footer --Seal (Image) ,Signature image.
We export to pdf and save the file object  in database.
When retrieving the document we use third party tool it takes the file object and Secure it (disabling copy,..security features)
before displaying.
So when the user see the document,he can able to select each object like logo,seal ...separately.Of course he cannot copy now,but the client wants not to select each items,like if anything they  try to select,whole document to be selected not each item.
Thanks for your help and going through description,let me know if you need more info on my requirement.
--Ajith

Similar Messages

  • How to Append two  word documents into single  using   java

    How to Append two word documents into single using java
    we tried this but it's not append the one word document to other
    source code:public class AppendTwoWordFiles {
         public static void main(String []arg)throws IOException
              FileInputStream fi=null;
              FileOutputStream fo=null;
              try {
                   System.out.println("Enter the source file name u want to append");
                   BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                   File f1=new File(br.readLine().toString());
                   System.out.println("Enter the Destination file name ");
                   File f2=new File(br.readLine().toString());
                   fi = new FileInputStream(f1);
                   fo = new FileOutputStream(f2,true);
                   byte b[]=new byte[2];
                   while((fi.read(b))!=-1);
              fo.write(b);
    System.out.println("Successfully append the file");
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              finally{
              fi.close();
              fo.close();
    plz reply me quickly ,,,what can i follow

    Use this code ..
    and give the path of the both file like this.....
    source file ---- C:/workspace/Practice/src/com/moksha/ws/test/practice.text
    destination file ---- C:/workspace/City/src/com/moksha/ws/test/practice1.text
    import java.io.*;
    public class AppendTwoWordFiles {
         public static void main(String[] arg) throws IOException {
              FileInputStream fi = null;
              FileOutputStream fo = null;
              try {
                   System.out.println("Enter the source file name u want to append");
                   BufferedReader br = new BufferedReader(new InputStreamReader(
                             System.in));
                   File f1 = new File(br.readLine().toString());
                   System.out.println("Enter the Destination file name ");
                   File f2 = new File(br.readLine().toString());
                   fi = new FileInputStream(f1);
                   fo = new FileOutputStream(f2, true);
                   byte b[] = new byte[2];
                   int len = 0;
                   while ((len = fi.read(b)) > 0) {
                        fo.write(b, 0, len);
                   System.out.println("Successfully append the file");
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } finally {
                   fi.close();
                   fo.close();
    }

  • Import/Export Single Object

    Hi Folks,
    i tested imort/export for SWCV it is working fine...but when i m trying it for single object like namespace etc...
    I face the problem while exporting/importing a namespace in IR.
    1) I exported a namespace using menu Tools->Export design Objects
    2) Selected the software Component and Mode as using file system in the wizard
    3) Selected my namespace which i want to export
    got the message exported successfully.
    Export Path: D:\usr\sap\PL2\SYS\global\xi\repository_server\export
    File: XI3_0_TEST_2.0_of_xxx.com-nsps.tpz
    <b>I tried to import the same namespcae back into same IR.</b>
    and followed these step.
    1) Copied the .tpz file into import folder.
    2) then using the menu tool->import design Objects i selected my .tpz file
    3) Got the following msg.
    Import source XI3_0_TEST_2.0_of_xxx.com-nsps.tpz imported successfully. All imported design objects integrated successfully 3 import object(s) imported successfully 
    Import file moved to importedFiles\XI3_0_TEST_2.0_of_xxx.com-nsps_2007-02-13_02-41.tpz
    <b>But i was not able to see the imported namespace.</b>
    Also followed this document
    http://help.sap.com/saphelp_nw04/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/content.htm
    Can u guide me plz.
    Sachin

    <b>Sreeram</b>
    I m not trying to move it form DEV to QA.
    I m exporting the namespace from DEV. say http://abc.com/xi/test of SWCV  Test of abc.com.
    and then i m trying to import it back to Same DEV box.
    I m getting the sucessfully imported message but not able to see the namespace.
    I tried deleting the namespace after exporting and then importing.
    But still i can't see it.
    However in cache notification and Tools->Find Transfer it is showing that it is sucessfully imported.
    I think it might be the issue with active version... can u help me out.
    <b>Chandra</b>
    i m not changing the name of anything. i got the above message as well, but not able to see the imported object.
    Sachin
    Message was edited by:
            Sachin Dhingra

  • What is the easiest way to move every single object in a PDF?

    I have 300 pdf documents containing a total of about 2000 pages of content... and I need to shift every single object in them a half inch to the right.
    Is there an easy or fast way to do this?  Im currently only able to select all objects on a single page, which makes this task... frustrating.

    You should be able to write a script to do the job. George Johnson posted a script for cropping pages based on landscape and portrait orientation recently that should suggest the approach. The commands can be found in the JavaScript manual from Adobe.

  • Transporting LSMW single object instead of entire project

    Dear Experts,
    When I am selecting LSMW object and then selecting Generate Change Request from Extras, then it is creating Transport request for entire project instead of a single object.
    How can i transport single LSMW Object instead of entire project.
    Please help me.
    Thanks & Regards
    Rangababu

    Hi,
    when you are on the first screen of LSMW, can't you go via Extras->Export Project. Then you can select on detailed level what you want to export to a flat file.
    On your other system you can import this flat file (and you can even rename stuff while importing). Not sure, but it might be that the import functionality is blocked on your other system. If not, I think this is the way to go.

  • Dynamic documents in ABAP Objects (weblog)

    Hi SDNers,
    Do you want to implement the following features in ABAP Screens?
    1. Large font sizes and more colour options than traditional ABAP/4 (There are some limitations also)
    2. ICONS and pictures in different sizes
    3. Texts
    4. Links
    5. Pushbuttons
    6. Input fields
    7. Dropdown list boxes
    8. Tables with row span and with column span
    9. Tables with frames and without frames
    10. Tables with buttons, icons, pictures, input elements and texts in it.
    Then please read the below weblog to incorporate these features...
    <a href="/people/venkata.ramisetti/blog/2005/12/20/dynamic-documents-in-abap-objects">Dynamic Documents in ABAP Objects</a>
    Thanks,
    Ramakrishna

    one limitation which comes to my mind immediately is that you cannot create spool output of the dynamic document.
    Regards
    Raja

  • Documents with Smart Objects - Very slow to open and Save - CS6 Photoshop

    When opening and saving documents with smart objects photoshop freezes the adobe PS loader (circle dots) is replaced and the system loader (multi colored wheel of death) spins for 30 seconds or more.
    What I've tried so far based off looking at various posts.
    Photoshop Preferenes
    Save in Background off
    Maximise PSD and PSB file compatability never
    Cache Tile Size: 128k
    Advanced Graphic Processor Settings: Basic & Normal
    Layer Panel options: No Thumbnail
    Observations and workthroughs to date
    The file size and amount of smart objects effects the file expotentially i.e. The more smart objects you have the worse it gets
    These files worked perfectly in PS CS5
    It also happens on files natively created in PS CS6
    The CPU is maxing out at 100% while PS loads
    Closing or opening suitcase has no effect.
    System:
    iMac 27-inch, Mid 2011
    Processor  3.4 GHz Intel Core i7
    Memory  16 GB 1333 MHz DDR3
    Graphics  AMD Radeon HD 6970M 1024 MB
    Mac OS X Lion 10.7.5 (11G63)
    Suitcase 4
    Anyone got any ideas? This is making me go nuts!

    A solution!
    It turns out the problem in my case was in fact Suitcase. Previously, I'd tried turning it off, but that didn't fix the problem, so this time, I uninstalled it completely and the problem disappeared. I then began re-adding it (installed 15.0.1, upgraded it, etc.) and the problem resurfaced with the addition of the Photoshop-specific plugin. Deleting that plugin solved the problem. So it seems that "disabling" Suitcase by stopping the TypeCore doesn't seem to actually disable all of the tentacles it sticks into your system.
    You can find the plugin here: Applications / Adobe Photoshop CS6 / Plug-ins / Automate / ExtensisFontManagementPSCS6.plugin
    (After a restart, I also had to delete the font cache, as described here http://helpx.adobe.com/photoshop/kb/troubleshoot-fonts-photoshop-cs5.html but your mileage may vary.)
    Alternately, if you don't want to delete the plugin, disabling it from within Photoshop seems to work as well. To do that, go to File > Automate > Extensis, click Preferences..., then deselect Enable Suitcase Fusion 4 Auto-Activation.
    Fortunately, the plugin doesn't seem necessary at all to use the the core functionality of Suitcase (enabling and disabling fonts) in Photoshop. I didn't even know what these app-specific plugins did until researching this problem, and I still don't quite understand the point of them. I guess they allow you to let the apps for which they're installed do a little bit more of their own management (enable a font via Suitcase that isn't enabled system-wide), but that seems like more control than I need--if I'm enabling a font, I want all my software to be able to use it.
    Anyway, the problem seems to be completely solved on my system now, though I just did all this, so more testing over the next few days is required. I'll post here if any issues crop up. I'm interested in hearing if this solves it for anyone else as well.

  • Multiple Materials on a single object

    I'm sure I'm missing something...but I'm finding it impossible to use multiple materials form the 3D toolkit on a single object unless I separate the material differences to separate objects....which I'm sure is crazy. But if I import an object with multiple materials, there seems to be no way to assign the toolkit materials separately. If I drag a toolkit material to one part of the object...the entire object turns into that material. It would seem it would be right if you dragged a toolkit material to the materials list of the object....but that won't work either. Anyone know what I am missing here?
    Thanks in advance for any help

    Right click on the object and select Tools -> Separate Meshes which will divide the object into it's component parts (i.e. parts that aren't part of the same polygonal mesh will be divided)
    From there, you can apply materials to them individually.
    To rejoin them (you don't have to) just select them all, then right click and select Tools -> Collapse Hierarchy.

  • How to tell if ObjectProxy contains ArrayCollection or single object?

    When I get data back from a web service, the list contains an
    ArrayCollection. Within each ArrayCollection, the item may be
    either a single object, or an ArrayCollection of theser objects. It
    appears FLEX supplies what it thinks is the correct type of
    ObjectProxy object based on the number of children under the parent
    node.
    If the ObjectProxy refers to an ArrayCollection, I want to
    iterate over it, but if it refres to a single object, I want to
    pull off some of it's properties.
    How can I tell at run time if an ObjectProxy refers to an
    ArrayCollection, or a single object? Thanks very much in
    advance!

    Found an answer here:
    http://www.theruntime.com/blogs/be-sharp/archive/2008/02/26/web-services-and-arraycollecti ons-in-adobe-flex-2-how-to-successfully-read-any-number-of-xml-nodes.aspx
    which provides an answer if there are NO child nodes, if
    there is exactly one child node, or if there are multiple child
    nodes...

  • Error while accessing documents in document tab in Generate document proper

    Hi Experts,
    I am facing issue while generating document properties.
    I am doing this is qualification for one infoobject and I am getting error as " Operation SDOK_M_ATTR_CREATE could not be carried out for". In development this is fine but in qualification it is in error.
    I tried RSRV for this infoobject and it is consistent.
    Could you please let me know how to solve this issue.
    Regards,
    Raghu

    Hi Purnima,
    Please take a look at note: 431126
    I hope this helps.
    best regards
    Orla.

  • More than one entity found for a single-object find method

    Hi everyone...
    I have this error when my webservice is running..I don't know what it means and what would be the best solution..
    <pns:message>More than one entity found for a single-object find method.</pns:message>
    it throws an Exception..
    Thanks!

    = More than one row found in a DB with the "unique" key supplied...
    Your method is returning an object where it should return a collection ?
    Enjoy

  • ERS generated document with zero vaue for SES

    Hi,
    I have maintained service entry sheet.
    Accounting entry is generated.
    When I run T code MRRL, it has generated document with zero value.
    This is not a free goods PO.
    Please guide on this issue.
    Regards,
    Piyush

    Repeated by mistake

  • ERS generated document with zero value for SES

    Hi,
    I have maintained service entry sheet.
    Accounting entry is generated.
    When I run T code MRRL, it has generated document with zero value.
    This is not a free goods PO.
    Why this is happening?
    Please guide on this issue.
    Regards,
    Piyush

    Hi,
    Creating an ERS zero document is an expected system behavior ,you           
    could create an ERS zero document by doing the following wrong           
    procedure:                                                                               
    1. Create PO with ERS falg ON.                                           
    2. Perform GR for PO.                                                    
    3. Create the invoice by MIRO.(Not MRRL).                                
    4. Run MRRL (LIV-ERS).                                                                               
    For every purchase order with flag 'ERS' a table entry is generated.     
    If a goods receipt is posted, this GR should be invoiced via ERS         
    (Tr. MRRL). Manually posted invoices should be avoided, because          
    the table entry will not be deleted. A new invoice receipt must be       
    created while running ERS (but with amount and quantity zero and without 
    FI documents) in order to give a message to the vendor because he        
    has sent you an invoice by mistake.                                      
    Could you please check also the note:1069215
    Best regards
    Erika

  • Not able to see document when I click Generate Document link in SSHR

    Hi,
    I have created a 'Generate Document' link on 'Change Hours' page of SSHR.
    But When I click on that link,I am seeing a blank screen and could not get the document.
    Please help me in this tio resolve the issue.
    Thanks,
    Srinivas

    Dear Srinivas,
    Since I am not able to understand the specifics of the SSHR Page, its slightly difficult to suggest something. If you can share the technical details of the page, it might be easier to make a guess. Btw, in case this is standard page behaviour, Oracle Metalink might be a place to look out for resolution.
    Regards
    Sumit

  • F.13 automatic clearing question and F-03 generate document question

    Hi Experts,
    I have two questions below.
    1. What's difference between F.13 and F-03?
        Due to when I use F.13 to automatic clearing GL account, we found out that the system generates docuemnt has content.
    (use Fb03, check the document number and found out the Dr and Cr account)
    But when I use F-03 to manual clearing GL account, but we found out the system generate  document has not any content.
    (Use FB03 to check the document number, but I cannot found out the Dr and Cr account)
    2.I intend to use F.13 to automatice clearing one GL account. My question is that whether the system could use FIFO to automatice clear document under matching condition.
    Regards,
    H.J.

    Hi,
    I follow up your suggestion to set rule of automatic clearin on OB74.
    Criteria 1 : ZUONR (Assignment field)
    Criteria 2 : GSBER (Business Area)
    Criteria : VBUND (Trading Partner)
    I had to set up the above criteria.
    how to add up (0.00) for setting?
    Regards,
    H.J.

Maybe you are looking for