How can I print document, based on user define template (Report Layout)?

I want to be able to choose report layout, and print a document based on it. Can I implement it in my SDK code?

Hi Shrem,
I don't think this is possible with SDK code and PLD. You can do this if you're using a standard Crystal Report layout and you just send code to it using your code. Otherwise you can try and do this with user reports and queries in SBO itself without the SDK. But you're going to have to make all your layouts with more or less the same query and have where statements that limits the rows that shows on the report.
Hope it helps,
Adele

Similar Messages

  • How can i share documents with different users on the same mac?

    How can i share documents with different users on the same mac?

    Shared how? The other users can read the documents or you all can read and write the documents?
    The first is easy just place the documents in /Users/Shared anyone can access the files there and the other users will be able to read them.
    The second is a bit trickier.

  • How can 1 make an object of user defined class immutable?

    Hi All,
    How can one make an object of user defined class immutable?
    Whats the implementation logic with strings as immutable?
    Regards,

    Hi All,
    How can one make an object of user defined class
    immutable?The simple answer is you can't. That is, you can't make the object itself immutable, but what you can do is make a wrapper so that the client never sees the object to begin with.
    A classic example of a mutable class:
    class MutableX {
        private String name = "None";
        public String getName() {
            return name;
        public void setName(String name) {
            this.name = name;
    }I don't think it's possible to make this immutable, but you can create a wrapper that is:
    class ImmutableX {
        private final MutableX wrappedInstance;
        public ImmutableX (String name) {
            wrappedInstance = new MutableX();
            wrappedInstance.setName(name);
        public String getName() {
            return wrappedInstance.getName();
        // Don't give them a way to set the name and never expose wrappedInstance.
    }Of course, if you're asking how you can make your own class immutable then the simple answer is to not make any public or protected methods that can mutate it and don't expose any mutable members.
    Whats the implementation logic with strings as
    immutable?
    Regards,I don't understand the question.

  • How can I print Essbase database notes information in Financial reports?

    How can I print Essbase database notes information in Financial reports? As a requirements, I need to print certain database information in reports such as application refresh date/time and data source - from where my database is updated from.
    Edited by: 872346 on Jul 13, 2011 1:50 PM

    Unfortunately, none of those text functions are going to pull the database note. Hardly anything does other than the add-in.
    Maybe the OP could stick that information into an LRO? Then he could use CellText to get the info out.
    Regards,
    Cameron Lackpour

  • How can I print documents from my MAC or iPad selecting page Sizing and Handling?

    How can I print a document from my MAC or Ipad selecting page Sizing and Handling?

    How to Print from Your iPad: Summary of Printer and Printing Options
    http://ipadacademy.com/2012/03/how-to-print-from-your-ipad-summary-of-printer-an d-printing-options
    Print from iPad / iPhone without AirPrint
    http://ipadhelp.com/ipad-help/print-from-ipad-iphone-without-airprint/
    How to Enable AirPrint on a Mac and Use Any Printer
    http://ipadhelp.com/ipad-help/how-to-use-airprint-with-any-printer/
    iPad Power: How to Print
    http://www.macworld.com/article/1160312/ipad_printing.html
    Check out these print apps for the iPad.
    Print Utility for iPad  ($3.99) http://itunes.apple.com/us/app/print-utility-for-ipad/id422858586?mt=8
    Print Agent Pro for iPad ($5.99)  http://itunes.apple.com/us/app/print-agent-pro-for-ipad/id421782942?mt=8   Print Agent Pro can print to many non-AirPrint and non-wireless printers on your network, even if they are only connected to a Mac or PC via USB.
    FingerPrint turns any printer into an AirPrint printer
    http://reviews.cnet.com/8301-19512_7-57368414-233/fingerprint-turns-any-printer- into-an-airprint-printer/
     Cheers, Tom

  • How can I share documents with other users from iWork?

    With iWork.com no longer in existence, how can I share large documents with other users? 

    Dropbox works pretty well for sharing.
    Jerry

  • "Create Comment Summary" not showing in Pro 10.1.7?? How can I print document and comments with connector lines on single page?

    Adobe's instructions for Acrobat X Pro say that to print the document with connector lines on the same page, I should go from the menu to "Print With Comments Summary." I'm using version 10.1.7 and that option doesn't show up. My menu bar looks like this:
    and my print dialog box looks like this:
    And if I go to Commenting under Preferences I get this:
    I don't see any of the comment printing options Adobe refers to in their instructions. Am I looking in the wrong place for the option to print comments on the same page as the document? Or is there some reason this is not available?

    Hey Dan,
    With this call:
    DAQmxErrChk ( DAQmxCreateDOChan( taskhandle, "Dev1/PFI0:7","", DAQmx_Val_ChanForAllLines ) );
    You're trying to write to the PFI lines, which are part of port 1. Only the 8 lines on port 0 "Dev1/port0" support clocked/correlated DIO, port 1 only supports static/SW timed DIO (which is what you are using) and counter timer opperations. To do buffered output, check out the Cont Write Dig Port-Ext Clk shipping example at:
    C:\Documents and Settings\All Users\Documents\National Instruments\NI-DAQ\Examples\DAQmx ANSI C\Digital\Generate Values\Cont Write Dig Port-Ext Clk
    when you use this, you'll need to specify an external clock - M-Series DIO does not have its own timing engine so it has to get its clock signal from somewhere else. Most just use an onboard counter to generate a clocking signal, so the Dig-Pulse Train Cont example under counters can be combined with this.
    Most of this is covered in the M-Series user manual, though I realize its not exactly lite reading
    Hope this gets you started,
    Andrew S
    Message Edited by stilly32 on 03-26-2008 05:28 PM
    Getting Started with NI-DAQmx
    Measurement Fundamentals

  • How can you print a single page of a multipage report.

    I am using Office 2003 pro, the LabVIEW Report Gen Toolkit, LabVIEW 7.0, and Windows 2000. I have created a lengthy report with the first page being a summary. I would like the user to be able to select; print the entire report, or just the first page. Any ideas?

    There are two ways you could go about doing this. They both are somewhat straight forward.
    1) Calling a macro from LabVIEW in Word.
    You could create a macro that would let you just print the first page and call this from LabVIEW when the user so desires. There is an example of how to call a macro if you use the example finder. Goto
    Toolkits and Modules>>Report Generation for Microsoft Office>>Run Macro on Word Table
    2) You can actually modify the print VI that comes shipped with LabVIEW. For Microsoft Word it is called Work_Print.vi and it is located with in the exclsub.llb. This can be found at..
    ..\Program Files\National Instruments\LabVIEW 7.1\vi.lib\addons\_office\_exclsub.llb
    You can also find this by digging through the Print Report.vi
    Inside this VI you will see an Invoke node that has the fields To and From. If you specify the start and end page here, by connecting integer controls or constants, this will let you specify the pages to be printed out.
    NOTE: If you modify the Work_Print.vi you may want to save it outside of this library and locally to your application directory. Therefore make sure any report VI you are using within your app. now dynamically references this local version of Word_Print not the one in the report library.
    Please don't hesitate to let me know if you need more information or a more descriptive explanation.
    Have a great day!
    Allan S.
    National Instruments
    Applications Engineering

  • How can I print some pages from multipage report

    Hello,
    I have created a multipage report in word. I would like the user to be able to print the pages selected (as in word printing: pages: 1, 2-3); 
    I am using Office 2007 pro, the LabVIEW Report Gen Toolkit, LabVIEW 2009, and Windows XP.
    I used the suggestion in thread:
    http://forums.ni.com/t5/LabVIEW/How-can-you-print-a-single-page-of-a-multipage-report/m-p/155233 , modifying the print VI that comes shipped with LabVIEW: NI_ReportGenerationToolkit.lvlib:Word_Print.VI.
    first of all I put two integer constants on "From" and "To" in the Invoke node (PrintOut), but Labview return an error:
    Error 1015 occurred at NI_ReportGenerationToolkit.lvlib:Word_Print.vi -> NI_Word.lvclassrint Report.vi -> print2.vi
    Then I searched for PrintOut Method in word 2007 Reference guide, and I saw that for using From and To the Range field must have the string  wdPrintFromTo;
    I insert wdPrintFromTo string  in RANGE Field and tryed.... same error......
    After that I change approach; removed all constants and used the field Pages; I put a string "1-2" connected to this field and now the printer respond, but all pages was printed!
    What's wrong?
    many thanks
    Attachments:
    print2.vi ‏18 KB
    parte comune.doc ‏43 KB

    Thanks, Alex!
    ok, I try first approach in print4.vi, but Labview return an error (view jpg); if I cut From, To controls, the VI print all pages. The same things happen also if I trasform I32 in Variant.
    I don't try second approach, because at this time I have only one report
    I try also with VB macro: this is better (print3.vi) but.....if I use:
    Sub Print_Pages_From_To()
    ActiveDocument.ActiveWindow.PrintOut Range:=wdPrintFromTo, From:="2", To:="3"
    End Sub
    is ok; print the pages selected; if I use:
    Sub PrintPages()
    ActiveDocument.ActiveWindow.PrintOut  Pages:="2-3"  
    End Sub
    printer print all pages.
    what do you think?
    regards,
    Italo
    Attachments:
    print Problem.jpg ‏39 KB
    print4.vi ‏19 KB
    print3.vi ‏19 KB

  • How can I print a whole email document and not a "screen shot" like I get in the Print Preview option.

    How can I print a whole email document and not a "screen shot" like I get in the Print Preview option. I'd like to print from "file" and print" like I can on other browsers (IE, for example). When I try to print from Firefox it grabs all my info (file folders, etc.) from the left side of the page. I need just the email information, not the entire screen information. Thank you!
    -Bruce

    I agree; I should, but I can't :) I have an orange Firefox drop down that I go to to print, and it allows me to select "print", "print preview" and "print setup", where I can change the margins. It always defaults to a full screen shot (I use Yahoo) and does not show just the email. I don't need to print what is on the left side of the screen or anything other than the email (I can achieve these things by using file-print from IE, so I know it is doable, and I am still going into Yahoo and using their email when I do it).
    Hope this helps. I'm not a fan of IE, but I really don't like the print properties I'm getting here (I'm a long time Mozilla user, but I'm losing too much info with this option and can't afford that anymore).
    Thanks for the help!
    -Bruce

  • How can I print a document on my iphone to a printer if I do not have an air printer?

    How can I print a document/photo etc that is one my iphone to a printer which I use with my Windows computers?  My printer is a Lexmark X4550 Wi Fi

    Sorry based on this link IOS: air print 101 http://support.apple.com/kb/ht4356  your printer is not compatible.
    You can take email yourself the photos and then print it out that way.

  • How can I print ONLY the active document?

    Whenever I go to File/Print the darn PSE 9 program sends all of the working files in the bin to the printer. I've searched online for 2 hours now looking for an answer.
    I like to work with having several to many files in the 'bin' and prefer to only print the active file I'm currently working on without having to close the 'working files' before I can print. How can I print ONLY the active document or file in the project bin? Please help, I've upgraded from PSE 3 to PSE 9 and really like the updated features, but this one pain in the neck default is getting the best of me.

    Thanks for your help, that works nicely. It is good to have control of the printer again.

  • How can I print a pages document in book format ..order?

    How can I print a pages document in book format ..order?

    This is usually a function of the driver you're using. Have you looked in the various PDEs for black and white or grayscale? What kind of printer are you using?

  • How can I print an envelope from a Pages document ?

    How can I print an envelope from a Pages document?

    Not from a document, but there are envelope templates in Pages you can use.

  • How can I print a document from "workspace?"

    How can I print a document from "workspace?"

    1. Buy a AirPrint enabled printer; see list below
    http://support.apple.com/kb/ht4356
    2. Run the CD provided and setup as network printer; this will setup your printer to the same network as your iPad
    http://i1224.photobucket.com/albums/ee374/Diavonex/1a30ee42.jpg
    3. Start printing from your iPad without wire
    http://i1224.photobucket.com/albums/ee374/Diavonex/93ec77e5.jpg

Maybe you are looking for