Scheduling print of smartform every 5 minutes....

Hi,
To print smartform for invoices i.e VF03 transaction, I enter the name of billing document number. After that I go to Billing dopcument menu -> Issue outputto -> Print.
Now I want to schedule print of these smartforms every 10 minutes automatically.
How can I do this?
Thanks.
Regards,
Tushar.

After setting dispatch option to send periodically....
Create a variant for RSNAST00. Schedule RSNAST00 to run every five minutes in SM36 and use the created variant.
Set the dispatch time to send periodically.. in the output type config default values.
Regards
Sridhar
Message was edited by: Sridhar K

Similar Messages

  • Schedule Job to run every 15 minutes from 5 AM to 10 PM

    Hello,
    I am interested to have a job running from 5:00 AM to 10:00 PM every day, every 15 minutes
    Is it possible with Oracle 10g DBMS_scheduler?
    Thanks

    Hi,
    You can check this form here :http://www.oracle-base.com/articles/10g/scheduler-10g.php
    Hope this help

  • Support schedule print out for every maintainance contract

    Hi Experts
    Below is the scenario
    I create a maintainance contract with below items
    Contract num:900001    customer:A contract period- 1yr
    Material           Description                             Qty          Maint fee
    12345              car- GMC-full maint                   2             1000*2=2000/month
    10001              car-maruti-ful maint                   5              50*5=250/month
    20001              truck-engine serv only               2              2000*2=4000/month
    20016              truck-ful maint                          1              6000*1=6000/month
    For this contract I need to generate, print and send a service schedule for the customer A when I create contract.
                    SUPPORT SCHEDULE
    Contract num:900001    customer:A contract period- 1yr
    Description              Qty          Maint fee
    car maint                   7             2250/month
    truck service              3             10000/monnth
    Total = 12250
    How can I generate this output and make it available for print for each contract?should we use any form?
    Request your valuable and earliest comments.
    Thanks
    Banu

    James,
    Failure to properly print ligatures would not typically have anything to do with RIP processing. Assuming that your "Xerox printer" has a RIP that has Adobe PostScript, fonts in the PostScript stream (or in the orignal PDF file if appropriate)
    always override any fonts that are resident in the RIP. And for that matter, for PostScript printing, the PostScript printer driver is irrelevant as well since InDesign generates all the PostScript and simply uses the driver to channel that PostScript to the spooler and hence to the printer itself.
    As suggested in earlier responses in this thread, the symptoms suggest that the print stream was generated without all fonts embedded (or
    properly embedded) in the print stream. The original poster (Jason) did not indicate what version of InDesign he was using but there was a problem with a very old InDesign version (possibly InDesign 2.0 or 3.0) in which one of the print dialog's font options did not work correctly and omitted some glyphs from the output stream. That problem definitely was fixed long ago. It is certainly no longer an issue with InDesign 4 (CS2) and InDesign 5 (CS3) in which case make sure that in the InDesign print dialog's "graphics" pane, you set "fonts" to "download complete" (or "download subset") and also enable the "download PPD fonts" option. (If you are using an older InDesign version and having this problem, simply change "download subset" to "download complete" or vice versa - still enabling the "download PPD fonts" option - and see if that solves the problem).
    If you are running either InDesign 4 or 5 and still having this problem after making the appropriate print dialog fonts settings adjustment, we'd be very interested in (1) knowing exactly what printer is having this problem and (2) your sending us a simple example InDesign document exhibiting this issue.
    - Dov

  • Scheduling job to run  every 45 minutes

    Hi, i have to execute a batch evert 45 minutes, everyday except friday.
    i gave the below but its executing evey hourly i.e 60 min not 45 min, can some1 plz help
    BEGIN
    DBMS_SCHEDULER.create_job (
    job_name => 'JOB',
    job_type => 'PLSQL_BLOCK',
    job_action => 'BEGIN JOB; END;',
    start_date => SYSTIMESTAMP,
    repeat_interval => 'FREQ=DAILY; BYDAY=MON,TUE,WED,THU,SAT,SUN;BYHOUR=9,10,11,12,13,14,15,16,17,18,19,20,21; BYMINUTE=45;',
    end_date => NULL,
    enabled => TRUE,
    comments => 'TO test proc');
    END;
    /

    BEGIN
    DBMS_SCHEDULER.create_job (
    job_name => 'JOB',
    job_type => 'PLSQL_BLOCK',
    job_action => 'BEGIN JOB; END;',
    start_date => SYSTIMESTAMP,
    repeat_interval => 'FREQ=MINUTELY; INTERVAL=45;BYDAY=MON,TUE,WED,THU,SAT,SUN',
    end_date => NULL,
    enabled => TRUE,
    comments => 'TO test proc');
    END;
    /

  • I get "Make your printer even smarter" page every few minutes

    HP 8100
    When the printer is switched  and idle, it prints a "Make your printer even smarter" page every few minute. How do I stop this?

    Hi RogerShields,
    I was able to help another poster with a similar problem, please take a look at the link below, and let me know if following those steps helped
    http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile-Printing-and-ePrintCenter/STOP-SCHEDULED-PRINT...
    *** If my reply was helpful, please click on the "Kudos Thumbs-Up" on the right, as a way to say "Thanks!".
    If this reply also fixed your issue - please click the "Accept as Solution" button, so that others can find the same answer. ***

  • How to schedule a job every 10 minutes from 07 to 19 from Monday to Friday

    Hi,
    I would like to schedule a job in a way that runs every 10 minutes starting from 07 up to 19 from Monday to Friday
    How to do this?
    thanks in advance
    lk
    Oracle rdbms 10.2.0.4

    Off the top of my head :
    begin
    dbms_scheduler.create_job('OTN_JOB',
       job_action=> 'YOUR_STORED_PROCEDURE'  ,
       repeat_interval => 'FREQ=DAILY; BYHOUR=07,08,09,10,11,12,13,14,15,16,17,18,19; BYMINUTE=0,10,20,30,40,50',
       job_type=>'STORED_PROCEDURE', enabled=>TRUE);
    end;
    /Best Regards
    mseberg

  • How to setup jobs to run during 8 am to 6 pm every 30 minutes in scheduler

    I want to set up a job in the scheduler to run only during 8 am to 6 pm MST every 30 minutes. How do I do such a setting in the job scheduler? Could it be done through RZ04 (operation mode)
    Regards
    Ram

    Hello,
    You can do this by creating a daemon chain which runs once every 30 mins and triggers a event.
    You can use the event triggered by the daemon chain in the start variant of the PC which you require to run every 30 mins.
    But before doing that, make sure that one run of your process chain completes definetly in 30 mins.
    Let me know if you are looking for additional information.
    Cheers,
    MS.

  • How to fire a cron scheduler every 70th minute using quartz?

    I need to fire a cron schedule every 70th minute. For example if one fired at 12:00pm then 2nd one should be at 1:10pm and 3rd one should be at 2:20pm and so on. How do I achieve this? Cronmaker.com suggests this, 0 0/70 * 1/1 * ? *
    But when it goes past 60 minutes, it only fires every hour. Not the specfied minute which is above 60. Please advice.
    mayooran99

    Hi Mayooran,
    Question related to Quartz, I suggest you to post your thread to the Quartz forums in order to get more help around Quartz:
    http://forums.terracotta.org/forums/forums/show/17.page
    Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Printer is aligning cartridges every five minutes!!!

    Help - I have HP309g printer and it's decided to start aligning the printer cartridges every five minutes!  I let it run through one cycle in the hope that would cure it, but it just indicated 'printer alignment failed' and tried to do it again on the next document.   I'm in the middle of a rush job and haven't the time for this - does anyone know how to cure this at least until I get through the stack of very expensive cartridges I 've just bought for this machine - at which point I'm taking it for a trip to the recycling centre!

       I purchased a HP photosmart Premium, C310a in Dec.2010. The Black cartridge went empty and I purchased a HP564XL.  The Alignment check Failed. This test will not pass. I have followed the procedure over and over.  No good.  Help!

  • Schedule a process to invoke a process every 3 minutes

    Hi,
    I would like to invoke a process every 3 minutes to check for documents I can use EJB or SOAP. Can any one help me on how to invoke a process automatic every 3 minutes.
    Thank you,

    Presume:
    P1 is the process you want to invoke every 3 minutes
    create a process named P2.
    In the process P2:
          1. add a Sub Process activity and define to invoke P1.
          2. add a Wait Point activity and set 3 minutes.
          3. connect the route back to sub process (just make a loop)
    now invoke the process P2 manually (by right click, then Invoke) within workbench.
    Your P1 will get invoked by the helper process P1 every 3 minutes.
    Nith

  • Firefox 6.0.2 keeps crashing on both of my computers every few minutes. PLEASE HELP!

    I have firefox 6.02. It started crashing on my desktop several days ago after the update. It started crashing on my laptop yesterday, a few days after the update. I have Windows XP on my desktop and Windows 7 on my laptop. Both are HP. I upgraded to the 7.0 beta today but it is still crashing on both computers. The crashes are happening every few minutes. McAfee has not found anything. Please help. I am ready to switch to chrome.
    Application Basics
    Name
    Firefox
    Version
    7.0
    User Agent
    Mozilla/5.0 (Windows NT 5.1; rv:7.0) Gecko/20100101 Firefox/7.0
    Profile Directory
    Open Containing Folder
    Enabled Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Better Facebook!
    5.911
    true
    [email protected]
    Download Statusbar
    0.9.8
    true
    {D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}
    DownloadHelper
    4.9.5
    true
    {b9db16a4-6edc-47ec-a1f4-b86292ed211d}
    Feedback
    1.1.2
    true
    [email protected]
    Greasemonkey
    0.9.11
    true
    {e4a8a97b-f2ed-450b-b12d-ee082ba24781}
    Java Quick Starter
    1.0
    true
    [email protected]
    McAfee SiteAdvisor
    3.4.0
    true
    {4ED1F68A-5463-4931-9384-8FFF5ED91D92}
    RealPlayer Browser Record Plugin
    14.0.3
    true
    {ABDE892B-13A8-4d1b-88E6-365A6E755758}
    Java Console
    6.0.22
    false
    {CAFEEFAC-0016-0000-0022-ABCDEFFEDCBA}
    Java Console
    6.0.23
    false
    {CAFEEFAC-0016-0000-0023-ABCDEFFEDCBA}
    Java Console
    6.0.24
    false
    {CAFEEFAC-0016-0000-0024-ABCDEFFEDCBA}
    Java Console
    6.0.26
    false
    {CAFEEFAC-0016-0000-0026-ABCDEFFEDCBA}
    Microsoft .NET Framework Assistant
    1.2.1
    false
    {20a82645-c095-46ed-80e3-08825760534b}
    Yahoo! Toolbar
    2.3.11.20110727115843
    false
    {635abd67-4fe9-1b23-4f01-e679fa7484c1}
    Modified Preferences
    Name
    Value
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage
    http://www.centurylink.net/
    browser.startup.homepage_override.buildID
    20110908135051
    browser.startup.homepage_override.mstone
    rv:7.0
    extensions.lastAppVersion
    7.0
    general.useragent.extra.microsoftdotnet
    ( .NET CLR 3.5.30729)
    gfx.blacklist.layers.direct3d9
    2
    keyword.URL
    http://search.yahoo.com/search?fr=mcafee&p=
    network.cookie.prefsMigrated
    true
    network.http.proxy.version
    1.0
    places.database.lastMaintenance
    1315870617
    places.history.expiration.transient_current_max_pages
    20100
    places.last_vacuum
    1297306180
    print.print_printer
    HP Photosmart 2570 series
    print.printer_HP_Photosmart_2570_series.print_bgcolor
    false
    print.printer_HP_Photosmart_2570_series.print_bgimages
    false
    print.printer_HP_Photosmart_2570_series.print_command
    print.printer_HP_Photosmart_2570_series.print_downloadfonts
    false
    print.printer_HP_Photosmart_2570_series.print_edge_bottom
    0
    print.printer_HP_Photosmart_2570_series.print_edge_left
    0
    print.printer_HP_Photosmart_2570_series.print_edge_right
    0
    print.printer_HP_Photosmart_2570_series.print_edge_top
    0
    print.printer_HP_Photosmart_2570_series.print_evenpages
    true
    print.printer_HP_Photosmart_2570_series.print_footercenter
    print.printer_HP_Photosmart_2570_series.print_footerleft
    &PT
    print.printer_HP_Photosmart_2570_series.print_footerright
    &D
    print.printer_HP_Photosmart_2570_series.print_headercenter
    print.printer_HP_Photosmart_2570_series.print_headerleft
    &T
    print.printer_HP_Photosmart_2570_series.print_headerright
    &U
    print.printer_HP_Photosmart_2570_series.print_in_color
    true
    print.printer_HP_Photosmart_2570_series.print_margin_bottom
    0.5
    print.printer_HP_Photosmart_2570_series.print_margin_left
    0.5
    print.printer_HP_Photosmart_2570_series.print_margin_right
    0.5
    print.printer_HP_Photosmart_2570_series.print_margin_top
    0.5
    print.printer_HP_Photosmart_2570_series.print_oddpages
    true
    print.printer_HP_Photosmart_2570_series.print_orientation
    0
    print.printer_HP_Photosmart_2570_series.print_page_delay
    50
    print.printer_HP_Photosmart_2570_series.print_pagedelay
    500
    print.printer_HP_Photosmart_2570_series.print_paper_data
    1
    print.printer_HP_Photosmart_2570_series.print_paper_height
    11.00
    print.printer_HP_Photosmart_2570_series.print_paper_size_type
    0
    print.printer_HP_Photosmart_2570_series.print_paper_size_unit
    0
    print.printer_HP_Photosmart_2570_series.print_paper_width
    8.50
    print.printer_HP_Photosmart_2570_series.print_reversed
    false
    print.printer_HP_Photosmart_2570_series.print_scaling
    1.00
    print.printer_HP_Photosmart_2570_series.print_shrink_to_fit
    true
    print.printer_HP_Photosmart_2570_series.print_to_file
    false
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_bottom
    0
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_left
    0
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_right
    0
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_top
    0
    privacy.cpd.cache
    false
    privacy.cpd.cookies
    false
    privacy.cpd.formdata
    false
    privacy.cpd.sessions
    false
    privacy.sanitize.migrateFx3Prefs
    true
    privacy.sanitize.timeSpan
    0
    security.enable_ssl2
    true
    security.warn_viewing_mixed
    false
    Graphics
    Adapter Description
    NVIDIA GeForce 6150 LE
    Vendor ID
    10de
    Device ID
    0241
    Adapter RAM
    Unknown
    Adapter Drivers
    nv4_disp
    Driver Version
    8.2.0.5
    Driver Date
    1-24-2006
    WebGL Renderer
    Google Inc. -- ANGLE -- OpenGL ES 2.0 (ANGLE 0.0.0.686)
    GPU Accelerated Windows
    0/1. Blocked for your graphics driver version.

    I have firefox 6.02. It started crashing on my desktop several days ago after the update. It started crashing on my laptop yesterday, a few days after the update. I have Windows XP on my desktop and Windows 7 on my laptop. Both are HP. I upgraded to the 7.0 beta today but it is still crashing on both computers. The crashes are happening every few minutes. McAfee has not found anything. Please help. I am ready to switch to chrome.
    Application Basics
    Name
    Firefox
    Version
    7.0
    User Agent
    Mozilla/5.0 (Windows NT 5.1; rv:7.0) Gecko/20100101 Firefox/7.0
    Profile Directory
    Open Containing Folder
    Enabled Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Better Facebook!
    5.911
    true
    [email protected]
    Download Statusbar
    0.9.8
    true
    {D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}
    DownloadHelper
    4.9.5
    true
    {b9db16a4-6edc-47ec-a1f4-b86292ed211d}
    Feedback
    1.1.2
    true
    [email protected]
    Greasemonkey
    0.9.11
    true
    {e4a8a97b-f2ed-450b-b12d-ee082ba24781}
    Java Quick Starter
    1.0
    true
    [email protected]
    McAfee SiteAdvisor
    3.4.0
    true
    {4ED1F68A-5463-4931-9384-8FFF5ED91D92}
    RealPlayer Browser Record Plugin
    14.0.3
    true
    {ABDE892B-13A8-4d1b-88E6-365A6E755758}
    Java Console
    6.0.22
    false
    {CAFEEFAC-0016-0000-0022-ABCDEFFEDCBA}
    Java Console
    6.0.23
    false
    {CAFEEFAC-0016-0000-0023-ABCDEFFEDCBA}
    Java Console
    6.0.24
    false
    {CAFEEFAC-0016-0000-0024-ABCDEFFEDCBA}
    Java Console
    6.0.26
    false
    {CAFEEFAC-0016-0000-0026-ABCDEFFEDCBA}
    Microsoft .NET Framework Assistant
    1.2.1
    false
    {20a82645-c095-46ed-80e3-08825760534b}
    Yahoo! Toolbar
    2.3.11.20110727115843
    false
    {635abd67-4fe9-1b23-4f01-e679fa7484c1}
    Modified Preferences
    Name
    Value
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage
    http://www.centurylink.net/
    browser.startup.homepage_override.buildID
    20110908135051
    browser.startup.homepage_override.mstone
    rv:7.0
    extensions.lastAppVersion
    7.0
    general.useragent.extra.microsoftdotnet
    ( .NET CLR 3.5.30729)
    gfx.blacklist.layers.direct3d9
    2
    keyword.URL
    http://search.yahoo.com/search?fr=mcafee&p=
    network.cookie.prefsMigrated
    true
    network.http.proxy.version
    1.0
    places.database.lastMaintenance
    1315870617
    places.history.expiration.transient_current_max_pages
    20100
    places.last_vacuum
    1297306180
    print.print_printer
    HP Photosmart 2570 series
    print.printer_HP_Photosmart_2570_series.print_bgcolor
    false
    print.printer_HP_Photosmart_2570_series.print_bgimages
    false
    print.printer_HP_Photosmart_2570_series.print_command
    print.printer_HP_Photosmart_2570_series.print_downloadfonts
    false
    print.printer_HP_Photosmart_2570_series.print_edge_bottom
    0
    print.printer_HP_Photosmart_2570_series.print_edge_left
    0
    print.printer_HP_Photosmart_2570_series.print_edge_right
    0
    print.printer_HP_Photosmart_2570_series.print_edge_top
    0
    print.printer_HP_Photosmart_2570_series.print_evenpages
    true
    print.printer_HP_Photosmart_2570_series.print_footercenter
    print.printer_HP_Photosmart_2570_series.print_footerleft
    &PT
    print.printer_HP_Photosmart_2570_series.print_footerright
    &D
    print.printer_HP_Photosmart_2570_series.print_headercenter
    print.printer_HP_Photosmart_2570_series.print_headerleft
    &T
    print.printer_HP_Photosmart_2570_series.print_headerright
    &U
    print.printer_HP_Photosmart_2570_series.print_in_color
    true
    print.printer_HP_Photosmart_2570_series.print_margin_bottom
    0.5
    print.printer_HP_Photosmart_2570_series.print_margin_left
    0.5
    print.printer_HP_Photosmart_2570_series.print_margin_right
    0.5
    print.printer_HP_Photosmart_2570_series.print_margin_top
    0.5
    print.printer_HP_Photosmart_2570_series.print_oddpages
    true
    print.printer_HP_Photosmart_2570_series.print_orientation
    0
    print.printer_HP_Photosmart_2570_series.print_page_delay
    50
    print.printer_HP_Photosmart_2570_series.print_pagedelay
    500
    print.printer_HP_Photosmart_2570_series.print_paper_data
    1
    print.printer_HP_Photosmart_2570_series.print_paper_height
    11.00
    print.printer_HP_Photosmart_2570_series.print_paper_size_type
    0
    print.printer_HP_Photosmart_2570_series.print_paper_size_unit
    0
    print.printer_HP_Photosmart_2570_series.print_paper_width
    8.50
    print.printer_HP_Photosmart_2570_series.print_reversed
    false
    print.printer_HP_Photosmart_2570_series.print_scaling
    1.00
    print.printer_HP_Photosmart_2570_series.print_shrink_to_fit
    true
    print.printer_HP_Photosmart_2570_series.print_to_file
    false
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_bottom
    0
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_left
    0
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_right
    0
    print.printer_HP_Photosmart_2570_series.print_unwriteable_margin_top
    0
    privacy.cpd.cache
    false
    privacy.cpd.cookies
    false
    privacy.cpd.formdata
    false
    privacy.cpd.sessions
    false
    privacy.sanitize.migrateFx3Prefs
    true
    privacy.sanitize.timeSpan
    0
    security.enable_ssl2
    true
    security.warn_viewing_mixed
    false
    Graphics
    Adapter Description
    NVIDIA GeForce 6150 LE
    Vendor ID
    10de
    Device ID
    0241
    Adapter RAM
    Unknown
    Adapter Drivers
    nv4_disp
    Driver Version
    8.2.0.5
    Driver Date
    1-24-2006
    WebGL Renderer
    Google Inc. -- ANGLE -- OpenGL ES 2.0 (ANGLE 0.0.0.686)
    GPU Accelerated Windows
    0/1. Blocked for your graphics driver version.

  • LaserJet 200 M276nw works for a week or so then starts intializin​g every 5 minutes.

    Hi, I am now on my third laserjet 200 M276nw in less than a month. I've never seen any company as incompetent as HP.... nobody can figure this out,, all I have available is Indian Phone Centers... they only read and reread the same scripts to me over and over and then want to replace my brand new, expensive laser printer with a refurbished one. I just want one that works and doesn't "Initialize" every 5 minutes on the minute,, it's more accurate than Big Ben but never stops whining and squealing,, night and day. I'm running out of options,, HP is about to lose my business forever... not gonna let my 30 day trial skip into their 1 year warranty or I'll be stuck with a refurbished/someone else's problem.  Must be something simple or something I'm not seeing,, read everything I can find, but this seemingly is only happening to me??? WEIRD,, can't imagine getting 3 "OR MORE" of a defective product in a row.
    ANY HELP OR IDEAS would be appreciated.
    Thanks.
    CAPER
    This question was solved.
    View Solution.

    >> ... plugged my router back in... still nothing.
    >> ... Turned both iphones back on, waited,, nothing.
    >> ... Turned on the laptop,, nothing ...
    >> ... Now, before I turned on my desktop which is the main computer I figured i'd best reboot the printer to make sure
    >> it's not the laptop. When I turned the printer back on,, it initialized and then again at 5 minute intervals ...
    The fact that the printer did not re-initialise with the various computing devices switched off would seem to imply that the re-initialise action is triggered by something on one of the devices, and is not inherent to the printer itself.
    The fact that this action didn't happen when the laptop was switched on (even after waiting at least 5 minutes?), but did start again when the printer was then power-cycled may perhaps be because the laptop didn't recognise that the printer was there until the printer reboot triggered some interrupt within the laptop operating system.
    >> ... had an Error 49 earlier this afternoon and it shut itself down,, didn't  mention it before but haven't had one since ...
    So are you saying that the 5-minute occurrences are not each preceded by an error 49.xx being reported (bearing in mind that it may flash up on the display and disappear very quickly)?
    And can you confirm that it IS re-initialising each time (the display will presumably indicate this) rather than just entering a cleaning or calibration cycle?

  • HP Laserjet 1536dnf MFP constant cycling every few minutes

    The printer has started to constantly cycle - once every 5 minutes or so.  No other issues.  I've resorted to keeping it off, unless I need to print or fax (mainly because of the distracting noise).  I've tried leaving it unplugged for up to 24 hours.  I've also tried a new cartridge.  It is connected to a wireless print server with an ethernet cable and it has an IP address on my home network. It is on a power strip with several other devices that do not have issues - so I don't believe it is power related.  It is a couple of months out of warranty, so the HP support site will not let me submit a case. 

    I called HP support with my unit, and they sent out a replacement unit.  Guess what?  It did the same thing!  I called back and they escalated the issue up.  After several emails and calls, they replaced the unit with another model. 
    It stinks, and I'm really surprised they cannot fix this problem and figure it out.  Can this problem not be fixed with a firmware update?  I really hated it, because other than this one flaw, it was a great printer. 

  • Mac OS X 10.7 drivers for HP LaserJet 1300: installation at the "Add Printer" process ended, every time, with message "Currently drivers for this printer are UNavailable..."!   PLEASE HELP?

    APPLE [see Apple Support's Article HT 3669] says Mac OS X 10.7 (Lion) has drivers for this Printer. 
    But, every time I've tried installing it to my Mac Book Pro (which came with OS X 10.7), it does recognize that the Printer (connected via USB cable) is HP LaserJet 1300 -- in fact, right below, this statement appears: "The drivers for this Printer are available...".  But, when it comes to the actual process of downloading, the "Add Printer" window -- after 20+ minutes of its "searching" for the drivers -- always ends with the message: "Currently drivers for this printer are UNavailable... contact the manufacturer."!!!  (Can you imagine? Apple says it's available... but its own "Add Printer" process says it's UNavailable!)
    I went to HP's support site, and it, too, says that drivers for this Printer are available!  -- see the 2 links:
      http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01664444&lc=en&cc=us&dlc=en &product=4152639
      http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02915680&tmp_track_link=ot_ faqs/top_issues/en_us/c02915680/loc:4&cc=us&dlc=en&lc=en&product=4152639#N507
    Can somebody help me?  Would very much appreciate it.

    You haven't installed any of the Photoshop updates for CS5.
    Go download and install the updates.

  • Create A JOB  must execute in every 20 minutes from 8:00 AM to 8:00 PM

    Hi,
    Can any one a write a script to create a job suppose “ERP_CONS_POST_JOB” in a database.
    This job must execute in every 20 minutes from 8:00 AM to 8:00 PM.
    Thanks in advance.Please reply me its urgent.

    bpat wrote:
    Go through the below link
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_job.htm
    http://psoug.org/reference/dbms_job.html
    It will provide a better understanding.
    Look at the INTERVAL procedure.That's not really correct.
    The dbms_job package is the "old" way of scheduling jobs.
    Since 10g the dbms_scheduler package has superceded that and is the preferred option, as well as it offering greater flexibility. dbms_job is only kept for backwards compatibility.

Maybe you are looking for

  • Opied files got corrupted in USB3 external drives connected to Macbook Pro, how to fix it?

    I use USB3 connected external hard drives in my Macbook Pro mid 2012 (Yosemite 10.10.1) frequently. I had no problem until two months ago. This week I noticed a lot of corrupted files in one ext drive connected to USB3 port. Luckily  I have a backup,

  • PAPI - execute process based on selected participants

    In a process, there are two roles. In role one and two, interactive activities are set to user selects transition. Each role has one interactive activity. If a user finish task in activity one of role one, BPM workspace (10g) let this user select the

  • Version 2.0 How Tos?

    Hello, I'm looking for the How To examples for Version 2.0. Specifically the How to Upload and Download Files in an Application. I found the How To for version 3.0, but I'm having difficulty finding the How To for the version 2.0. Can anyone direct m

  • How to Ensure Symbol State Persists?

    Okay, so I have a symbol that I want to show/hide; it's a named MovieClip with two labelled frames ("show" and "hide" in that order), the default is to be shown, and both frames have a stop() command. This seems fine however at one point in my animat

  • IBook upgrade to 10.4.6

    I upgraded an iBook to 10.4.6 and on the restart I get passed the gray screen and apple it goes through the progress bar, but then I get only the user's desktop image -- no dock, no menus just an empty desktop. There is a pointer but nothing to point