How to configure printer...

How can I configure a printer in Oracle Apps ?? What is the document that one can follow for configuring a printer in oracle apps??
Regards,

Hi,
Refer to the following notes, it should be helpful:
Note: 269129.1 - How to Implement Printing for Oracle Applications: Getting Started
https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=269129.1
Note: 297522.1 - How to investigate printing issues and work towards its resolution?
https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=297522.1
Note: 200359.1 - Oracle Application Object Library Printer Setup Test
https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200359.1
Regards,
Hussein

Similar Messages

  • How to configure print server in UNIX?

    Hi everyone,
    Can someone guide me about how to configure a print server when EPM products are installed on a Linux server?
    Thanks,
    Sayantan

    Hi,
    Additionall, you may need to check the configuration of radius server on server 2012.
    And you must make sure that the shared-key must be the same on both server and client side.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/8e9e3d1b-70c2-4350-af8b-a83284b37c0f/install-a-radius-server-on-windows-server-2012?forum=winserverNAP
    Best Regards
    Quan Gu

  • Print HTML using JPS API.. How to configure printer MIME-TYPE as text/html

    Hi All,
    I have to print the HTML pages.. for this i have used JPS API , but i found that my printer doesnt supoort Mime-type(Flavour) text/html.
    Can someone help me in this ...
    i) Can i configure my printer for this Mime-type , if yes then HOW?
    ii) Is there any work around ?
    Thank you all in advance :)

    I reposted this question in the Database forum. Admin can feel free to delete this thread.
    The answer is to add this at the top: htp.addDefaultHTMLHdr(false);
    Thanks,
    T.
    Edited by: 855677 on May 3, 2011 9:35 AM

  • How to configure printer to use bypass tray when printing legal paper and envelopes?

    I have a new Phaser 3610. Tray 1 - contains Letter paperBypass Tray - Legal paper and sometimes envelopes How do I configure my printer to know when to use the bypass tray for legal paper when I that is what I want to print to from Excel?  In Excel, I have legal selected but it is still pulling the paper from tray 1 instead. I also print envelopes occasionally.  If I stick an envelopoe in the bypass tray, I want it to print from there like when using Word to create enveloples, instead it is pulling it from Tray 1. I have tried to adjust both settings on the Printer control panel and the Xerox printer software.  I have had no luck.

    Hi burnsey23,
    Thank you for using the Support Forum. Please take a look at the solution for using smaller paper in the bypass tray.  I know it says smaller but use the same steps for larger paper as well.  Also make sure that the orientation on Excel is set to the orientation that corresponds to the way the paper is loaded in the tray.  If this does not help please consider contacting your support centre for further assistance.

  • How to configure printing with apex 3.1.2

    I am trying to use Apache FOP with Apex 3.1.2 and I am unable to find the place to configure Apex.
    The document I am using is located at [http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html] and the important paragraph is the following:
    Step 2: Configure Oracle Application Express to use the JSP for PDF printing
    Once you have the FOP installed, access the Report Printing parameters:
    1. Access the Administration Services home page
    2. Select Manage Service
    3. Select Instance Settings, under Manage Environment Settings
    4. Click Report Printing to focus on just the Report Printing attributes
    I am trying to locate those settings. In the page with the breadcrumb "Home>Administration>Manage Services" the is no "Manage Environment Settings".
    Am I looking in the wrong place? Is there a special user that should be used, like sys?
    The installation is an Oracle XE with the Apex upgraded to 3.1.2

    You need to be logged in to the 'internal' workspace .
    Varad

  • How to configure print settings in smartforms

    Hello friends,
        I was given a task to develop smart forms..everythign is working fine but i am left with following queires,
      so far i ddint maintain any print related parameters,
    i understand i need to work on three parameters now
    1)CONTROL_PARAMETERS   
    2)   OUTPUT_OPTIONS
    3) USER_SETTINGS   
    now i have seen other forms at our place and seen
    in control parameters they pass
      p_control-langu     = 'EN'.
      p_control-no_dialog = 'X'.
    in output
      p_output-tddest     = 'LP05'.
      p_output-tdnewid    = 'X'.
      and for user_settings
    user_settings =  ' '
    but
    the same changes are giving me error....
    can any one tell me why?
    next if i remove them and give them at runtime i get no sort of problem..
    so how i do give them with in program?
    next what si the role of user_settings...
    why is it ' '...
    shud it be 'X'..
    next when i give print parameters in DEVELOPMENT..
    when i move it to QUALITY...(settings will remain same as DEV) will it cause problmes?(like may be in QUA p_output-tddest     = 'LP05'. needs to be modified?)..
    any links,material to help me know more abt this issue wil be rewarded..
    thnaks

    Hi kumar,
         Please find the below thread.....
    convert smartform output into pdf
    Re: Euro symbol in PO Layout output preview
    data: C_FORMNAME TYPE TDSFNAME.
    DATA: G_FM_NAME TYPE RS38L_FNAM.
    c_formname = 'ZKAR_SF2PDF_EXMPL'.
    To get output device type
    CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
    EXPORTING
    I_LANGUAGE = V_LANGUAGE
    I_APPLICATION = 'SAPDEFAULT'
    IMPORTING
    E_DEVTYPE = V_E_DEVTYPE.
    ST_OUTPUT_OPTIONS-TDPRINTER = V_E_DEVTYPE.
    ST_CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    ST_CONTROL_PARAMETERS-GETOTF = 'X'.
    Call Function to get the Function Module name for the smart form
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = C_FORMNAME
    IMPORTING
    FM_NAME = G_FM_NAME.
    IF SY-SUBRC 0.
    Check for Errors
    ENDIF.
    Call Smartform function module without hard coding
    CALL FUNCTION G_FM_NAME
    EXPORTING
    CONTROL_PARAMETERS = ST_CONTROL_PARAMETERS
    OUTPUT_OPTIONS = ST_OUTPUT_OPTIONS
    USER_SETTINGS = 'X'
    ADD YOUR DATA STRUCTURES HERE
    IMPORTING
    DOCUMENT_OUTPUT_INFO = ST_DOCUMENT_OUTPUT_INFO
    JOB_OUTPUT_INFO = ST_JOB_OUTPUT_INFO
    JOB_OUTPUT_OPTIONS = ST_JOB_OUTPUT_OPTIONS
    TABLES
    ADD YOUR DATA TABLES
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5
    IF SY-SUBRC 0.
    On Failure display standard Message
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    Also see this related note:
    Note 1072424 - Error from SSF_GET_DEVICE_TYPE when lang is not installed.
    Reward points.....
    Regards,
    Sreenivasa Sarma K.
    Edited by: sharmashree kashi on Apr 7, 2008 4:03 PM

  • How to configure print preview for a customised RFQ document type.

    Hi All,
          I can see RFQ print preview for a standard RFQ type AN .But while I want to see RFQ print preview in customised RFQ type ,I am not able to see .Kindly let me know where I have to maintain it in customisation.
    Regards
    Abhijit Das

    Hi,
    Confirm the following settings;
    SPRO > MM > Purchasing > Messages > Output Control > Message Types > Define Message Types for Request for Quotation > Fine-Tuned Control: Request for Quotation > Here maintain the Customized RFQ Output Type with Operation "1" i.e. New
    And then maintain the Customized RFQ Output Type in the RFQ Procedure "RMBEA1"
    And then maintain the condition record in MN01 for the Customized RFQ Output Type and then check it in ME41.

  • How to configure output for adobe forms in sap,,if i want to pront  an invo

    Hi,
    I used adobe forms in GTS.
    BUt in normal SAP system,i want to use adobe form to print an invoice data.
    I wantt o use the standard form and standard interface for that.
    But how to do configuration for this?
    normally for smartforms we do it in NACE transdaction?
    But for this adobe forms what is the driver program,,where to configure this form and interface.
    Thanks in advance,
    sasi

    Hello,
    it is the same way how you will configure for smart forms.
    Standard driver program is : RLB_INVOICE
    Please go through this link, how to configure print forms for invoice.
    http://****************/Tips/SmartForms/NACE/Configuration.htm
    Edited by: rakhi966 on Sep 9, 2011 9:22 PM

  • How to configre printer  at linux and R12 instance

    Dear all,
    Please guide me.how to configure printer at linux and configure at R12 also.
    Regards
    Dharma

    933950 wrote:
    Dear all,
    Please guide me.how to configure printer at linux and configure at R12 also.
    Regards
    DharmaThis topic was discussed many times in the forum before, please see old threads for details.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Printer&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Printer+AND+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Printer+AND+Setup&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How do I print a configuration page from a Mac with Snowleopard?

    How do  I print a configuration page from a Mac with Snowleopard?  Printer is workinhg fine, but I just put in a new cartridge and I'd like to know how many pages I'm printing.
    Dave

    Hi there Dave, aka @dewanio , welcome back
    I saw that you are looking to print off a configuration page.
    The printer itself will print a test page however, the model depends on how it will print. Let me know which printer you have and I will get back to you!
    Thanks!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • How can i print a network configuration page , i need the IP on a ph1510

    how can i print a network configuration page , i need the IP on a ph1510

    Hi,
    What is the exact printer model?
    If it is the HP Deskjet 1510, this is a USB printer and it does not offer any network capabilities.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to configure ePrint on LaserJet CP1025nw Color Printer

    Solution found:
    How to Configure HP ePrint on the LaserJet CP1025nw Color Printer
    System:     Windows  (Widows 7)
    Step 1 – Install Printer
    Install the CP1025nw Printer to USB, Wifi or Ethernet.
    (Printer needs to print correctly in order to pass to the next steps).
    Step2 – Check Firmware Version
    Press the “Info-Button” on the CP1025nw LaserJet for five seconds.
    The printer will print two info pages.
    Look at the first Page on the top-left for Firmware Version
    Firmware version must be 20120103 or higher.
    Step 3 – Update Firmware
    Download Firmware Update utility (LJCP1020_FWUpdate_signed.exe) from the following link:
    Utilidad de actualización del firmware de HP LaserJet CP1025nw
    or
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=lj-86491-5&cc=es&dlc=es&lc=es&...=
    Execute the Utility on the computer were the CP1025nw LaserJet is correctly installed.
    Find the CP1025nw Printer on the list. The selection Window might show the printer several times depending on how the printer was installed. Select one option and press the button “Update One”.
    Step 4 – Retrieve the Printer Code for your CP1025nw Printer
    ATTENTION:
    The “Host Name” of the printer is not the “Printer-Code” you need  for ePrint setup.
    To retrieve the Printer-Code you must run the ePrint-Setup-Wizard-Utility.
    To download of the utility, go to the link: http://www.hp.com/go/ePrint .
    Find the “HP LaserJet Pro CP1020 Color Printer Series” option in the Drop-Down-List.
    Click “Windows” to download the wizard (EPrintSetupWizard.exe ).
    Execute the Wizard on the computer where the CP1025nw Printer is correctly installed. After running the wizard press the “Info-Button” on the CP1025nw LaserJet for five seconds. The printer will print three info pages. The third info-page offers the Printer-Code you need for ePrint setup. The code is valid for 24h only. When time elapses you have to reprint the info-pages to get an actualized Printer-Code.
    Step 5 – Get Printer Email for your CP1025nw LaserJet
    In order ePrint on your CP1025nw Printer you need to assign an email address to your Printer. To do this, go to the following link: http://www.hpeprintcenter.com/
    Log in with your HP-ID. If you don’t have one, register for a new account.
    When logged in, click on “Add new Printer”-button. You will be asked to enter the Printer-Code. (On how to get the Printer-Code, see step 4).
    While evaluating the Printer-Code, be patient, the program needs its time.
    When the Printer-Code is accepted, you can assign an email address for your CP102nw5 LaserJet. Done this, your con print your CP1025nw Printer just by sending the documents per email to the email-address of your printer.
    Done.

    Hi Max, check out the link below...
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&lc=en&dlc=en&product=4052972
    Hope this helps
    Ciara
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • How to configure network printer on solaris 10 intel based

    how to configure the network printer in solaris 10
    like hp laserjet printer/printers,

    Very very easy.
    Go to the print manager . (printmgr I believe or in the launch menu under preferences)
    select add a network printer
    Fill out the info. I find that the hpijs printer driver works better then the suggested foomatic on my hp 4000s. I could not print pdfs otherwise.
    Other things to know is the protocol should be BSD (at least it works for me). And add the port to the destination so 192.168.0.1:9600 for example (for hp).
    thats about it. To have it show up correctly in JDS you should probably add it to the printer list under the launch->preferences->printer preferences.

  • How to configure Dotmatrix Printer in local system

    Hi,
    I need to configure DOT MATRIX Printer in Local System in ECC6.0. please give steps how to configure.
    Thanks,
    venkat

    This is not more different than other printers.
    check
    http://help.sap.com/saphelp_nw70/helpdata/EN/7e/36e4c4023411d399b70000e83dd9fc/frameset.htm
    Markus

  • How to configure adobe forms in OMLV for printing picking slip

    Hello,
    I want to configure a adobe form in OMLV transaction. But there is no column for putting adobe forms.
    Can you tell me how do configure adobe forms for getting it printed from standard transaction whenever a transfer order is created.
    Thanks in advance.

    Hi Ajay,
    You are completely right that you cannot find anything with smartform in the customizing (OMLV). The reason for it: It is not there. It not even exists. Also the latest version of rlvsdr40 has nothing standard concerning smartforms.
    I do not know why it is really necessary to use adobe or smartforms.
    The only way is to build a new one (ZRLVSDR40). In that new one you have to use the sapscriptname (from OMLV)and treat it as a smartform- name.
    I hope my explanation helps. Success.
    Gr., Frank
    Below how a smartform is called (from invoice)
    determine smartform function module
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lf_formname
        IMPORTING
          fm_name            = lf_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
      error handling
        retcode = sy-subrc.
        IF sy-subrc = 1.
          MESSAGE e001(ssfcomposer).
        ENDIF.
        IF sy-subrc = 2.
          MESSAGE e002(ssfcomposer) WITH lf_formname.
        ENDIF.
        PERFORM protocol_update.
      ENDIF.
      CALL FUNCTION lf_fm_name
        EXPORTING
          archive_index        = toa_dara
          archive_parameters   = arc_params
          control_parameters   = ls_control_param
          mail_recipient       = ls_recipient
          mail_sender          = ls_sender
          output_options       = ls_composer_param
          user_settings        = ' '
          is_nast              = nast
          is_vbdka             = vbdka
          is_addres            = addr_key
        IMPORTING
          document_output_info = document_output_info
          job_output_info      = job_output_info
          job_output_options   = job_output_options
        TABLES
          it_vbdpa             = tvbdpa    "Item information
          it_vbdpau            = tvbdpau   "Subitem numbers
        EXCEPTIONS
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          OTHERS               = 5.

Maybe you are looking for

  • Schedule Lines  and Delivery Pending Quantity Issue

    I have created Sales Order (Number 1032) with following scenario and posted one goods issuance against first delivery with less quantity. Sales Order Item                     Item     Item Desc     Order Quantity           10     High Speed Diesel (H

  • Copy of a CD (created by Disk Utility) not recognized by Windows or Linux

    I created a copy of AutoCAD 2005 (not pirating it... just wanted a backup copy of the install CD). I used Disk Utility (File > New > Disk Image From Folder) to successfully create a DMG file on my MacBook. I could mount the DMG and browse all the fil

  • How many porgams (or pages) can you have on your ITouch?

    Hello, I have a 32GB Touch with the newest software i think 2.1, and have purchased a lot of programs/games and such. I noticed when i installed over 144 apps on it the new ones i install do not show up. I have 9 pages on it, can you have more then 9

  • Screen is blank when I click on the "Site" icon, no avenue to upload to an FTP.  Help please

    Trying to upload a website created through iWeb to an external host since MobileMe no longer an option. I Web is only linking to MobileMe when I click "publish".  Researched instructions through the Apple tutorials and webs help sites, says to click

  • BI Scheduler Service is not getting started

    BI scheduler service is not getting started and showing this error Could not start the oracle BI Scheduler Service on local computer. Error 1064:An Exception occured in the service when handling the control request