DOC TIME PRINTING ISSUE

Hello
When Run the Query in SAP B1 from table OINVE & select DocTime it's show the time of document Creation in Time format
ie 10.45 
but when i crate crystal report for invoice i want to print the time of document creation then i attach the Doc Time field in Crystal from OINV table but it show 1045 ie in Number
when i go to format table there is nmo option for time there is nuber option
So how i print it in time format

Hi Jaykumar........
In SAP Table it gets stored in this format only which you mentioned. But in CR you are right. It goes like a number.
But you can manage this in other way........
Please check this thread you get your solution.........
Re: UDF and CR
Regards,
Rahul

Similar Messages

  • Material Doc (MB1B) Print Issue

    Hi friends
    I want to print material document once transper posting is done through MB1B Tcode.
    i know we can use mb90 tcode to print material document.
    requirement is once user save material document automatically print should be done in back ground for that document.
    Please any one explain how can i do this.
    Thansk
    Ramesh

    which movement type are you using?
    Which transaction / event type are you using? if you are posting GR, you should use WE or WF. If you are posting GI and transfer posting, you should create condition record with WA.
    You should use Date/ time field as "4" for automatic
    Check whether you assigned a printer in communication tab.

  • Question re: HP printer issue

    I've posted recently re: my HP LaserJet 1320 not working with my new iMac.
    I had a thought. Without thinking or doing much research first, I simply installed the drivers etc. from the HP disc that came with the printer. The more I read on here, I tend to think that this wasn't necessary as apparently the driver is included in the OS.
    Would a clean re-install of the OS help? Is it worth a try? Is it difficult to do, for someone who is new to Mac and has never had to install an OS of any kind?
    Has anyone with similar printer issues tried this approach? I appreciate your input.
    Thanks!
    iMac Intel   Mac OS X (10.4.5)   17", 1.83, 160, 1gig

    According to Apple yours is included during the install.
    http://docs.info.apple.com/article.html?artnum=303057#hpdrivers
    I've reinstalled Windows hundreds of times, and OSX dozens, so I'm probably not a good reference on this! But, OSX is a piece of cake! Slide the disk in, select install and follow the prompts. Be sure to back up all data that you want to keep!
    I strongly suggest in an external Firewire drive the same size as your system drive for backups. This way you can always have a bootable backup of your entire system. -This is a whole new topic- Search "backup" here & you will find lots of good advice from the pros.
    Now, can you rescue your system as is? I'm not sure - I would give it my best. But if you have nothing to loose, the reinstall only takes about an hour or so - plus time to install & update any applications that you have.
    Have fun!
    Steve

  • 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

  • Archive & Install, now printing issues

    Hi all,
    I have two printers: an HP6110 AllinOne, and an Epson Stylus Photo 1200. I recently performed an archive and install of my system, and then Software Update updated my system to OS10.4.11 (it was 10.4.10 before the archive and install).
    There are two parts to my current problems.
    1. The original Epson driver does not work anymore. (Version 1.29 is what I have, can't find anything later.) The CUPS/Gutenprint driver does work but doesn't access all the features of my Epson printer. So, what that means is that the color calibration settings I have for the Epson driver are no longer accessible. I need to be able to print color that is correct and calibrated to my monitor color.
    2a. Printing a page to the HP6110 off the internet results in a blank page being spit out, followed by a page that is cut off at the top, meaning only the bottom half of the page is printed on the paper. I have tested this printing from FireFox and Safari.
    Page setup seems normal.
    The HP driver version is 2.7.2. I have tried to download from the HP site but it always times out, so I don't know if I have the latest driver or not. (I think it's something with my firewall settings, but I haven't been able to figure it out. One thing at a time.)
    An internet page prints normally when sent to the Epson, but the HP is my workhorse printer. The Epson can do large format, so I usually keep large paper in it and just use it for that and for color correct printing. (Greg S., if you're out there, I tried to download the HP driver from OpenPrint with no luck.)
    2b. Although I can print to the HP6110, the color looks terrible--all washed out. I will admit that I have not gone into Adobe Bridge yet to see if my color settings survived the Archive and Install. So that may fix it for my Adobe apps. Word docs are not the same as they were, but not as badly off as the Adobe docs.
    Thanks, Folks! --D

    Update: Re Issue 2b: I checked the color settings in Adobe Bridge for my Adobe apps. They are all set to my original settings, using the calibrated profiles, so all is well there.
    I have been reading about other printing issues and may try some of those solutions offered:
    1. unplug everything for a while--although why this would solve it who knows? Crazy! But easy, so worth a try.
    2. download and reinstall the 10.4.11 update from the Apple web site, instead of running it via Software Update.
    3. reinstall OS10.4.x from the original disks and then download updates only through when you could last print, 10.4.9 or 10.4.10.
    I will post my results!

  • 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!

  • 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.

  • 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

  • HP Printer issue after installing Mountain Lion

    Hi, a few days ago I posted the following question regarding a printer issue and so far I have not been able to fix the problem.  Here's the original question and I will  continue the explanation after this....
    Hi, I am a fairly new iMac owner and I am really happy with my apple, however I have an issue with my printer and I kind a "blame" Montain Lion for it.  I have been using this HP Laserjet P2015 dn printer for a long time, initially with Windows and now with iMac.  The first year approximately there was no problem at all to print and the transition from Windows to Mac with the printer had no difficulties at all.  It was connected wirelessly via router.  After downloading Montain Lion I notice the printer intermittently lost connectivity.  The only way to print was turn off and turn on and it will print fine until the next time.  Now out of the blue it's doing the same thing so frequently I can't print a complete document at all.  It starts, and finish without printing the entire document or not connect at all.  I have tried everything, including a static IP address for the printer, connect the printer to the computer via USB, downloading all the printer updates from HP and nothing seems to work.  Just now, I did it again (for 100 times so far), delete the printer, reinstall and it's doing the same thing.  It connects fine (either via IP or USB) and it last connected only for a minute or two.  That's it.  It's a shame, because I like the printer.  The printing quality is great and to add more pain, I recently got a new ink cartridge ($100.00) capable of printing 3000 pages.  It has 70% of ink still.  Any computer sabby person out there has any ideas for me? Like I said, I've done everything.... inluding,
    1.  Remove the printer
    2.  Update the drivers
    3.  Assign a static IP address to the printer
    4.  Connect via USB
    5.  Disconnect the  printer for a while and restart the whole process again
    6.  Did a "cold start" to the printer
    I don't know what to do, and I don't want to spend more $$$$$ on a new printer.  Is Montain Lion to be blame for?  Please advise me.
    Any help will be greatly appreciated.
    At this point I do have the printer connected only via USB, prints one page (perfectly) and then goes offline.  Before installing Mountain Lion I did use the printer with my Mac for almost a year with no issues at all.  I even downloaded Mountain Lion again thinking of any flaws during initial installation.  I've done all the updates, drivers, uninstall, re install, repair disk permission, static ip address....you name it... I've done it all and nothing seems to work.  What makes no sense to me is that prints so great only one page and then is gone.... I would be happy to know the printer is dead and go get a new one but in my mind if it prints ok one page it still works.  I don't want to have a new printer and find out it does the same thing.  I can't keep myself away from blaming Mountain Lion.  IS THERE ANY WAY TO REMOVE MOUNTAIN LION WITHOUT THE RISK OF DAMAGING THE COMPUTER????  PERHAPS GOING BACK WILL PROVE ME MOUNTAIN LION IS THE CULPRIT.  Just saying... I am totally frustrated.  I guess the next step is to get a baseball bat and fix the printer once and for all.
    Any help will be greatly appreciated.

    Any fix for this? I have the same problem after upgrade.  It's off by many seconds.  Thank you.

  • Printing issues with HP 310a All in One Printer

    I have a new HP 310a.  Looks good, fast on text printing, but features such as merged envelopes and printing letters on A5 stationery do not print correctly; nor in correct order.  Photos print larger than they actually are and look like they need to be cropped.  Anyone experiencing the same?
    Photo tray has nothing to hold paper in place (except on sides); and when tray enters printer, the photo paper slips backwards and error message "out of paper" appears.
    This is the last time I will buy an HP product

    Hi there,
    Welcome to the HP Forums!
    I understand that your HP F380 has stopped printing in color, and I am happy to help you with this printing issue!
    For further assistance, I will need to know the following:
    If you are using a Windows or Mac Operating System, and the version number. To find the exact version, visit this link. Whatsmyos.
    If the printer is able to make copies by itself.
    If the power cable is plugged into a surge protector, or directly to the wall outlet. Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector. This applies to Inkjet printers as well.
    In the meantime, please take a look through this guide. Streaks or Lines in the Printed Image.
    Hope to hear from you, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    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" to say “Thanks” for helping!

  • Printing issues in Windows 8.1

    Hello,
    I work for a company and we have a number of network printers shared, when we connect to a network printer it installs the driver and everything is fine and normally this is the end of it but recently I have one user who is having print issues. It seems
    as though every time he takes his laptop home and brings it back he is unable to print, the printers show offline or the job appears to print but never does. Today we got this error when attempting to print a test page " Test page failed to print. Would
    you like to view the printer TS for assistance? The server print spooler service is not running" which it was because I had stopped and started it several times already. Finally I was able to delete the network printers and reinstall them as a temporary
    fix but history has demonstrated that once he take this laptop home the problem will reoccur. I read and re-read most of the come close to describing my issue but not completely.
    Thanks,
    OSAMTEC

    every time he takes his laptop home and brings it back he is unable to print, the printers show offline or the job appears to print but never does.
    Could there be a naming conflict?
    Otherwise it looks as if there is a troubleshooter for printer and other loosely associated categories.  Have you tried them?
    BTW I'm curious if WMIC could be used here.  As I just mentioned in another incident these look interesting:
    C:\>wmic.exe /? | find /i "print"
    PRINTER                  - Printer device management.
    PRINTERCONFIG            - Printer device configuration management.
    PRINTJOB                 - Print job management.
    Good luck
    Robert Aldwinckle

  • HP OfficeJet 2544 Windows 8.1 Printing Issue

    Hi there,
    I am having a frustrating problem with my HP OfficeJet 2544.  It happens all the time if I want to print anything more than one or two pages, and it only happens to me on my Desktop PC (i.e. my wife's laptop doesn't experience the issue).
    What is happening is this:  I send a document (multiple pages) to the printer, and then after the first page or so, I get a Windows 8 error message popping up saying the document couldn't print.  The printer then spits out whichever page it is currently printing, usually half printed.  If I want to print a multi page document, I have to print it one page at a time.  I can't even send it to the printer in groups of 2 or 3 pages!
    The printer is connected wirelessly, but I don't think it is a wireless issue.  We have good strong signal in our house, and in any case, if it was a wireless connection issue my wife would have the same issue, which she does not.
    I thought there was some bug in my Windows 8.1 installation, so I did a clean reinstall.  This did not fix the issue.  I have also tried reinstalling the drivers (did not work either) and clearing out the Print Spooler folder (again, no luck).
    The only thing I can think of is that a while back the HP Update program said there was a Firmware update for the printer, which I installed.  But if this was the problem, I imagine it would be affecting my wife's Laptop too?
    I am getting fed up with the issue, and as I am doing a part-time degree I have to print multi-page documents from time to time!  Does anyone have any ideas?

    Hello @SamuelH82
    I have some ideas that come to mind when I read through your post about the printing issues you have solely from your computer, as the other computer works find with the printer.
    The printer hardware proves to test out alright, as the other computer does function fine with it.
    I would suggest first running the Print and Scan Doctor. 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. This alone could help fix the problem.
    Also, try printing from other programs. Do they all appear to have the same problem?
    Disable any firewalls and anti-virus' temporarily. Try printing again to see if that helped.
    How far is the printer from your computer, and what are in between them that could cause interference? Having the computer and printer too close could cause disconnections.
    Let me know the results thus far and your findings.
    Enjoy the rest of your day
    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!

  • Printing issues in production

    Hello, I
    We are having some printing issues with the term contract (ME21N) in production although everything is working fine in all other systems. I created a new term contract in production and when saved it stayed in my spool and failed to print immediately. I then printed a different FI document in production (that launches the print daemon) and it printed fine to the local printer, without closing the print daemon window I tried printing the term contract and it printed fine this time. So it appears that somehow in production the print daemon window is not able to launch when a term contract is created/saved.
    Any idea or any suggestion?
    Thanks,
    Rajat Garg
    Edited by: rajatg on Jan 24, 2012 9:45 PM
    Edited by: rajatg on Jan 24, 2012 9:46 PM

    Thanks a lot for the reply.... I further looked into the issue and when I looked at the SPOOL using SP01, I found that the spool request was there but the status was "ERROR" , when I looked at the events of that particular request, one of the even has this message->"Consistency error: Invalid program status"
    Although I looked at the the output of the purchase order I see the following:
    Status -> Green
    Output-> NEU
    and Dispatch time -> 4 i.e. Print Immediately when saved
    According to me everything looks ok... can you please let me know if I am assuming a anything wrong here.
    Thanks,
    Rajat

  • Printing Issue - Custom Media Sizes, InDesign CC/Mac Mavericks

    Hi all,
    I've got a strange problem that I hope someone can provide some insight to.  Perhaps this is a bug, but I'd rather ensure that there isn't something here that I haven't understood.
    I have a project that I periodically modify and re-print on custom size media (3.25" x 7.36").  I've used the same Id document and workflows since, probably, Id 2 or 3, updating each time to the latest versions.  The problem may be in the way Id CC interacts with the MacOS X printing system.  The printer in question is a Xerox 8550.
    The project is a one page table printed on this particular card stock.  What's happening is that the printable area on the stock isn't being fully used - the top and bottom of the media aren't being printed - thus the top and bottom of the content is being cut off, in a way that wasn't an issue previously.
    The printer control panel prompts for and accepts the media size correctly (I believe these printers have checks to ensure media fed matches the printable area; the Phaser engine doesn't like printing "off the paper"). 
    Again, the same document has been used for many years, so I've tried the following steps to isolate and remediate the problem:
    Document Setup: Custom Page Size, verify correct for media.
    Print dialog: "Page Setup..." format for (custom media size defined for OS X), also verified to be correct for media.
    Print dialog: "Setup", paper size Width and Height, correct; orientation correct, offset and gap 0p0, scale 100%.
    Print dialog: PPD correct.
    Recreated document, re-entering sizes and verifying setup.  No change.
    Created a test document, with same settings, and a scale extending outside of the printable area.  The specs for (and my experience with) the printer are that the printable area is 5mm from the edge of the paper.  The result of the test is that the content is cut off at 10-11mm from the edge instead. 
    Exported PDF from Id.  Printed using Preview, same OS X page setup configuration.  Printer prompts for correct media size.  Content in test file prints as expected, to 5mm from media edge.
    Printed test document from Acrobat XI, using "Actual Size", "Choose paper source by PDF page size", and "Use custom paper size when needed".  Printer prompts for correct media size, content prints as expected, again, to 5mm from media edge.
    So, in brief, exported PDF prints properly (and this is a workaround), but it's a pain that Id has this issue.  All software involved is up to date.  I haven't tried to dig into the PPD, as PostScript isn't one of my areas of strength, but I'm reasonably sure it's correct.  I've also tried a similar test using Letter-size paper, and that also prints to 5mm. 
    I'd love to get some feedback on this.  Many thanks.

    For what its worth, I've been trouble shooting this issue with Adobe / Xerox / Apple for some time now. Here are my findings so far:
    --------------------------------------------------Adobe's final response after a very long help ticket--------------------------------------------------------
    This Email is in regards to the case related to the adobe application and Printing issue ,
    As checked we were able to see that application  is able to create the document with correct size , when checked within Adobe Pdf properties the size was showing as per document specification and when we tried to print the same , the document was showing the same values carried forwarder to the printer and in the preview it was showing the same specific setting of the document size in the printer previewer
    It was during the printing process the same value are not being calculated correctly as per our interaction ,  you were able to use the same in the previous version of Mac  10.8. 5 , please check if there is any update available for the 10.9 version of mac and if it would work on the same ,we would request you to contact your printer help support for the same we are leaving the case open and would request you to call us back if there is any further issue  on  800 833 66 87 
    Thanks and Regards
    Jatinder
    Adobe Technical Support
    --------------------------------------------------Xerox's response, after an escalated level 2 ticket--------------------------------------------------------
    Here the Decline from 3rd Level Engineering.
    2nd Level Reference #: 19458297
    Customer Name: VDB REAL ESTATE
    Product Model: Phaser 7800
    Problem Summary: Scale is incorrect when printing PDFs on custom size paper in OS X 10.9
    Decline Reason: App/3rd party Issue
    Note: I tested using the included process steps:
    STEPS TO REPRODUCE-
    I tested using a PDF that was 6" x 8.5".
    In Acrobat or Adobe Reader, choose File > Print, go to Page Setup and create a custom page size of 8" x 9.5".
    In the Acrobat dialog, set the size to "Actual size".
    Print this to the device, note that the image is about 7" x 10".
    Interestingly, in the Acrobat dialog, if "Choose paper source by PDF page size" is selected, the previewed page size is not that of the document, but instead shows 10.13" x 7.17".  This size will change if different printers are selected.
    Scaling is not an issue when printing to standard page sizes.
    I was able to recreate the issue on a Mac running OS 10.9.1 using the Xerox 7800 print driver. I then tested on Mac OS 10.9.1 using a generic Postscript driver and also recreated the issue.  This indicated that this is not a Xerox driver issue.  I then tested on a Mac OS 10.8.5 using the same Xerox 7800 driver version and it worked as expected without scaling the image.
    Mac OS 10.8.5 uses CUPS version 1.6.2 for printing where 10.9.1 uses CUPS version 1.7.  I believe this is a CUPS issue and you will need to work with Apple to resolve it.
    You may appeal this decision by replying to this email and providing appeal details.
    Regards,
    Faye Hanley
    Technical SPAR Administrator
    Technical Escalation Support Office
    Xerox Corporation
    400 Main Street, Suite 2040
    Saint John, NB, E2K 4N5
    Phone: 1-888-380-9422 Opt 4
    --------------------------------------------------Apple's response, after an escalated ticket--------------------------------------------------------
    While using 10.92 with Xerox Phaser 7800DN (2.94.1 PPD - Installed via Software Update), PDF at a custom page size was sent to spool folder via Preview was correctly sized, however the document produced by Adobe Reader appears to be icorrect. When using Preview the PDF printed to a custom page size at 100% scale comes out the proper size.
    Carol West
    Apple
    P.S. If you wish to reach me regarding this case, please contact me at 1-877-388-0879 Ext. 85789
    **this is a paraphase of what the engineer (Clay) sent back to Carol West who was assisting in my help ticket. She was not allowed to send me the engineer's findings in email, she was only allowed to read it to me over the phone as I typed it out.
    Basically go back to Adobe and ask for help there. I guess at least the circle is closed as I am back to where I started.

Maybe you are looking for