Printing Issue In LightSwitch Silverlight Client

Hello,
Scenario:
I am able to Print the PageVisual which can fit on PageSize(vertically) through the Silverlight Screen From the LightSwitch Application. I want to print PageVisual in multiple page. 

HI NikunjVaru,
LightSwitch doesn’t include built-in reporting and printing functionality, but you can incorporate reporting and printing into a LightSwitch application in several ways. For this scenario, you can try methods in the link below, and check which is suitable
for you.
See:
Reporting and Printing in LightSwitch
Best regards,
Angie
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Sun ray thin client printing issue ?

    Hi Guys,
    i was configured printer to print through sun ray thin client, but when i print its print carbage document, i changed that printer with another printer but still printing same, also i was change driver for that printer but the issue still , anybody advice me what shall i do ?
    Thanks in Advance,
    Basem

    Hi,
    Did you get to solve the problem? I was able to print from an RDP session but get continuous pages of garbage preceded by a banner page. Were you able to print from windows to a DTU attached USB printer?
    Please advise.
    Thank you and
    BR,
    Senka

  • Printer issues for HTML document.

    Hello,
    We are facing a critical problem.In our project we are using sql server 2005,from one of the SP we are generating an HTML document.Ideally this document should be printed in 2 pages.When we print that with Laser JET 2430 printer it gets printed in two pages but when we print that with other version printer it gets printed in four pages.Our client has different version printer due to which they get that document printed in four pages which they want to be in two pages only.
    Workflow of this Document generation is as foloows:
    1)When this SP is executed it generates a HTML document and places at some shared folder.
    2)Then we open the document and apply follwing settings to document in order to view and print it properly as:
    View>>Text Size>>Medium.
    Also check if the size is A4 and margins are set to default values by doing the following.
    Go to
    File>>Page Setup
    Size: A4
    Left: 0.166 Right: 0.166
    Top: 0.166 Bottom: 0.266
    And then click on Print Preview.
    When the document is previwed it should be on two pages only.
    Basically here problem is that document gets printed perfectly when its Top margin is set to 0.166 but each printer has its own minimum Top margin settings due to which in different printers it takes different Top margin values for e.g when we print the document with HP Laser Jet P3005x its minimum Top margin are 0.196 then that document expands to 3 pages.Even we try to set this to 0.166 it gets overwritten with 0.196.
    Can you please tell us what changes should be done to SP which is generating the HTML so that its setting doesnt change printer wise and document gets printed in two pages only.Or else can you please suggest the links of forums where we can discuss this issue.

    Hi
    Quest_RG,
    This is actually very simple question, but it is an CSS question and not sql :-) once you open the HTML document the part of the SQL is over.
    You can use CSS to configure the printing way. using page-break-before and
    page-break-after you can insert CSS breaks where ever you want. for example:
    content here
    <DIV style="page-break-after:always"></DIV>
    content here
    I Hope this will help you,
    [Personal Site] [Blog] [Facebook]

  • Pick list print issue?

    Hello Friends,
    I have a printing issue with my client,
    For specific customers  they ship very large kits(BOM's) and require ship labels to print for each component listed on the picklist , in addition to the regular ship label for the header material YX.
    These components are item category YF (purposely omitted for delivery note).
    They do not want this to print of every customer, Please advice how we can add a logic to  print shipping labels for components only for specific customers.
    thanks;
    Mike

    hi,
    Currently i am working on similar object
    We have developed Zprogram for the project. We are using  bar code printer which is used to print the lables.
    1. Developed a zprogram with selection screen child & parent material radio buttons. so whenver u click child material it will create label only for components apart from header material.
    2.Program generates a text file with component details and  downloads it to the Application server
    3. Once the text fiole get downloaded & bar code printer is ON , it will automatically prints the labels. If the barcode printer is OFF, then u will be able to see the text files
    Please find the Zprogram used, pls take help of ur ABAPER to cchnage the plants & details corresponding to ur setup
    REPORT  ZKITTAG  message-id z_apd.
    tables : mseg,
             makt,
             mkpf,
             zmmstoragebin,
             t001w,
             mast,
             stpo.
    **SELECTION SCREEN
    selection-screen  : begin of block blk1 with frame title text-001.
    parameters        : p_werks type ekpo-werks obligatory.
    parameters        : s_mblnr type mseg-mblnr obligatory.
    select-options   :  s_matnr for mseg-matnr obligatory no intervals
    no-extension.
    parameters:p_child  radiobutton group rad,
               p_parent radiobutton group rad.
    *parameters        : no      type i.
    selection-screen  : end of block blk1.
    data :begin of it_mseg_header occurs 0,
          MBLNR LIKE MSEG-MBLNR,
          MJAHR LIKE MSEG-MJAHR,"Kiran 28.06.2008
          EBELN LIKE MSEG-EBELN,
          MATNR LIKE MSEG-MATNR,
          MENGE like mseg-menge,
          BWTAR LIKE MSEG-BWTAR,
          meins like mseg-meins,
          MAKTX LIKE MAKT-MAKTX,
          menge1(19),
          STORAGE LIKE ZMMSTORAGEBIN-STORAGE,  "Sridhar on 22082005
          WERKS LIKE MSEG-WERKS,               "Sridhar on 22082005
    end of it_mseg_header.
    data: menge1 like mseg-menge.
    DATA : BEGIN OF IT_MSEG_CHILD OCCURS 0,
            MBLNR LIKE MSEG-MBLNR,
            MJAHR LIKE MSEG-MJAHR,
            EBELN LIKE MSEG-EBELN,
            WERKS LIKE MSEG-WERKS,
            MATNR1 LIKE MSEG-MATNR, " HEADER PARTNO
            MATNR LIKE MSEG-MATNR,
            MAKTX LIKE MAKT-MAKTX,
            BWTAR LIKE MSEG-BWTAR,
            MEINS LIKE MSEG-MEINS,
            STORAGE LIKE ZMMSTORAGEBIN-STORAGE,
            HQTY LIKE MSEG-MENGE, " HEADER QTY
            MENGE LIKE MSEG-MENGE, " CHILD QTY
            SUMQTY LIKE MSEG-MENGE, "SUM OF CHILD QTY FOR SAME PARTS
            QTPKIT LIKE MSEG-MENGE, " QTY PER KIT
            PQTY LIKE MSEG-MENGE, " PRINT QTY
            PQTY1 LIKE MSEG-MENGE, " PRINT QTY 1
            QUO TYPE I,
            REM LIKE MSEG-MENGE ,           
            MENGE2(19),
            MENGE3(16),
            MENGE4(19),
            MENGE5(16),
          END OF IT_MSEG_CHILD.
    DATA: TEMPQUO LIKE MSEG-MENGE,TEMPREM LIKE MSEG-MENGE,
            TEMPHQTY LIKE MSEG-MENGE,TEMPSUMQTY LIKE MSEG-MENGE,
            CMPVAL LIKE MSEG-MENGE.
    data: v_bktxt type mkpf-bktxt.
    data: sum like mseg-menge.
    data : prod(13).
    data : n1(2) type n.
    data : n2(2) type n.              
    data : n3(2) type n.              
    data : n4(2) type n.              
    data : c1(2) type n value 1.      
    data : dsn(150).
    data : dsn1(100).
    data : number(3).
    data : file(50) value 'E:\userdata\Barcode_kittags\kit00' .
    Data : file1(50) value 'E:\userdata\Barcode_kittags\kit00' .
    Data for server details
    data : host1 like syst-host.
    data : sysid like syst-sysid.
    RANGES : r_werks FOR mseg-werks.
    *AT SELECTION SCREEN.*
    at selection-screen.
    r_werks-sign = 'I'.
    r_werks-option = 'EQ'.
    r_werks-low = 'WK01'.
    APPEND r_werks.
    r_werks-low = 'CQ01'.
    APPEND r_werks.
    if p_werks not in r_werks.
    message 'Plant should be either plant1 or plant2' TYPE 'E'.
    endif.
      select single werks into t001w-werks  from t001w
             where werks eq p_werks.
      if sy-subrc <> 0.
        message e000(z_apd) with 'Invalid Plant...Please Check'.
      endif.
      select single mblnr into mseg-mblnr from mseg
             where mblnr eq s_mblnr.
      if sy-subrc <> 0.
        message e000(z_apd) with 'Invalid Material Doc...Please Check'.
      endif.
    start-of-selection.
      perform get_data.
      if p_child eq 'X'.
        if it_mseg_child is initial.
       No Details Available
          message i017(z_apd) with text-002.
          exit.
        else.
          host1 = syst-host.
          sysid = syst-sysid.
          n1 = 1.
    **Sorting according parent material and child parts
          sort it_mseg_child by matnr1 matnr.
    loop at it_mseg_child.            
          if p_werks = 'WK01'.
            concatenate file n1 '.PJ' into dsn.
          ENDIF.
          if p_werks = 'CQ01'.
            concatenate file1 n1 '.PJ' into dsn.
          ENDIF.
          perform write_data.
          clear dsn.
          n1 = n1 + 1.
    endloop.                          
          message i017(z_apd) with TExt-003."'File Has Been Created'.
          clear: it_mseg_child, it_mseg_child.
          refresh : it_mseg_child, it_mseg_child.
        endif.
      else.
        if it_mseg_header is initial.
       No Details Available
          message i017(z_apd) with text-002.
          exit.
        else.
          host1 = syst-host.
          sysid = syst-sysid.
          n1 = 1.
    **Sorting according parent material and child parts
          sort it_mseg_header by matnr.
    loop at it_mseg_header .         
          if p_werks = 'WK01'.
            concatenate file n1 '.PJ' into dsn.
          ENDIF.
          if p_werks = 'CQ01'.
            concatenate file1 n1 '.PJ' into dsn.
          ENDIF.
          n2 = it_mseg_header-menge.
          perform write_data1.
          clear dsn.
          n1 = n1 + 1.
    endloop.                       
          message i017(z_apd) with TExt-003."'File Has Been Created'.
          clear: it_mseg_header, it_mseg_header.
          refresh : it_mseg_header, it_mseg_header.
        endif.
      endif.
    end-of-selection.
    *&      Form  get_data
          text
    FORM get_data .
      AUTHORITY-CHECK OBJECT 'ZPLANT'
      ID 'WERKS' FIELD P_WERKS.
      IF SY-SUBRC NE 0.
        message E006(zmess) with text-009  p_werks.
      endif.
      select a~mblnr
             a~mjahr   
             a~ebeln
             a~matnr
             a~menge
             a~bwtar
             a~meins
             a~werks
       from mseg as a
       inner join mkpf as b
       on  amblnr = bmblnr and
           amjahr = bmjahr
      into corresponding fields of table it_mseg_header
      where
      a~WERKS = p_werks
      and b~mblnr = s_mblnr
      and a~matnr  in s_matnr
      and a~BWART = '101'.
      loop at it_mseg_header.
        select single maktx from makt  into
               (it_mseg_header-maktx)
               where matnr = it_mseg_header-matnr.
        select single storage into (it_mseg_header-storage)
        from ZMMSTORAGEBIN
        where WERKS = it_mseg_header-WERKS
        and MATNR = it_mseg_header-MATNR and
        BWTAR = it_mseg_header-BWTAR.
        move '1.000' to it_mseg_header-menge1.
        CONCATENATE it_mseg_header-MENGE1 it_mseg_header-meins INTO
        it_mseg_header-menge1 .
        modify it_mseg_header transporting maktx menge1.
    SELECT DISTINCT AMBLNR aMJAHR aWERKS aMEINS aEBELN aMATNR a~BWTAR
    a~MENGE
    INTO CORRESPONDING FIELDS OF TABLE IT_MSEG_CHILD
    FROM MSEG AS A INNER JOIN MKPF AS B
    ON AMBLNR = BMBLNR AND
       AMJAHR = BMJAHR
    WHERE A~MBLNR = IT_MSEG_HEADER-MBLNR
    AND  A~MJAHR = IT_MSEG_HEADER-MJAHR
    AND A~BWART = '543'
    AND A~WERKS = IT_MSEG_HEADER-WERKS
    AND A~EBELN = IT_MSEG_HEADER-EBELN.
    *AND A~BWART = '541'.
      endloop.
      loop at it_mseg_child.
        SELECT SINGLE SUM( MENGE )
        INTO (TEMPSUMQTY)
        FROM MSEG
        WHERE MBLNR = IT_MSEG_CHILD-MBLNR
        AND MJAHR = IT_MSEG_CHILD-MJAHR 
        AND WERKS = IT_MSEG_CHILD-WERKS 
        AND EBELN = IT_MSEG_CHILD-EBELN
        AND MATNR = IT_MSEG_CHILD-MATNR
        AND BWART = '543'.
        select single maktx
        into it_mseg_child-maktx
        from makt
        where matnr = it_mseg_child-matnr.
        select single matnr MENGE
        into (it_mseg_child-matnr1,TEMPHQTY)
        from mseg
        where mblnr = it_mseg_child-mblnr
        and mjahr   = it_mseg_child-mjahr
        and werks   = it_mseg_child-werks
        and ebeln   = it_mseg_child-ebeln
        and bwart = '101'.
        select single storage
        into (it_mseg_child-storage)
        from ZMMSTORAGEBIN
        where WERKS = it_mseg_child-WERKS
        and MATNR = it_mseg_child-MATNR and
        BWTAR = it_mseg_child-BWTAR.
        IT_MSEG_CHILD-QTPKIT = TEMPSUMQTY / TEMPHQTY.
        IT_MSEG_CHILD-SUMQTY = TEMPSUMQTY.
        IT_MSEG_CHILD-HQTY = TEMPHQTY.
        modify it_mseg_child.
      endloop.
      DELETE ADJACENT DUPLICATES FROM it_mseg_child.
      LOOP AT IT_MSEG_CHILD.
        IT_MSEG_CHILD-QUO = IT_MSEG_CHILD-MENGE DIV IT_MSEG_CHILD-QTPKIT.
        IT_MSEG_CHILD-REM = IT_MSEG_CHILD-MENGE MOD IT_MSEG_CHILD-QTPKIT.
        it_mseg_child-MENGE3 = it_mseg_child-QTPKIT.
        condense it_mseg_child-MENGE3.
        CONCATENATE it_mseg_child-MENGE3 it_mseg_child-MEins INTO
        it_mseg_child-MENGE2 .
        condense it_mseg_child-MENGE2 .
        it_mseg_child-MENGE4 = IT_MSEG_CHILD-REM.
        condense it_mseg_child-MENGE4.
        CONCATENATE it_mseg_child-MENGE4 it_mseg_child-MEins INTO
        it_mseg_child-MENGE5 .
        condense it_mseg_child-MENGE5 .
        MODIFY IT_MSEG_CHILD.
      ENDLOOP.
    ENDFORM.                    " get_data
    *&      Form  write_data
          text
    FORM write_data .
      open dataset dsn for output in text mode encoding default.
      if sy-subrc <> 0.
        exit.
      endif.
    transfer 'KTN.LBL' to dsn.                      
      SORT IT_MSEG_CHILD BY EBELN STORAGE.
      LOOP AT IT_MSEG_CHILD.
       IF IT_MSEG_CHILD-QUO > 0."uncommented           
    IF IT_MSEG_CHILD-REM = 0."commented              
    n3 = IT_MSEG_CHILD-QUO.                         
    do n3 times.                                    
      transfer 'KTN.LBL' to dsn.                     
       MOVE 1 TO NUMBER.                               
    MOVE IT_MSEG_CHILD-QUO TO NUMBER."commented     
      MOVE IT_MSEG_CHILD-QTPKIT TO NUMBER."commented 
            condense number.
            transfer number to dsn.
            transfer : it_mseg_child-EBELN to dsn,
                       it_mseg_child-matnr1 to dsn,
                       it_mseg_child-matnr to dsn,
                       it_mseg_child-maktx to dsn,
                       it_mseg_child-MENGE2 to dsn,
                       it_mseg_child-bwtar to dsn.
            transfer it_mseg_child-storage to dsn.
            transfer space to dsn.
            c1 = c1 + 1.
            if c1 = 8.
              clear c1.
              close dataset dsn.
              clear dsn.
              n1 = n1 + 1.
              if p_werks = 'WK01'.
                concatenate file n1 '.PJ' into dsn.
              ENDIF.
              if p_werks = 'CQ01'.
                concatenate file1 n1 '.PJ' into dsn.
              ENDIF.
              open dataset dsn for output in text mode encoding default.
              if sy-subrc <> 0.
                exit.
              endif.
            endif.
          enddo.                                
        ENDIF.
        IF IT_MSEG_CHILD-REM > 0.
      n4 = IT_MSEG_CHILD-REM.                        
         do 1 times.                                   
          transfer 'KTN.LBL' to dsn.                   
          MOVE 1 TO NUMBER."uncommented                
      MOVE IT_MSEG_CHILD-REM TO NUMBER."commented
            condense number.
            transfer number to dsn.
            transfer : it_mseg_child-EBELN to dsn,
                       it_mseg_child-matnr1 to dsn,
                       it_mseg_child-matnr to dsn,
                       it_mseg_child-maktx to dsn,
                       it_mseg_child-MENGE5 to dsn,
                       it_mseg_child-bwtar to dsn.
            transfer it_mseg_child-storage to dsn.
            transfer space to dsn.
            c1 = c1 + 1.
            if c1 = 8.
              clear c1.
              close dataset dsn.
              clear dsn.
              n1 = n1 + 1.
              if p_werks = 'WK01'.
                concatenate file n1 '.PJ' into dsn.
              ENDIF.
              if p_werks = 'CQ01'.
                concatenate file1 n1 '.PJ' into dsn.
              ENDIF.
              open dataset dsn for output in text mode encoding default.
              if sy-subrc <> 0.
                exit.
              endif.
            endif.
          enddo.                                 
        ENDIF.
      ENDLOOP.
      close dataset dsn.
    ENDFORM.                    " write_data
    *&      Form  write_data1
          text
    FORM write_data1 .
      open dataset dsn for output in text mode encoding default.
      if sy-subrc <> 0.
        exit.
      endif.
      SORT IT_MSEG_HEADER BY EBELN .
    LOOP AT IT_MSEG_HEADER.          
      do n2 times.                         
        transfer 'KTN.LBL' to dsn.       
        MOVE 1 TO NUMBER.
        condense number.
        transfer number to dsn.
        transfer : it_mseg_header-EBELN to dsn,
                   it_mseg_header-matnr to dsn,
                   it_mseg_header-matnr to dsn,
                   it_mseg_header-maktx to dsn,
                   it_mseg_header-MENGE1 to dsn,
                   it_mseg_header-bwtar to dsn,
                   it_mseg_header-storage to dsn. 
        transfer space to dsn.
        c1 = c1 + 1.                        
        if c1 = 8.                          
          clear c1.                         
          close dataset dsn.
          clear dsn.
          n1 = n1 + 1.
          if p_werks = 'WK01'.
            concatenate file n1 '.PJ' into dsn.
          ENDIF.
          if p_werks = 'CQ01'.
            concatenate file1 n1 '.PJ' into dsn.
          ENDIF.
          open dataset dsn for output in text mode encoding default.
          if sy-subrc <> 0.
            exit.
          endif.
        endif.
    *ENDLOOP.                     
      enddo.                        
      close dataset dsn.
    ENDFORM.                    " write_data1
    hope this shelps u
    regards,
    Arun prasad

  • Address printing issue in SAPSCRIPT

    Hi All,
    I am getting address printing issue in address in sapscript .
    Here is my address format in the script.
    /: ADDRESS DELIVERY PARAGRAPH ZA LINES 10
    /:    TITLE                &KNA1-ANRED&
    /:    NAME               &KNA1-NAME1&,  &KNA1-NAME2&,  &KNA1-NAME3&,  &KNA1-NAME4&
    /:    STREET            &ADRC-STREET&
    /:   LOCATION        &ADRC-STR_SUPPL1
    /:   POBOX             &KNA1-PFACH&  CODE  &KNA1-PSTL2&
    /:   POSTCODE       &KNA1-PSTLZ&
    /:  REGION              &KNA1-REGIO&
    /:  CITY                   &KNA1-ORT01&,  KNA1-ORT02&
    /:  COUNTRY          &KNA1-LAND1&
    /:  FROMCOUNTRY &T001-LAND1&
    /: ENDADDRESS
    Here in the above code I had added LOCATION and modified the STREET field value.
    Moved the changes to QAS server along with the driver program., confirmed all the related transports are moved.
    While testing in QAS , i noticed that after LOCATION print I am getting blank space and then the remaining fields are printed.
    For example:
         casa velas boutique hotel
         Attn:  Marie John
         AV.  cocoterosss
        63550 Nuevo Vallarta, Nayarit,
        MEXICO.
    In the above example the third line the LOCATION data.
    The surprise here is that I am not getting blank space in DEV , I had checked all the transports, and all are ok.
    Please advice me where I am wrong, ie why i am getting blank space in QAS whereas it not showing in DEV.
    Thanks in advance.
    Vengal Rao.

    Hi Jay,
    I fully agree with you that the address printed will be as per SAP standards.
    Currently I am looking into the country configuration in DEV - I hope may be the reason,
    I have to use the existing ADDRESS....ENDADDRESS format as our client is using  4.6 version,  he just print the financial reports using the common script.
    So anything away from the orginal one may lead to more trouble in other reports.
    Once I get a reason behind the issue, I shall definetly post them.
    Thanks,
    Vengal Rao.

  • Nakisa OrgChart V3.0 SP1: Printing Issues

    Hi,
    We're using Nakisa OrgChart VSN30 SP1.
    We have a few issues about printing:
    1. Tiling. When I go to tile a large Org Chart, even though Nakisa shows the page separator lines and no margins u2013 each page does have a margin cuts out portions of the printed Org Chart. 
    2. Font for "printing/Header" and "ChartBook/Cover or Head". "Calibri" is our company's Standard font but not included in the font choices in Nakisa.
    BTW, the sector of Print and Export in Nakisa's Help Document for OrgChart VSN30 SP1 has different screenshots of "Basic Print Wizard" from what we have.
    Thanks,
    Hongling

    Hongling,
    Just to add that I had a client on 3.0 who did some very extensive testing of printing and exporting.  They too had issues using tiling that have been confirmed as not present in SP2.  I can't say for sure if your issue is or not without trying. 
    Is SP2 an option for you at this point?
    If not, then OSS seems the only way to go. 
    If SP2 is an option, then it is worth considering but you might want to seek some assurance about whether this issue is resolved first.
    Regards,
    Stephen
    P.s. By the way, did you get anywhere resolving your other print issue "different printers"? I notice it is still open on this forum.

  • Printing Issues with HP OfficeJet 100 and Windows 8.1

    We use HP OfficeJet 100 mobile printers and have a printing issue.When we print the printer acts as if it is going to print and then prints one blank page.Printer will not print even though it is showing as default printer.Printer will just stop printing in the middle of a document, even in the middle of printing out a page. We are printing via the USB cableWe are using Windows 8.1We are connecting to laptopsWe have been using the HP mobile range of printers since 2004 and have only experienced these issues since we moved the laptops onto Windows 8/8.1 We have:Uninstalled and reinstalled the printer drivers – this fixed this issue for a short while and then it reappeared againCalled HP support and they directed us to the driver support page which had the latest print drivers, uninstalled and reinstalled drivers with them on the phone. This initially fixed the problem and then it returned a few days laterAfter trawling the support forums found directions to change the print processor to “WinPrint” – No effect as the processor was already on this settingDownloaded the HP diagnostic tool – HP Print and Scan Doctor – didn’t fix anything Any further help would be much appreciated.

    Hello there Lawrence, Welcome to the Forums! I hope you enjoy your experience
    I noticed your post about the troubles you are running into when you attempt to install your OJ 6100 printer on your Windows 8.1 laptop. I read all of your attempts and seen you have tried several methods to try and get the installation to complete successfully.
    I would like to make some suggestions that may help. Let me know how it goes!
    1. Check that Internet Explorer pop-up blockers are turned off before downloading the installer
    Internet Explorer Pop-up Blocker: How do I turn off Pop-up Blocker?
    Try to install
    2. If you're running McAfee Live Safe or any other firewall, please temporarily disable the "real time scanning".
    How to disable realtime scans
    Try the install
    3. Go to the start screen (you may also press the windows key + R to open the run box) and type %WINDIR% this should show the windows folder.
    Click on the folder and scroll until you see files. Look for a filed named "HPWINS*.DAT" (the * is for a number that varies) remove this file and try the installation.
    Try the install
    Enjoy your Monday!
    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!

  • HP ENVY 100 D410 Printing issues...

    I have an HP ENVY 100 that has recently started having printing issues.  We recently upgraded to Mountain Lion and had no problems in the upgrade nor have we had any other software that we've changed.  The problem seems to be somewhat random and the results are always the same.  When commanded to print the printer acts as if it is running out of ink and then distorts the fonts creating vertical lines on the page and skipping rows creating what almost looks like a bar code. It's most peculiar and the only way I can find to solve the issue is to completely restart both my system and the printer.  Thinking that I had a driver issue on my Mac I used the utility on the printer to update drivers and none were found.  To insure that the problems wasn't isolated to just my machine I tried our laptop as well and it seems to have the same problem.  Has anyone had a similar problem?

    Hi Talon,
    That more liekly related to the software indeed, I would suggest trying the following steps:
    Reset the printing system as listed below:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01371980
    Open the Applications folder, then Hewlett-Packard and then open the Device Utilities folder, launch the HP Setup Asisistant and follow the steps to reconfigure the device.
    If there is no Hewlett-Packard folder simply re-add the printer by clicking the plus button under Print & Scan.
    Now try printing and follow for any difference.
    If the same persists uninstall any HP Software by following the HP Uninstaller under the Hewlett-Packard folder.
    If there is no Hewlett-Packard folder follow the steps listed under Mac OS X 10.6, 10.7, and 10.8 > I used Apple Software Updates to install the product software below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02440673&tmp_task=useCatego ry&cc=us&dlc=en&lang=en&lc=en&product=5157536#N1305
    Download and isntall the latest Lion Software below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-97934-2 &cc=us&dlc=en&lc=en&os=219&product=4073738&sw_lang=
    Once completing the installation click the Apple icon and install any available Software Update.
    Shlomi

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

  • New airport extreme and printer issues

    OK here is the deal
    I have the new airport and a hp psc 750 printer. I have a new macbook which can not print on this printer. It will recognize it thru bonjour but will not install the driver - the odd thing is that I have a pc connected directly and a windows based wireless laptop which both are able to print via this airport. I also have an external hard drive that is connected to the airport. All of the computers are able access this drive. So all appears in order except for the macbook-printer issue. I contacted tech support and they claimed driver issue. Anyone have any ideas - I have updated the most recent drivers for this computer and I was able to install this printer via a usb connection. Thanks

    There have been a few posts about issues with HP printers working or not working as the case may be through the extreme. I can't remember what they say, but a search for HP in this forum may well help you.
    Sorry to be so vague, just thought it might be a start for you.

  • Printing issue

    I just replaced my b/w cartridge which was working for about 10 copies and now trying to print a colored copy and while the color print is fine, the black ink is coming out blurry/smudged.     The screen indicates "Print cartridge problem  (Black) Refer to device documntatnion to troubleshoot"   I took out the cartridge, shook it, put it back in - no luck - help! Thanks

    Hi @LYNNHAAG , and welcome to the HP Forums!
    I see you're experiencing print issues.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find your product number. Also, please include which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information and the product number we can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know what you find.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Need help diagnosing cause of printing issue w/ image distortion

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

  • Auto adjustment of page orientation causes printing issues with documents that have a page width greater than its page height.

    Hi,
    Since an upgrade from Word 2003 to Word 2010, we are experiencing printing issues with certain
    documents that have a page width greater than its page height.
    In Word 2003, it was no problem to set the page width greater than the page height while setting the page orientation to "portrait".
    In Word 2010, this seems impossible: despite leaving the page orientation to "portrait", if one changes the page width/height as stated,
    Word 2010 automatically adjusts the orientation to "landscape". Resetting the orientation to "portrait" will flip the page's width/heigth settings.
    This behaviour causes printing problems: the page prints out 90° rotated.
    I do not believe this is a printer driver issue: I tried several different printer drivers, and all give the same (bad) result. Setting the printer driver's page orientation settings (before printing) makes no difference, as
    Word 2010 seems to force the page orientation settings.
    Inserting the documents 90° rotated is not an option, since it causes problems with the printing margins.
    This is very annoying, since we have to print official documents of a municipality (driver's licences).
    Is there a workaround for this issue?
    Regards,
    Laurent Grandgaignage
    Sysadmin Gemeentebestuur Stabroek, Belgium

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, we can follow these steps to test this issue
    Step 1: Repair Office 2010
    1.      
    Click
    Start, and then click Control Panel.
    2.      
    Click
    Programs and Features.
    3.      
    Click the
    Office 2010 program that you want to repair, and then click
    Change.
    4.      
    Click
    Repair, and then click Continue. You might need to restart your computer after the repair is complete.
    Step 2:
    Rename the global template (Normal.dotm)Follow the steps for the operating system that you are using:
    Windows Vista and Windows 7
    a)      
    Exit Word 2010
    b)      
    Click
    Start.
    c)       
    In the
    Start Search box, type the following text, and then press
    ENTER:
    1.      
    %userprofile%\appdata\roaming\microsoft\templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    Microsoft Windows XP
    a)      
    Exit Word 2010
    b)      
    Click
    Start, and then click Run.
    c)       
    In the
    Open box, type the following text, and then press ENTER:
    %userprofile%\Application Data\Microsoft\Templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    f)       
    Close Windows Explorer.
    How to troubleshoot print failures in Word 2010, Word 2007, and Word 2003
    http://support.microsoft.com/kb/826845
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything
    I can do for you, please feel free to let me know.
    Hope that helps.
    Sincerely
    William Zhou CHNPlease remember to mark the replies as answers if they help and unmark them if they provide no help.

  • I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer? I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer?
    I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    Well...I went to the modem (Westell, WireSpeed), found the NAT settings, once again, I'm WAY over my head, I am assuming this is a TCP connection (as opposed to a UDP) and per Lorex my mobile devices will use port 1025.  So I gave it a "global port range" of 1-10 and I indicated that the "base host port" was 80, 1025, & 9000 (ports 1,2,3).  When I selected the 'enable' it asked for a "host devise" my choices are my IPhone, IMac and the IP address for the dvr, so I choose the dvr.  I still cannot connect and canyouseeme still can NOT find these open ports.  This is taking up my whole day! I don't know how people figure this stuff out.

  • Remote Desktop Connection and printing issues

    Hi, 
    I am using Windows 7 on my desktop and also connected to Windows Server 2008 R2 to run applications in Windows Server. However, I noted there is problem with the printer issues. Sometimes, when I tried to print some documents using applications
    in Windows Server with my local printer in my room connected to desktop, it won't work.
    Moreover, I need to go to Windows Server, Component Service to restart printer spooler so it will work again. This is a pain. 
    I also noticed there is about 30 seconds wait to process any document to print.
    Unlike if I print documents directly from my local desktop computer running Windows 7 and connected to local printer, it only takes seconds to print.
    My desktop is connected to Windows Server 2008 via local area network. I should not expect such a significant delay in printing. 
    I also wonder why printer spooler needs to be restarted when printer is not working.
    Can anyone advise me about this? Can Microsoft looks into this problem and release updates to fix the bug to improve the system?
    Thanks
    Regards,
    Clement

    Hi,
    Please check if you turn on this settings:
    You need to set this up just before you connect. The setting will be saved so that you won't need to change it the next time you connect.
    1. Open Remote Desktop Connection by clicking the Start button, clicking
    All Programs, clicking Accessories, and then clicking
    Remote Desktop Connection.
    2.Click Options, and then click the Local Resources
    tab.
    3.Under Local devices and resources, select the Printers check box.
    4.Click Connect to start the session.
    Make sure that you select your printer in the Print dialog box each time you print.
    Karen Hu
    TechNet Community Support

Maybe you are looking for

  • Office Web Apps server not working externally

    Hopefully someone with a functional OWA server can help.  When my users try to share a presentation, whiteboard, or poll as an external user or to an external user (coming through Edge), the content fails to share and this error occurs: "We can't con

  • Portable drive no longer recognized

    Hello. I have an HP PD1000a drive that is no longer recognized by my HP 9040n (Windows 7 Ultimate) computer.  This happened overnight.  The drive can be recognized and the driver installed by another computer (HP laptop running W7 Ultimate). When I p

  • Save for web in photoshop

    Im saving a psd in photoshop using the save for web option but when i open it in dreamweaver theres a gap on all four sides of the page. The cellspacing, margins are set to 0. Still i can seem to nudge the page up and left to get rid of the gap.Visua

  • Iweb middle-level developing problems

    Hi to everybody, i'm a new happy mac user! This machine is great =D Sadly some troubles i'm having with iweb are cooling down my enthusiasm for ilife, but I'm dreaming of a solution! I basicly have 3 needs that are, probably, common for all the users

  • Can't re-enable Genius in 8.0.1

    I can't re-enable Genius is 8.0.1 after I disabled it. The option in the Preferences menu and the "Show Genius Sidebar" option in the View menu are greyed out and unavailable. I have no Genius button in the bottom tool bar, either. Any ideas?