List Print issue------------Urgent

Hello All ,
                I have a little problem, I have created a list program. I have to check the if the user already taken the print out of the list then at the secound time(while taking the program) I have to give him the message that the list is alredy printed Once .
Can Some one suggest me some good Idea.
Regards
Swati Namdeo

Hello All ,
       Can some one please Reply and see the issue. I have tried with At user Commnad.
but the event not oocurs at  AT USER COMMNAD.
Can Some one Please Reply on the above matter.
Regards
Swati Namdeo

Similar Messages

  • 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

  • Cheque  Print. issue (urgent)

    Dear all,
    Iam facing an issue related to cheque print.
    We are using T-code FBZ5 to print cheque when ever we are issuing check system updates cheque number in reference field of payment Document.
    But from the 01.04.2008 system not updating check number on reference field properly for some document it is updating for some documents it is not.
    Plz help me to solve this issue because of this our BRS get effected.
    I will assign points
    Thanks in advance.
    SU*

    Dear Umar,
    please check with your ABAP consultant.
    this is purly ABAP related thing in the print format you are not
    consider the date of the Clearing Document, because of that some times system is up dated last year Doc. with same Doc. no.
    this is the field name REGUP
    Regards
    radha

  • FAX/Printer issue  - Urgent

    Hello,
    We are getting the below error when we tried to print from production server. But its working fine in Quality server.
    Could you please help me to resove the issue.
    But its working fine in Quality system.
    Moreover we could not the device FAX-AVM in both quality and production system,  but still is working fine in Quality system and not working in Production system.
    Regards
    Subbu

    Hello Subbu,
    unfortunately the screenshots are small, but as I can see Access Method L is used here.
    Access Method L uses the printers installed on the local SAP host.
    This means: if the production and quality systems are on different hosts, the printer landscapes will be different, thus such errors can happen.
    For this reason: check the availability of printer/queue FAX-AVM on the host where the SAP production system is running.
    Regards,
    Laszlo

  • Picking List Printing Problem

    Hi,
    I have copied SD_PICK_SINGLE Layout and using standard RVADDN01 Program.
    While Printing These Errors is coming :
    Element HEADER_DATA window MAIN is not defined for form YHPK-PICK_SINGLE       
    Element HEADER_TEXT window MAIN is not defined for form YHPK-PICK_SINGLE       
    Element ITEM_TEXT window MAIN is not defined for form YHPK-PICK_SINGLE         
    Element ITEM_PURCHASE_DATA window MAIN is not defined for form YHPK-PICK_SINGLE
    Element ITEM_LINE_BATCH window MAIN is not defined for form YHPK-PICK_SINGLE   
    Element ITEM_LINE_CONFIGURATION_BATCH_HEADER window MAIN is not defined for form
    Element ITEM_LINE_BATCH window MAIN is not defined for form YHPK-PICK_SINGLE    ....
    I dont know why these errors are coming as i have copied the standard layout form.
    I have made a new output type 'YHPK' in 'V2' Shipping...
    In this output type i have selected two processing routines:
    1     Print output RVADDN01     ENTRY     YHPK-PICK_SINGLE
    2     Fax          RVADDN01     ENTRY     YHPK-PICK_SINGLE
    While Debugging all the Elements are traveresed but the value is not populated.
    As a result blank picking list only with heading is printed.
    Please help me resolve this issue urgently....
    Regards,
    Abhishek
    [email protected]

    Yes i even activated it for both DE and En Versions...
    But the same problem
    Message was edited by: Abhishek Bachhawat

  • 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

  • Photoshop CS5.1 printing issue

    I am unable to print anything in Photoshop. I just upgraded to CS5.1, 64-bit, from CS3. When I use the print command I get the message "The saved printer information is not compatible with this version of Photoshop, or the saved printer is no longer available. You will need to check your printer settings before printing."
    When I click OK, I then get "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents."
    How can I check my printer settings or select a printer when I can't get the print dialog to appear? I get these messages no matter what files I open.
    I have a second computer on which I just did a new install of CS5.1 (not an upgrade), with the same printers and drivers, and it works fine.
    Any suggestions?
    --Doug

    There really is no such thing as an upgrade.  It is all the same program, just a price break.  So you probably have some printer issues left over from the previous version on the computer you "upgraded" to CS5.1.
    Check to see it you have the correct printer listed.
    If that looks OK you might reset the preferences and it will clean out any junk that might be a problem.  Start PS and IMMEDIATELY hold down the ctrl + alt + shift keys.  You should get a reset window.  A little tricky, so keep trying if it does not work the first time.

  • Pick list printing

    Hi Experts,
                     How can i stop pick list printing, i have assigned a print program which is used by all plants but I want to stop pick list printing for one of the plants.
    Thanks
    Satya

    Hi,
    Go to T code OMLV and tick the printer where you don't want printing to happen.Hope this will solve your issue.

  • CS3 Printing Issue--Won't Collate

    OK, here's my issue--I'm unable to print collated copies from any CS3 application (InDesign, Acrobat). I've tried every combination of checking/unchecking the collate box in both the application's print dialog and the printer settings to no avail. This happens on multiple printers (so I know it isn't a printer issue) and I'm able to collate from non-CS3 applications (Word, for example), so I believe it to be CS3 specific.
    I'm currently running CS3 5.0.3, but iI had the same problem under a clean install of 5.0.
    Any ideas? Manually collating is killing me.

    Unfortunately, not all USB printers are compatible with AirPort base stations. In addition, the  AirPort's USB port does not support the "advanced" printer functions, like scanning, copying or faxing, of multi-function printers. 
    To see if your printer is compatible, take a look at thisiFelix Unofficial AirPort Printer Compatibility link. If your printer isn't listed, it doesn't necessarily mean it won't work, but simply that it has not been verified. iFelix also provides the following workaround for printers not on the list that would certainly be worth a try.
    Also you can try this Apple Tech Support article to see if it will help: Printer troubleshooting for AirPort Base Stations and Time Capsule
    Finally, check out this IBM support article to see if your printer is listed as having a Postscript or PCL3 interface. If it does, then it will most likely work with the AirPort's USB port. Printers that use the "HP LIDIL" interface must be connected to a computer directly and will not work.

  • Hindi Smartform Printing issue

    Hi Ppl,
    I have made a smartform , got converted into Hindi(se63) . Now the smartform is coming in hindi , however the printout and the PDF are not coming properly . It is displaying #######. Please help in resolving the issue .

    Hi,
    SAP note 757130  says that SCR/SF forms printing with Hindi is not (yet) supported, only ABAP list printing (with an updated SWINCF, see corresponding notes):
    Please notice that only the print of ABAP lists work correctly with the new
    device types. The print of Sapscript forms and Smart Forms and the PDF
    conversion are not supported yet.
    Regards,
      Alex

  • Have Adobe's Digital Edition, now I wanted per bookcase the books in a list printing, but printing can not activate. I cannot get it working to someway to print lists. Please tell me what the cause is that this fails or what should I change to get the lis

    have Adobe's Digital Edition, now I wanted per bookcase the books in a list printing, but printing can not activate. I cannot get it working to someway to print lists. Please tell me what the cause is that this fails or what should I change to get the lists be printed

    Hello, Edward and thank you for your note.
    I read through the thread you mentioned and it seems that people are having a lot of problems with the iCloud clients, so we're not alone, but the unique issue in my case is the failing email address vs. the working perfectly email address.
    After reading your message tonight, I tried my setup again with the preferred Apple ID (the one without the "." between the names), and for the first time ever, IT WORKS. Mail app configured the servers both send and receive as p01-smtp.mail.me.com and p01-imap.mail.me.com. For the first time, I'm able to send and receive into the Mail app, create mailboxes, move messages into and out of mailboxes, keep Sent messages, etc.
    I had a 50-minute support chat with MobileMe support via ExpressLane on Monday afternoon. They couldn't resolve my issue but passed me on to escalation. I was told to expect to get an email from advanced support by this afternoon, but none has arrived. However, so far tonight -- and I will check again tomorrow several times before declaring victory -- it looks like something has been fixed on the Apple end to make things work.
    I will report back after I do some additional testing tomorrow to make sure the fix is real and is solid...and before I let my friend, the new Mac user, know the good news.
    Regards,
    Mike

  • Yet another Windows Printing Issue

    I've searched the net and these forums all afternoon trying to resolve my printing issues. I've followed all the common links posted by people who are tired of explaining the solutions to no avail. I do have the Gutenprint 5.1.3 driver installed. It doesn't list the 2100TN, but lists the 2100.
    Gear:
    Windows 2003 Server
    HP LaserJet 2100TN Printer attached shared through Win2k computer on the local network.
    PowerBook G4 (wireless)
    I've been successful printing in the past with this equipment. I'm not sure what happened, except I do remember resetting the print services on my Mac a while ago. That wiped out all my printers. That must have been because I lost print capabilities to the LaserJet.
    Any help is appreciated. This is a work environment and I need to print with my Mac fonts.

    Greg
    Thank you for trying to help. The work environment is a Windows 2003 Server, about 10 Windows 2k computers on a single domain. The HP printer is connected via the printer port on a Reception desk computer and shared as 2100TN. Let's call this computer Shubunkin. Shubunkin shares the printer to all on the network, including (hopefully) my Powerbook G4, which is connected via a wireless router. The G4 accesses the network folders via Samba - smb. The IP address of Shubunkin is in the same subnet as the other computers.
    Long story short, I have spent many hours trying to figure this out on multiple occasions. The last time I was connected was by a $100/hr tech that helped sort out some networking issues we were having after a move. At the end of the day, I asked him if he could take a look at my Mac and get the printer working. It took all of 10 min., but I'm not even sure he knew how he did it. He's a Windows tech. I do remember the printer showing up somewhere in the printer browser (AppleTalk maybe) on my Mac and choosing it. It was late and back last October.
    I want to be concise; I'm just not sure what information you all need to help. I do appreciate any efforts!!

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

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

Maybe you are looking for

  • Closing windows in transmit

    very basic i know, but when i insert a close command in a script, nothing seems to happen I am sending out files using FTP application Transmit and need the window to close after a transmission otherwise I am left with sometimes hundreds of open wind

  • The XElement class explicitly implements the IXmlISerializable interface?

    I see a sentence on a training book. "The XElement class explicitly implements the IXmlSerializable interface, which contains the GetSchema, ReadXml, and WriteXml methods so this object can be serialized." I don't understand it. From the example, exp

  • [SOLVED] inkscape 0.47-1 not installing?

    i'm using another mirror (located in the U.S.) now and inkscape is there.. hi, according to [1], the latest version of inkscape in the extra repository should be 0.47-1. however, when running %> pacman -Ss inkscape extra/inkscape 0.46-14 A vector-bas

  • Output Detrminatio

    My requirement is to create a IDOC and send it to XI system when a delivery is created in SAP system. I want to use Output determination for this requirement The following are the steps I've configured Can someone resolve the error message Im getting

  • Adobe Acrobat documents continue to open in web browser...

    Hi, I have a situation with  Web application general setting "Browser File Handing" set to strict in the general settings. Also tried changing to permissive, does not help. Site collection "Open Documents in Client Applications by Default" feature En