Condensed mode printing  in graphic mode printers

Dear sir.
I am using Reports-6i as developer tool.
while developing reports i use to run in character mode,
Before generating the report i will pass prt file, and also before printing code
should be condensed.
The report get printer in dot matrix printer as condensed mode ,
What i need is the same should print in HP desk jet or any graphic mode printers
by taking care of software.
please guide in this regard.
mathapati.

Please try the following:
1) in printer settings, in advanced tab "print directly to the printer" must be selected.
Hope this helps.
Bob

Similar Messages

  • How to print the script in condensed mode

    Hi to all,
    Pls help me.
    How to print the script in condensed mode and particular window only print in the condensed mode.

    Hi,
    Hi
    It will remove the blank spaces in front of the variable
    and if you use the extension NO-GAPS
    It will remove all the blank spaces in the variable field.
    DATA: ws_val1 type char12.
    ws_val1 = ' 100 123'.
    Condense ws_val1.
    Write / ws_val1.
    Condense ws_val1 no-gaps.
    write / ws_val1.
    It will give output as
    100 123
    100123
    The CONDENSE statement deletes redundant spaces from a string:
    CONDENSE c NO-GAPS.
    This statement removes any leading blanks in the field c and replaces other sequences of blanks by exactly one blank. The result is a left-justified sequence of words, each separated by one blank. If the addition NO-GAPS is specified, all blanks are removed.
    Please check this link for sample code.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb33e6358411d1829f0000e829fbfe/content.htm
    Regards,
    Raj.

  • Matrix report in condensed mode in dot matrix printer

    How can we print a 10g matrix report in condensed mode in dot matrix printer? The dot matrix printer is a Epson LQ 1070+ printer. I am tried using a printer definition file and given printer codes in the report. The printing is not taking place in condensed mode. This method however is working for other reports. Could any one help?
    Regards,
    Jayram
    Edited by: jayramkumars on Feb 6, 2009 12:11 AM

    Hi all,
    This is to inform that I have myself found the solution. It is possible to print matrix report in condensed mode. The method for printing is same as for any other report. The mistake I made was not checking whether the .prt file is getting referred correctly. The DESFORMAT system parameter was getting populated through the calling form. By referring to the correct .prt file the problem got fixed.
    Regards,
    Jayram

  • Zreport print in condense mode

    Hi Guru,
    I'm trying to print my Zreport (i.e. classic view) using zdevice type, it prints in condense mode where as the same report print in development its print without condense. I'm check all setting its same on both server i.e. development and production. Help me.
    Gokul
    Edited by: Gokul Borse on Apr 10, 2011 1:57 PM

    Hi Gokul Borse      
    For Lable printing better u can use the Sap Sprint method S,
    1. First configure the printer any one of the Pc or Server( windows os). in that just install the Saps-print server which is available in the service market place.
    2. In SAP T code SPAD setting Device type :EPESCP,
                                                   Host Spool Access method - S Print Using SAP Protocol
                                                    Host Printer name - ( In which pc running Sap S print server one that printer name)
                                                 Destination host - (Ip address or DNS Name for the PC or Server in which the SAP S print server running)
    Try this
    regards
    Sriram

  • Report in Condensed Mode

    I want to print report somewhere in condensed and somewhere in bigger font. I also would like to control the page setup and printer (form feed, eject etc) programatically. I haev seen the prt file but unable to use it. Can someone send me a sample report file for my reference. Please mail me to [email protected]
    Thank you,
    Dwijesh, India

    Hi all,
    This is to inform that I have myself found the solution. It is possible to print matrix report in condensed mode. The method for printing is same as for any other report. The mistake I made was not checking whether the .prt file is getting referred correctly. The DESFORMAT system parameter was getting populated through the calling form. By referring to the correct .prt file the problem got fixed.
    Regards,
    Jayram

  • Printing a graphic with a gradient mask in Flex 3-problem

    Hello, I am fairly new to flex development. I am puting together a little program that allows the user to upload a picture add a vignette mask in order to achieve a soft edge,  and have a problem I cannot  find an answer anywhere, maybe someone could help me please.
    I want  to print a the user photo with a gradient mask or vignette from flex. I managed  to show the image correctly on screeen with the gradient mask using  this class but the output to paper is a rectangle without the soft mask.
    //package to add the mask for display
    package com.dm.graphics
       import flash.display.Graphics;
       import mx.containers.Canvas;
       import flash.display.GradientType;
       public class FrameBorderSoft extends Canvas
          override protected function updateDisplayList(w:Number, h:Number):void
             super.updateDisplayList(w,h);
             var g:Graphics = this.graphics;
             g.clear();
             g.beginGradientFill(GradientType.RADIAL, [0x000000, 0x000000, 0x000000, 0x000000],
             [1,1,0.8,0],
             [1,128,195,255],
             horizontalGradientMatrix(0,0,w,h) );
             g.drawRect(0,0,w,h);
             g.endFill();
    It  works beautifully until I try to print the graphic. The image prints  but without the gradient edges (soft) instead it is just a sharp edge  rectangle.
    Does anyone know how to do this?
    Here is my print function:
    private function doPrint():void {
                    // Create an instance of the FlexPrintJob class.
                    var myPrintJob:FlexPrintJob = new FlexPrintJob();
                    // Start the print job.
                    if (myPrintJob.start() != true) return;
                    // Add the object to print. Do not scale it.
                    if (tabnavigator1.selectedChild == img1) {
               //switchcolor is a variable to detect if the user changed the background to white or clear.       
                             switchcolor = 100;
                          //printCF is the card front container with the photo masked
                       myPrintJob.addObject(printCF, FlexPrintJobScaleType.NONE);
                       myPrintJob.printAsBitmap = false;        
                    } else if (tabnavigator1.selectedChild == img1b) {
                       switchcolor = 100;
                       myPrintJob.addObject(printCB, FlexPrintJobScaleType.NONE);
    I hope this helps to visualize,
    I would greatly appreciate any assistance or advise.

    Hello, back on my issue, i tested a little bit more the message dispaching.
    I read the lazyLoadPolicy class and noticed that it always has to have a ModuleId property in the message to work, that's why the broadcast message didn't work to awake the module with the lazy loading policy.
    So i added copy of my module:
         <cairngorm:ParsleyModuleDescriptor objectId="test"
              url="TestModule.swf"
              applicationDomain="{ClassInfo.currentDomain}"
         />
         <cairngorm:ParsleyModuleDescriptor objectId="testbis"
              url="TestModuleBis.swf"
              applicationDomain="{ClassInfo.currentDomain}"
         />     
    Set them both with a basicLoadPolicy, and tries to dispatch a message to only one of them using the ModuleId metatag. I then noticed that both modules received the message and not only the one i expected.
    I then changed the ModuleMessageInterceptor configuration to dispatch to only one kind of module:
    <cairngorm:ModuleMessageInterceptor type="{ OpenViewMessage }" moduleRef="test"/>
    and this worked as expected. Only the first module catched the message. I am obiously messing with the ModuleId metatag but i cannot see what's wrong...
    I compiled with
    -keep-as3-metadata+=ModuleId
    but this hasn't changed anything...

  • How do you split the print job across multiple printers to shorten the prin

    i
    Can any one you provide some information on below questions.
    Check printing by XML template (XML Publisher).
    1. When printing checks, how do you print the checks from one printer tray and the overflow remittance pages from another printer tray?
    2. When printing a large batch of checks using XML and PDF output, how do you split the print job across multiple printers to shorten the print time?
    I appreciate if you could give some information on above 2 questions.
    Regards,
    Ramarao.

    Probably sould just do them individually.
    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • How to print the Graphical of WF template to a document?

    Hi All,
      I want to print the Graphical view of the WF template in a Document or a JPG file.
    There is a option to print the Graphics to File. It works fine for Smaller workflows. My workflow is too big with more than 50 - 60 steps.
    How can I do this?
    Thanks,
    Sivagami

    You have to use "Print to File: option only. Even if you have some direct option a single page in your document cannot occupy your whole workflow template.
    When i was preparing my technical documents i used the same option and then had cut the document into seperate viewable pages in MS paint and pasted in different pages.
    Alternatively you could also embedd your JPG as a embedded file in the document but the former method will give better clarity to the reader.
    Thanks,
    Prasath N

  • Excel is throwing error when it click print : 'No printers are installed. To install a printer click the File tab, and then click Print. Click No Printers Installed, and then click Add Printer. Follow the instructions in the Add Printer dialog box'

    Excel is throwing error when it click print : 'No printers are installed. To install a printer click the File tab, and then click Print. Click No Printers Installed, and then click Add Printer. Follow the instructions in the Add Printer dialog box'
    Word, and powerpoint application are working fine.  
    Environment :  Windows 7 64-bit, MS Office 2013 64-bit
    Steps to recreate
    (i)  Create new user account and add to any group ( do not log on using this
     account)
      (ii)  runas /user:<new user account>  <fullpath>\excel.exe
       it will ask password so enter on command prompt
    (iii)  open any excel document  and click File->Print
      (iv)  verify result  (it is failing) it pop ups below error
     Error:`Microsoft Excel
     No printers are installed. To install a printer click the File tab, and then click
     Print. Click No Printers Installed, and then click Add Printer. Follow the
     instructions in the Add Printer dialog box.                                                                                                               

    Sorry for late reply i was not at work
    I have a default set excel is still throwing error. Interestingly winword , powerpoint and publisher are working fine. I am able to print from all office applications except Excel.
     Probably excel behaves differently from other office applications.
     Probably it is a bug in excel
    Workaround : Log on to a system once using newly created account then runas excel using this account then print works fine.
    It means something in user profile should be configure to run excel print operation. Could you please somebody help what I need to configure in user profile that makes print operation success?

  • F4280 wireless printing windows 7 64-bit, not showing printer in "devices and printers"

    Hi,
    I am a little confused. Today I installed windows 7 64-bit on my acer 9423wsmi notebook. I installed my hp f4280 via a usb cable. It prints and scans. Now I try to install my wireless kit (came with the printer) which worked fine an vista 32-bit sp1. I looked up every driver etc. on hp.com and found the install guide for windows 7. Everything went as described and printing works even without the pc adapter. You might say what is the problem. Well I noticed the wireless (copy) isn't listed under "devices and printers". I found this a bit strange. I tried to install a printer via the windows wizard. But using the network option gives me the shared copy. And using a the usb02 virtual port to which the printer is connect yields the same result: a fully working printer but nowhere to be found in "devices and printers". I searched the internet for a solution but my search results get cluttered with support for the installation. 
    My questions:
    Is this normal on this system with these settings?
    Is there a way to let the printer appear in "devices and printers"? 
    Kind Regards 
    Carnelain

    Hi Flash,
    I still haven't fixed the problem. I assume you found this installation guide. If I follow this I still can't see the printer in "device and printers". But when I open a document (notepad, word) I can see the printer listed in the printer dialog. So I am able to print. Printer properties are a bit hard to reach but it works. I am still hoping some wizz kid from hp to come up with a solution . Keep me posted if you know something more.
    Carnelain

  • Browser won't print website graphics - only text

    Does anyone know how to print up web pages so that the graphics on that page will show up and not just the text? I have tried printing with both Firefox and Safari and both refuse to print the graphics. I have a new Epson Color Printer.
    Any advice, suggestions would be great.
    Thanks.
    Patrice

    Neither Firefox or Safari have a setting that stops the images on a site from being printed. Therefore there must be a setting with your printer driver that is causing the incorrect output.
    As a test, choose to print but from the print dialog, select PDF and save the file. If this PDF has the images, then you know its something to do with the Epson driver.
    PaHu
    Sorry BD. Looks like we replied at the same time. At least we had the same idea..
    Message was edited by: PAHU

  • How do I set the default print margins for ALL printers in mozilla.cfg

    How do I set the default print margins for ALL printers in mozilla.cfg, even ones that are not yet installed / connected to the computer?
    I'm trying to install firefox with MDT and apply certain print options, but the printers themselves are connected at a later stage so the print.printer_myprinterhere cannot be used.

    Best answer I could find: [https://mike.kaply.com/2012/03/16/customizing-firefox-autoconfig-files/#comment-132668]
    If you can figure out how to add the printer name, this can be used to lock the margins.

  • Printing Business Graphics

    Hi all,
    Using WD Business Graphics I've generated a Gantt chart in my application. Now I want to print that chart. I tried the simplest way- right clicked the chart and gave print. But it printed only a single page and the chart being a lengthy one, I could get only a part of it in the printed page.
    Is there a better way to print business graphics?
    Regards
    Shyam.

    Hi,
    You can use the PRINT_PREVIEW Command and set the pages and print the Jgannt.
    http://graphics1.wdf.sap.corp:1080/jnet/Home.html
    Regards
    Ayyapparaj

  • Problem Printing to Large Format Printers From SGD

    I am having a problem printing to large format printers when using the PDF printing option for SGD. The SDG Universal PDF Viewer recognizes the print format that I specify but on the client device side the pdf that is produced is always Letter size. If a larger format is speciied the client side pdf displays a small portion of it - almost as if it were clipped at the Letter size. Has anyone experienced this. Is it an SGD problem per se or is it an issue with the Ghostscript configuration and if so is ther a way I can change the config?
    I am running 4.6.2 in an RHEL5 environment. The application server I am primarily working with is Windows Server 2008. The printers I have tried to print larger formats to are HP CLJ 2800 PS (Tabloid size), HP Designjet Z6100 (E size), and HP DesignJet 4020ps(E size). In all cases the plot appears to have been clipped into a Letter size format on the client device side.
    Thanks,
    Edited by: Odog314 on Jul 12, 2012 3:15 PM

    You may have encountered a limitation with the GARO driver, especially if it is connected to the USB port of the Express. We have an iPF8100 but it is connected directly to our network via Ethernet so I've never tested the printer via USB. But if the driver is anything like the consumer inkjet drivers, there is often issues with the driver determining the printer model on the end of the USB and this stops the printer queue creation.
    Have you tried connecting the printer via Ethernet to the Express and then seeing if you can add the printer queue? You will have to set an IP address in the machine if DHCP is not enabled.
    PaHu

  • Iphone 6Plus will not allow POP email account and cannot print to my wifi printers, I did on my Iphone 5 until I upgraded, can anyone help

    Iphone 6Plus will not allow POP email account and cannot print to my wifi printers, I did on my Iphone 5 until I upgraded, can anyone help

    I had talked with three people at Apple tech support on the phone, one person in the Apple store in Indianapolis, plus the other places I mentioned. Only the one young man in the Apple store was even able to identify the problem which was the POP vs. IMAP issue. And then like you said he was only able to say he hoped it would be fixed in the next update release. I did call him back this morning and told him about your simple solution, that I had seen it at the Apple forum, and that he might suggest bringing this topic up at the next staff meeting. I also let my Verizon rep know and an agent at Comcast. Something so simple yet it took three days and a lot of frustration to get fixed. Thanks again. You're my hero! ~ Carol Thomas
    Also forgot to mention ... I got the iPhone 6 Plus about three weeks ago and did not have this problem. But I did a backup of my iPhone 5S on the computer and then used that backup to restore to my new iPhone. The iPad I did differently and just set it up as a new iPad with no restoring from the old one. That must have made a difference on the phone because it was set up just like the 5S ... as a POP3.

Maybe you are looking for

  • Calling a method on click of a hyperlink which opens popup

    Hi, I am new to the technology. I have a hyperlink on .jspx page. Upon clicking it a pop up should open. I need to pass an object to a methd in the bean which will pre populate data in the pop up as soon as it opens. i.e. want to populate the data in

  • Adobe Reader XI 11.0.09 Update broke image signatures

    I allowed my computer to download and install the latest Adobe Reader XI update, to version 11.0.09. Since doing that, I can no longer sign PDFs. Adobe Reader "forgot" my signature, and prompts me to create a new one, but gives me an error when I try

  • Memory leak using 10.2.0.3 OCI client on Solaris

    Hi, We are using OCI client libraries to connect our C++ program to the Oracle Database. The program does a lot of selects, inserts and SP calls. Oracle client and Oracle server both are 10.2.0.3. We have been observing a memory leak of 4M bytes in t

  • J2EE Status info unavailable disp+work.exe

    Hi Experts, I have an critical error in our NW2004s. i installed a dualstack abapjava epcore and ep. the installation was succesfull. But till last week i have the error with the java part. It would not come up. message of dispwork.exe: running, mess

  • Hi which exception is used for incorrect input????

    hi the valid input for my program should be like this... 12 D or 2 D something like this and if the format is not like this.. i wanna throw an exception but don't know which one is appropriate one.. i looked up API but there are so many....and..can't