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

Similar Messages

  • CP5 and Print output

    I'm packaging some PPTs used for ILT using Captivate.  The package is going to include an .exe version and two handout versions.  One for students and one for instructors.  Has anyone attempted to add or modify the templates for the print output?
    I've just tried to use the Handout Template and it has everything scrunched in the center of the page. 
    When I use this as a handout for students I'd like the graphic more over on the left and more room for longer lines on the right for student notes.
    I'd also like to use the handout format with the slide notes for an Instructor's Handout.
    Any help would be appreciated.
    Thank you,
    Susan

    Susan then asked, "Since I've not written macros do you have a good source for learning how?" and I sent the following reply:
    "Try this link as a starting point: http://msdn.microsoft.com/en-us/library/dd721892(v=office.12).aspx
    However, I must forewarn you, to customize your Captivate documentation your macros will probably need to manipulate images, resizing and/or repositioning them. For that, you will need to learn how to use Visual Basic for Applications (VBA) to manipulate Microsoft Word's "Shapes" and "InlineShapes" collections. Initially, all the slide images in the Word document that Captivate produces are inline shapes, attached to the Word paragraph in which they occur. You can resize an inline shape, but you can't reposition it directly. You can either adjust the position and alignment of the paragraph to which it is attached, or you can convert it to a regular Shape whose position can be controlled independently of nearby text. The following procedure is one I use to position the first slide by itself on the first page of the Word document:
    Sub FloatPicture1()
        Dim iSlideCount As Integer
        Dim oILS As InlineShape
        Dim oFloatingShape As Shape
        iSlideCount = ActiveDocument.InlineShapes.Count ' this line just shows you how to find total number of pics in the document
        Set oILS = ActiveDocument.InlineShapes(1) ' this line sets up a convenient reference to the first picture in the InlineShapes collection
        With oILS ' the "With" to "End With" block lets us do multiple actions on the referenced object
            .Select ' If we hadn't done the "Set oILS" and "With oILS" steps, we would have had to type this line in full as:
                        ' ActiveDocument.InlineShapes(1).Select
                        ' and the following line as Set oFloatingShape = ActiveDocument.InlineShapes(1).ConvertToShape
            Set oFloatingShape = .ConvertToShape
        End With
        With oFloatingShape ' Now that we have floated the shape, we can set its position
            .RelativeVerticalPosition = wdRelativeVerticalPositionPage           ' these settings control how word will interpret
            .RelativeHorizontalPosition = wdRelativeHorizontalPositionPage    ' the .Left and .Top values that follow.
            .Left = CentimetersToPoints(2)
            .Top = CentimetersToPoints(6.5)
        End With
        Set oILS = Nothing ' just some VBA housekeeping here, now that we have finished with these objects
        Set oFloatingShape = Nothing
    End Sub ' FloatPicture1"
    By the way, note that when we converted InlineShape #1 to a floating shape, that would have reduced the count of InlineShapes by 1, and what was previously InlineShape #2 is the new #1. Your code may sometimes need to take that change of numbering into account.
    Trevor

  • How to know which Smart-Form is being used for Purchase Order print output

    Hi Gurus ,
    How to find which Smart-Form and and methods/program being used for Purchase Order print output in SRM  ?
    In ECC we have tcode NACE where we can check all the details.Is there something similar in SRM ?
    Please help.
    Regards,
    Saurav

    There is no similar transaction in SRM for your purpose. Usually if the customers customize the smartforms, they would choose to use their own form by implementing BADI BBP_OUTPUT_CHANGE_SF. Take a look into your system and see if this BADI is implemented. If so, debug it (by pressing "Print Preview" for a PO for example) and find out what form it is using. Or, if the BADI is not implemented, by default, the system uses form BBP_PO.

  • 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

  • Customize printed purchase order report

    Hi all
    i need to customize Printed purchase order report
    i need to add supplier item number to printed purchase order report
    where(group) i need to add item number i think it g_lines right?
    item number is sengment from tml_system_items_b is it correct
    ple reply it is urgent
    ashok

    Ashok,
    Try to get a sample and understand the concern from your users. See if that is already customized to not show the supplier item number (as far as I remember I don't think there are any conditions in the standard report that qulify the printing of the supplier item number, it should print as long as it is entered in the supplier item number field in the PO lines). So see where your users are entering this in PO lines.
    Yes it is vendor_product_num in PO lines table.
    Thanks
    Nagamohan

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

  • Background job  step - Printer - Output device  table

    Hi,
    When creating background job, printer- output device also specified for every step. Which table to check for job name and output device combination ?
    Thanks.

    Hi Raj check table TBTCP

  • There is no printer output when using the PrintOut method

    I have a VB6 app with CR XI, and a customer found a situation that when printing a report directly to the printer using the PrintOut method, there is no printer output or error message.
    Some reports using the same code print normally, but a report that is preceded by another print call, presents this behavior.
    And when the output is directed to the screen, we can see the report.
    Could someone give me an idea of what is the problem?
    Thanks,
    Isis
    SP - Brazil
    The code used is below:
                       Set rpt = applic.OpenReport(App.Path & "SEFoto" + TipoRPT + ".rpt")
                       rpt.FormulaSyntax = crCrystalSyntaxFormula
                       rpt.FormulaFields.GetItemByName("Empresa").Text = "'" + Company + "'"
                       rpt.FormulaFields.GetItemByName("Idioma").Text = "'" + Idioma + "'"
                       rpt.FormulaFields.GetItemByName("Versao").Text = "'" + Versao + "'"
                       ' ... Some lines to compose the selection formula
                       rpt.RecordSelectionFormula = Cond
                       ' To evaluate the image length:
                       Arq = rsTMP3!FT_Arquivo
                       ImageScaling = FatorDeReducao(Arq, "F")
                       ' To reduce the image length:
                       AchouOLE = False
                       For Each oSection In rpt.Sections
                           For Each oObject In oSection.ReportObjects
                               If oObject.Name = "PictureFoto" Then
                                  Set oOleObject = oObject
                                  AchouOLE = True
                                  Exit For
                               End If
                           Next oObject
                           If AchouOLE Then Exit For
                       Next oSection
                       With oOleObject
                            .Suppress = True
                            .XScaling = ImageScaling    ' 0.5 = 50%, 1 = 100%
                            .YScaling = ImageScaling
                            .Suppress = False
                       End With
                       Aguarde.Show 1
                       If DestinoRel = 9 Or DestinoRel = 1 Then ' Padrão ou impressora
                          rpt.PrintOut True              ' <<<---- Here using true or false nothing happens
                       Else
                          PrintRPTtela rpt, "Fotos"   ' <<<--- Here it works fine
                       End If

    Hi Isis,
    Not sure if you have applied any service Packs to CR? If please do so and test again. Then you can upgrade to CR XI R2 for free, use your XI Keycode and download Service Pack 4 from this link:
    https://smpdl.sap-ag.de/~sapidp/012002523100011802732008E/crxir2_sp4_full_build.exe
    You'll find the distribution files for your app also from that same download area.
    If you don't want to upgrade to XI R2 then download all patches from XI and test again. This issues rings a bell that it may have been fixed.
    Thank you
    Don

  • Production Order Print . table data in print output of order

    Hi SAP Buddies
    Can any one tell me what are the steps required for setting the SFC print output.
    IMG setting for print output.. of SFC papers
    Actually my main purpose is to get TABLE : MARD and Field LGPBE to printed on Goods Issue Slip.
    Warm Regards
    Brijesh Verma

    hi
    IN iMG settings OPK8 you need to set the Script forms,program name, list contorls,and printer specifications. against the lists
    to get your required data you need to edit the program assigend to the Goosde issue slip.
    pl check
    -ashok
    Edited by: Ashok Keerthipati on Dec 24, 2008 10:00 AM

  • Item text of PO print output is not generatiing but text is updated  in PO

    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,
    For triggering the output for changes you have to make some changes.
    - Go to SM30
    - Enter view name "<b>VV_T161M_EF</b>".
    - Hit 'maintains' view.
    - Now let's say your outpu type is 'NEU'. For this there will be one entry like this.
    Operat.  Ctyp.  Name            Short text  Update
    1        NEU    Purchase order  New
    Now with this entry add one more entry like this.
    Operat.  Ctyp.  Name            Short text  Update
    2        NEU    Purchase order  Change      X
    You just need to enter Operat. = 2 and  Ctyp = NEU. The 'name' and 'short text' will come automatically.
    - Save your entry and create.
    After doing this, your PO will trigger output on change.
    Let me know if you have any other information.
    Regards,
    RS

  • Color management settings for the best print output

    Color Management while Printing has been one of the challenging areas which has been discussed a lot over user forums and has been a painful area in terms of clear understanding while taking print outputs.
    Here is an easy-to-understand KB (Knowledge Base) article ‘Color management settings for the best print output’ to help you get the best from your printers using PSE and bridge that knowledge gap.
    This article explains color management in Photoshop Elements, how to get better prints, and addresses some of the following issues like horizontal/vertical streaks in print output, too dark or too light print output, ICC profile problems and Color differences between prints from PSE and other applications.
    Thanks,
    Garry

    Thanks Noel.
    Yes have shared in PSE forum as well. But I usually drop such posts on PS General forum so community moderators as well as our power users who mostly use both PS or PSE or are aware about can communicate to their students, audiences etc.
    The idea is to reach out the message to as many as folks via relevant forums. Most of my otehr posts have found mentioned only on PSE forum.
    Thanks for the feedback Nice to hear such a great feedback within 5 mts of publishing
    Regards,
    Garry

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

  • Purchase order print priview and spool print output are different.

    Hi Friends,
    there is problem with purchase order print priview and spool print output are different.
    mean : in me23n .. for a perticular po .. in po priview the TAX VALUES value is 120 coming..
    when i am giving print with spool.. the amount value is showing  TAX VALUE
    is 443..why it is showing wrong..
    this is for perticular output type.
    why TAX VALUES are showing different in print view and
    spool print.
    help me.
    regards,

    Hi Neil,
    thanks for your reply.
    but the valiadtions are happening in standard functional module PRICING.
    it is realted script(medruck)...but there is no code point for spool or printer side..
    and the issue is realted one PO OUTPUT TYPE..
    it is sap standard debugging... when i am debugging the functional module PRICING.
    the values are coming dynammically.
    help me.
    regards,

  • Customize CSV output?

    Hi Experts,
    Is it possible to customize CSV output files via XSL?  When I specify ContentType=text/csv in a request, MII appears to ignore the StyleSheet parameter.  Is this expected behavior?
    Specifically, my issue is that I'm trying to customize the CSV output so that null string data appears as blanks, not "---".
    Thanks in advance.

    All,
    When you put that content type on the end, MII knows to look for IllumRowsetCSV.xsl and applies it. This is done behind the scenes, however you can access the system stylesheets and modify them to get the desired result. Then you can apply them as a transform to a query or a transaction.
    http://<server>:<port>/XMII/Stylesheets/IllumRowsetCSV.xsl
    Hint: Anytime you want to play with stylesheets, you can open a query > Transformation > Load,  and see what predefined XSL files that are out there. Just save (using above format) and modify and you save the time of creating one from scratch
    Regards,
    Kevin

  • Print Output in Smart forms

    Hi,
    There is a Strange issue I am facing now that is print output is getting changed according to the printer settings.
    Even though I specified the output_options-tdprinter = 'ZPDFUC',and output_options-tddest = 'LP01' while calling smart form FM the printer option always takes the printer setting present in user profile.
    Is there a solution where the smart form by default picks one printer but not in the User profile settings.
    Regards,
    Deepa

    Hi,
    There is a field check it and set the value X to overwrite the system details with manual settings. when calling the smartforms.
    Thanks,
    Vinayaka

Maybe you are looking for

  • All My Mail Gone! PLEASE HELP.

    I am on OS 10.3.9. First I obtained the v 2.4 Mail Application and replaced my v. 1.7. in the Applications folder. Then I went to launch the Mail Application and it does not launch. I suspect that Mail Version 2...and above require OSX 10.4. I tried

  • How to include Windows environment variables in e-mail action scheduled task

    Hello Support, Is it possible to include Windows environment variables such as %username% or %computername% in the subject line or body of the "Send e-mail" action item of the Task Scheduler?  For example, I would like when I setup a scheduled task t

  • Replication with fast refresh

    hi everybody, I have a problem in replication with fast refresh. I used 2 Windows 2000 server with Oracle 9i Release 9.0.1.1.1 and I can't made the automatic update. This doesn't work and I cant use ON DEMAND. I made Remote server Create table teste

  • HT2090 iSight not working neither after resetting SMC? What other to do?

    Hello, I don't know how to solve this problem with my builtin iSight camera on a MacBook. I tried several times resetting the SMC and at the begginning it worked, but lately this procedure is giving no results any more. I checked the System Profiler

  • Silent AIR application installation fails on AIR 3.9

    I install my AIR application silently using the following command : "/Volumes/Install Test/Install Test.app/Contents/MacOS/Install Test" -silent -location "/Applications/ABC" It worked fine till AIR 3.8. With the new AIR update 3.9, this command fail