Email of SAPSCRIPT Print Output

Hi,
Can anyone please tell me steps to send an External Email from SAPSCRIPT.
let me elaborate more on this.I have a "Z" print program for printing RFQ's.Now we need to send this output thru Email as well to vendors.
Thanks in advance,

Hi,
You do not need to bother with the OTF stuff - you can ditch it.
Use the code below to achieve the e-mailing :
*--- Set the recipient e-mail address
LW_COMM_VALUES-ADSMTP-SMTP_ADDR = [email protected]
*--- Set title
LW_SNAST-TDCOVTITLE = SY-TITLE
*--- Set sender and recipient details
CALL FUNCTION 'CONVERT_COMM_TYPE_DATA'
EXPORTING
PI_COMM_TYPE = 'INT'
PI_COMM_VALUES = LW_COMM_VALUES
PI_REPID = SY-REPID
PI_SNAST = LW_SNAST
PI_MAIL_SENDER = SY-UNAME
IMPORTING
PE_ITCPO = GW_ITCPO
PE_MAIL_RECIPIENT = LW_RECIPIENT
PE_MAIL_SENDER = LW_SENDER
EXCEPTIONS
COMM_TYPE_NOT_SUPPORTED = 1
RECIPIENT_CREATION_FAILED = 2
SENDER_CREATION_FAILED = 3
OTHERS = 4.
The objects used here are defined as follows :
LW_COMM_VALUES TYPE SZADR_COMM_VALUES
LW_SENDER TYPE SWOTOBJID
LW_RECIPIENT TYPE SWOTOBJID
LW_SNAST TYPE SNAST
This will give you the recipient and sender details. Now all you need to do is call the function OPEN_FORM as follows:
CALL FUNCTION 'OPEN_FORM'
EXPORTING
DEVICE = 'MAIL' <--- Note: Device is PRINTER for printing
DIALOG = SPACE
FORM = SAPscript form name
LANGUAGE = SY-LANGU
OPTIONS = GW_ITCPO
MAIL_SENDER = LW_SENDER
MAIL_RECIPIENT = LW_RECIPIENT
EXCEPTIONS
CANCELED = 1
DEVICE = 2
FORM = 3
OPTIONS = 4
UNCLOSED = 5
MAIL_OPTIONS = 6
ARCHIVE_ERROR = 7
INVALID_FAX_NUMBER = 8
MORE_PARAMS_NEEDED_IN_BATCH = 9
SPOOL_ERROR = 10
CODEPAGE = 11
OTHERS = 12.
This is far easier to use this method.
Any questions, please let me know.
Kind regards
Colin

Similar Messages

  • Blocking of Multiple SAPScript print outputs

    Dear All,
    Is there a way where we can stop users from printing a SAPScript Output,if its already printed once...
    Regards,
    srini

    Hi Srini,
    in standard invoice print program (Report RVADIN01) following routine can be found:
    *       FORM CHECK_REPEAT
    *       A text is printed, if it is a repeat print for the document.  *
    FORM check_repeat.
      CLEAR repeat.
      CLEAR anzal.
      SELECT * INTO *nast FROM nast WHERE kappl = nast-kappl
                                    AND   objky = nast-objky
                                    AND   kschl = nast-kschl
                                    AND   spras = nast-spras
                                    AND   parnr = nast-parnr
                                    AND   parvw = nast-parvw
                                    AND   nacha BETWEEN '1' AND '4'.
        IF *nast-vstat = '1'.
          anzal = anzal + *nast-anzal.
          repeat = 'X'.
        ENDIF.
      ENDSELECT.
    ENDFORM.                    "CHECK_REPEAT
    Variable <i>repeat</i> can be used to add an additional text like 'COPY' or to exit print program without printing   second version.
    I guess, this select is not fool proofed - users still might find a way to print twice without your notice, but it's a start. You should have a look at <i>anzahl[/i), too - this variable steers the number of copies and should be set to 1 in your requirement.
    Regards,
    Christian

  • Email Sending of Purchase Order Created versus Print Output

    Dear All,
    I have been successful in sending the Purchase Order created as a PDF Attachment in email.
    The problem i am facing is in the formatting of the attached output.
    The attachment has different bold characters as compared to the print output of the PO , though both the outputs are using the same sapscript.
    I am not able to find the reason for the difference.
    Only because of this reason, my delivery is on hold.
    Please guide me on how to find where the difference could be and how to rectify it.
    Thanks & Regards,
    Bhavika

    Could you tell us which fonts you tried?
    What device type did you choose? (SPAD transaction, select your output device to determine the device type)
    Could you upload TrueType fonts (one normal, one bold) with RSTXPDF2 program (do not tick "do not embed font in PDF" option so that the font is embedded in the PDF file)?
    Did you make sure that your font is not converted to another one? (SE73, printer font, choose your device type, click conversion button, and check what is the converted font)

  • How do I change the size of a print output of an email?

    when I print out an email, even though the page layout says 8x10, it is printing in a 4x6 space

    File > Print Preview
    or right click on email and select: Print Preview
    allows you sort out how it looks.
    Page Setup: allows you to sort out formating and margins and headers and footers.
    Scale: Increase this to increase the font - so it actually prints a larger font and uses more space on the page.
    Print > Properties allows you to choose the paper size settings.

  • Email PO Sapscript

    Hi experts,
    I need to send the PO sapscript through email to a group of people.
    I found FM SO_NEW_DOCUMENT_ATT_SEND_API1  but I do not know how to populate it to indicate the specific PO number to send.
    All help is appreciated.
    Monica.

    Hi,
    Check the following to get clear idea abt functions,
    OPEN_FORM
    The function module OPEN_FORM opens form printing. You must call this function module before you can use any other form function (WRITE_FORM, START_FORM, CONTROL_FORM...).
    You need not specify a form name. If you omit the name, you must use the function module START_FORM to open a form before starting the output.
    You must end form printing by using the function module CLOSE_FORM. Otherwise, the system does not print or display anything.
    Within a program, you can use several OPEN_FORM.. CLOSE_FORM pairs. This allows you to write output to several different spool requests from within one program.
    CLOSE_FORM
    The function module closes the form opened using OPEN_FORM. The system executes any terminating processing steps for the last opened form.
    You must use this function module to close form printing. Otherwise, no output appears on printer or screen.
    START_FORM
    In-between the function modules OPEN_FORM and CLOSE_FORM, you can use different forms. This allows you to combine several different forms into one print output. However, you can combine only those forms that have the same page format.
    To switch forms, use the function module START_FORM. If another form is still open, you must close it first using END_FORM.
    If you specify no form name when calling START_FORM, the system restarts the last open form. If after OPEN_FORM no form was activated yet, the system leaves the function module with the exception UNUSED.
    WRITE_FORM
    The system outputs the form element specified in parameter ELEMENT into the currently opened form.
    In the parameter WINDOW you can specify the name of a window for the output. Remember that the form element must be defined in this window. The parameter FUNCTION specifies how to merge the text lines to be output with any existing contents in the window. In this case, there are differences between the different window types or areas.
    WRITE_FORM_LINES
    The function module outputs the text lines in table LINES into the specified form window. The text lines must have the SAPscript ITF format. From the data in the text header, the system uses only the field TDSTYLE to apply the formatting attributes defined in the specified style for this text. If the field is empty, the system uses the identically named formatting attributes (character and paragraph formats) of the form.
    Use parameter WINDOW to specify into which of the windows defined in the form you want to output the text. You can specify any window used in the form. The parameter FUNCTION determines how to merge the text lines to be output with any existing contents in the window. There are differences between the different window types or areas.
    END_FORM
    END_FORM ends the currently open form and executes the required termination processing. After calling this function module, no more form is active. For further output, you must start a new form using START_FORM.
    CONTROL_FORM
    Use CONTROL_FORM to pass SAPscript control statements to the form.
    READ_FORM_ELEMENTS
    The function module fills a table with all text elements that appear in one form.
    If you specify no form name, the system includes all elements of the currently open form. If you specify a form, the system uses the information about the active version of the form, retrieved from the database.
    READ_FORM_LINES
    Use this function module to transfer the lines of a form element into an internal table.
    If you specify no form name, the system transfers the text lines of the currently open form. If you specify a form, the system uses the text lines of the active version of the form from the database.
    http://help.sap.com/saphelp_40b/helpdata/en/d6/0dc169494511d182b70000e829fbfe/frameset.htm
    <b>Reward if helpful.</b>

  • Email in SAPSCRIPT

    Hi everybody,
    IS healthcare intensively uses SAPSCRIPT as output variant for PMD ("Parametrierte Medizinische Dokumente"). When viewing the document, its output is processed by SAPSCRIPT and displayed as PDF. Now we want to embed an Email-Link into the PDF for further processing (mailto://someone AT somecompany.de). The only (and very restricted) possibility is to define a SUB-DOCUMENT (TA SE61, CLASS CHAP, NAMED: ) and insert the following:
    *           someone[AT]somecompany.de?subject=
    Then, in the SAPSCRIPT this SUBDOC is included by the statement
    /:           INCLUDE <MYSUBDOC> OBJECT DSYS ID CHAP LANGUAGE DE
    =           &SUBJECT&<><><><></><><><><></>
    This leads to a link like someone AT somecompany.de?subject=&SUBJECT& in the PDF.
    It works, but as you can imagine it is awful. OK, whole SAPSCRIPT is awful, but has anyone any suggestion how to make it better? Any Ideas?
    Best regards,
    Torsten
    Edited by: Torsten Schröer on Dec 9, 2009 6:12 PM
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Dec 9, 2009 1:29 PM

    Hi Neeraj_C ,
      I have also a same requirement . i don't know much about Script.Can you please send me the procedure how do u achieve this scenario . If u give the sample code of this scenario it will be very helpful for me.
    Thanks & Regards,
    Kumaran Duraiswamy.

  • Randomly printed output is garbled with non-human characters and symbols

    When printing from what we believe to be a pdf display, often, but randomly, the printed output is garbled. This may be the second and subsequent pages, only one page, the first one, etc. This happens often, but not exclusively, when printing from a bank generated pdf on their website but also occures on documents opened/created on our machine locally. I will try to attach a sample page using your 'link' symbole above: can't attach a scanned document (pdf) from my system (now why would I have thought this would be the case?.....) Can anyone help me get this document attached to this email?.......Okay! I've jumped through every hoop and there is no way to 'attach' a scanned document from my computer - are you people real or is this a nightmare? Totally unfunctional.
    If anyone (human) gets this please contact me at [email protected] or my cell 480-235-1868, and thank you for trying. I am wasting paper and ink by the dozens of dollars every week on this problem, so any help would be appreciated. bill matney

    For others who might have the same problem. You can solve it by quoting the device name and/or printer name.
    !p """BÆR""" * """\\print\bærum""/q" * 50 *
    This, however, causes the printer name to be '"BÆR"' with the double quotes included in the name. Thus, the job card must contain the unfortunate tripple quotes as well: -z"""BÆR""".
    Vegard

  • Customize Print Output in CP6?

    Anyone know how to customize the print output?  RIght now, I have to delete and replace things in order to use the Word output.
    In these forums, there are links to directions, but the links don't work.
    Thanks!
    Micky

    The handout template is hard coded.  But, working with the other templates and the Word Output document, I was able to create a template that will allow you to publish the Word images and slide notes in Word.  And, you can customize the placement on the page and image sizes. 
    Here are instructions (I'm using Captivate 6 BTW):
    1.  Make all of your slide notes into closed captioning. 
    I was able to find the computer code to call the closed captions, but not the slide notes.  So you have to drop some audio onto each slide (I'm using 1 second of silence generated in Audacity) and click the button that will turn your slide notes into closed captions.  Don't worry...these won't display in your published project unless you have your skin set to display them. 
    2.  Open a new Word document. 
    3.  Copy and paste the script below into your Word document.  This script as is will print 2 slides per page with slide notes above the images. 
    [CPDefaultItemTemplates[CPTemplates[TIMEBLOCK[CPContentInsert]TIMEBLOCK]CPTemplates]CPDefa ultItemTemplates]
    [CPCapturedSlide
    [CPBlockInsert][CPTemplates[CC1[CPCC]CC1]
    [CCN[CPCC]CCN]CPTemplates]
    [CPSlideImage][size:282x214]
    CPCapturedSlide]
    [CPContentSlide
    [CPBlockInsert][CPTemplates[CC1[CPCC]CC1]
    [CCN[CPCC]CCN]CPTemplates]
    [CPSlideImage][size:282x214]
    CPContentSlide]
    4.  Adjust the script to your liking:
         1.   Change the image size.  This is set to 282 x 214.  But you can change the image size to whatever you want it to be.  If you make the size larger, fewer will fit on a page. 
         2.  Move the slide notes, if you want.  This is set to put the slide notes above the images.  To put the notes below the images, move the [CPBlockInsert][CPTemplates[CC1[CPCC]CC1]
    [CCN[CPCC]CCN]CPTemplates] to below [CPSlideImage][size:282x214].  Be sure to move both instances, and don't copy/paste...move!
         3.  Use Word's formatting options to change the page display.  For example, if you use Word to center the code about slide images, the slides will be centered on the page when you publish.  You can add your company's logo in the header.  Type CPMovieTitle into one place to print the project title...either header or footer.  It won't work if you put it in more than one place for reasons known only to Captivate.  You can put page numbers or dates in the footer.  You can change the font for the slide notes by highlighting the notes code (see #3 above) and making it larger, smaller, different, bold, italic, etc., etc., etc.  Whatever you would do with Word to format your handouts, do in this document. 
         4.  Add anything that you want to print on every page outside the [   ] blocks.  For instance, if you want to blank lines to print under the notes, you can add before the code for the images.
    5.  Save the Word document in .doc format with a memorable name where you can find it.  You don't have to save with the templates in the Captivate program file. 
    6.  Publish to Print.  In the upper, right corner, in the Type section, click the button with ...  It's to the right of Handout.  That will open a window which will allow you to browse to find and select your Word document.  The Layout Options won't do anything, so no need to mess with them.  Set the rest of your settings...like project title and publish location and publish. 
    Things that I don't know, but would like to:
    1.  Will this work in Captivate 7?  Will someone try and let us know?
    2.  Can you save the Word file in .docx format?
    3.  Can you set the Word doc to landscape instead of portrait?  (I'll bet that you can, but haven't tried it.)
    4.  What Word options won't work?  I know that you can't put this code inside a Word table.  Using column and page breaks, I got mine to print with the slide notes on the left and images on the right.  Other than that, who knows?  Word is a big program, so you'll just have to test.
    5.  What is the code to call the slide notes?  I've called Adobe support twice and can't get a straight answer.  If we all start calling and emailing, maybe they'll tell us.
    So, I hope this helps.  There are so many threads about this and I can't repost everywhere.  So, please link to this thread if you see another one where this info will help.
    Happy printing!
    Rebecca

  • PO output medium "Print output"

    Dear Expert,
    As what i know only"External send"will email to vendor.
    I check PO -> Message and found the output medium was "Print output",but why system still send email to vendor?
    Kindly advise is there any setting can check?
    Thank you.

    Dear Friend,
    This is due to condition record being maintained in tcode MN04 for your Purchase Order key combination with external send. Key combination could be your at purchase organization level or Vendor/Purchase organization level or plant/purchase organization level etc.
    And you can see the out put of external send in tcode SCOT.
    Hope this helps.
    Ganesh

  • Crystal Reports for SAP Print Output requirements like Sales Order O/P

    Hello,
    Has anybody used Crystal Reports for Sales Order or Invoice Print Output type requirements?
    Typically these outputs get triggered via Output Management Configuration on Save of a Sales Order or Configuration.
    Traditionally in the Output Management configuration of say Sales Order, we can specify the "Output Program" and the "Sapscript" or "Smart Form" or "Adobe Form".
    How do we tell SAP t trigger a Crystal Report output if it is a feasible way to go?
    Also can anybody tell what is SAP's strategic direction for Print Output requirements?
    regards,
    Atul

    Hi Atul,
    Do you have answers for your questions? If so, could you please share?
    Thank you in advance,
    Joã

  • Sorting print output of dunning run

    Hi all,
    One of our clients has a machine which puts letters in envelopes. He wants us to print some code (basically stripes) on the dunning letters following a certain sequence, so all letters for one customer end up in the same envelope. In order for this to work we need all letters for one customer to come out 'one after the other'.
    But - we don't know for sure how the print output is sorted and if we can control it - basically, we woul like to sort the output on customer. Because our customer can have different dunning letters if he has posts in different dunning areas or dunning levels, and we want all his letters to come out the one after the other, even if they belong to different dunning areas or dunning levels. We are using SapScript for the dunning letters.
    Thanks in advance,
    Ioana

    Hi,
    What is the name of the SAP standard program you are using to produce the Dunning letters ?
    Please provde me with this so I can look into this as I suspect there is an easy way possibly to achieve this for you.
    Kind regards
    Colin.

  • HP LaserJet P1102W - no print output in Linux Mint 17.1 Cinnamon Desktop

    I've just done a default install of Linux Mint 17.1 - as feared, no print output.
    I'm guessing I need to install a driver - but I couldn't find anything easily on HP site, only Windows/Mac OS stuff. Are HP printers generally linux friendly? Where can I download drivers if they are? More over, I'm a total linux newbie, so any drivers need to be easily installed! I'm not currently familiar with Terminal windows and line commands!
    My printer does have wireless enabled, but I have it connected via direct USB also.
    Linux Mint did offer to run a diagnostic tool/debugging tool which gave a great deal of what means nothing to me. Debug output is below if it is helpful, but hoping a simple driver install will cure all ...
    Debug Output:
    Page 1 (Scheduler not running?):
    {'cups_connection_failure': False}
    Page 2 (Is local server publishing?):
    {'local_server_exporting_printers': False}
    Page 3 (Choose printer):
    {'cups_dest': <cups.Dest HP-LaserJet-Professional-P-1102w (default)>,
     'cups_instance': None,
     'cups_queue': u'HP-LaserJet-Professional-P-1102w',
     'cups_queue_listed': True}
    Page 4 (Check printer sanity):
    {'cups_device_uri_scheme': u'hp',
     'cups_printer_dict': {'device-uri': u'hp:/usb/HP_LaserJet_Professional_P_1102w?serial=000000000W4037X5PR1a',
                           'printer-info': u'Hewlett-Packard HP LaserJet Professional P 1102w',
                           'printer-is-shared': True,
                           'printer-location': u'Leela',
                           'printer-make-and-model': u'HP LaserJet Professional P 1102w, hpcups 3.14.3, requires proprietary plugin',
                           'printer-state': 3,
                           'printer-state-message': u'',
                           'printer-state-reasons': [u'none'],
                           'printer-type': 167948,
                           'printer-uri-supported': u'ipp://localhost:631/printers/HP-LaserJet-Professional-P-1102w'},
     'cups_printer_remote': False,
     'hplip_output': (['',
                       '\x1b[01mHP Linux Imaging and Printing System (ver. 3.14.3)\x1b[0m',
                       '\x1b[01mDevice Information Utility ver. 5.2\x1b[0m',
                       'Copyright (c) 2001-13 Hewlett-Packard Development Company, LP',
                       'This software comes with ABSOLUTELY NO WARRANTY.',
                       'This is free software, and you are welcome to distribute it',
                       'under certain conditions. See COPYING file for more details.',
                       '\x1b[01mHP Linux Imaging and Printing System (ver. 3.14.3)\x1b[0m',
                       '\x1b[01mSystem Tray Status Service ver. 2.0\x1b[0m',
                       'Copyright (c) 2001-13 Hewlett-Packard Development Company, LP',
                       'This software comes with ABSOLUTELY NO WARRANTY.',
                       'This is free software, and you are welcome to distribute it',
                       'under certain conditions. See COPYING file for more details.',
                       '\x1b[01mhp:/usb/HP_LaserJet_Professional_P_1102w?serial=000000000W4037X5PR1a\x1b[0m',
                       '\x1b[01mDevice Parameters (dynamic data):\x1b[0m',
                       '\x1b[01m  Parameter                     Value(s)                                                  \x1b[0m',
                       '  agent1-ack                    False                                                     ',
                       '  agent1-desc                   Black toner cartridge                                     ',
                       '  agent1-dvc                    0                                                         ',
                       '  agent1-health                 0                                                         ',
                       '  agent1-health-desc            Good/OK                                                   ',
                       '  agent1-hp-ink                 False                                                     ',
                       '  agent1-id                     0                                                         ',
                       '  agent1-kind                   4                                                         ',
                       '  agent1-known                  False                                                     ',
                       '  agent1-level                  100                                                       ',
                       '  agent1-level-trigger          0                                                         ',
                       '  agent1-sku                    85A                                                       ',
                       '  agent1-type                   1                                                         ',
                       '  agent1-virgin                 False                                                     ',
                       '  back-end                      hp                                                        ',
                       "  cups-printers                 ['HP-LaserJet-Professional-P-1102w']                      ",
                       '  cups-uri                      hp:/usb/HP_LaserJet_Professional_P_1102w?serial=000000000W',
                       '                                4037X5PR1a                                                ',
                       '  dev-file                                                                                ',
                       '  device-state                  1                                                         ',
                       '  device-uri                    hp:/usb/HP_LaserJet_Professional_P_1102w?serial=000000000W',
                       '                                4037X5PR1a                                                ',
                       '  deviceid                      MFG:Hewlett-Packard;MDL: LaserJet Professional P          ',
                       '                                1102w;CMD:ZJSJS,URF,PCLm,PJL,ACL,HTTCLSLSRINTER;DEHPHP  ',
                       '                                LaserJet Presessional P 110;F;FWVER:20110826;             ',
                       '  duplexer                      0                                                         ',
                       '  error-state                   0                                                         ',
                       '  host                                                                                    ',
                       '  in-tray1                      1                                                         ',
                       '  in-tray2                      1                                                         ',
                       '  is-hp                         True                                                      ',
                       '  media-path                    1                                                         ',
                       '  panel                         0                                                         ',
                       '  panel-line1                                                                             ',
                       '  panel-line2                                                                             ',
                       '  photo-tray                    0                                                         ',
                       '  port                          1                                                         ',
                       '  r                             0                                                         ',
                       '  revision                      254                                                       ',
                       '  rg                            000                                                       ',
                       '  rr                            000000                                                    ',
                       '  rs                            000000000                                                 ',
                       '  serial                        000000000W4037X5PR1a                                      ',
                       '  status-code                   1000                                                      ',
                       '  status-desc                   Idle                                                      ',
                       '  supply-door                   1                                                         ',
                       '  top-door                      1                                                         ',
                       '\x1b[01m',
                       'Model Parameters (static data):\x1b[0m',
                       '\x1b[01m  Parameter                     Value(s)                                                  \x1b[0m',
                       '  align-type                    0                                                         ',
                       '  clean-type                    0                                                         ',
                       '  color-cal-type                0                                                         ',
                       '  copy-type                     0                                                         ',
                       '  embedded-server-type          0                                                         ',
                       '  fax-type                      0                                                         ',
                       '  fw-download                   False                                                     ',
                       '  icon                          HP_LaserJet_1012.png                                      ',
                       '  io-mfp-mode                   6                                                         ',
                       '  io-mode                       1                                                         ',
                       '  io-support                    10                                                        ',
                       '  job-storage                   0                                                         ',
                       '  linefeed-cal-type             0                                                         ',
                       '  model                         HP_LaserJet_Professional_P_1102w                          ',
                       '  model-ui                      HP LaserJet Professional P 1102w                          ',
                       '  model1                        HP LaserJet Professional P 1102w Printer                  ',
                       '  monitor-type                  0                                                         ',
                       '  panel-check-type              0                                                         ',
                       '  pcard-type                    0                                                         ',
                       '  plugin                        1                                                         ',
                       '  plugin-reason                 1                                                         ',
                       '  power-settings                0                                                         ',
                       '  pq-diag-type                  0                                                         ',
                       '  r-type                        0                                                         ',
                       '  r0-agent1-kind                4                                                         ',
                       '  r0-agent1-sku                 85A                                                       ',
                       '  r0-agent1-type                1                                                         ',
                       '  scan-src                      0                                                         ',
                       '  scan-type                     0                                                         ',
                       '  status-battery-check          0                                                         ',
                       '  status-dynamic-counters       0                                                         ',
                       '  status-type                   8                                                         ',
                       '  support-released              True                                                      ',
                       '  support-subtype               2202411                                                   ',
                       '  support-type                  2                                                         ',
                       '  support-ver                   3.12.6                                                    ',
                       "  tech-class                    ['LJZjsMono']                                             ",
                       "  tech-subclass                 ['NoAutoDuplex']                                          ",
                       '  tech-type                     3                                                         ',
                       '  usb-pid                       4138                                                      ',
                       '  usb-vid                       1008                                                      ',
                       '  wifi-config                   3                                                         ',
                       'Done.',
                      ['\x1b[35;01mwarning: No display found.\x1b[0m',
                       '\x1b[31;01merror: hp-info -u/--gui requires Qt4 GUI support. Entering interactive mode.\x1b[0m',
                       '\x1b[35;01mwarning: No display found.\x1b[0m',
                       '\x1b[31;01merror: hp-systray requires Qt4 GUI and DBus support. Exiting.\x1b[0m',
                       '\x1b[35;01mwarning: Unable to connect to dbus. Is hp-systray running?\x1b[0m',
                      0),
     'is_cups_class': False,
     'local_cups_queue_attributes': {'charset-configured': u'utf-8',
                                     'charset-supported': [u'us-ascii', u'utf-8'],
                                     'color-supported': True,
                                     'compression-supported': [u'none', u'gzip'],
                                     'copies-default': 1,
                                     'copies-supported': (1, 9999),
                                     'cups-version': u'1.7.2',
                                     'device-uri': u'hp:/usb/HP_LaserJet_Professional_P_1102w?serial=000000000W4037X5PR1a',
                                     'document-format-default': u'application/octet-stream',
                                     'document-format-supported': [u'application/octet-stream',
                                                                   u'application/pdf',
                                                                   u'application/postscript',
                                                                   u'application/vnd.adobe-reader-postscript',
                                                                   u'application/vnd.cups-pdf',
                                                                   u'application/vnd.cups-pdf-banner',
                                                                   u'application/vnd.cups-postscript',
                                                                   u'application/vnd.cups-raster',
                                                                   u'application/vnd.cups-raw',
                                                                   u'application/x-cshell',
                                                                   u'application/x-csource',
                                                                   u'application/x-perl',
                                                                   u'application/x-shell',
                                                                   u'image/gif',
                                                                   u'image/jpeg',
                                                                   u'image/png',
                                                                   u'image/tiff',
                                                                   u'image/urf',
                                                                   u'image/x-bitmap',
                                                                   u'image/x-photocd',
                                                                   u'image/x-portable-anymap',
                                                                   u'image/x-portable-bitmap',
                                                                   u'image/x-portable-graymap',
                                                                   u'image/x-portable-pixmap',
                                                                   u'image/x-sgi-rgb',
                                                                   u'image/x-sun-raster',
                                                                   u'image/x-xbitmap',
                                                                   u'image/x-xpixmap',
                                                                   u'image/x-xwindowdump',
                                                                   u'text/css',
                                                                   u'text/html',
                                                                   u'text/plain'],
                                     'finishings-default': 3,
                                     'finishings-supported': [3],
                                     'generated-natural-language-supported': [u'en-us'],
                                     'ipp-versions-supported': [u'1.0',
                                                                u'1.1',
                                                                u'2.0',
                                                                u'2.1'],
                                     'ippget-event-life': 15,
                                     'job-creation-attributes-supported': [u'copies',
                                                                           u'finishings',
                                                                           u'ipp-attribute-fidelity',
                                                                           u'job-hold-until',
                                                                           u'job-name',
                                                                           u'job-priority',
                                                                           u'job-sheets',
                                                                           u'media',
                                                                           u'media-col',
                                                                           u'multiple-document-handling',
                                                                           u'number-up',
                                                                           u'output-bin',
                                                                           u'orientation-requested',
                                                                           u'page-ranges',
                                                                           u'print-color-mode',
                                                                           u'print-quality',
                                                                           u'printer-resolution',
                                                                           u'sides'],
                                     'job-hold-until-default': u'no-hold',
                                     'job-hold-until-supported': [u'no-hold',
                                                                  u'indefinite',
                                                                  u'day-time',
                                                                  u'evening',
                                                                  u'night',
                                                                  u'second-shift',
                                                                  u'third-shift',
                                                                  u'weekend'],
                                     'job-ids-supported': True,
                                     'job-k-limit': 0,
                                     'job-k-octets-supported': (0, 476568600),
                                     'job-page-limit': 0,
                                     'job-priority-default': 50,
                                     'job-priority-supported': [100],
                                     'job-quota-period': 0,
                                     'job-settable-attributes-supported': [u'copies',
                                                                           u'finishings',
                                                                           u'job-hold-until',
                                                                           u'job-name',
                                                                           u'job-priority',
                                                                           u'media',
                                                                           u'media-col',
                                                                           u'multiple-document-handling',
                                                                           u'number-up',
                                                                           u'output-bin',
                                                                           u'orientation-requested',
                                                                           u'page-ranges',
                                                                           u'print-color-mode',
                                                                           u'print-quality',
                                                                           u'printer-resolution',
                                                                           u'sides'],
                                     'job-sheets-default': (u'none', u'none'),
                                     'job-sheets-supported': [u'none',
                                                              u'classified',
                                                              u'confidential',
                                                              u'form',
                                                              u'secret',
                                                              u'standard',
                                                              u'topsecret',
                                                              u'unclassified'],
                                     'jpeg-k-octets-supported': (0, 476568600),
                                     'jpeg-x-dimension-supported': (0, 65535),
                                     'jpeg-y-dimension-supported': (1, 65535),
                                     'marker-change-time': 0,
                                     'media-bottom-margin-supported': [423, 547],
                                     'media-col-default': u'(unknown IPP value tag 0x34)',
                                     'media-col-supported': [u'media-bottom-margin',
                                                             u'media-left-margin',
                                                             u'media-right-margin',
                                                             u'media-size',
                                                             u'media-source',
                                                             u'media-top-margin',
                                                             u'media-type'],
                                     'media-default': u'iso_a4_210x297mm',
                                     'media-left-margin-supported': [423, 635],
                                     'media-right-margin-supported': [423, 635],
                                     'media-size-supported': [u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)',
                                                              u'(unknown IPP value tag 0x34)'],
                                     'media-source-supported': [u'auto',
                                                                u'manual'],
                                     'media-supported': [u'iso_a6_105x148mm',
                                                         u'iso_a5_148x210mm',
                                                         u'jpn_hagaki_100x148mm',
                                                         u'om_double-postcard_148.17x200.03mm',
                                                         u'om_jb5_182.12x257.05mm',
                                                         u'na_executive_7.25x10.5in',
                                                         u'om_16k195x270_195.09x269.88mm',
                                                         u'om_16k184x260_184.15x260mm',
                                                         u'oe_16k197x273_7.75x10.75in',
                                                         u'na_letter_8.5x11in',
                                                         u'iso_a4_210x297mm',
                                                         u'oe_flsa_8.5x13in',
                                                         u'na_legal_8.5x14in',
                                                         u'na_monarch_3.875x7.5in',
                                                         u'iso_dl_110x220mm',
                                                         u'na_number-10_4.125x9.5in',
                                                         u'iso_c5_162x229mm',
                                                         u'om_env-b5_176.04x250.12mm',
                                                         u'custom_min_3x5in',
                                                         u'custom_max_17x36in'],
                                     'media-top-margin-supported': [423, 547],
                                     'media-type-supported': [u'stationery'],
                                     'multiple-document-handling-supported': [u'separate-documents-uncollated-copies',
                                                                              u'separate-documents-collated-copies'],
                                     'multiple-document-jobs-supported': True,
                                     'multiple-operation-time-out': 300,
                                     'natural-language-configured': u'en-us',
                                     'notify-attributes-supported': [u'printer-state-change-time',
                                                                     u'notify-lease-expiration-time',
                                                                     u'notify-subscriber-user-name'],
                                     'notify-events-default': [u'job-completed'],
                                     'notify-events-supported': [u'job-completed',
                                                                 u'job-config-changed',
                                                                 u'job-created',
                                                                 u'job-progress',
                                                                 u'job-state-changed',
                                                                 u'job-stopped',
                                                                 u'printer-added',
                                                                 u'printer-changed',
                                                                 u'printer-config-changed',
                                                                 u'printer-deleted',
                                                                 u'printer-finishings-changed',
                                                                 u'printer-media-changed',
                                                                 u'printer-modified',
                                                                 u'printer-restarted',
                                                                 u'printer-shutdown',
                                                                 u'printer-state-changed',
                                                                 u'printer-stopped',
                                                                 u'server-audit',
                                                                 u'server-restarted',
                                                                 u'server-started',
                                                                 u'server-stopped'],
                                     'notify-lease-duration-default': 86400,
                                     'notify-lease-duration-supported': (0,
                                                                         2147483647),
                                     'notify-max-events-supported': [100],
                                     'notify-pull-method-supported': [u'ippget'],
                                     'notify-schemes-supported': [u'dbus',
                                                                  u'mailto',
                                                                  u'rss'],
                                     'number-up-default': 1,
                                     'number-up-supported': [1, 2, 4, 6, 9, 16],
                                     'operations-supported': [2,
                                                              4,
                                                              5,
                                                              6,
                                                              8,
                                                              9,
                                                              10,
                                                              11,
                                                              12,
                                                              13,
                                                              14,
                                                              16,
                                                              17,
                                                              18,
                                                              19,
                                                              20,
                                                              21,
                                                              22,
                                                              23,
                                                              24,
                                                              25,
                                                              26,
                                                              27,
                                                              28,
                                                              34,
                                                              35,
                                                              37,
                                                              38,
                                                              56,
                                                              57,
                                                              59,
                                                              16385,
                                                              16386,
                                                              16387,
                                                              16388,
                                                              16389,
                                                              16390,
                                                              16391,
                                                              16392,
                                                              16393,
                                                              16394,
                                                              16395,
                                                              16396,
                                                              16397,
                                                              16398,
                                                              16399,
                                                              16423,
                                                              14],
                                     'orientation-requested-default': None,
                                     'orientation-requested-supported': [3,
                                                                         4,
                                                                         5,
                                                                         6],
                                     'output-bin-default': u'face-down',
                                     'output-bin-supported': [u'face-down'],
                                     'page-ranges-supported': True,
                                     'pages-per-minute': 1,
                                     'pages-per-minute-color': 1,
                                     'pdf-k-octets-supported': (0, 476568600),
                                     'pdf-versions-supported': [u'adobe-1.2',
                                                                u'adobe-1.3',
                                                                u'adobe-1.4',
                                                                u'adobe-1.5',
                                                                u'adobe-1.6',
                                                                u'adobe-1.7',
                                                                u'iso-19005-1_2005',
                                                                u'iso-32000-1_2008',
                                                                u'pwg-5102.3'],
                                     'pdl-override-supported': [u'attempted'],
                                     'port-monitor': u'none',
                                     'port-monitor-supported': [u'none'],
                                     'ppd-timestamp': u'*',
                                     'print-color-mode-default': u'color',
                                     'print-color-mode-supported': [u'monochrome',
                                                                    u'color'],
                                     'print-quality-default': 4,
                                     'print-quality-supported': [3, 4],
                                     'printer-commands': u'none',
                                     'printer-current-time': u'(IPP_TAG_DATE)',
                                     'printer-dns-sd-name': u'Hewlett-Packard HP LaserJet Professional P 1102w @ Leela',
                                     'printer-error-policy': u'retry-job',
               

    Hi @durandal,
    I read your post and see that you need the drivers for the P1102w printer. I can provide the website for you.
    Here is the link for the HP Linux Imaging and Printing website. HP Linux imaging and printing.
    Here is the link for the P1102w drivers. HP LaserJet Professional p1102w Printer.
    If you need more information, please post your questions at the Linux Distribution Forums.
    If you appreciate my efforts, please click the Thumbs up button below.
    Thank You.
    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!
    Gemini02
    I work on behalf of HP

  • How can i make a email for my printer

    how can i make a email for my printer to send the things to the email and get it printed if i was out of the house my printer model is 3525

    Hi alhashmi_sy,
    Welcome to the HP Support Forums. I see that you would like to learn how to setup the ePrint feature of your Deskjet Ink Advantage 3525 printer.
    The first step is to connect your printer to your wireless network. Please follow the steps in the Installing the Printer Software for a Wireless Network Connection document for your operating system. If you have already setup your printer with a USB cable, each operating system section has the steps to switch from the USB connection to a wireless connection.
    After connecting the printer to your wireless network please follow the steps for Getting the Printer Claim Code. Once you have the web services information sheet with your claim code please Set Up a Custom Email Address for ePrint.
    You should now have a customized ePrint email address for your printer. If you run into any issues please let me know at what step things went awry and the contents of any error messages. Please also let me know what operating system you are using on your computer (whatsmyos.com). Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Item text is not appearing in the print output through IDOC?

    Hello ,
    I am changing the PO through IDOC. When ever there is change in the quantity ,net price and delivery date  the print out put is generated autoamtically and changes are appearing the print output.
    when ever there is change in the item text of PO print output is not generatiing but item text is updated in the PO.
    If i change manually print out is generating for item text also but through IDOC print output is not generated . please help to slove this isuue.
    i am passing the value as :
        idoc_data-segnam = 'E1BPMEPOTEXT'.
        e1bpmepotext-po_item = Po line item number .
        e1bpmepotext-text_id = txtid.
        e1bpmepotext-text_form = textform.
        e1bpmepotext-text_line = line item text .
        idoc_data-sdata = e1bpmepotext.
        APPEND idoc_data.
        CLEAR idoc_data.
        CLEAR e1bpmepotext.
    please help me it is urgent
    Thanks
    Venkatesh

    Hi Venkatesh,
    Check the condition record in transaction NACE. Whether the print output field is present in the condition record.
    Regards,
    Gajendra.

  • My printer will print if I email it to printer but I can't directly print as my ipad cannot find the air printer???

    My ipad is not able to find my printer the message- no airprint printer can be found is displayed, but I am able to email to my printer from my ipad and successfully print??? I want to be ale to print a picture directly. How do I get my ipad to find my printer?

    It must be a Firefox problem, since it works perfectly in Chrome.

Maybe you are looking for