Webdynpro print functionality, Hide URL at bottom of page

Hello,
I have made a application where I am generating a simple HTML/String text page for user.
Below is code :
byte[] content = new byte[4028];
try {
     content = this.displayPrint().getBytes("UTF-8");
     wdContext.currentContextElement().setHtmlFile(content[0]);
IWDWindow win = wdThis.wdGetAPI().getComponent().getWindowManager().createNonModalExternalWindow(WDWebResource.getWebResource(content, WDWebResourceType.HTML).getURL(),"Employee Details");
win.setWindowSize(600,600);
win.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);
win.removeWindowFeature(WDWindowFeature.MENU_BAR);
win.open();
I am getting a new popup page with desired text. User can select print button from window toolbar.
The problem is with printable output page.
A URL is attached at bottom of printout.
How can I get it removed.
Thanking you in anticipation.

I have just checked that in output HTML screen at client side has a print option which he uses to give print of current HTML page.
Now at client side if I select "Print Preview" and then select "Remove header and footer".
Then my problem is solved.
But how can I control this from web dynpro java application.

Similar Messages

  • Print without site URL at bottom

    Hi all,
    I have one application where it displays some content. i have implemented pring functionality for the page using javascript:print(). if i print the page the site URL is printed at footer. is there any way to avoid this footer
    solution will be given points

    Unfortunately, you cannot do it from CSS meant for printing. It is a browser setting and needs to be done on the page setup functionality in the browser.
    <a href="http://css-discuss.incutio.com/?page=PrintStylesheets">Check this</a>
    Pradeep.

  • Print Function in webDynpro

    Dear VS and All
    Pls guide me how to take print in webdynpro
    Send me the code one by one i.e From the scratch.
    B'cos i am new to webDynpro.
    So for i didn't get clear idea.
    Regrads
    Dhinakar

    Hi,
    Implementing print in Webdynpro is possible.Please have a look at the following thread
    Re: How to start the Print function in webdynpro
    Regards,
    Vijith

  • Print Functionality in Webdynpro Java

    Hello,
    I have a created a Webdynpro Java Application in which i want to give the 'Print Functionality' to the users.....how can i implement the same in webdynpro..../?
    Any help would be highly appreciated...
    Regards,
    Shikhil

    hi
    check this blog on print functionality , 
    /people/ritushree.saha/blog/2009/07/02/webdynpro-java-printing-using-nw-2004-2004s
    the above blog you can go through , just use the code and work on print functionality in webdynpro java.
    hope this bolg should certainly solve your problem.
    Thanks

  • Hide URL in PDF output in hyperlink , Maintain History within reports

    hi
    i have some issues to discuss for report output in pdf format.
    we are using java application to call reports via AS 10g, my issue are
    1) Hide URL in PDF output for hyperlink created.(Using username/password in Key is not enough)
    2) Maintain history as i call second report from my parent report then i want to go back to parent report.(Note here go.history or history.go(-1) work in HTML output format but not in PDF)
    3)To Call Child PDF report in new window(here again working fine target="_blank" for HTML output but not for PDF)
    regards
    abid

    Hi Ram,
    Not sure if this is possible.
    However, one workaround might be the following:
    1. Write a javascript that submits the URL using, say a POST method, and does not show the parameters in the URL. You will have to write this javascript code in the "Before Report" Report Escape. For a generic example on how to use javascript in a report, see Metalink Note 125652.1. This note shows javascript to disable the right-click of the mouse on the report output.
    2. Use the Hyperlink peroperty of the report to call this javascript function, eg,
    javascript:myfunction('http://machine:port/reports/rwservlet?report=...+server=...+empno=&empno')
    I am not a javascript expert, so I cannot give you an example of the function, but I hope someone in your team can find out.
    Navneet.

  • How do I display or hide a Java menu based on current url in a php page

    How do I display or hide a Javascript menu based on the current url in a php page?
    I want to specify when a java menu appears on a page based on the current url - does anyone have a script for the vars and conditional statements to make this happen - it would be something like this in natural language:
    <javascript>
    if currenturl = http://jemmakidd.com/categories.php
    then displaymenu
    else if currenturl = http://jemmakidd.com/categories.php?cat=14 (or 15,16 etc)
    then DONOTdisplaymenu
    What is needed is that, if you look at this page there is a java menu under the first category:
    http://jemmakidd.com/categories.php
    I WANT the menu to appear on that page so that is working, however if I look at one of the store categories, like on this page, I do NOT want the menu to appear - it may be that this can be done without using a java current url type function - thats why I'm asking...
    http://jemmakidd.com/categories.php?cat=14
    So to summarise:
    http://jemmakidd.com/categories.php (If this url is used DO display menu - if any other url DONT display menu)
    Thanks again...any ideas?
    Edited by: littlealex2009 on Jul 15, 2009 12:51 AM

    This is a Java forum, not a Javascript forum. Google the differences.
    kind regards,
    Jos

  • Printing function gets called twice..!

    The following is my class that prints a string array which sometimes goes into multiple pages.. The code in which i create the multiple pages is below this class.. the problem is each time i append a new page to the book the print function in the class PaintC is called twice.. so if I write some additional code inside the print function to edit the strings .. it ends up running twice and the formatting i try to do gets messed up.. !! do you guys know why this is happening..? Please help.. ive been trying to find out since a very long time..!!
    The code in which i call this function is also shown below
    CLASS FOR PRINTING
    class PaintC
        implements Printable {
      String ad[];
      public PaintC(String ac[]) {
        System.out.println("Print Class Called 1");
        this.ad = ac;
      public int print(Graphics g, PageFormat pf, int pageIndex) throws
          PrinterException {
        System.out.println("Print Function Called 1");
        Graphics2D g2 = (Graphics2D) g;
        g.setFont(new java.awt.Font("Trebuchet MS", Font.PLAIN, 8));
        int xo = 60;
        int yo = 36;
        for (int y = 0; y < 76; y++) {
          try {
            g2.drawString(ad[y], xo, yo);
            yo += 9;
          catch (Exception r) {
            y = 76;
        return Printable.PAGE_EXISTS;
    CODE FOR CREATING MULTIPLE PAGES USING ABOVE CLASS
    void dotheprint() {
        PrinterJob printerJob = PrinterJob.getPrinterJob();
        PageFormat format = new PageFormat();
        Printable painter1;
        format = printerJob.defaultPage(format);
        Paper paper = format.getPaper();
        paper.setImageableArea(60, 36, 500, 756);
        format.setPaper(paper);
        // try storing in a string array each line
        Book bk = new Book();
        String ab = jTATRRep.getText();
        int i, j, lc = jTATRRep.getLineCount();
        String ac[] = new String[lc + 3];
        String ad[] = new String[78];
        ac = ab.split("\n");
        //System.out.println("Number of Lines = " + lc);
        //setting up pages as string arrays..
        // setting up first page
        //Assuming 76 lines per page
        for (i = 0; i < 76 && i < lc; i++) {
          try {
            ad[i] = ac;
    catch (Exception ex) {
    bk.append(new PaintC(ad), format);
    ad = null;
    // setting up second page if neccessary
    // //System.out.println("Number of Lines /76= "+lc/76);
    int pagec = lc / 76;
    int modul = lc % 76;
    int k;
    if (modul > 0) {
    pagec++;
    // //System.out.println("Number of pages : "+pagec);
    j = 76;
    while (pagec > 1) {
    ad = new String[76];
    k = 0;
    for (i = j; i < (lc - 1) && k < 76; i++) {
    // //System.out.println("ac[i]= "+ac[i]);
    ad[k] = ac[i];
    k++;
    bk.append(new PaintC(ad), format);
    ad = null;
    j += 76;
    pagec--;
    printerJob.setPageable(bk);
    boolean doPrint = printerJob.printDialog();
    if (doPrint) {
    try {
    System.out.println("Print Called 1");
    printerJob.print();
    System.out.println("Print Called 2");
    catch (PrinterException exception) {
    System.err.println("Printing error: " + exception);
    CODE IN WHICH THE PRINT FUNCTION IS CALLED
    void jBPrint_actionPerformed(ActionEvent e) {
        dotheprint();
    class ContactManager_jBPrint_actionAdapter
        implements java.awt.event.ActionListener {
      ContactManager adaptee;
      ContactManager_jBPrint_actionAdapter(ContactManager adaptee) {
        this.adaptee = adaptee;
      public void actionPerformed(ActionEvent e) {
        adaptee.jBPrint_actionPerformed(e);

    You might want to check out the [url http://forum.java.sun.com/thread.jsp?forum=57&thread=500687&tstart=0&trange=15]crosspost in the swing forum before spending your time answering this question.

  • How to write printing function using JSP?

    dear all,
    i want to add a printing function in my project but i do not know how to do it? could anyone teach me how to do it?
    thanks
    eric

    salut eric,
    you can do it this way :
    1 - create a html link in your code to this javascript
    function : (I am using Struts, but you can write it in
    pure html
    <html:link href="#bodyStart"
    onclick="openWindowForPrinting()"
    titleKey="msg.status.print">      <bean:message
    key='app.print' />
    <script language="JavaScript">
    <!--
    window.open = SymRealWinOpen;
    //-->
    </script>
    </html:link>
    >
    >
    2 - here is the javascript function : it open a window
    with the "print.jsp" page.
    function openWindowForPrinting(){
    window.open('/your_project/pages/common/print.jsp','',
    'left=150, top=150 , status=no, directories=no,
    toolbar=no, menubar=yes, location=no, scrollbars=yes,
    resizable=yes, dependant=yes');
    3 : here is the print.jsp page : You have only to
    create a session variable called
    "currentBodyRelativeLocation", which content the
    relative URL to the page you want to print (for
    example, the boby of the current page).
    <%@ taglib uri='/WEB-INF/tlds/perso.tld'
    prefix='perso' %>
    <html>
    <head>
    <perso:csslink page='${cssRelativeLocation}' />
    </head>
    <body onload="var SymTmpWinOpen = window.open; window.open = SymWinOpen; printPage();; window.open = SymTmpWinOpen;">
    <body>
    <jsp:include page="${currentBodyRelativeLocation}"/>
    </body>
    <script language="JavaScript">
    <!--
    window.open = SymRealWinOpen;
    //-->
    </script>
    </html>
    <script language='javascript'>
    function printPage(){
    window.print();
    window.close();
    </script>
    hai,
    i'm not very understand how is your code work. when i write html code, do i need to mind about this code: "msg.status.print" ? what is this code mean?
    i have too much question on this thing. would you mind to be further explain to me? or is it any reference for me to refer? i'm really new to write printing function on JSP.
    i never write this function before. i'm feel so lost.....:(
    thanks again
    eric

  • Print Functionality in CE NWDS

    Hello Gurus ,
    I had a situation in using Print Functionality .
    I had CE- NW 7.10 Server Application in which I had used the Print Fucntionality by using the
    WDPrintService.getPrintService().print(wdThis.wdGetAPI());
    Now I am trying to run this application on NW 7.0 server by making this as a Federated Portal Iview . ON doing so , I encounters 2 difficulties :
    1. The Print fucntionality button which is working fine in case of CE 7.1 is no showing as Print Operation not supported .
    2. Secondly Just before onclick on Print Button action , I am presented with a new Browser window , which asks for the Login credentials of CE server , since my FPN iview resides there  . and once I am done with login , it throws me the exception in Portal , I check he logs in NWA of CE server coz that is where the Iview is running .
    Here are the atached logs :
    Caused by: com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Unable to parse template &#39;&lt;System.scheme&gt;://&lt;System.servername&gt;:&lt;System.serverport&gt;/webdynpro/dispatcher&lt;Request.DistributionZone&gt;/sap.com/pb/PageBuilder;jsessionid=&lt;Request.JSessionID&gt;?sap-ext-sid=&lt;ESID[url_ENCODE]&gt;&amp;sap-wd-cltwndid=&lt;ClientWindowID&gt;&amp;sap-wd-tstamp=&lt;$TimeStamp&gt;&amp;PagePath=&lt;FPN.PCDHomeLocation[url_ENCODE]&gt;&amp;sap-pp-producerid=&lt;producerID&gt;&amp;sap-pp-consumerBaseURL=&lt;Request.BaseURL[url_ENCODE]&gt;&amp;sap-wd-app-namespace=zzzz&amp;sap-ep-version=&lt;Request.Version[url_ENCODE]&gt;&amp;sap-locale=&lt;Request.Locale&gt;&amp;sap-accessibility=&lt;User.Accessibility[SAP_BOOL]&gt;&amp;sap-rtl=&lt;LAF.RightToLeft[SAP_BOOL]&gt;&amp;sap-explanation=&lt;User.Explanation[SAP_BOOL]&gt;&amp;sap-cssurl=&lt;LAF.StylesheetUrl[url_ENCODE]&gt;&amp;sap-cssversion=&lt;LAF.Version[url_ENCODE]&gt;&amp;sap-epcm-guid=&lt;EPCF.RemoteGuid&gt;&amp;com.sap.portal.reserved.wd.pb.restart=&lt;Node.Mode.isRefresh&gt;&amp;DynamicParameter=&lt;DynamicParameter[PROCESS_RECURSIVE URL_ENCODE]&gt;&amp;&lt;ForwardParameters[QUERYSTRING]&gt;&amp;&lt;User.&quot;com.sap.tc.webdynpro&quot;.debugParameters&gt;&#39;; the problem occured at position 0. Cannot process expression &lt;System&gt; because Unable to lookup System &amp;#39;CED&amp;#39;.
    Please check the system object and the alias.
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContentPass(AbstractIntegratorComponent.java:156)
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContent(AbstractIntegratorComponent.java:130)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:200)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher$5.service(RequestDispatcherFactory.java:308)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher.service(RequestDispatcherFactory.java:298)
    at com.sap.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:278)
    ... 65 more
    +++++++++++++++++++++++++++++++++++++++
    3. shall I had to maintain the SSO ticket for tow portals in ach other  ...
    Please suggest ..........
    Regards
    Sandeep

    Hi
    Have a look on this similar thread.
    Best Regards
    Satish Kumar

  • HCM Process and forms - Print function?

    Hello!
    Is there any print function integrated in the HCM Process and Forms? I don't find a button in WebDynpro area (ASR_PROCESS_SHOW)?
    Is it possible to show the standard Adobe menue bar? There is a print button? At the moment i only have left a bar where I am able to put comments to the form, etc.
    Thanks for input!
    Best greetings,
    Gregor

    Hello!
    Is there any print function integrated in the HCM Process and Forms? I don't find a button in WebDynpro area (ASR_PROCESS_SHOW)?
    Is it possible to show the standard Adobe menue bar? There is a print button? At the moment i only have left a bar where I am able to put comments to the form, etc.
    Thanks for input!
    Best greetings,
    Gregor

  • Using Photoshop CS6 and after printing approx. 10 cards on an Epson R3000 printer the program gives me a dialog box saying "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened an

    Using Photoshop CS6 and after printing approx. 10 cards on an Epson R3000 printer the program gives me a dialog box saying "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents."  Even after closing and reopening the program, the print command is greyed out so I cannot select any printer. This also happens with a Brother laser printer. Both printers will produce a test page out side of the Adobe product. Help!

    I cannot get any help either.  I get the message "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents."  I have reinstalled all drivers, powered off/on all printers (2 of them - a Brother HL - 4040cn and an Epson Stylus Pro 7890 - which all worked fine until this morning).  There appears to be no path to a solution.  I have read all the forums and tried about 20 different suggestions all to no avail.  Reboots, changing cables, reinstalling printers and drivers and Photoshop CS6 - ALL TO NO AVAIL.  On a macbook pro retina with 10.10.3.  This issue is out there and some get solutions - but not all - that's my crowd...the not all crowd.  I have yet to be able to print from CS6 any more.  This is a show stopper and my patience is wearing thin.  And I'm tired of stupid questions like "is your printer powered on?" give me a break.  This appears to be an adobe photoshop cs6 problem - as I can print from every other application.  Anyone have any ideas?  Adobe should have something?... Adobe system  info below:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Mac OS 10.10.3
    System architecture: Intel CPU Family:6, Model:58, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2300 MHz
    Built-in memory: 8192 MB
    Free memory: 4665 MB
    Memory available to Photoshop: 7059 MB
    Memory used by Photoshop: 70 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Version: 2.1 NVIDIA-10.2.7 310.41.25f01
    OpenCL Version:
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GT 650M OpenGL Engine
    Display: 2
    Display Depth:= 32
    Display Bounds:=  top: 1072, left: 140, bottom: 1950, right: 1580
    Video Renderer ID: 16918311
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    OpenGL Version: 2.1 NVIDIA-10.2.7 310.41.25f01
    OpenCL Version: 1.2 (Feb 27 2015 01:29:10)
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GT 650M OpenGL Engine
    Display: 1
    Main Display
    Display Depth:= 32
    Display Bounds:=  top: 0, left: 0, bottom: 1050, right: 1680
    Video Renderer ID: 16918311
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 92629107631240972642
    Application folder: KerrysHD:Applications:Adobe Photoshop CS6:
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      KerrysHD, 232.6G, 19.7G free
    Required Plug-ins folder: KerrysHD:Applications:Adobe Photoshop CS6:Adobe Photoshop CS6.app:Contents:Required:
    Primary Plug-ins folder: KerrysHD:Applications:Adobe Photoshop CS6:Plug-ins:
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.19243   66.492997
       AdobeAGM.framework   AdobeAGM   4.26.17.19243   66.492997
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.19243   66.492997
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.492997
       AdobeCoolType.framework   AdobeCoolType   5.10.31.19243   66.492997
       AdobeCrashReporter.framework.framework   AdobeCrashReporter   6.0.20120201  
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206  
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   4.0.93   66.496052
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   6.0.0.1654  
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   6.0.0.75  
       boost_date_time.framework   boost_date_time   6.0.0.0  
       boost_signals.framework   boost_signals   6.0.0.0  
       boost_system.framework   boost_system   6.0.0.0  
       boost_threads.framework   boost_threads   6.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.0.5.19287   145486
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0  
       dvacore.framework   dvacore   6.0.0.0  
       dvamarshal.framework   dvamarshal   6.0.0.0  
       dvamediatypes.framework   dvamediatypes   6.0.0.0  
       dvaplayer.framework   dvaplayer   6.0.0.0  
       dvatransport.framework   dvatransport   6.0.0.0  
       dvaunittesting.framework   dvaunittesting   6.0.0.0  
       dynamiclink.framework   dynamiclink   6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1652  
       mediacoreif.framework   mediacoreif   6.0.0.0  
       PlugPlug.framework   PlugPlug   3.0.0.383  
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework        
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

  • Cant find print function windows 8 and adobe reader

    I have windows 8 and adobe reader 9.5. how do i print?

    I resolved my issue! The new app format with windows 8 takes time to master. The adobe reader does not have a friendly toolbar. No print function on the bottom tool bar when all other actions except printing are noted. I finally decided to check my main side tool bar and there was my printer seeing the adobe file and ready to print. So I resolved my issue but very much appreciate your reaching out to help me. Thank you!

  • Disabling the Print function because of blank required fields

    The form created has required fields, if one or any of these fields is not answered I would like the 'Print' function disabled and a explanation popup for the users to see why. I noticed that the Email button won't work and a popup appears if any of these fields is left blank.
    Any help?
    Frank

    Required fields should prevent submitting. They do not prevent the
    user printing, because a user can print at any time. You cannot
    selectively prevent printing at all (and what if a user wanted to
    print out a partial form for discussion, evidence, or problem
    reporting?) Adobe's programmers have clearly thought in terms of
    enabling users, not restricting their experience. Right or wrong.
    What you COULD do is have a printable but hidden field which says in
    large letters that the form is incomplete, do not accept. Checking
    scripts can hide the form from printing when conditions are met.
    You could also wait to be notified of printing, and warn the user that
    their printout is unacceptable.
    Aandi Inston

  • What is support pack for NW04 for print functionality

    what is support pack for NW04 for print functionality????

    Hi Kavita,
    printing is no fun with web dynpro, as the web-centric solution to useJavaScript is not supported in WebDynpro.
    I've spend lots of time with this issue and my experience is that if you want to get a proper printout you will have to rebuild the page (e.g. with XML) and render a printable version (e.g. with XSLT). Every other solution might work but will look crappy.
    regards,
    Christian

  • Enabling the printing function of your HP Laserjet M1005 printer

    If you wonder how to install the printing function of your HP Laserjet M1005 printer, here is listed a bullet list of the actions. This has just been tested out thanks to the Support team from Germany
    Go to the page http://h20000.www2.hp.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=1 839459&lang=en&cc=us&prodTypeId=18972&prodSeriesId=1839458&taskId=135 and select the link Mac OS X; download the link "HP LaserJet M1005 MFP Mac OS X Full Software Solution"
    Use the opportunity to update your printer firmware by selecting the link "Printer Firmware Update"
    Shutdown your Mac and start up in the safe boot mode (should be the combined keyboard shift and power on/off - refer to the Apple web site for details)
    Run the downloaded SW package listed in the step 1
    Go and select under system settings printer and fax, follow the step-by-step instructions to have a printer installed
    Shutdown your Mac and start up again in the safe boot mode
    Connect your printer and the printer SW installation message shoud pop up requesting you to install it
    SW download process should appear and run
    Be aware that just the printing function will be available - no scanning function so far
    For those who may be interested in knowing why safe boot mode: it is likelz that my anti-virus SW Kaspersky denied the installation.
    Continue to enjoy your HP Laserjet M1005 printer

    "For those who may be interested in knowing why safe boot mode: it is likelz that my anti-virus SW Kaspersky denied the installation."
    You should read this:
    http://www.reedcorner.net/mmg-antivirus/

Maybe you are looking for