Problem in Continues GR printing

Hi all,
    I hv made smart form for GR print . I m using standrad selection screen MB90, output type WE03 & standrad print program SAPM07DR ->M07DRENT-> M07DRAUS  i have copied that program and assigned my smart form in this program. now my problem is that when i select range for printing GRs then i have to click on print again and again for each GR. I want that all GRs should be print by single click.   Give some solution according to this standrad program.
I sending u program codes where i have made changes.
FORM lesen_wes USING objky lgortsplit.
TABLES: MAKT.
DATA: GR_FM            TYPE rs38l_fnam.
data : print_params type SSFCTRLOP.
data : print_out type SSFCOMPOP.
DATA: BEGIN OF ITAB_MKPF OCCURS 0.
  INCLUDE STRUCTURE mkpf.
DATA : END OF ITAB_MKPF.
DATA: BEGIN OF ITAB_MAKT OCCURS 0.
     INCLUDE STRUCTURE MAKT.
DATA: END OF ITAB_MAKT.
DATA: BEGIN OF ITAB_MSEG OCCURS 0.
      include structure mseg.
data:    END OF ITAB_MSEG.
DATA: BEGIN OF ITAB_LFA1 OCCURS 0.
      include structure lfa1.
data:      END OF ITAB_LFA1.
  REFRESH traptab.
  CLEAR retco.
  CLEAR: xkopfdr, new_page.
  nast_key = objky.
  SELECT SINGLE * FROM mkpf WHERE mblnr = nast_key-mblnr
                            AND   mjahr = nast_key-mjahr.
  MOVE-CORRESPONDING mkpf TO ITAB_MKPF. "  JITENDRA
  MOVE-CORRESPONDING mkpf TO traptab.               "note 205937
  zaehler_m = 1.
  SELECT * FROM mseg WHERE mblnr = mkpf-mblnr
                     AND   mjahr = mkpf-mjahr
                     AND   BWART <> '543'.
  SELECT * FROM MAKT WHERE MATNR = MSEG-MATNR.
  SELECT * FROM LFA1 WHERE LIFNR = MSEG-LIFNR.
    IF sy-subrc ne 0.
      retco = sy-subrc.
      EXIT.
    ENDIF.
    IF zaehler_m = 1.
      CLEAR zaehler_m.
      PERFORM tab001w_lesen.
    ENDIF.
   MOVE-CORRESPONDING mseg TO ITAB_MSEG.   "  JITENDRA
    MOVE: MSEG-LIFNR TO ITAB_MSEG-LIFNR,
         MSEG-EBELN TO ITAB_MSEG-EBELN,
         MSEG-EBELP TO ITAB_MSEG-EBELP,
         MSEG-ZEILE TO ITAB_MSEG-ZEILE,
         MSEG-MATNR TO ITAB_MSEG-MATNR,
         MSEG-LGORT TO ITAB_MSEG-LGORT,
         MSEG-ERFME TO ITAB_MSEG-ERFME,
         MSEG-LSMNG TO ITAB_MSEG-LSMNG,
         MSEG-ERFMG TO ITAB_MSEG-ERFMG,
         MSEG-BWART TO ITAB_MSEG-BWART,
         MAKT-MAKTX TO ITAB_MSEG-SGTXT.
    MOVE-CORRESPONDING MAKT TO ITAB_MAKT.
    MOVE-CORRESPONDING LFA1 TO ITAB_LFA1.
    MOVE-CORRESPONDING mseg TO traptab.
    APPEND ITAB_MSEG.
    APPEND ITAB_MAKT.
    APPEND ITAB_LFA1.
    APPEND traptab.
  ENDSELECT.
  ENDSELECT.
  ENDSELECT.
  PERFORM open_form_sammel.
  IF NOT lgortsplit IS INITIAL.                       "431555
    SORT traptab BY werks lgort zeile.                "431555
  ELSE.                                               "431555
    SORT traptab BY werks zeile.                      "431555
  ENDIF.                                              "431555
  LOOP AT traptab.
    MOVE-CORRESPONDING traptab TO mkpf.
    MOVE-CORRESPONDING traptab TO mseg.
    PERFORM tab156_lesen.
    CHECK not t156-kzdru is initial.
    xskkz = t156-rstyp.
    IF not mseg-evers is initial.         "Versandvorschriften lesen.
      PERFORM t027_lesen.
    ENDIF.
    PERFORM bestellung_lesen.
    IF not ekpo-knttp is initial and not
          ekpo-weunb is initial.
       PERFORM kontierung_lesen.     "Für WE unbewertet
    ENDIF.
    IF not mseg-ematn is initial.
      PERFORM lesen_htn.
    ELSE.                                         "111277/PH
      CLEAR am07m-mfrpn.                          "111277/PH
    ENDIF.
    IF mseg-matnr is initial.
      mseg-menge = mseg-bpmng.
      mseg-meins = mseg-bprme.
      PERFORM bestelltext_lesen.
      CLEAR mabdr.
    ELSE.
      PERFORM material_lesen.
    ENDIF.
    PERFORM tab024_lesen.
    PERFORM t064b_lesen.
    PERFORM tab001w_lesen_2.
    PERFORM ladr_lesen.
    PERFORM helpdata1.
   PERFORM we03_ausgabe USING lgortsplit.
    PERFORM helpdata2.
  ENDLOOP.
  CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          FORMNAME                 = 'ZGR_FRM'
  VARIANT                  = ' '
  DIRECT_CALL              = ' '
       IMPORTING
         FM_NAME                   = GR_FM
EXCEPTIONS
  NO_FORM                  = 1
  NO_FUNCTION_MODULE       = 2
  OTHERS                   = 3
      IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
  CALL FUNCTION GR_FM
    EXPORTING
    ARCHIVE_INDEX              =
    ARCHIVE_INDEX_TAB          =
    ARCHIVE_PARAMETERS         =
    CONTROL_PARAMETERS         =
    MAIL_APPL_OBJ              =
    MAIL_RECIPIENT             =
    MAIL_SENDER                =
    OUTPUT_OPTIONS             =
    USER_SETTINGS              = 'X'
      ITAB1                      = ITAB_MKPF
      ITAB                       = ITAB_MSEG
      ITAB2                      = ITAB_LFA1
  IMPORTING
    DOCUMENT_OUTPUT_INFO       =
    JOB_OUTPUT_INFO            =
    JOB_OUTPUT_OPTIONS         =
    TABLES
      ITAB_OUT                   = ITAB_MSEG
      ITAB_MAT                   = ITAB_MAKT
  EXCEPTIONS
    FORMATTING_ERROR           = 1
    INTERNAL_ERROR             = 2
    SEND_ERROR                 = 3
    USER_CANCELED              = 4
    OTHERS                     = 5
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
PERFORM close_form.
ENDFORM.
Thanks in Advance
Jitendra

Hi,
When you fires/triggers the Output in the Loop of GR's it will print the multiple docu's.
Since you are using the Std program include, that may not be happening to print multiple doc's continuously.
Generally we print/take the output of a single Document only in most of the cases.
Regards,
Anji

Similar Messages

  • Smartforms -Page Skipping Problem in Continue Sheet Printing.....

    Hi Gurus,
    I face problem with multiple page printing in dot matrix printer for purchase order printing.
    Here are the details about my requirement
    Our client Purchase order pre-printed Paper size Width 303 mm Height 203 mm and continued sheet. I have created a z layout zpoprint for the above size and assigned it in smarforms and select DINA4 transverse in printer. Whenever we printing 2nd page it starts printing after 5 cm. My friends asked me to create a customized page format in server properties in printer. Is there any other way to overcome this issue? Anybody face this problem kindly reply to me. 
    By
    SP. Manavalan

    Hi
    Though you can double check the page layouts of both pages of your smartform, also keep in consideration that using a dot matrix printer to get the output of smartforms will have some impact of the positioning of the print as dot matrix printers are mechanical in nature(wheels are moving!).
    Whereas, in laser printers, the whole data is taken, formatted and then sent to print.
    Regards
    Raj

  • Problem in Continuous check printing from second page in F-58

    Hi ,
    I am using T code F-58 to trigger cheques. I have made a Z* of the standard script F110_PRENUM_CHCK as I just require the Payee name, date, amount in digits and amount in words to be printed on the cheque.I am using the continuous stationary for the cheque . I am using EPSONLQ1150II DOT Matrix printer.
    The cheque dimensions are ; width:202 MM and Height 94 MM excluding the dots on either side.
    I have created a z page format with the same dimensions ,
    also created format type with same name and for device type SWIN - Windows printing via SAPlpd
    z format is linked.
    Also in local system , i defined z page dimensions in server properties
    and selected printing preferences as this z page size .
    Issue :
    When i am trying to take print , check is printing properly in first page for spool 1 .
    If again when trying to print 2nd spool , check is not printing properly in second page check.
    It is printing 2mm down , for 3 rd page further printing downwards.
    As this is pre printed stationary data is not lying correctly from 2 nd page onwards.
    kindly give me any suggestions how to rectify this.
    Thanks & regards,
    Hari priya.

    Issue is not resolved.
    kindly give me any suggestions..
    In SWIN - Windows printing via SAPlpd device type , for DINA4
    Printer initialization :  # no action.
    End of page is having \f
    End of line is having \n
    Reset after exit is having # sapwin x_paper
    Cover page is : # no title page 
    all are in green.
    Same thing i included for MY z page format . But still it is printing same as mentioned above.
    Kindly suggest how to write initialization for z page format for SWIN device type. 
    thanks & regards,
    Hari priya
    Edited by: Hari  Priya on Apr 25, 2011 9:16 AM
    Edited by: Hari  Priya on Apr 25, 2011 11:57 AM

  • Problem Fixed! Print Apps with Scheduled Delivery continuing to print

    Some Scheduled Delivery Print Apps may have continued to print once selected as a Print Now function on an Officejet 6500, 7500, and 8500, Photosmart D110 and B210.  This has been solved as of June 23, 2011. 
    See the Managing Scheduled Delivery Apps page for setting up a new Print App with Scheduled Delivery.  Anytime you wish to unsubscribe follow these steps.
    Although I am an HP employee my posts and replies are my own.

    Hi N2KZJ,
    Try the solutions located at this website: How to Manage, Pause, or Unsubscribe from Prints and Faxes
    Please post here if you this solved your problem (and select Solved) or if you need further help.
    JamieAtHp
    I work on behalf of HP.

  • 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

  • My problem is that after printing the first photo or picture, when I come to print a second, both the Colour Management and Epson Colour Controls are greyed out and showing No Colour Management

    I have recently purchased a Mac computer (updated to Maverick) to go with my Epson Stylus Photo RX500 printer which has given excellent service with my old Windows computer. However, when trying to print pictures or photos via Photoshop Elements 11, the best results I can get are using the Colour Management and Epson Colour controls in the printing options box.
    My problem is that after printing the first photo or picture, when I come to print a second, both the Colour Management and Epson Colour Controls are greyed out and showing No Colour Management, The only way I can reset the controls is to shut down the printer and computer and restart.
    Could there may be a setting somewhere that I need to adjust please?  I have been in touch with Epson and they say that the Epson Colour controls are part of the Photoshop Elements software but a post on the Adobe forum brought no results and I am unable to contact Adobe.
    <Edited by Host>

    Hello Garry. Thanks for the reply. I guess I should have used a different title from "How do I post a question?" That should come after trying to resolved the colour settings first. However, to answer your question, after experimenting with all the different settings in Photoshop Elements and Epson software, I now start with PSE11 Colour settings then click "no colour management" then after clicking Print, I choose "More Options/Colour Management/Colour Handling/Printer Manages Colour" then I choose "Page Setup/Layout/Colour Matching" which then shows Epson Colour Controls but I also choose "Layout/Colour Management" which then shows "Colour Controls/Mode" I then of course choose an Epson printer profile depending on the paper I am using. I get good results but as I said, the Colour Matching and Colour Controls are then greyed out. Hope that makes sense.

  • Why does my computer say 'your computer restarted due to a problem' and continuously loop?

    I am trying to upgrade from Lion to Mountain Lion on my iMac. It says that the installation is successful, but then shows 'Your computer restarted due to a problem' and continuously tries to restart.
    I tried to set up Apple support with the 90-day complimentary support, but because the iMac itself is older it won't allow me to contact them.
    Any help with fixing the problem or how to get in touch with Apple's support is appreciated.

    You maybe having kernal panic problems.
    Kernel Panics - About
    Kernel Panics - Avoiding and Eliminating
    Kernel Panics FAQ   
    Kernel Panics FAQ (2)
    Kernel Panics - Understanding and Debugging

  • Problems with your HP printer after upgrading to Windows 8.1

    If you are experiencing problems with your HP printer after upgrading to Windows 8.1 please click on the below link and install the HP Print and Scan Doctor and run the utility to fix the issue.
    www.hp.com/go/tools.
    I was an HP employee
    If I have helped you solve your issue please mark it as solved
    **Say Thanks By Clicking on the Kudos Star**

    Hi.....my laserjet 1536dnf mfp was working perfectly with win 8 pro....then I installed win 8.1 pro and now the computer ,which is part of a network,can not communicate with the scanner of the printer--it prints just fine. On another computer (running win 7 ) on the same network, the scanner and all other printer functions  work just fine.
          I have tried installing the latest drivers from HP......scanner still not "communicating" with computer.....also temporarily disabled firewall.....please help...all the best -David G (gossat)

  • There is a problem communicating with the printer.

    I have a Lexmark Interpret S405. I am using a MBP laptop with WiFi, running 10.5.8. I have a cabled (non-wifi) Linsys router. I am using an Airport Express.
    I was finally able to get the WiFi light on the Lexmark to be static green after reinstalling the Lexmark WiFi setup and reconfiguring my Airport settings so that both the computer and printer see each other.
    In fact, I even updated the driver from Lexmark's Web site last night and I watched the WiFi light on the printer blink green indicating that the installation of the driver update was being communicated to the printer.
    However, when I print, it opens the print window and says first "Looking for S300-S400", then it says "Printer is now online". Then after about 10 seconds, I get this error: "There is a problem communicating with the printer. Make sure the printer is powered on and connected to the computer. Delete or hold the job and try again."
    I've exhausted Lexmark's technical databases and couldn't find the answer here.
    I've read that one possible solution was to delete all the printers from the "Print & Fax" system preferences window and re-add. That didn't work.
    Lexmark says for: The printer communicating on a network; however, the printer is not responsive. Possible causes could be:
    1. Your printer is associated with a network, router, or access point, but it is not your network.
    2. A software process is blocked by a system security firewall preventing network communication.
    3. You are logged into Virtual Private Network (VPN).
    4. You are connected to a network but have decided to switch to a USB connection.
    I don't have a VPN and have removed the USB cable, then restarted both printer and computer, and deleted printers in Sys Prefs, restarted, and still no solution.
    I can print directly via USB cable, but want to print wirelessly.
    Lexmark also says to enter my PIN (which I have pulled out from the print menu screen on the printer) in the System. That tells me a lot...
    Network settings on the print window on the printer also tell me Signal strength is 5 (excellent) and that I am on the network my airport is on.
    Message was edited by: Macman17

    I bet this is too late but...
    Are you trying to print through the airport express wirelessly or the built in wireless of the lexmark? If you want to use the airport express, there is no need to mess with the wireless printing on the lexmark at all. The airport express will be easy to set up, all the wireless setups through the printers are a pain.

  • WIndows 8.1 printer error: windows cannot print due to a problem with the current printer set up

    My HP OFFICEJET 8500 PRO was working just fine wirelessly until I installed the Windows 8.1 update from the Microsoft.  Now I cannot print at all.  I get an error that says,  "windows cannot print due to a problem with the current printer set up".  I have tried reinstalling and a ton of other solutions to no avail.  Can someone PLEASE Help!

    Hello there, @jesseangelique ,
    Welcome to the Community!
    I would love to help you with the printing issue you're having, since the Windows 8.1 that was done.
    Please run the Print and Scan Doctor. Write me back with the results or post a screen shot of the results and I will have a look at them.
    This diagnostic tool will check for any conflicts that could be causing the issue. The tool will show you a report at the end. If there was a problem that the tool could not fix, you will notice it in the results.
    Also, let me know which Officejet 8500 Model you have:
     HP Officejet Pro 8500 All-in-One Printer - A909a
     HP Officejet Pro 8500 All-in-One Printer - A909b
     HP Officejet Pro 8500 Premier All-in-One Printer - A909n
     HP Officejet Pro 8500 Wireless All-in-One Printer - A909g
    Hope to hear from you!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • I printed a 'preview' document and now it continues to print a never ending set of copies.  I have re-installed the printer software, but it still continues to print more copies.  What do I need to do to stop the document printing?

    I printed a 'preview' document and now it continues to print a never ending set of copies.  I have re-installed the printer software, but it still continues to print more copies.  What do I need to do to stop the document printing?

    Try resetting the printing system.
    1. Open System Preferences > Print & Fax
    2. Move your mouse over the Printers list
    3. Hold down the Control button and click the mouse
    4. Click the "Reset printing system ..." popup
    5. Restart your Mac
    This will remove your print queues but not your printer drivers. So you will only need to add your printer queues again.

  • Problem with Photoshop Elements Printing

    I have been using Photoshop Elements for a couple of years now and know it pretty well.  Today while attempting to print, a strange problem came up:  After going through the protocol to make a print, just before the image prints PE does a very fast auto correction that basically ruins all the color correction I have made on the image.  How do I disable this function?

    Hi and thanks for your reply. I checked the settings under "Print", "More Options", then "Color Management" and it only has "Print Space", none of the three options that you said I should have.  Am I looking in the wrong place?
    Date: Mon, 3 Sep 2012 11:14:57 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problem with Photoshop Elements Printing
        Re: Problem with Photoshop Elements Printing
        created by 99jon in Photoshop Elements - View the full discussion
      Check your color management by clicking More Options in the print dialog There are basically three options:1) Printer Manages Color2) Elements Manages color3) No color Management Make sure everything is consistent e.g. if you choose Elements manages color make sure color management is switched off in the print driver. 
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4669848#4669848
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4669848#4669848. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Cannot print due to a problem with the current printer

    Cannot print (anymore) due to a problem with the current printer is the message I get every time I try to print something out. I tried to reinstall the printer's software, I changed the cables, but nothing happened. It seems to be something related to the printer setup utility. Any big idea on how to solve this? I was printing without problems until this afternoon. I have a HP Laserjet 1022 and sometimes I use Adobe Acrobat Writer. None is currently working.
    Thanks for any help.
    Power Book G4   Mac OS X (10.3.9)  

    I just had the opererational system (10.3.9) reinstalled . Back to normality again.

  • Problem when trying to print standart invoice crystal report for SAP

    Hi All, I have the following problem when trying to print a system invoice report in crystal reports for SAP
    I pass params and load the report using this code
    Private Sub DisplayThreadReportSeq()
    Dim oView As New frmViewReport
    Dim strReportPath As String = ""
    Dim strParamName As String = ""
    Try
    Dim CR As New ReportDocument
    CR.Load(oReport.CrstPath)
    ' Declare the parameter related objects.
    SetReportValues(CR)
    Dim crParameterDiscreteValue As ParameterDiscreteValue
    Dim crParameterFieldDefinitions As ParameterFieldDefinitions
    Dim crParameterFieldLocation As ParameterFieldDefinition
    Dim crParameterValues As ParameterValues
    ' Get the report's parameters collection.
    For Each oPar As cslParam In oReport.Params
    crParameterFieldDefinitions = CR.DataDefinition.ParameterFields
    crParameterFieldLocation = crParameterFieldDefinitions.Item(oPar.ParName)
    crParameterValues = crParameterFieldLocation.CurrentValues
    crParameterDiscreteValue = New CrystalDecisions.Shared.ParameterDiscreteValue
    crParameterDiscreteValue.Value = oPar.Value
    crParameterValues.Add(crParameterDiscreteValue)
    crParameterFieldLocation.ApplyCurrentValues(crParameterValues)
    Next
    If pPrint Then
    If oReport.Printer "" Then
    CR.PrintOptions.PrinterName = oReport.Printer
    End If
    CR.PrintToPrinter(IIf(oReport.Copies = "", 1, oReport.Copies), False, 0, 0)
    SBO_Application.StatusBar.SetText("Printed Document Successfully", SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Success)
    Else
    oView.Text = pReport
    oView.TopMost = True
    oView.Viewer.ReportSource = CR
    oView.Hide()
    oView.ShowDialog()
    End If
    Catch ex As Exception
    Util_GenErrorLog("DisplayReport", ex)
    End Try
    End Sub
    This code works fine when the report invoke to print is developed in crystal reports version for .net 2008 or .net 2005
    when trying to print a report standart getting from SAP BO 8.8.1 using this code I getting the following error:
    Error in File C:UsersecombaAppDataLocalTemp5ARInvoiceStandartSap {300B9A68-DF05-4D7B-8F3B-1670A4493BEE}.rpt:
    Error in formula .
    'Shared numberVar SectionTotalMaxHeght;
    A number, currency amount, boolean, date, time, date-time, or string is expected here.
    This report is the standart report that SAP 8.8.1 includes and works fine on SAP.
    I referenced this dlls CrystalDecisions.CrystalReports.Engine.dll, CrystalDecisions.CrystalReports.Shared, version 10.2.3600
    How I can get these dll´s version for Crystal Report 2008 for SAP Business one or How I can solve this problem
    thanks in advance,
    Ezequiel.

    Hi Ezequiel,
    You can try to search in SAP Business One Reporting & Printing forum section or post there.
    nd.Q

  • Hi There, I have a problem when trying to print either Email or from a web page.

    Hi There,
    I have a problem when trying to print contents fro either Email's or from web pages, the problem started after i opened Google earth and it down loaded Google Chrome i do not like Google chrome so i removed it from my pc via add and remove programmes since then when i try to print an email i get what looks like the computer settings for writing the email and not the text same for web pages, as anyone come across this problem before i can print any word or spreadsheet documents but problem is with email's and web pages.
    Many Thanks.

    Something changed on your system, possibly when Google Chrome installed. It could  be many things, but what it boils down to, is it needs to go back to the way it was. Either by removing whatever else might still be left from the install, or maybe by reinstalling the printer itself.
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

Maybe you are looking for

  • Conversion between Cordinates

    I am using TextLayout for rendering a unicode text.and calculated the bounding boxes of each characters in textlayout . Font size is set as 12 and for the same Text i am also generating image of it and then i found out the bounding boxes for each cha

  • Apple TV and External HDD

    I'm running out of space for the movies on my internal HDD. I purchased an 40G ATV (the 160 was out of stock) and I intended to store the movies there. Since 40G is too low, I wanted to connect an external HDD to the ATV. Is this possible and if yes,

  • Mapping spatial object type

    I need to map a table with a spatial column of type MDSYS.SDO_GEOMETRY using TopLink. This type is defined as: CREATE TYPE SDO_GEOMETRY AS OBJECT ( SDO_GTYPE NUMBER, SDO_SRID NUMBER, SDO_POINT SDO_POINT_TYPE, SDO_ELEM_INFO MDSYS.SDO_ELEM_INFO_ARRAY,

  • Image in Matrix

    Hi All, Can anybody suggest me how to retrive image in Matrix column. I used following code on Matrix. I saved image in databse of specific item. Image saved in Database. In val4 i retrive that image in matrix but it is not work. Itemcode and Itemena

  • RRI : Target query opens in background

    Hi all ! I've set up an RRI with a query as a receiver. It works correctly except that when the target query opens, it doesn't remain in foreground. The sender comes back in foreground and I've to go to "Window" menu of Excel to switch back to the re