Dot matrix printing on 15 x12 inch paper

Hi
I have created report for purchase register
Report is so large to print
so i have desiged this report in PDL for dot matrix printer and  paper size 15 inch x 12 inch.
When i going to print this report, i not get proper print out
Please tell me the setting regarding to print this report on dot matrix 15 x 12 inch continous paper.
Regds
Kishor

HI
Thanks for you valuable suggestion
Printer at my end  is not supported by SAP B1
ok
what is use of Function grouplinenum() in PLD
I wants the follwing output
docnum, Acct Code, Acct_total document_total
1    xyz1    500      1100
      xyz2    600
2    abc1   1000      2000
      abc2    500
      abc3    500
Total          3100     3100
Please study the following query for above and Please tell me it is possible to design PLD
SELECT A.SERIESNAME, A0.DocType, A0.DocNum, A0.DocDate, A0.NumAtCard, A0.TaxDate,
A0.CardCode, A0.CardName, A1.City,
A2.TaxId11,  A2.TaxId1, A2.TaxId2,
A4.TAXTYPE, A4.VATRATE, A4.vattaxable, A4.Totvat,
A0.DOCTOTAL, A0.WTSUM,
A5.TAXCODE, A5.formatcode, A5.ACCTNAME, A5.ACTOTAL,
(case when TAXTYPE IS  NULL  then A0.DOCTOTAL + A0.WTSUM ELSE 0.00 END) AS  LabourChrg,
(case when TAXTYPE IS  NOT NULL 
      then A0.DOCTOTAL + A0.WTSUM - ISNULL(A4.VATTAXABLE, 0.00) - ISNULL(A4.TOTVAT, 0.00) ELSE 0.00 END) AS  LabourChrg
FROM NNM1 A
INNER JOIN OPCH A0 ON A.SERIES = A0.SERIES
LEFT OUTER JOIN CRD1 A1  ON A0.CARDCODE = A1.CARDCODE AND A1.LINENUM = 0
LEFT OUTER JOIN CRD7 A2 ON  A0.CARDCODE = A2.CARDCODE
LEFT OUTER JOIN
(SELECT C0.DOCENTRY,
MAX(case when C1.nftaxid = -7 then 'L' when C1.nftaxid = -4 then 'C' else 'O' end) as TAXTYPE,
MAX(C0.TAXRATE) as VATRATE, SUM(C0.TAXSUM) as TOTVAT, SUM(C0.BASESUM) as VATTAXABLE
FROM PCH4 AS C0, OSTT AS C1
WHERE C1.ABSID = C0.STATYPE
AND C1.nftaxid  in (-7, -4)
GROUP BY C0.DOCENTRY) A4 ON A0.DOCENTRY = A4.DOCENTRY
INNER JOIN
(SELECT E0.DOCENTRY, E0.TAXCODE, E1.formatcode, E1.ACCTNAME, E0.ACTOTAL
FROM
(SELECT D0.DOCENTRY, D0.TAXCODE, ISNULL(D1.ACCTCODE, D0.ACCTCODE) AS ACCTCODE,
  SUM(D0.LINETOTAL + D0.LINEVAT + D0.DISTRIBSUM + D0.STCKDSTSUM) AS 'ACTOTAL'
  FROM PCH1 D0 LEFT OUTER JOIN  PDN1 D1
  ON   D0.BASEentry = D1.DOCENTRY  AND D0.BASELINE = D1.LINENUM
  GROUP BY D0.DOCENTRY, D0.TAXCODE, ISNULL(D1.ACCTCODE, D0.ACCTCODE)) AS E0
  INNER JOIN OACT E1 ON E0.ACCTCODE = E1.ACCTCODE) A5
ON A0.DOCENTRY = A5.DOCENTRY
WHERE A.SERIESNAME  ='[%0]'
ORDER BY DOCNUM
Thanks

Similar Messages

  • Problem with countinuous paper printing in dot matrix printer

    Hi All,
      I have problem with dot matrix printer (Devise Type EPESCP) while printing continuos printing. If  i am printing 2 or more than that prints at a time, 2nd page is printing 5 lines up.
    I have developed one smartform for this and i have used A4 size page format.
    I have tried to change the Printer initialization code to 86 lines for DINA4.  Still no change in continuous printing.
         Printer initialization
         Reset after exit
         Cover page
         First Page
         Start of even page
         Start of odd page
         Start of page
         End of first page
         End of even page
         End of odd page
         End of page
         Start of line on an even page
         Start of line on an odd page
         Start of line
         End of line on an even page
         End of line on odd page
         End of line
    Printer initialization
    # reset
    \e\0x40
    # select character table 3 -> PC 437 character set
    \e\0x74\0x03
    # set line spacing 6 LPI
    \e\0x32
    # set page length 86 lines
    \e\0x43\0x46
    # cancel bottom margin
    \e\0x4F
    # set left margin to 0
    \e\0x6C\0x00
    # select LQ quality
    \e\0x78\0x01
    # select non-proportional spacing
    \e\0x70\0x00
    Can any one help me.
    Thanks,
    Vishnu

    Hi Vishnu,
    Above you have the following commands:
    set line spacing 6 LPI
    \e\0x32
    set page length 86 lines
    \e\0x43\0x46
    46 HEX = 70
    So the above settings mean 70 lines at 6 LPI = 11.66 inches.
    So is the paper length 11.66 inches? If not, you should adjust the settings accordingly.
    Regards,
    Aidan

  • Problem with custom paper size on dot matrix printer

    Hi All,
    I'm using CR2008 with updated to SP2. I have a problem with custom paper size (W=21; H=14), the CR Viewer show report with custom paper size correctly but when I print it to a dot matrix printer (Epson LQ 300+) the content was rotated to landscape. If print to a laser printer the content was printed correctly. My report was printed correctly by CR10 or previous versions I got this issue when upgraded to CR2008. I aslo tested my computer and printer with orther application like MS Word the printing have no problem with custom paper size.
    Thanks for any advice for me.
    Han

    Looking at the Epson LQ 300+ driver, I see that the latest update is from 2002. In my experience, most matrix printer drivers are not unicode. Crystal Reports is designed to only work with unicode printer drivers. See the [How Printer Driver Options Affect a Report|https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/a09051e9-721e-2b10-11b6-f9c65c64ef29&overridelayout=true] article, page 6 for details. Also, see [this|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note.
    Finally, see if you can print from the CR designer to this printer and if you get the correct results here.
    Ludek

  • Printing Invoice Dot Matrix Printer  in the paper size 9.5 x 11 inches

    Dear All, 
    Am using Pre-printed Stationery but I have a problem with  printing configuration for AR Invoice through Dot Matrix Printer in paper size 9.5 x 11 inches, when command to print the first page it print perfect but the continuation  is not start on the body of the contents but it start from the header of the pre-printed stationery  any one with experience on this please share with me.
    Regards
    Grayson

    hi,
    Have you customized PLD according to paper size ?
    Check whether you customized fields in start of report area ? If yes then it will be printed
    only on first page.
    Check for printer supported by B1 in below link
    [SAP Business One Best-Practice System Setup and Sizing document ]
    Jeyakanthan

  • Problem printing on dot-matrix printer with continuous paper

    Post Author: kdebruyckere
    CA Forum: .NET
    Hi,
    We're currently developping an .net application for a customer of ours in VS2005 (c#). I used crystal reports for VS2005 to create an invoice.
    The invoices have to be printed on a dot-matrix printer with continuous paper (Brother M-4318). When an invoice is only one page long, there's no problem. Even when printing several sigle-page invoices after another, all goes fine. The problem occurs when an invoice is more then one page longe. The first page comes out correctly, but on the following pages everything moves ca. 3 mm upwards (3 mm on the second page, 6 mm on the third page, and so on...). On the report 'Design > Printer Setup', I selected the right printer, the right paper size, ... On the report there's a page header (consisting of two sections), and there's a page footer that is only printed on the last page, but there are no report header and no report footer.
    I can not figure out what seems to be the problem. Has anyone else had this or a similar problem before? If so, please let me know. Any suggestions are welcome.
    thx

    Post Author: ole
    CA Forum: .NET
    Continuous paper is a little bit longer than normal A4 paper. I found only one way to set it: ReportDocument.PrintOptions.PaperSize =CrystalDecisions.Shared.PaperSize.PaperFanfoldStdGermanI had no success, setting continuous papersize by printer setup.  ... waiting for CustomPaperSize-Property (like CustomPaperSource)... Olaf 

  • Portrait on 14" width by 11" length continuous feed paper for Dot Matrix printer.

    Hello,
    I am trying to set the properties of a Report Builder 3.0 form for Portrait orientation with 14" width by 11" length continuous form.  The report will print on a high speed dot matrix printer.  My problem is when I change the report property
    to 14" width by 11" length, Report Builder 3.0 automatically changes the Orientation to Landscape!  I want it Portrait on 14"x11" paper!
    Thanks in advance.

    Hi CRC111,
    According to your description, when printing reports in dot matrix printer, it can't keep the Portrait in report property. Right?
    In Reporting Services, it supports printing in a dot matrix printer. However, the dot matrix print is quite different from regular printers. It has reported it can't accept the page layout(landscape and Portrait). In this scenario, we suggest you export
    the report into PDF/TIFF, then print it in dot matrix printer. Please refer to the links below:
    SSRS Printing to Dot matrix printer
    Reporting by using Dot Matrix Printer
    report properties for dotmatrix report in SSRS
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Printing in Dot Matrix Printer

    Hi to all,
      As we know that the dos matrix printer supports dos prompt and thus printing speed and 
    life of the printing head is comparatively more than what we print the same in graphical format.
      So when I tried to print from SAP Bone in dot matrix printer, the printing speed is very slow and quality of printout is not good enough.
      Any clarifications on this regard would prove very helpful to me.
    Regards,
    Aditya
    Consultant Business solutions.

    Do you use one of this printer types:
    Dot Matrix, Printer, Needle Printer, Citizen ProDot 300 , Oki Microline
    , Epson FX880, Epson FX890 ?
    Here the stepwise I have tried :
    In order to print using Dot Matrix printers, follow the below
    instructions:
       1. Run SAP Business One.
       2. Click the upper menu 'File' and select 'Page Setup'.
       3. The Print Setup window opens. Under 'Paper', in the field 'Size', select 'Letter' from the drop down menu.
       4. Click OK to confirm your selection.
       5. On your desktop, click Start => Settings => Printers.
       6. Right click on the required Dot Matrix printer and select 'Printing Preferences...'.
       7. Click the 'Paper/Quality' tab page and click the 'Advanced' pushbutton.
       8. Under'Paper/Output'=> 'Paper Size', click on the underlined paper size(e.g. A4) and select 'Letter' from the drop down menu.
    Note that if you leave the value 'A4', each page will be spreaded over 2 pages when printing using Dot Matrix printers.
       1. Under 'Graphic'=> 'Print Quality', click on the underlined value (e.g. 230X250 dots per inch) and select '120X144 dots per inch' from thedrop down menu.
    Note that in case the value '120X144' is not available you should select a similar value from the list.
    After you do the stepwise, I am sure there will no problem any more. The slowly printing mostly caused by printer type and your hardware specifications for example your LAN, etc..
    good luck...
    Rgds,
    null

  • Is there a dot matrix printer that works with iMac

    Trying to find an impact printer to do invoices on an imac computer, but no luck so far.  Any ideas?
    Bill

    The Epson Networking Impact Printers are designed for high capacity environments and are Mac OS compatible.  The IP networking printer drivers built into Mac OS X support the  IP Network dot matrix printers, both 9 & 24 pin. 
    For example, for the FX-890N Networking printer you can use the driver "Epson 9-Pin Series" as shown below:
    Epson's full-featured, FX-890N Networking printer offers the durability and ease of use required for essential daily printing. This 9-pin, dot-matrix, narrow-carriage workhorse boasts an MTBF rating of 20,000 power-on hours (POH) and speeds of up to 680 cps (characters per second).  Engineered for seamless integration, the FX-890N's interfaces include an internal 10/100 Base-TX Ethernet print server with support for Macintosh OS X.
    Its easy-to-install 7.5 million-character ribbon cartridge boosts productivity and ensures a low cost per page, while its 400 million-character print-head life heightens its dependability. Included Epson Remote Configuration Manager software simplifies printer setup and setting selection.  Ideal for rugged environments, the printer is a perfect drop-in replacement for the Epson FX-880/880+/980 or Okidata Microline 320/320 Turbo. It handles forms up to seven parts thick via four convenient paper paths, and its redesigned control panel features a lock-out mode and other intuitive functions.  The printer is Novell tested and approved and is backed by Epson's comprehensive three-year warranty with technical support.  The Epson FX-890N offers the durability and ease of use required for criticaldaily print requirements. Speeds through multipart forms,reports, labels and more at up to 680cps.Offers an MTBF rating of 20,000 POH and a 400 million character print head life..  Includes 10/100Base-TX Ethernet Interface for easy networking.
    Printing Method: 9-pin, impact dot matrix
    Print Speed:
    Ultra Speed Draft: 680 cps (12 cpi); 566 cps (10 cpi)
    High Speed Draft: 559 cps (10 cpi)
    Draft: 419 cps (10 cpi)
    Near Letter Quality: 104 cps (10 cpi)
    Characters & Lines
    Character Sets:
    13 character tables
    13 international character sets
    Resident Bitmapped Fonts:
    Ultra Speed Draft: 10, 12 cpi
    High Speed Draft: 10, 12, 15, 17, 20 cpi
    Draft: 10, 12, 15, 17, 20 cpi
    Near Letter Quality (Roman / Sans Serif): 10, 12, 15, 17, 20 cpi, proportional
    Bar Code Fonts: EAN-13, EAN-8, Interleaved 2 of 5, UPC-A, UPC-E, Code 39, Code 128, POSTNET, Codabar (NW-7), Industrial 2 of 5, Matrix 2 of 5
    Characters per Line: 80 characters at 10 cpi
    Line Spacing: 6 lines per inch default
    Formatting:
    1/6-inch or programmable in 1/432-inch increments
    8 lpi option available on FX-890 Okidata Mode only
    Paper Handling
    Forms: Continuous multipart, original plus 6 carbonless copies, 1 + 6 copies with pull tractor, maximum thickness .018"
    Envelopes:
    No. 6 envelopes: 6.5" x 3.6"
    No. 10 envelopes: 9.5" x 4.1"
    Width:
    Single sheets: 3.9" to 10.1"
    Continuous: 4" to 10"
    Cut-sheet feeder: 7.2" to 8.5"
    Length:
    Single sheets: 3.9" to 14.3"
    Continuous: 4" to 22"
    Cut-sheet feeder: 10.1" to 14"
    Labels: Minimum: 2.5" x 0.94"
    Roll paper: 8.5" width
    Paper Feed Speed:
    62 millisecond per 1/6"
    5" per second, continuous feed
    Paper Path:
    Manual insertion: Front or rear in, top out
    Cut sheet feeder: Top in, top out
    Tractor: Front, rear or bottom in, top out
    Pull push tractor: Front or rear in, top out
    General
    Printer Language :
    Epson ESC / P
    IBM PPDS
    Okidata Microline (FX-890 Okidata Mode only)
    IP Networking Interface:
    EpsonNet 10 / 100Base-TX Ethernet Print Server
    Input Buffer : 128 KB
    Control Panel: Functions: Font, pitch, pause, tear off, bin selection, line feed, form feed, load, eject, micro adjust, top-of-form adjustment, panel lockout, reset, menu, default setting selection
    Sound Level : 55 dB(A) (ISO 7779 pattern)
    Rated frequency range : 50 – 60 Hz
    Input frequency range : 49.5 – 60.5 Hz
    Dimensions : 16.3" x 13.8" x 6.6" (W x D x H)

  • Sales invoice Smartform printing in dot matrix printer in sucession

    Dear all,
    I am trying to Print Sales invoice on Dot matrix Printer.
    My First Invoice is printed ok, but if i try to print second invoice without manually adjusting the paper the alignment on printer goes haywiered.
    Do we have some option in smartform where we can trigger new page command.
    Regards,
    Gaurav Sood

    Hi Amiya,
    you need to check the paperformat which is used. I'm pretty sure that there is a wrong paperformat selected. The supported paperformats are published in the official documentation of the printer-model.
    ~Florian

  • Text shifting Right when printing smarform in Dot matrix printer

    Hi all,
    I have developed a payslip in smart form. I am printing the smartform in dot matrix printer. when there is blank between 2 values like one of the deductions is blank between 2 values while printing its will shift to right indefinitely even though in the print preview it is appearing correctly. In the same way in the last line i am printing Total earnings deductions n net pay...  Total earnings has to be printed approximately after 6 cms from left margin in print preview it is exactly where i wanted but when printing its printing after almost 8 - 9 cms
    I have created a Z page format to fit the copying 6 inch page and added code to make necessary changes to print in continuously
    Kindly help me to overcome the issue.
    Any help appreciable....
    Shivakumar K B
    09098955022

    Hi Pavan,
    I am trying to display the text in the template which is of the exact size as in preprinted stationary, in  paragraph format i am not using space between variables..
    To be clear.................... I am getting my print preview is correctly  but when i give it for printing the text is shifting right...

  • SAPSCRIPT problem in printing on Dot Matrix Printer

    Hi!
    I have a SAPSCRIPT Form with page format INCH12. The SAPSCRIPT output is displayed properly in print preview. But when it is sent for printing on the Dot matrix printer the first three lines of the second page are printed on the first page at the bottom. Paper size is also 12INCH. I tried adjusting all the windows and putting blank lines. I also gave /: NEW-PAGE command. But it did not solve the problem.
    I am not able to identify where exactly the problem is? Is it in the SAPSCRIPT or in printer settings.
    If anyone had faced similar problem and was able to solve it then please reply.

    Hi
    if it is possible try to print the same in another printer and confirm the problem
    no doubt certain printers may create such problems while printing the output
    so to confirm the problem try with other printer.
    Reward points for useful Answers
    Regards
    Anji

  • Printing problem in Dot matrix printer

    Hi all,
    We are planning to use Dot matrix printers for printing through SAP.We do front end printing using Windows OS. I am able to get prints properly if it is a script form. In case of list outputs, printer is printing the text outside the paper.Only half of the text is printing on the continuous stationary. Actually document is to be printed in Landscape format. So printer should print data vertically on the paper,but it's printing horizontally. I have created sparate output device for this printer.My printer is TVS Electronics HD745 24 Pin heavy duty printer. I have assigned OKI341 as device type for this device.Any more settings I need to do to get printing in landscape mode?

    Hi,
    Dot matrix printer.
    Problem with pritning with dot matrix
    About Dot matrix printer device problems
    Regards,
    Sandeep

  • Crystal reports printing in dot matrix printer

    I'm using Crystal Reports 2008 with Visual Basic.Net 2008. The problem is that when i print the report in a laser printer, everything is good, but when i used dot matrix printer (like Epson LX 300+), reports is printed smaller than original, doesn't matter if i see good in preview. This is an Asp.Net web form.
    How can i fix this problem

    1) Make sure you have the latest CR Service Pack:
    SP4 https://smpdl.sap-ag.de/~sapidp/012002523100008782452011E/cr2008sp4.exe
    SP4 MSI https://smpdl.sap-ag.de/~sapidp/012002523100008782532011E/cr2008sp4_redist.zip
    SP4 MSM https://smpdl.sap-ag.de/~sapidp/012002523100008782522011E/cr2008sp4_mm.zip
    2) Make sure you have the latest updates for the printer driver
    3) Make sure the printer driver is Unicode compliant
    4) Experiment with the "No Printer" option and Dissociate Formatting Page Size and Printer Paper Size option
    5) Compare print from the CR designer to the app print. Do you see the same issue with both?
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Replacing Dot Matrix Printer with a Laser Printer

    I'm hoping to replace a dot matrix printer currently used to produce a 2 layer carbon copy form with a laser printer.  The source of the form is SAP. The length of the form varies between 1 and 3 pages. Does HP have a printer/paper solution?

    See this - https://support.mozilla.org/en-US/kb/how-print-websites

  • Web report printed on a dot matrix printer

    Dear all,
    how can i design a report that is going to be printed on a dot matrix printer, i want to know these things:
    1 - what i will have to change in the report it self.
    2 - when i call the report from the form how the code will be.
    3 - do i have to print the report on the browser then the user press print from the file menu of the browser.
    please advice

    1 - what i will have to change in the report it self.Since you will be printing to a dot matrix printer, you essentially need to design a character mode report and set the .prt file for printing purpose. Check in online help for how to make a character mode report.
    2 - when i call the report from the form how the code >will be.On the otn site itself, you can find a white paper on reports 9i/forms integration. Please refer to this white paper on the example code.
    3 - do i have to print the report on the browser then >the user press print from the file menu of the browser.You do not need to print the report from browser window and can directly tell the report to print the character mode output using your dot matrix printer. The command line you send from Forms will have destype=printer and desformat=<.prt file name>
    Thanks
    Rohit

Maybe you are looking for

  • Running a program on a remote system

    hii all i jus wanted to noe if there was any approach using which the one could send a block of code across to more than one remote systems. i also need to fetch the object returned by executing this, back to the server. Can anyone help me with this.

  • Welcome screen in PS and AI

    So...it's 2014 and you're Adobe! I keep the welcometips on, because I like to see new tips (eventhough most is pretty basic) and such. The videos you link to on Youtube will not open in a new window or even go to fullscreen. The fact this doesn't wor

  • On (release) action problem - how to fix the loading issue?

    Hi, I'm making a progress with the website in Flash. I have pretty much things already done. Motion tweens that change alpha in percentage ammount are working correctly - I've used them for loading pages but I encountered a one tiny problem... Descri

  • Laptop keeps on rebooting after windows update configuration failure due to low disk space.

    Dear all,  My laptop keeps on restarting it self due to it cannot configure the windows update. I had tried all the solutions online including boot into safe mode, however none of this works as it keeps on going back to the windows configuration scre

  • Best back up scenario?

    Hi. I've got an 8-core 3.2ghz Mac Pro, used mainly for Protools, digital audio. All four drive bays are loaded with 1.5 TB drives in each. There is a system drive of course, and Protools audio drive, a virtual instrument drive, and a SAMPLE/loop/vide