AP Check printing setups for printing checks on your own

HI
I am wondering if there a good document which deals with AP check printing with MICR and signature on your own check stock
thanks

Recently we started to deal with AP check printing in our organizatin. It was a daunting task with the information and resources scattered all over and missing critical pieces of information to make sense out of the whole process flow. We attempted to go through the AP check printing internally and succeded.
I decided to post the information for the benefit of people about the our experience
Check Printing Basics and Beyond for Printing Checks on Your Own
by
Sarma Chilukuri
This article deals with what is needed to get your own checks printed. It is a first attempt to uncover all the hidden rules that one should be aware to get your own checks printed. The first section deals with the basic AP check printing setup, while the 2nd half explores some of the flow of events that make it possible to print the check.
Part I – Basic Setup
AP Setup for check printing
There are multiple steps in the AP check printing. First set of steps deal with the AP side setups. The second step is to get the System side setups. The system side setup deals with printer setup and program options setups. The last step would be to make the print format files configured with the vendor provided escape sequences in the laser print format file.
Step 1: login as Payable Manager
Step 2: Bank Setup: Navigate to Setup: Payments > Banks
1.     Make sure the Bank # etc are present
2.     Tab to “Bank Accounts”, and make sure your account # has been setup
3.     On the Bank Accounts screen, tab to the “Payables Documents” and verify that Payment format (E.g., COK Laser Format) has been entered. This “Payment format links to next section where we associate it to the right payment program.
Fig 1. AP Payment Bank Setup Screen
Step 3: Program Setup (Setup: Payments > Programs)
As we know there are only 5 formats 3 of which are “Ever Green Laser” (APXPBFE G|L|F) which are explained in the AP Users Guide. For your own form printing, you have to associate the format to APXPFEL (laser format) program. Also, the APXPBFEL or APXPBFEF call the APXPBFEG, which is the base program that pulls the data from oracle base tables. APXPBFEL is the one which allows us to print the checks with MICR and signature on a plain paper not on a pre printed stationery.
Fig. 2 AP Payment Format Setup Screen
Printer Styles, Drivers setup
The above process summarizes the AP Setup. As a DBA, the printer setup needs to be validated. The base install provides the right setup to some extent. But the differences in printers and print queues may add some complexity to the final configuration. The following section discusses the set up the base install provides and changes as needed.
Step 1. Login as system Administrator
Step 2: Style (Install : Printer > Style)
Look for the “PORTRAITHPLJ4LASCHECK”. This one is associated with the SRW Driver Called, “APLASP” (AP Laser printer format).
Step 3: Driver (Install : Printer > Driver).
     1. The “PORTRAITHPLJ4LASCHECK” is associated with a “User Driver” of PORTRAIT for HPLJ4 and and a SRW driver of “APLASP”
     2. Also notice that there is an Initialization string at the bottom of it. This initialization string gets called as pre-report trigger for the APXPBFEG program (APXPBFEG.rdf) file. It sets the kind of format it should be. Please see the Appendix A for details on these printer pcl code translations. The Initialization string was as follows:
Initialization: /eE/e&l0o2a7C/e(s0P/e(8U
Step 4: Printer type (Install : Printer > Register)
Each printer type is associated with a set of styles. Make sure the printer that was selected has the above style and its associated driver listed against that.
Fig. 3 System Administrator Printer Seups
Step 5: Program Setup (Concurrent > Program > Define)
This step holds the key for check printing. It is necessary to define whether you need the check on top followed by the Stub or the other way around. The way it is controlled is based on the APXPBFEG.rdf, the report definition file and the APLASP.prt (Printer Style associate with the Portrait laser check format SRW driver). The APLASP.prt file ($FND_TOP/reports) has two identical setups called the 100 series and the 200 series. Those identical sets of setups define where the MICR and signature print on the check. The following table lists the some of the codes in the 100 series. Please refer to Doc ID #146452.1 for complete details.
Fig. 4 System Administrator Concurrent Program Definitions
CODE #     Code Definition
100     Electronic check activation string
101     1st Check #
102     2nd Check #
104     Deactivate check number mode string
111     Activate MICR line
112     MICR Deactivation / reset the printer head position
121     1st Signature
122     2nd Signature
141     Address font activation string
199     Return to default state string
Table 1. APLASP.prt -- MICR Activation Codes
The above code block repeats itself the same way in the 200 series. The decision to activate one way or the other controls the Check printing.
Step 2: Setting up the Option block
In the concurrent program definition for the APXPBFEL, there is an Options block in the middle. You need to list the codes that you want to activate. Please refer to Doc ID # 186640.1 for some explanation on these.
E.g.,
p_printer_code_mask="201,211,221,241" p_sig2_amount="" p_sig3_amount="" p_sig1_vendnum="" p_sig2_vendnum="" p_sig3_vendnum="" p_country_to_ignore="US" p_continuous_stationery="N"
Step 3: Output format is Text
Text format is sufficient, as the printer will pick up these escape sequences anyway.
Fig. 5 System Administrator Concurrent Program APXPBFEL Options Definition
UIPRINT.TXT, UIFONTS.ALI
One needs to be aware of a few more pieces in this puzzle. The UIPRINT.TXT identifies to the Oracle Applications the print queues that were setup. This file is needed to set your PCL / Post Script printer definitions. I did not have to really tinker with these files other than identifying the PCL and Post Script Q’s that were setup on the UNIX box.
Part II: Integrating all the pieces
The above setups are all documented in various articles. We need to understand a few more steps to see how all these pieces come together.
What you need to know about APXPBFEG.rdf
APXPBFEG (.rdf) is the report file which when called pulls the data from Oracle. If you open the APXPBFEG.rdf in the Oracle reports, there is initialization to the report called, SRW.Init. This will bring in the initialization string associated with the PORTRAITHPLJ4LASCHECK driver definition file. Also, please be very careful with this report format file. When you open it, there is small tiny empty block. in the first block which calls the printer initialization code 100/200 under the Format Mask (from APLASP.prt). If this portion gets changed or messed up, one can end up with some unexpected results. Each of those blocks like MICR, CHECK etc… have associated format triggers and printer codes.
Please make sure that the printer mask is properly handled. I noticed that the 200 series MICR (211) and Signature (221) printer masks were tied to 111 and 121 respectively. These should have been 211 and 221. The other place you need to be careful was the printer code before and after is proper.
For E.g.,
For the MICR, the ”printer code before and after columns “ should be 111 and 112 (or 211 / 212) respectively while Format Trigger should reference to 111 (211).
Fig. 6 APXPBFEG rdf file printer mask and Format Triggers
The escape sequences in the APLASP.prt file for these codes will play the crucial role in getting our format around the report output that gets generated from the APXPBFEG program. Please refer to the explanation of these escape sequence codes in the APPENDIX A.
At this point when you run the program, you will see that the formatted output report file will have all the initialization strings and the output associated with that. You can compare the fields and verify the results. Let us closely examine the parts of the 111 and 121 where the micr and signature prints. The key to this to code the escape sequences the right way to get the associate MICR and signature print out correctly.
Fig. 7 APXPBFEG rdf file MICR printer mask and Format Triggers
Code 111 and Code 112 from the APLASP.prt file.
I broke the line into pieces to illustrate the exact escape sequence code.
Code "211"
Part 1: esc "&f0S" esc "&f0y0X" esc "&l0E" esc "&a0L"
Part 2: esc "(8M" esc "(s0p8.00h8.0v0s0b80T" --- This will be provided by the ROM
Cartridge provider
Part 3: esc "&k15H" esc "*p3215Y" esc "&a13.8C"
code "212"
Part 1 : esc "&f1x3x8X"
Part 2 : esc "&f1S"
Let us go over these 2 sets of codes carefully.
Escape Code     Meaning     Comment
esc "&f0S"      Push Cursor Position     
esc "&f0y0X"     Define Macro ID 0 and Start Macro Definition     
esc "&l0E"      Define Top Margin at 0 Lines     
esc "&a0L"      Define Left Margin at Column 0     
esc "(8M"     8M Symbol SetNote : As per pcl codes this happens to be Font Primary JIS Math 8 symbol     MICR Part 1 : Provided by the Vendor from where you the ROM cartridge
esc "(s0p8.00h8.40s0b0T"     {Fixed Pitch}{pitch 8.00 cpi}{Font Style 8.40}{Medium Weight}{Typeface 0}     MICR Part 2 : Provided by the Vendor
esc "&k15H" esc "*p907Y"     Set HMI = 15/120" Vert position = 907 Dots     
esc "&a13.8C"     Move to Column 13.8     
     CODE 112     
esc "&f1x3x8X"     {End Macro Definition}{Call Macro}{Delete Macro ID}     
esc "&f1S"     {Pop Cursor Position}     At this point, the MICR gets printed
Table 2. Escape Sequences in APLAP.prt file Explanation
Fig. 8 APXPBFEG rdf file Signature printer mask and Format Triggers
The signature piece (221) has also similar meaning.
Escape Code     Meaning     Comment
esc "&f0S"     Push Cursor Position     
esc "*t300R"     300 DPI Graphics resolution     
esc "*p1500X"     Horiz position = 1500 Dots     
esc "*p650Y"     Vert position = 470 Dots     
esc "(4B" esc "(s1p53v0s0b102T"esc "&f0S!"     Symbol SetProportionalPoint Size 53UprightMedium WeightTypeface 102Push Cursor Position!     Vendor gave the us esc "(4B"esc"(s1p53v0s0b102T!"Note: the ! when the it pushes the ! and that is where it prints the signature piece. The first part forms the symbol set , say (4B and the later part forms the signature font and ! is the piece. I took the ! from the above and let it stay with the 3rd part of it so that signature does not print twice.
esc "&f1S"      Pop Cursor Position     
esc "*p+121Y"     Move down 121 Dots     
esc "&f1S"     Pop Cursor Position     
Table 3. Escape Sequences for Signature in APLAP.prt file and Explanation
Summary
One can print their own checks using the above steps. This can work as a cost effective solution for small organizations where the budgetary constraints are tighter. We are successful in getting the AP Checks printed using the above method.
References
Metalink Doc ID # 186640.1, Different Payment Formats …
Metalink Doc ID # 60936.1, Step by Step Guide to Setup a Printer in Oracle Applications
Metalink Doc ID # 250543.1, How to Create An Initialization String for a Payable Check Format
Metalink Doc ID # 48680.1, Accounts Payable FAQ – Payment Batch, Check
Metalink Doc ID # 1074792.6, Exclamation Point (!) Prints On Check When Using APXPBFEL And Cartridge
Metalink Doc ID # 158486.1, APXPBFEL Evergreen (Long Laser)
Metalink Doc ID # 146452.1, Listing of p_printer_code_mask Default Values for APXPBFEL
Chapter 2, Oracle Payables user guide
Appendix A
APLASP.prt printer codes explanation
code "200" esc "&l0o2a6d66p8.000c2e1x0l63f1H" esc "&k12.00H" esc "(8U"
esc "(s0p10.00h12.00v0s0b3T" esc "&k11.75H" esc "&a1l0R" control(M) esc"&f3005y4X"
{Portrait}
{Letter}
{6 LPI}
{Define Page Length to 66 Lines}
{Set VMI = 8.000/48"}
{Define Top Margin at 2 Lines}
{Select 1 Copies}
{Disable Perf Skip}
{Define Text Length as 63 Lines}
{Feed from Tray 1 (upper)}
0.1 esc "&k12.00H"
{Set HMI = 12.00/120"}
0.2 esc "(8U"
{Roman-8 Symbol Set}
0.3 esc "(s0p10.00h12.00v0s0b3T"
{Fixed Pitch}
{pitch 10.00 cpi}
{Point Size 12.00}
{Upright}
{Medium Weight}
{Typeface 3}
0.4 esc "&k11.75H"
{Set HMI = 11.75/120"}
0.5 esc "&a1l0R"
{Define Left Margin at Column 1}
{Move to Row 0}
control(M)
0.6 esc"&f3005y4X"
{Define Macro ID 3005}
{Enable Overlay}
code "201" esc "&f0S" esc "&a1.25r70C" esc "(8U" esc "(s1p14v0s3b4148T"
{Push Cursor Position} esc "&f0S"
1.1 esc "&a1.25r70C"
{Move to Row 1.25}
{Move to Column 70}
1.2 esc "(8U"
{Roman-8 Symbol Set}
1.3 esc "(s1p14v0s3b4148T"
{Proportional}
{Point Size 14}
{Upright}
{Bold}
{Typeface 4148}
code "202" esc "&f0S" esc "&a20.25r70C" esc "(8U" esc "(s1p14v0s3b4148T"
{Push Cursor Position}
2.1 esc "&a20.25r70C"
{Move to Row 20.25}
{Move to Column 70}
2.2 esc "(8U"
{Roman-8 Symbol Set}
2.3 esc "(s1p14v0s3b4148T"
{Proportional}
{Point Size 14}
{Upright}
{Bold}
{Typeface 4148}
code "211" esc "&f0S" esc "&f0y0X" esc "&l0E" esc "&a0L"
esc "(0Q" esc "(s0p8.00h8.40s0b0T" esc "&k15H" esc "*p907Y" esc "&a13.8C"
{Push Cursor Position}
11.1 esc "&f0y0X"
{Define Macro ID 0}
{Start Macro Definition}
11.2 esc "&l0E"
{Define Top Margin at 0 Lines}
11.3 esc "&a0L"
{Define Left Margin at Column 0}
11.4 esc "(0Q"
{0Q Symbol Set}
11.5 esc "(s0p8.00h8.40s0b0T"
{Fixed Pitch}
{pitch 8.00 cpi}
{Font Style 8.40}
{Medium Weight}
{Typeface 0}
11.6 esc "&k15H" esc "*p907Y"
{Set HMI = 15/120"}
{Vert position = 907 Dots}
11.7 esc "&a13.8C"
{Move to Column 13.8}
code "212" esc "&f1x3x8X" esc "&f1S"
{End Macro Definition}
{Call Macro}
{Delete Macro ID}
12.1 esc "&f1S"
{Pop Cursor Position}
code "221" esc "&f0S" esc "*t300R" esc "*p1500X" esc "*p470Y"
esc "(30C" esc "(4B" esc "(s1p53v0s0b102T!"
esc "&f0S!" esc "&f1S" esc "*p+121Y" esc "&f1S"
esc "&f0S"
{Push Cursor Position}
21.1 esc "*t300R"
{300 DPI Graphics resolution}
21.2 esc "*p1500X"
{Horiz position = 1500 Dots}
21.3 esc "*p470Y"
{Vert position = 470 Dots}
21.4 esc "(30C"
{30C Symbol Set}
21.5 esc "(4B"
{4B Symbol Set}
21.6 esc "(s1p53v0s0b102T!"
{Proportional}
{Point Size 53}
{Upright}
{Medium Weight}
{Typeface 102}
21.7 esc "&f0S!"
{Push Cursor Position}
21.8 esc "&f1S"
{Pop Cursor Position}
21.9 esc "*p+141Y"
{Move down 121 Dots}
21.10 esc "&f1S"
{Pop Cursor Position}
code "222" esc "&f0S" esc "*t300R" esc "*p1500X" esc "*p650Y"
esc "(30A" esc "(s0p.426h35.25v0s0b128T" esc "&f0S!"
esc "&f1S" esc "*p+141Y" esc "&f1S"
{Push Cursor Position}
22.1 esc "*t300R"
{300 DPI Graphics resolution}
22.2 esc "*p1500X"
{Horiz position = 1500 Dots}
22.3 esc "*p650Y"
{Vert position = 650 Dots}
22.4 esc "(30A
{30A Symbol Set}
22.5 esc "(s0p.426h35.25v0s0b128T"
{Fixed Pitch}
{pitch .426 cpi}
{Point Size 35.25}
{Upright}
{Medium Weight}
{Typeface 128}
22.6 esc "&f0S!"
{Push Cursor Position}
22.7 esc "&f1S"
{Pop Cursor Position}
22.8 esc "*p+141Y"
{Move down 141 Dots}
22.9 esc "&f1S"
{Pop Cursor Position}
code "241" esc "&a-100V" esc "&l5.8C" esc "(8U" esc "(s0p12.00h10.00v0s3b3T" esc "&k11.75H"
41.0 esc "&a-100V"
{Move up 100 Decipoints}
41.1 esc "&l5.8C"
{Set VMI = 5.8/48"}
41.2 esc "(8U"
{Roman-8 Symbol Set}
41.3 esc "(s0p12.00h10.00v0s3b3T"
{Fixed Pitch}
{pitch 12.00 cpi}
{Point Size 10.00}
{Upright}
{Bold}
{Typeface 3}
41.4 esc "&k11.75H"
{Set HMI = 11.75/120"}
code "299" esc "(8U" esc "(s0p10.00h12.00v0s0b3T" esc "&k11.75H" esc "&l6D"
{Roman-8 Symbol Set}
99.1 esc "(s0p10.00h12.00v0s0b3T"
{Fixed Pitch}
{pitch 10.00 cpi}
{Point Size 12.00}
{Upright}
{Medium Weight}
{Typeface 3}
99.2 esc "&k11.75H"
{Set HMI = 11.75/120"}
99.3 esc "&l6D"
{6 LPI}

Similar Messages

  • Printer Setup for Aperture and Epson R1800

    After installing the upgrade to 1.5, something went wrong with my printer setup for both my R1800 and my PictureMate Deluxe.
    I've done the following:
    Reset the printer system.
    Reinstalled the Drivers
    Attempted to Print from Aperture using about 30 + combinations of settings.
    I'm still getting colors that are off and overall dark photos.
    Best Setting appears to be
    Printer Settings
    Print Settings
    Media Type: Premium Glossy Photo Paper
    Color: Color
    Mode: Advanced (Photo, High Speed, Finest Detail, Off)
    Color Management
    Off (No Color Adjustment)
    ColorSync Profile: SPR1800 PrmGlsy Photo.icc
    Black Point Compensation = Checked
    Gamma 1.10
    The resulting pictures appear to be about 1 f-stop or so underexposed and the colors are off (I'm color blind, so I can't say exactly how). I know that it is the setup of the printer settings. If I print the same pictures from Nikon Capture on my Windows computer, the print is perfect. I prefer to use Aperture for my photo work.
    Epson doesn't have Aperture and doesn't understand all of the settings. The Apple Care support tech stated that he is not qualified to answer and said to call back when the Aperture team is working. I've got a ton of Christmas gifts to print out!
    Assistance would be greatly appreciated.
    Thanks,
    -William

    william:
    you don't state in your original posting whether or not you've calibrated your monitors, especially to a 2.2 Gamma. in order to get the most accurate screen->print matching you have to hardware calibrate your monitors. this is by far the single most significant improvement i've made in my workflow. prior to calibration my monitors were set to a gamma of 1.8 which is much brighter than 2.2 and this causes you to NOT correct your images with the additional exposure required for proper printing. my prints were always too dark prior to calibration.
    the spyder 2 from color vision is an excellent choice.
    scott
    PowerMac G5 2.5GHz   Mac OS X (10.4.8)   MacBook Pro 2.0GHz

  • How can I change the default page setup for printing messages in Apple Mac Version 4.6 (1085)

    How can I change the default page setup for printing messages in Apple Mac Version 4.6 (1085)

    As soon as I posted, Ifigured this one out on my own by going into user settings and changing the default there. Then I was able to delete the default @mac account. Thanks!

  • Pay for oracle courses on your own ?

    Hello,
    i wanted to ask you if anyone of you would pay for oracle training courses (which are about ~ 2.400 € here for ~ 5 days) on your own if your current employer refuses to pay for them and you would like to improve your chances on the job market.

    [...] if your current employer refuses to pay for them
    and you would like to improve your chances on the job market.I can see two sides to this situation...
    If you are about to implement a technology (something like Dataguard or RAC) that's new to you then your employer should be providing you with the opportunity to develop the skills you are going to need. Whether that is through a knowledge transfer from colleagues, self training (such as CBTs or books) or attending a training course really depends on the situation (time, budget, opportunity, etc). If your employer isn't willing to do anything then you aren't getting the support you need from them to do your job properly and you need to decide whether that means it's time to move on or not.
    Equally, your employer is not obliged to help you to 'improve your chances on the job market'. I've worked with people before who have been entirely unable to comprehend why our employer wouldn't send them on a week-long training course for a technology we not only didn't use but which we would almost certainly never use.
    As for your specific question - no, I can't say that I would pay for Oracle courses myself. For one thing, I can't afford it... but even if I could, I think that reading the manuals (and maybe a good book or two) whilst sitting at a test system is probably a better use of five days.
    Don't get me wrong - I've been on plenty of Oracle courses and think they are great. If my employer wants to spend £2k then I won't say no... but if I were paying myself I'd find it hard to balance up the cost with what I get out of it.

  • Changing the print order for payroll checks and payroll deposit advices

    Hello,
    How do you change the print order of payroll checks and deposit advices?
    Thanks
    RW

    Hi there crazytalk,
    Could you provide the community with a little more information to help narrow troubleshooting? What operating system are you using and what program are we printing from?
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Pdf document setup for print issues

    Hey all,
    I just happened to have a friend who is getting married asking me to make their invitations. I am not at all familiar with the print process (I'm a noob, just getting started), but managed myself to go with a print house that offers me guidelines about how to prepare my final artwork for them to print ( outline texts, line work no thinner than .5pt, Coated fogra 39, PDF/x-1a, no flattened artwork, cmyk values... I think I'm not forgetting anything).
    I followed all the instructions and saved my PDF, but when I open it to previz, I get a horrendous result :O !
    All the artwork seems to "break" (you know, sawed edges), but what's more worrying, is that there are kind of very thin gaps, transparent ones, that appear, as if I had the document sliced. I've opened the pdf in Photoshop, and added a red layer background to save a copy and insert it here, see if anyone can help me out on this one.
    I would greatly appreciate your feedback,
    Thanks and enjoy the weekend, those of you who can!
    So any red slice that appears on my attached converted PDF document, is in fact transparent.
    Ok uploader image tells me that "this type of image is forbidden"... Go figure!
    anyways, if anyone is familiar with this issue and can help me out, please, you will save the date (and my life haha)

    @silkrooster Image size is as requested for print by the print house: 1795 x 1287 pixels (300dpi), it will be printed on a A6 (european standard) and size (with bleed and all):
    152mm x 109mm
    5.98” x 4.29”
    (300 dpi)
    @Ton Frederiks
    I do have all the original artwork in Illustrator, just wanted to check the resulting PDF Export in other apps... You know, curiosity killed the cat hahah... You explanation makes very much sense, although I'm a newbie, but I thought it might be something of that nature... I do hope anyway, that I could get a printed sample card before ordering the whole bunch... I would not like at all to ruin my friends wedding...
    I have so much admiration for you all print artists and illustrators! I love that universe, but also am aware of the complexity and extended knowledge one must have... But hey, you gotta start somewhere!
    Thanks a bunch, I'll have to wait on Monday to see what the Print House tells me, and hope not to have to bother you all anymore with this!
    Have a great one!

  • SAP Printer setup for Color Laser printer

    Hi,
    Currently i have just setup a printer in SAP successfully.
    But as this printer is a color laser printer, the printouts are in colors.
    Is there any settings which i can set it to monochrome?
    Thanks

    Chong,
    Could you check this?
    Run SPAD transaction. Enter your Output device name(Printer name) and hit enter.
    Under the 'Output Attributes' tab , see if the checkbox 'Color printer' is checked.
    If checked, uncheck it and try printing.
    Regards
    Sabu.

  • Printer setup for purchaising group

    In config SPRO> Purchasing>assign output devices to purchasing group I have changed the printer but still when I raise purchase order it shows old printer as default printer.
    Please let me know if I am missing anything other than this.

    Goto Trans SU3 and check which printer is set as default printer for the user ID.And also check whether you had maintained in condition record IN MN05.

  • How to save print setup for pdf file so that every user can open and print w/o manually performing?

    Can is there a way to configure the print settings (i.e. paper size, orientation, etc.) and save this setting as part of the pdf file? I would like the users of pdf files to be able to open the file and simply print, without having to manually configure the print settings.

    Not sure if this will help. I got this information from the built-in help under Acrobat 9.
    Advanced
    Lists PDF settings, print dialog presets, and reading options for the document.In the PDF settings for Acrobat, you can set a base Uniform Resource Locator (URL) for web links in the document. Specifying a base URL makes it easy for you to manage web links to other websites. If the URL to the other site changes, you can simply edit the base URL and not have to edit each individual web link that refers to that site. The base URL is not used if a link contains a complete URL address.
    You can also associate a catalog index file (PDX) with the PDF. When the PDF is searched with the Search PDF window, all of the PDFs that are indexed by the specified PDX file are also searched.
    You can include prepress information, such as trapping, for the document. You can define print presets for a document, which prepopulate the Print dialog box with document-specific values. You can also set reading options that determine how the PDF is read by a screen reader or other assistive device.
    Create print presets
    A PDF can contain a set of print presets, a group of document-specific values that is used to set basic print options. By creating a print preset for a document, you can avoid manually setting certain options in the Print dialog box each time you print the document. It’s best to define print settings for a PDF at the time that you create it, but print presets provide a means to add basic print settings to a PDF at any time.
    Choose File > Properties, and click the Advanced tab.
    In the Print Dialog Presets section, set options and click OK.
    The next time you open the Print dialog box, the values will be set to the print preset values. These settings are also used when you print individual documents in a PDF Portfolio.
    Note: To retain a print preset for a PDF, you must save the PDF after creating the print preset.
    Print Dialog Presets
    Page Scaling
    Prepopulates the Page Scaling option in the Print dialog box with the option you choose:
    Default
    Uses the application default setting, which is Shrink To Printable Area.
    None
    Prevents automatic scaling to fit the printable area. This setting is useful for preserving the scale of page content in engineering documents, or for ensuring that documents print at a particular point size to be legal.
    DuplexMode
    For best results, the selected printer should support duplex printing if you select a duplex option.
    Simplex
    Prints on one side of the paper.
    Duplex Flip Long Edge
    Prints on both sides of the paper; the paper flips along the long edge.
    Duplex Flip Short Edge
    Prints on both sides of the paper; the paper flips along the short edge.
    Paper Source By Page Size
    Selects the option by the same name in the Print dialog box. Uses the PDF page size to determine the output tray rather than the page setup option. This option is useful for printing PDFs that contain multiple page sizes on printers that have different-sized output trays.
    Print Page Range
    Prepopulates the Pages box in the Print Range section of the Print dialog box with the page ranges you enter here. This setting is useful in a workflow where documents include both instruction pages and legal pages. For example, if pages 1–2 represent instructions for filling out a form, and pages 3–5 represent the form, you can set up your print job to print multiple copies of only the form.
    Number Of Copies
    Prepopulates the Copies box in the Print dialog box. Choose a number from 2 to 5, or choose Default to use the application default, which is one copy. This limitation prevents multiple unwanted copies from being printed.
    Thanks.

  • Printer Setup for HTML reports (Landscape)

    I'm trying to print an HTML report in Landscape, the Report Orientation VI only works with Standard Reports, and I can't find anything that will let me modify the "Printer Setup"
    Anyone done this?

    Jeff,
    To print an HTML report it first has to be rendered. To render HTML, you need a browser. For example, you can render HTML in either Internet Explorer or Firefox or Opera, and all three might render the same data slightly differently. To simplify the situation let's say that you're using IE. Once IE renders the HTML, you then have to get it to send the rendered output to the printer. So you can see why it isn't time or cost-effective for NI to try and necessarily support these functions. For the end user however, I'd guess that quite a few people have had this problem.
    I have had to do a lot of digging around to get HTML reports to print right. My solution has been to use an ActiveX container with an IWebBrowser2 object (Internet Explorer). This will let you load and print HTML reports programatically however (glancing back over some old code) I don't see immediately how you can print a report in Landscape. With an ActiveX container however you can call the IE print preview function which will let you (the user) modify the report printing to Landscape. It's not a programmatic solution since you have to interact with the GUI but it works. Also, once you set the setting to Landscape, everything printed afterwards using your ActiveX container will also print in Landscape.
    Something else which may not apply to you (but maybe--I'll at least mention it) is printing a landscape single image... that's usually why I needed to print landscape... to print out a full page screenshot of a graph or something. I do this in portrait mode by just attaching the control image but rotating it first and adding the HTML code to make it 100% of the vertical page.
    Last but not least, if you are 100% set on using a programmatic implementation to print a landscaped report (no user interaction), the best thing to do would be to build on an ActiveX implementation so that your report is being loaded and printed from an embedded IWebBrowser2 object. With the IWebBrowser2 object there is an option for using a pre-defined print template. This option is NOT for the faint of heart and requires you basically to re-program the whole IE print-preview functionality. However, it's not impossible either, it just takes the time of learning basically how the IE print preview interface works and then adapting it to your application (in this case, landscaped printouts). This is also the ONLY way to change HTML report headers and footers. The print preview interface in IE is written entirely in javascript--you can get details on msdn (search for "print preview templates"). However, there isn't really enough info there to do things with any ease. So....
    If you get to the point where you get an ActiveX container working and want to fool with the IE print preview javascript templates, let me know. I have extracted the entire template and associated images from the windows DLL it is stored in so I could adapt it and change the headers and footers for my reports and things of that nature.
    Now that I mention it, I believe that is the only way also to actually set landscape or portrait--by programmatically changing the printing margins (so it prints 11x8.5 instead of vice versa).
    Anyway, hope that helps...

  • Printer setup for Officejet 6310 HANGS: at SNMP reply Officejet 6310 from (ip address).

    I running the software setup from the HP website for windows 7 x64 and I keep getting stuck at SNMP reply Officejet 6310 ip_address.

    I have a few questions that will help me help you.
    How are you connecting the printer to the network (USB cable/Ethernet cable/wireless)?
    Did you try downloading the software to your local computer then running the install?
    Did you setup the printer from its front panel display?
    Please mark the post that solves your problem as "Accepted Solution"
    Sometimes it takes several posts back and forth to get to a solution - please be patient.
    I am employed by HP

  • Printer Setup for automatic and manual tray

    Dear All,
        Now i have setup a printer for my cheque printing and its working perfectly.i am using SAP script for it.
        My requirement to use the same printer with some different option so that when ever i want i can take the print from manual tray and when ever i want i can take from normal tray for cheque print out.
    Please let me know how i can handle this situation. can i do any changes in my script or some where else.
    I will appreciate your help.
    Regards
    Satya

    william:
    you don't state in your original posting whether or not you've calibrated your monitors, especially to a 2.2 Gamma. in order to get the most accurate screen->print matching you have to hardware calibrate your monitors. this is by far the single most significant improvement i've made in my workflow. prior to calibration my monitors were set to a gamma of 1.8 which is much brighter than 2.2 and this causes you to NOT correct your images with the additional exposure required for proper printing. my prints were always too dark prior to calibration.
    the spyder 2 from color vision is an excellent choice.
    scott
    PowerMac G5 2.5GHz   Mac OS X (10.4.8)   MacBook Pro 2.0GHz

  • AE Setup for printer and Airtunes ONLY?

    If I set up a wireless network on my AE for printing and Airtunes, but my laptop accesses the internet via ethernet, does the AE allow access to that connection backwards through the laptop? (I don't want it to).

    dasharst, Welcome to the discussion area!
    Yes that is possible.
    If your Linksys is a wireless router, simply configure the AirPort Express (AX) to join the wireless network created by the Linksys.
    If your Linksys isn't wireless, simply connect the AX via Ethernet to one of the Linksys LAN ports. Configure the AX to act as a bridge (not sharing a single IP address).

  • Hp LaserJet P3015 printer "waiting for printer to become available" message

    Hello All,
    I have searched through many message boards about this issue (some steaming back to as far as 2009) and I have yet to find a solution that has worked for me.
    Background of situation:
    In my office we have a dozen iMacs and Networked hp LaserJet P3015 printers.  Most work perfectly fine with out issue.  We are currently running 10.8.4 OS.  There are a few issues that seem to be unique to users or types of iMacs.  1) Three brand new iMacs (the skinny ones that come without the CD drives) where showing a message prompting for the "printer operator group".  I have that setting turned off but reguardless I added the user accounts to the "printer operator group" as well as the "printer admin group".  After I did that the users started to recieve the message "waiting for printer to become avaible".  When this message appears it never printers (I left it for a 20 minute period to no avail).  I have tried a whole host of fixes with short term success but the issue keeps reoccuring.  Here is a list of fixes I have tried:
    What I have tried
    1) I plugged the iMac directly into the printer via USB cable to install the drivers locally
    2) I added the user to the printer operator group and the printer admin group
    3) I checked all settings on both the printer and computer
    4) I have removed and re-added the printer several ways (from the network and directly via UBS cable)
    5) I checked the Ethernet connection to the printer (all are fine) (also eliminated the need for it by directly plugging her in via USB cable)
    6) I have "power" shut down the printer
    7) I restarted the printer settings on the network to eliminate any lingering issues
    8) Made sure the software is up to date (which according to some message boards is what the problem is)
    9) I have replaced both the actual Computer and Printer (with another brand new iMac), while additionally creating a new user account to eliminate hardware and faulty user settings as the culprit, as well as plugged the printer directly into the computer and removed it from the network.
    10) I prayed to the IT gods
    Other Notes:
    I did see a solution from a message board that said to delete all "hp_" files in system/library/extensions and then directly plug the printer into the computer to install the drivers that way (which he said worked) but the guys also said that if he ran software update then the issue would re-occur.  This seems to be counter productive as I like to keep all software up to date
    What I have noticed:
    - The issue seems to affect the newer iMacs in my office more then the older machines despite everyone running the same OS version
    Thank you all so much in adavanced for your time reading my post.  The issue has been extremely frustrating for both me and the end users and I appreaciate any help that anyone can provide (even if its just pointing me in the direction of another message board)
    - Chris

    You have not mentioned it but based on some of the things that you have said, I would assume that the Mac's are bound to a domain. So, for one of these Mac's, if you logged on locally and then created a print queue to the network printer, do you get the same message?

  • HP Laserjet 3055 printer "waiting for printer to be available" after HP Printer Software Update 3.0

    I have an HP Laserjet 3055 All-in-One Printer. It has been printing just fine from my iMac running OS 10.9.5 (Mavericks) until after the HP Printer Software Update, Version 3.0, that I installed on 1 Oct 2014. Although the 3055 is shown as connected/idle to my iMac via USB, after clicking "PRINT" for a document, the print queue status soon changes from "printing" to "waiting for printer to become available", and the printer never becomes available. I have tried rebooting everything (printer, computer, text software), checking USB cable connections and changing USB ports, deleting and re-adding the 3055 printer (numerous times!) even after resetting the print system, but could there be something inherently wrong with the latest HP driver (version 19.9 for HP Laserjet 3052)? Or is it possible something else is going on?  In other words, I have exhausted all the solutions I've found in these and other forums to no avail.
    I have tested this printer by connecting it to my MacBook Pro (also running OX 10.9.5) but without having installed the HP Printer Software Update, Version 3.0. (Hadn't gotten around to this update...) The printer works fine, even though the driver has the same version number--19.9 for HP Laserjet 3052. So could the version 19.9 driver in the latest HP Printer Software Update be corrupted? Is there any way to reinstall that driver? Or copy the 19.9 driver from my MacBook Pro and install it on the iMac? HP only refers to the Apple Software Update process for Mavericks compatible drivers for this printer. Can I manually uninstall the HP driver for the Laserjet 3055 from my iMac and then have the iMac download the driver again in the process of re-setting up the 3055? Any suggestions appreciated.

    Many thanks for your suggestions. After creating a bootable back-up, I tried the first suggestion--downloading and re-installing the HP printer driver update kit for which you kindly provided the link--but to no avail. Before downloading the driver update kit, I "reset the printing system", clearing all the installed printers, queues, etc. After re-installing the HP printer drivers, I went to System Preferences>Printers & Scanners to once again add the HP LaserJet 3055 only to discover it was already listed as installed! This I find baffling, to say then least. I tried printing and again got the "waiting for printer to be available" message. I subsequently tried deleting and re-adding the printer, going through the printing system reset again, but still no-go.
    I also tried another approach to adding the printer which perhaps will shed some light on the problem. After clicking on the "+" button to add the printer, I select the "HP LaserJet 3055" which shows up as available via USB. Then, instead of using the "HP LaserJet 3052" driver that automatically appears in the "Use" [choose a driver] field, I chose "Auto Select" to see what happens. As the computer processes this request, the status message changes from "Gathering printer information..." to "Waiting for printer to become available..." And, of course, it never becomes available. This strikes me as odd, that the printer set-up system "sees" the printer accurately enough to list it as available to add but can't find it with the "Auto Select" approach to getting the appropriate driver. Of course, when I simply go with the "Use HP LaserJet 3052" driver option that, naturally enough, is the one automatically suggested by the printer set-up system, the printer is "successfully" added. I say "successfully" in quotes because it never becomes "available" to print something.
    Before I try your second suggestion--downloading and re-installing the 10.9.5 combo update--I wonder if it's possible that the printing system reset process is "broken". It's as though the reset fails to clear the printer queue, making it appear that there is a pending printing job that the system is waiting to be finished. Also, as noted above, I reset the printing system prior to re-installing the HP printer driver update kit and then, after installation, the HP LaserJet 3055 magically had already been added. This makes me wonder if the printer wasn't properly "cleared" from whatever makes up the printer System Preference process during the reset.
    Any other thoughts?

Maybe you are looking for

  • File Sharing with XP and Vista

    Hi, I have an WRT54G wireless G router. I have a windows XP computer and a Windows Vista laptop that I would like to enable file sharing on. I am having a lot of problems doing so. Can someone please give me instructions on how to do so? Thanks, Alex

  • Problem Full Optimize

    Hi Is there a time limit for full optimize when running it from BPC Admin? I have tried to do a full optimize two times and it ends after 1 hour both times with the error messege: "Thread was being aborted" Do any one know what the problem can be and

  • Adobe Tutorial Help please?

    Hi, Trying to do the tutorial but have no idea of C#. I have tried running the code through a convertor but keep getting errors. Can anyone convert this from C# to VB <script runat="server"> protected void Page_Load(Object Src, EventArgs E) // Don't

  • Can't tab into file list when using column view in the open/save dialogue boxes

    Hi, When in Open/Save Dialog Boxes I can't use tab to select the file/folder list in Column View. Tab will only cycle through Save As, Tags, Search, and the Sidebar. In all the other views (Icon, List, Cover) I can tab into the file list. Is this a b

  • Attaching Header to SOAP Message

    Hi Guys, Can anybody tell me how to attach the Header to the message body in case of SOAP messages? My SOAP Message is as follows( in XML format): <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envel