Send Direct Print to Printers from Forms

               please tell me how to send direct print From Oracle FORMS(When-Button-Pressed) to network or Attached Printer with client PC.
               I am using Oracle Developer Suit 10g R2. Database 10g R2.
Browser Netscape Communicator 4.8.
Please...
Thanks your so much
G.Yassen

Hi Yassen...
I think your question is already been discussed in this forum
Try the links,
https://forums.oracle.com/thread/2169281
https://forums.oracle.com/thread/2455853
Anything unclear let me know
Regards,
Soofi

Similar Messages

  • Send direct print to printer from client, Reports 10G, Windows environment,

    We are using windows 2003 based server. Oracle Form and Report Services . Database 10g . Reports 10G.
    Trying to send direct print to printer from client side using Destination Parameter : Printer.
    I am getting output in pdf at client side. but direct print to printer is failed.

    Make sure that the client printer is also known on the application server, since that is where the print job is generated.

  • How can print a report from form 6i,  when I press a button?

    hi Friends,
    How can print a report from form 6i, when I press a button?
    When i press a button from Form 6i, the report should print through printer.
    I have done it by using report parameter DESTYPE Printer but problem is that when I press a button printer dialogue box appear and then I give command Print to printer, I don’t want to show Printer dialogue box.
    I want when I press a button form Forms 6i , printer will print my report directly.
    Please send me the solution of this problem.
    Best regards,
    Shahzad

    Hi
    If You are using Client server application then to passing to Add all Print Parameter in the Host Command.
    Means Print command in unix to Host(lp.............) and Other Parameter to file name of the report to print.
    If You not Use Client Server Application the Also Passing a Host Command in Button-Pressed Event and Run.

  • How to send direct print in 10g(through application serve) on local printer

    Dear All;
    We are move from oracle 6i to 10 form builder & report builder.
    In 6i we will send direct print on printer, But in 10g we are unable to send the print on local printer if we set " detyp=printer " then print goes on application server's printre not on local printer.
    Can I send the print on local machine without display on screen?
    Database: 10g
    Form and Report Builder :10g
    OS :Windows Xp & Linux (Minut & Ubuntu)
    B/R
    Zahid Hussain

    Hi
    We had a similar requirement and we took help from a third party software called RepExpert. You can get a demo version from the following link and if it satisfies your requirement you can purchase it.
    www.lv2000.com/re/repexpert.htm
    HTH

  • Printing a report from Forms 9i

    Hi all
    I have to print a report from Forms 9i, but I can't do it directly, I have to execute it with desname = preview and then I can print it.
    I use the following sintax
    RUN_REPORT_OBJECT_PROC(repid, v_server_name,'pdf',printer,v_path,v_report,'paramform=no'|| other parameter....,v_servlet)
    where v_path is the name of the printer and run_report_object is a procedure to execute reports into forms
    I try to set v_path with the printer name on my client and on the server.. but it doesn't find it...
    Please help me,
    Thanks in advance
    Antonio

    Hi all
    have any one some information about ORARPP (Oracle Reports Remote Printing) ???
    I should print directly, my desname should be a printer.... could any one help me???
    Thanks in advance for your support...
    Antonio

  • Printing a report from forms

    I would like to print a report from forms without opening reports first. Is this possible and if so how?

    From a command-line or .BAT file (assuming Windows and Developer6i) run the following (on a single line). It will go to your default printer.
    <ORA_HOME>\bin\rwrun60 <report>.rdf userid=<user>/<pw>@<hoststring> destype=printer batch=yes
    null

  • Print, pdf, mail from form

    Hello,
    I want to print, create pdf file on desktop and send external mail of invoice from SAP form (all in one program).
    I have following question:
    1) can we do all from one program?
    2) Will it download pdf file on presentation server (c:\filename.pdf) even thought output will be called in a document while saving in backgroung?
    3) If we send mail can we have multiple recipents?
    4) Any sample code or reference?
    Thank you.
    AP

    Hi,
      This is the program to download form into pdf file.
    1.Directly with RSTXPDFT4.
    or
    TABLES : vbrk.
    TYPE-POOLS : slis.
                               GLOBAL TYPES
                       naming convention: "TY_name"
                              GLOBAL CONSTANTS
                       naming convention: "c_name"
                        GLOBAL ELEMENTARY VARIABLES
                        naming convention: "w_name"
                              GLOBAL STRUCTURES
                        naming convention: "st_name"
                           GLOBAL INTERNAL TABLES
                         naming convention: "i_name"
    DATA:i_bdcdata    TYPE TABLE OF bdcdata    ,
         i_fieldcat   TYPE slis_t_fieldcat_alv ,
         i_vbrk       TYPE TABLE OF ty_vbrk    ,
         i_sort       TYPE slis_t_sortinfo_alv ,              "for sorting the fields
         i_rows       TYPE lvc_t_row            .
                          PARAMETERS & SELECT-OPTIONS
                     aming convention: "p_name" & "s_name"
    SELECTION-SCREEN  BEGIN OF BLOCK b1." WITH FRAME TITLE text-010.
    SELECT-OPTIONS : s_vkorg FOR  vbrk-vkorg OBLIGATORY,
                     s_fkart FOR vbrk-fkart  OBLIGATORY,
                     s_kunag FOR vbrk-kunag            ,
                     s_vbeln FOR vbrk-vbeln            ,
                     s_fkdat FOR vbrk-fkdat  OBLIGATORY.
    SELECTION-SCREEN  END OF BLOCK b1.
    SELECTION-SCREEN  BEGIN OF BLOCK b2.
    PARAMETERS: p_file1 TYPE string DEFAULT 'C:\'.
    SELECTION-SCREEN  END OF BLOCK b2.
    DEFINE m_fieldcat.
      add 1 to st_fieldcat-col_pos.
      st_fieldcat-fieldname   = &1.
      st_fieldcat-ref_tabname = 'VBRK'.
      st_fieldcat-seltext_s   = &2.
      st_fieldcat-seltext_m   = &3.
      st_fieldcat-seltext_l   = &4.
      append st_fieldcat to i_fieldcat.
    END-OF-DEFINITION.
                               START-OF-SELECTION
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      CALL METHOD cl_gui_frontend_services=>directory_browse
        CHANGING
          selected_folder      = p_file1
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    START-OF-SELECTION.
      EXPORT w_file FROM  p_file1 TO MEMORY ID 'ZMEM1'(005).
      PERFORM f1000_get_data.
      PERFORM f2000_display_data.
    *&      Form  F1000_get_data
          This routine is used for Get the data from VBRK based on
          Selection Screen
    FORM f1000_get_data.
      SELECT vkorg
             fkart
             kunag
             vbeln
             fkdat
        INTO TABLE i_vbrk
        FROM vbrk
       WHERE vkorg IN s_vkorg
         AND fkart IN s_fkart
         AND kunag IN s_kunag
         AND vbeln IN s_vbeln
         AND fkdat IN s_fkdat.
      IF sy-subrc NE 0.
        MESSAGE i014(zmsg) WITH 'No data is available for your Input'(003).
      ENDIF.
    ENDFORM.                    "get_data
    *&      Form  F2000_display_data
         This routine is used for building field catalogs and display
         ALV Data
    FORM f2000_display_data.
      PERFORM f6000_field_cat.
      PERFORM f7000_sort.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = sy-repid
          i_callback_pf_status_set = 'F3000_PF_STATUS_SET'
          i_callback_user_command  = 'F4000_USER_COMMAND'
          is_layout                = st_layout
          it_fieldcat              = i_fieldcat
          it_sort                  = i_sort
        TABLES
          t_outtab                 = i_vbrk.
    ENDFORM.                    "display_data
    *&      Form  F6000_field_cat
         This routine is used for building field catalogs and display
         ALV Data
    FORM  f6000_field_cat.
      m_fieldcat 'VKORG' '' '' ''.
      m_fieldcat 'FKART' 'Billing Document Type'(007) 'Billing Document Type'(007) 'Billing Document Type'(007).
      m_fieldcat 'KUNAG' 'Customer No'(008) 'Customer No'(008) 'Customer No'(008).
      m_fieldcat 'VBELN' 'Invoice No'(009) 'Invoice No'(009) 'Invoice No'(009).
      m_fieldcat 'FKDAT' '' '' ''.
      st_layout-cell_merge = 'X'.
      st_layout-colwidth_optimize = 'X'.
      st_layout-box_fieldname = 'VKORG'.
    ENDFORM.                    "F7000_field_cat
    *&      Form  F7000_sort
    FORM f7000_sort .
      CLEAR st_sort.
      st_sort-fieldname = 'VBELN'.
      st_sort-up = 'X'.
      st_sort-group = 'UL'.
      APPEND st_sort TO i_sort.
    ENDFORM.                                                    "f6000_sort
          FORM F3000_PF_STATUS_SET                                      *
          This routine is for creating User button on output
    FORM f3000_pf_status_set  USING ut_extab TYPE slis_t_extab. "#EC CALLED
      SET PF-STATUS 'ZPF_STATUS' OF PROGRAM 'ZVRXX_SF_PDF_DOWNLOAD'
          EXCLUDING ut_extab.
    ENDFORM.                               " PF_STATUS_SET
          FORM F4000_USER_COMMAND                                       *
          This routine is for When user on clicks on custom button in
          OUTPUT and Download to PDF format
    FORM f4000_user_command USING ucomm TYPE sy-ucomm
                                  sel TYPE slis_selfield.
      TYPES: BEGIN OF ty_alv,
              lights(1)  TYPE c, "Exception, Holding the value of the lights
              number(14) TYPE c,  "billing document no
              text(150)  TYPE c,  "text
             END OF ty_alv.
      DATA: gs_alv       TYPE ty_alv,
            gt_alv       TYPE TABLE OF ty_alv,
            gr_alv       TYPE REF TO cl_salv_table,
            gr_columns   TYPE REF TO cl_salv_columns_table,
            gr_column    TYPE REF TO cl_salv_column,
            lw_ref       TYPE REF  TO cx_salv_not_found,
            lw_ref1      TYPE REF TO cx_salv_msg,
            lw_ref2      TYPE REF TO cx_salv_data_error,
            lw_text      TYPE string,
            lw_pdf(3)    TYPE c,
            lw_pdf1(3)    TYPE c.
      DATA: ref_grid TYPE REF TO cl_gui_alv_grid.
      DATA :lw_row_index       TYPE lvc_index    ,
            lw_subrc           TYPE sy-subrc      .
      CONSTANTS : c_0          TYPE c VALUE '0'.
    *then insert the following code in your USER_COMMAND routine...
      IF ref_grid IS INITIAL.
        CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            e_grid = ref_grid.
      ENDIF.
      IF NOT ref_grid IS INITIAL.
        CALL METHOD ref_grid->check_changed_data.
      ENDIF.
      CASE ucomm.
        WHEN 'PDF'.
          lw_pdf = 'PDF'.
          EXPORT lw_pdf1 FROM lw_pdf TO MEMORY ID 'ZMEM4'(004).
          CALL METHOD ref_grid->get_selected_rows
            IMPORTING
              et_index_rows = i_rows.
          LOOP AT i_rows
             INTO st_selected_line.
            lw_row_index = st_selected_line-index.
            CLEAR st_selected_line.
            READ TABLE i_vbrk
                  INTO st_vbrk
                 INDEX lw_row_index.
            IF sy-subrc EQ 0.
              CLEAR:w_vbeln.
              MOVE st_vbrk-vbeln TO w_vbeln.
              EXPORT lw_vbeln1 FROM w_vbeln TO MEMORY ID 'ZMEM'(004).
              lw_subrc = 1.
    *--Begin of changes for DRFK904991
    *--We need an identifier to tell the print program that PDF is being
    downloaded through this program and the word "COPY" should not be
    printed hence we are exporting this flag to memory which will be
    read later on in the smartform
              DATA l_pdf TYPE c.
              l_pdf = 'X'.
              EXPORT l_pdf TO MEMORY ID 'ZPDF'.
              PERFORM f5000_print_vbeln USING w_vbeln.
              FREE MEMORY ID 'ZPDF'.
    *--End of changes for DRFK904991
              IMPORT lw_subrc1 TO lw_subrc FROM MEMORY ID 'ZMEM2'(006).
              CLEAR : w_objky.
              SELECT objky
                FROM nast
                UP TO 1 ROWS
                INTO w_objky
               WHERE kappl EQ c_v3
                 AND objky EQ w_vbeln
                 AND ( kschl EQ c_zrd0 OR kschl EQ c_zrdx ).
                and nacha eq '8'. "--02/15/2008
              ENDSELECT.
    *insertion by kudalarr on 05-02-2008
    *displaying the status of download.
              IF w_objky NE space
                       AND lw_subrc EQ c_0.
                st_check-value = 'PDF is  Generated Successfully'(001).
                gs_alv-lights = '3'.    "Color green
                gs_alv-number = w_objky.
                gs_alv-text = st_check-value.
                APPEND gs_alv TO gt_alv.
              ELSE.
                st_check-value = 'PDF is not Generated'(002).
                gs_alv-lights = '1'.    "Color red
                gs_alv-number = w_vbeln.
                gs_alv-text = st_check-value.
                APPEND gs_alv TO gt_alv.
              ENDIF.
            ENDIF.
            lw_subrc = 1.
            EXPORT lw_subrc1 FROM lw_subrc TO MEMORY ID 'ZMEM2'.
          ENDLOOP.
      ENDCASE.
    *GETTING ALL THE COLUMNS AND ASSISGNING THE COLUMN NAMES TO THE RESPECTIVE.
      TRY.
          CALL METHOD cl_salv_table=>factory
            IMPORTING
              r_salv_table = gr_alv
            CHANGING
              t_table      = gt_alv.
        CATCH cx_salv_msg INTO lw_ref1.
          lw_text = lw_ref1->get_text( ).
          IF NOT lw_text IS INITIAL.
          ENDIF.
      ENDTRY.
      gr_columns = gr_alv->get_columns( ).
      TRY.
          CALL METHOD gr_columns->get_column
            EXPORTING
              columnname = 'NUMBER'
            RECEIVING
              value      = gr_column.
        CATCH cx_salv_not_found INTO lw_ref .
          lw_text = lw_ref->get_text( ).
          IF NOT lw_text IS INITIAL.
          ENDIF.
      ENDTRY.
      TRY.
          CALL METHOD gr_column->set_long_text
            EXPORTING
              value = 'Invoice number'(010).
          CALL METHOD gr_columns->get_column
            EXPORTING
              columnname = 'TEXT'
            RECEIVING
              value      = gr_column.
          CALL METHOD gr_column->set_long_text
            EXPORTING
              value = 'Status'(011).
        CATCH cx_salv_not_found ."INTO LW_REF.
          lw_text = lw_ref->get_text( ).
          IF NOT lw_text IS INITIAL.
          ENDIF.
      ENDTRY.
    *DISPALYING THE STATUS OF PDF GENERATION.
      TRY.
          gr_columns->set_exception_column( value = 'LIGHTS' ).
          CALL METHOD gr_alv->display.
        CATCH cx_salv_data_error INTO lw_ref2.
          lw_text = lw_ref2->get_text( ).
          IF NOT lw_text IS INITIAL.
          ENDIF.
      ENDTRY.
      IF NOT sel IS INITIAL.
      ENDIF.
    *end of insertion by kudalarr on 05-02-2008
    ENDFORM.                    "sub_user_command
                                                                "F6000_sort
    *&      Form  F5000_print_vbeln
          text
    -->  p1        text
    <--  p2        text
    FORM f5000_print_vbeln USING l_vbeln TYPE vbeln.
      CONSTANTS:   c_ctumode(1) TYPE  c VALUE 'N', "set the parametrs for call transaction.
                   c_cupdate(1) TYPE  c VALUE 'A'. "set the parametrs for call transaction
      DATA:lw_kschl      TYPE sna_kschl.
      DATA : lw_field      TYPE dd03l-fieldname,
             lw_counter(2) TYPE n .
      REFRESH: i_bdcdata.
      CLEAR:   lw_kschl,
               lw_counter,
               lw_field.
      SELECT kschl
             FROM nast
             INTO lw_kschl
             UP TO 1 ROWS
            WHERE kappl EQ c_v3
            AND  kschl EQ c_rd00
            AND objky EQ l_vbeln.
           and nacha eq '8'. "--02/15/2008
      ENDSELECT.
      IF sy-subrc EQ 0.
        lw_counter = lw_counter + 1.
      ENDIF.
      CLEAR:lw_kschl.
      SELECT kschl
             FROM nast
             INTO lw_kschl
             UP TO 1 ROWS
                   WHERE kappl EQ c_v3
            AND ( kschl EQ c_zrd0 OR kschl EQ c_zrdx )
            AND objky EQ l_vbeln.
           and nacha eq '8'. "--02/15/2008
      ENDSELECT.
      IF  sy-subrc = 0.
        lw_counter = lw_counter + 1.
      ELSE.
        MESSAGE i015(zmsg) WITH 'No output Type Available  for the selected Invoice'(013) l_vbeln.
      ENDIF.
      PERFORM bdc_dynpro      USING 'SAPMV60A' '0101'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'VBRK-VBELN'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=DRCK'.
      PERFORM bdc_field       USING 'VBRK-VBELN'
                                    l_vbeln.
      PERFORM bdc_dynpro      USING 'SAPLVMSG' '0200'.
      CONCATENATE 'NAST-KSCHL(' lw_counter ')' INTO lw_field.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                     lw_field.
      CLEAR:lw_field.
      CONCATENATE 'ROW_MARK(' lw_counter ')' INTO lw_field.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=PRNT'.
      PERFORM bdc_field       USING lw_field
                                    'X'.
      CALL TRANSACTION 'VF03' USING i_bdcdata MODE c_ctumode
                                            UPDATE c_cupdate.
      IF sy-subrc EQ 0.
        MESSAGE s999(zyus) WITH 'Invoice Report'(012).
      ENDIF.
    ENDFORM.                    " SUB_PRINT_VBELN
           Start new screen                                              *
    FORM bdc_dynpro USING program dynpro .
      CLEAR st_bdcdata.
      st_bdcdata-program  = program.
      st_bdcdata-dynpro   = dynpro.
      st_bdcdata-dynbegin = 'X'.
      APPEND st_bdcdata TO i_bdcdata.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM bdc_field USING fnam fval.
      CLEAR st_bdcdata.
      st_bdcdata-fnam = fnam.
      st_bdcdata-fval = fval.
      APPEND st_bdcdata TO i_bdcdata.
    ENDFORM.     
    Regards(replay with points),
    Shiva.
    Edited by: shiva kumar on Mar 20, 2008 5:33 AM

  • Print a File from Forms to a Printer connected to USB Port

    Hi All,
    I have a printer connected to the USB port to my local machine.
    I access web application Forms 9i AS and try to print a report on my local printer.The report is opened using web.show_document in the Internet explorer browser window. There are several pages in the report and i need a page break to be recognized on each page. For remote printing i tried using ORARRP utility but it does not print from a printer connected to a USB port. But it works when the printer is connected to a parallel port.
    How do i achieve this, please share your thoughts on this and solution as well if this is feasible
    Expecting a favourable reply from the forum users.
    Thanks in advance

    WEB.show_document is mainly for running a report that you want to display in a browser but you can still use it to create a file in the report server even though I would recommend to use RUN_REPORT_OBJECT instead ...
    You can take a look at metalink note 207396.1 - How to Run Reports From Forms 9i / 10g Using RUN_REPORT_OBJECT.
    It appears you are already using it since WEB.show_document in your case is just used to retrieve the output from a job that was previously run, most likely with RUN_REPORT_OBJECT.
    Can you post the code used to run the report ? It will be easier to convert it to generate a file if we have it..
    The file name you assign it when you call the report (DESNAME=d:\mysharedfolder\mytextfilenameyyymmddhhmiss.txt) so that it is unique and you delete it after the report is printed, webutil can give you a private folder for the user in the application server, in case the data is sensitive, you would run the report with DESTYPE=FILE and MODE=CHARACTER.
    You would need two folder locations, one in the application server, webutil can help you with that, and another one in the client PC, it could be the C:\TEMP folder if you will ...

  • Printing a report from forms that has a param form with orarrp 10g

    Hello,
    I have reports that i can successfully print from Oracle Forms using orarrp and web.ShowDocument(etc...) that do not have paraforms.
    However for my reports that have paraforms I have am unable to print them. Basically I need to catch the printer destype event from the paramform and execute some custom code based on the decision. Does anyone have any experience with this?
    Thanks

    I dont know if you want to explore this, but there is a better utility than orarrp that overcomes some of the drawbacks of orarrp.
    Perhaps it might solve your problem.
    check this out:
    http://forms.pjc.bean.over-blog.com/article-6621538.html

  • How to send more than one parameter from FORM to REPORT?

    Dear all,
    i can send one parameter from FORM to REPORT. but when i send more than one parameter it gives error: frm 41214 unable to run report.
    here is the code i think the error is in the following line of procedure:
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_date_from='||v_date_from||'p_date_to='||v_date_to);
    where to place the parameters and is there any space is required?
    Thanks
    Muhammad Nadeem

    Dear Saeed Iqbal,
    thanks for you reply.
    dear i am using Form 10g run_product is not supported in this version.
    i am using RUN_REPORT_OBJECT.
    PROCEDURE rep_gl_ledger IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(50);
    v_date_from date;
    v_date_to date;
    v_detail_id_from varchar2(100);
    v_detail_id_to varchar2(100);
    v_voucher_type varchar2(100);
    --req_no char(17);
    BEGIN
    v_date_from :=      :ledger_para.p_date_from;
    v_date_to :=      :ledger_para.p_date_to;
    v_detail_id_from :=      :ledger_para.p_detail_id_from;
    v_detail_id_to :=      :ledger_para.p_detail_id_to;
    v_voucher_type :=      :ledger_para.p_voucher_type;
    repid := find_report_object('gl_ledger');
    --repid := find_report_object('REPORT80');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_online_FRHome');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no p_date_from='||v_date_from||'p_date_to='||v_date_to);
    --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /* Display report in the browser */
    WEB.SHOW_DOCUMENT('http://'||:GLOBAL.G_IP||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?','_blank');
    ELSE
         message('Error when running report');
    END IF;
    END;
    Regards:
    Muhammad Nadeem

  • How can I print directly print a report from another app?

    Hi, Can I print a report (printer schedule immediate) passing parameters from another application? Like a html page!
    Thanks a lot. R.

    I can't use the url (for example):
    http://HOST:9704/xmlpserver/servlet/scheduler?ujobname=test_print.xdo&d_printerd_p_gname0=direct&show_conf_page=true&d_method0=d_printer0&job_locale=it_IT&save_output=off&mode=schedule&save_data=off&ujobdesc=test_print.xdo&stype=simple_immediate&_xschurl=_xpt%3D%26WebDoc_Id_Page_Id%3D34132_233%26_xdo%3D%2Ftest_print%2Ftest_print.xdo%26_xpf%3D%26Store_Timezone%3DEurope%2FRome%26_xf%3Dpdf&report_url=%2Ftest_print%2Ftest_print.xdo&submitted=true&d_printerd_p_name0=bridgept1&d_printerd_copy0=1
    ?

  • How to send automatic emails to lotusmail from forms 10g

    hi iam new to oracle forms 10g...as i have developed complaint module. now i need to send automatic emails from my forms 10g to my department heads
    depending on complaints assigned, to their lotus mail... as iam totally new to this can any one tell me step by step process to do........ if anyone having sample
    complaint module pls send it to me it vl be more helpful to me........

    Welcome to the forum!
    Sometimes it helps to search the forum before posting a question.
    Here are some links which might help you:
    Sending emails viw UTL_SMTP
    PL/SQL for utl_smtp
    If you have a mail-client installed on the client-pc you could use the following to open it and iinitially create a mail with that
    microsoft outlook express connectivity to oracle
    If you have Outlook installed as mail-client another option would be CLIENT_OLE in webutil, have a look at this
    Send mail with attachment

  • Send mail witch attach files from forms server 6i

    How to attach file from my logical drive , and sending mail via forms web 6i ?

    Hi jean,
    there is a lot of complication involved with trying to attach files using the java web server, the best thing i have done was i have added a microsoft windows email component on to my form and invoked its methods and properties, for eg. for attaching a file u have something called as microsoft windows common controls which opens the file open dialog box. Remember , trying to build email and messeging kind of applications with oracle tools is a bit complicated as of now because windows 2000 server has additional security features equivalent to standard firewall and the java interface of oracle looks for certifications for each and every cgi request.
    Rajendra - [email protected]

  • How send data to serial port from forms 6i

    How send data to serial port to activate hardware connect.
    The hardware is a drawer for cash the point of sales.

    Andres,
    I do the exact thing you are looking for,
    I spool out a text file using text_io
    the file will either contain a double ^G or an epson escape sequence, depending on the drawer type connected.
    I then copy this file to the port using a copy function id d2kwutil
    Works perfectly, but god knows how I'll do it if we want to run the point of sale over the web :)
    John

  • Reports 9i Printing from Forms with WEB.SHOW_DOCUMENT

    I want to print a Report from Forms via WEB.SHOW_DOCUMENT directly to the printer and it works fine.
    But every time i print it from my web application a new browser-windows opens and shows a message "Printed successfully" or something like that. If I start the printjob again nothing happens - if I press the Browser-Refresh-Button in the new Browser-Windows with the Message ("Printed Successfully") it prints.
    So now I have 2 questions:
    a) How can I disable the "Printed successfully"-Message
    b) What hava I to do that I not must press on the Refresh-Button to start the printing again
    I hope I hava explained my problem clearly. 4
    Here ist the complet WEB.SHOW_DOCUMENT-Command I fire in Forms when a Button is pressed:
    WEB.SHOW_DOCUMENT('http://mymachine:8888/reports/rwservlet?report=testreport.rdf&destype=printer&desname=\\NTS32\VZ_D3&desformat=html&userid='|| sUser ||'/'|| sPW ||'@'|| sDB,'_blank');      
    Many thanx for your help!
    Regards
    Marc

    Hello,
    for the problem:
    b) What hava I to do that I not must press on the Refresh-Button to start the printing again
    may be it just a setting in your Browser ?
    For Internet Explorer :
    go to I.E General Options screen. click on settings button and choose
    "Every visit to the page " option.
    Regards

Maybe you are looking for

  • My iphone 3 won't let me download free apps from itunes

    Every time I try it makes me verify my payment info, and then it tells me my session has timed out.  Does anyone know what I am doing wrong?

  • Data reconciliation using OBIEE/Answers

    Hi I am new to OBIEE. I am trying to use the OBIEE and Answers for the reconciliation of the accounting entries with transaction data, However This leads to two facts one transaction lines and accounting lines. I can make the transaction lines also d

  • Shipping point - no values in matchcode at Sales order item level

    Hello, i have created a shipping point. however when i create the sales order i do not get any values in the matchcode.

  • Color labels in finder

    Maverick OS doesn't seem to have the option to color label files v.s. color tag. Is there a way to bring that back?

  • White Balance & Post Production

    Hi, My client gave me an interview she conducted to edit. The white balance is horrible. Is there anyway for me to fix this problem during post-production? I've been playing around with color correction and desaturation. I'd appreciate any feedback.