Email output file

Hi,
We are using R12,
We have a concurrent program whose output we want to send in email after the completion of program, please help
Regards
Bilal

We have a concurrent program whose output we want to send in email after the completion of program, please helpPlease see these links.
https://forums.oracle.com/forums/search.jspa?threadID=&q=Concurrent+AND+Completion+AND+Email&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
https://forums.oracle.com/forums/search.jspa?threadID=&q=Concurrent+AND+Completion+AND+Email+AND+Notify+&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • Email PDF file name issue via output determination - order confirmation etc

    Hi,
    I can email pdf files via output determination. Unfortunately the file name is same as sapscript name. How do I change it to the name I want for example document number.
    Thanks,
    Jai

    Hi Jaideep,
    You can change the mail title at Output determination.
    T/code NACE--> Application > Outputtype> Select O/P --> select Mail title and texts --> specify your text( with language) in "title" .
    Whenever Script send via e-mail the text you have entered will apear as mail title.
    Hope this may help you.
    Lanka

  • Email conc program output file by using printer driver

    Hi ,
    we have one interface program which has been scheduled every week.
    My req is that after completing successfully/error the interface program i need to send an email to the given email address with output file as attachment.
    This should be happened through priter driver.
    Could anyone please help me on this.
    Thanks,
    Malla

    Hi Bhaskar,
    I appreciate for your reply.
    What I am looking for is that without writing any shell script is there any possible solution.
    Now I am getting an email without writing shell script but attachment is not coming with the email.
    My current process is that
    I am registering a printer and when create a driver for this i am giving parametes for command mode as
    $ uuencode $PROFILES$.FILENAME $PROFILES$.FILENAME_out|mailx -s $ $PROFILES$.FILENAME [email protected]
    I am able to get the email but no attachment.
    So Could you please tell me how to do that.
    Thanks,
    Malla

  • Concurrent Requests output file (pdf format) send to email

    Friends -
    Does any one implemented this.
    Submit Conurrent Requests once the requests is completed send the output file(PDF Format) as an attachement to email.
    Please provide us steps.
    Regards
    VSH

    Hi,
    See this thread.
    concurrent ouput to email
    concurrent ouput to email
    Regards,
    Hussein

  • Email concurrent output in output file type (.pdf,.xls) to a random address

    Hi,
    I'm new to the forums, I've an issue which I'm not able to resolve. Plz Help!
    Oracle Database: 10g
    Application Server: EBS R12 R6
    I need to send the output(pdf) of a concurrent to a random email address, say "[email protected]". But in the server concurrent output directory($APPLCSF/$APPLOUT) the output file is stored in ".out" format. So I'm not able to find a solution of how to send the output in pdf format.
    Plz Help guyz

    Guyz Plz Help me,
    If even i can send an URL of the concurrent output file in the output format, the purpose would be solved. And also its a better way to go as UTL_MAIL has an attachment limit of 32K.
    Guyz Plz Help, don't hesitate or preserve any portion of your thoughts or comments about this topic.

  • How to view the log/output output files in browser through email notification hyperlinks

    I am working on an extension in Fusion Applications. The requirement is to send a notification with details of a concurrent program. The notification will have hyperlinks of "out" and "log" files. When the user clicks on the "out" hyperlink, it should open the Output file(that resides in the unix box) of the corresponding concurrent program in the browser. We know that in E-business suite R12 functionality, records should be populated in FND_FILE_TEMP table to view any files from unix box in browser.
    Can you please let me know the approach to be taken in Fusion Applications?

    The format of the start and end timestamp ranges are "MM/dd/yy HH:mm:ss" for example 12/01/09 12:00:00. Give this a try.
    Thanks

  • Email PDF file - create temp PDF  file not  where Report Run

    I mail a report from Reports 6 automatically every morning using Rwrub60 and desname [email protected] in a batch file. The problem is that you need to have write access to the directory that contains the batch file or else you get a cannot create output file error. When I copy the batch file to another directory where write access is available, no problem but the batch file must be in the original directory.
    I am trying to pass this onto someone elese who doesnt have the rights I have.
    Any thoughts?

    Thanks,
    Ive set this, although the temporary files that Reports usese are going there, the temp PDF isnt!!

  • How to  email a file in application server as attachement

    I need your help in sending mail in ABAP4.
    Please provide me some help on this.
    I have some files in the server eg. /tmp/file1 and /tmp/file2
    I want to zip those 2 files file1 and file2 into a single file namely output.zip and email output.zip as attachment.
    Thanks,
    Kasi
    Message was edited by:
            Kasi Reddy

    Hi,
    Check this code..GIve the input file path and give the email address...Then execute..
    PARAMETERS: p_file(50) LOWER CASE.
    PARAMETERS: p_email(50).
    START-OF-SELECTION.
    Data declarations.
      DATA: plist         LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
      DATA: document_data LIKE sodocchgi1.
      DATA: so_ali        LIKE soli OCCURS 100 WITH HEADER LINE.
      DATA: real_type     LIKE soodk-objtp.
      DATA: sp_lang       LIKE tst01-dlang.
      DATA: line_size     TYPE i VALUE 255.
      DATA: v_name        LIKE soextreci1-receiver.
      DATA rec_tab        LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    Get the file data.
      OPEN DATASET p_file FOR INPUT IN TEXT MODE.
      IF sy-subrc <> 0.
        MESSAGE s208(00) WITH 'Error in opening file'.
        LEAVE LIST-PROCESSING.
      ENDIF.
      DO.
        READ DATASET p_file INTO so_ali-line.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
        APPEND so_ali.
      ENDDO.
      CLOSE DATASET p_file.
    Prepare the data.
      plist-transf_bin = 'X'.
      plist-head_start = 0.
      plist-head_num = 0.
      plist-body_start = 0.
      plist-body_num = 0.
      plist-doc_type = 'RAW'.
      plist-obj_descr = 'Test ALV'.
      APPEND plist.
      plist-transf_bin = 'X'.
      plist-head_start = 0.
      plist-head_num = 0.
      plist-body_start = 1.
      DESCRIBE TABLE so_ali LINES plist-body_num.
      plist-doc_type = 'RAW'.
    Get the size.
      READ TABLE so_ali INDEX plist-body_num.
      plist-doc_size = ( plist-body_num - 1 ) * line_size
                       + STRLEN( so_ali ).
      APPEND plist.
    Move the receiver address.
      MOVE: p_email  TO rec_tab-receiver,
            'U'      TO rec_tab-rec_type.
      APPEND rec_tab.
      IF NOT sp_lang IS INITIAL.
        document_data-obj_langu = sp_lang.
      ELSE.
        document_data-obj_langu = sy-langu.
      ENDIF.
      v_name = sy-uname.
    Send the email.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = document_data
                sender_address             = v_name
                sender_address_type        = 'B'
           TABLES
                packing_list               = plist
                contents_bin               = so_ali
                receivers                  = rec_tab
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
      IF sy-subrc <> 0.
        MESSAGE e208(00) WITH 'Error'.
      ENDIF.
      COMMIT WORK.
    Send the email immediately.
      SUBMIT rsconn01
      WITH mode = 'INT'
      AND RETURN.
    Thanks,
    Naren

  • How to create multiple output files using TrAX?

    I am new in this field. I'm trying to create multiple xml output files using TrAX. I have to parse a xml source file and output it to multiple xml files. My problem is that it only creates one output file and puts all the parsed data there. When i use saxon and run xsl and xml files, it works fine and creates multiple files...it has something to do with my java code...Any help is greatly appreciated.
    Here's my XSL file
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"
    <xsl:template match="data_order">
    <data_order>
         <xsl:copy-of select="contact_address"/>
         <xsl:copy-of select="shipping_address"/>
         <xsl:apply-templates select="ds"/>
    </data_order>
    </xsl:template>
    <xsl:template match="ds">
    <xsl:variable name="file" select="concat('order', position(),'.xml')"/>
    <order number="{position()}" href="{$file}"/>
    <xsl:document href="{$file}">
    <xsl:copy-of select="."/>     
    </xsl:document>
    </xsl:template>
    </xsl:stylesheet>
    xml source file
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE operation SYSTEM 'data_order.dtd'>
    <data_order job_id='00-00-000' origin='PM-ESIP'>
         <contact_address>
              <first_name>ssssss</first_name>
              <last_name>sssss></last_name>
              <phone>2323232</phone>
              <email>dfdfdsaf</email>
         </contact_address>
         <ds ds_short_name ='mif13tbs'>
              <output>
                   <media_format>neither</media_format>
                   <media_type>FTP</media_type>
                   <output_format>GIF</output_format>
              </output>
         </ds>
              <ds ds_short_name ='mif15tbs'>
              <output>
                   <media_format>neither</media_format>
                   <media_type>FTP</media_type>
                   <output_format>GIF</output_format>
              </output>
         </ds>
    </data_order>
    My java file
    import javax.xml.transform.*;
    import javax.xml.transform.stream.*;
    import java.io.*;
    public class FileTransform {
    public static void main(String[] args)
    throws Exception {
    File source = new File(args[0]);
    File style = new File(args[1]);
    File out = new File(args[2]);
    TransformerFactory factory = TransformerFactory.newInstance();
    Transformer t = factory.newTransformer(new StreamSource(style));
    t.transform(new StreamSource(source), new StreamResult(out));

    Saxon has specific extensions. In this case it is <xsl:document>. That looks like a standard XSLT element, but it actually isn't. The history behind it is this: There was a proposal to create a new version of XSLT, called XSLT 1.1. One of the new features of this version was to be this xsl:document element. The author of the Saxon product, Michael Kay, is one of the people on the W3C committee directing the evolution of XSLT, so he upgraded his product to implement XSLT 1.1. But then the committee decided to drop XSLT 1.1 as a recommendation. So that left Saxon in the strange position of implementing a non-existent extension to XSLT.
    The other outcome of this process was that XSLT (1.0) does not have a way of producing more than one output file from an input file. And so the short answer to your question is "Trax can't do that." However, XSLT 2.0 will be able to do that, although it is not yet a formal W3C recommendation, and when it does become one it will take a while before there are good implementations of it. (I predict that Saxon will be the first good implementation.)
    One of the problems with XML and XSLT is that what you knew a year ago is probably obsolete now, because of all the evolution going on. So being new in the field is not a disadvantage, unless you get stung by reading obsolete tutorials or magazine articles.

  • How do I add column headings to an output file?

    Hi,
    I have an internal table that is created in my program and I send that table out as a data file attachment on an email.
    I have a request to include column heading on the data file going out. 
    Does anyone have any ideas as to how I can include a heading line as the first line of the output file?
    I'm an ABAP newbie and I don't know the best way to accomplish this?
    Thanks for your help!
    Andy

    Hi,
    While Building the attachement just add the field description refer following code
    Append header line to download data
      CONCATENATE 'Company Code'(004)
                  'State'(007)
                  'Store'(010)
                  'Tax Type'(013)
                  'Purchase'(015)
                  'Tax Rate'(017)
                  'Gross Tax Due'(021)
                  'Discount'(023)
                  'Net Tax Due'(025)
                  INTO ls_download-data
                  SEPARATED BY lc_tab.
      APPEND ls_download TO gt_download.
      CLEAR : ls_download.
    LOOP AT gt_error_log INTO ls_error_log.
        CONCATENATE ls_error_log-bukrs
                    ls_error_log-budat
                    ls_error_log-monat
                    ls_error_log-gjahr
                    ls_error_log-xblnr
                    ls_error_log-bschl
                    ls_error_log-waers
                    ls_error_log-hkont
                    ls_error_log-wrbtr
                    ls_error_log-prctr
                    ls_error_log-kostl
                    ls_error_log-message
                    INTO ls_attach-line SEPARATED BY lc_tab.
        CONCATENATE lc_cret ls_attach-line  INTO ls_attach-line.
      Append Error log data to attachment Table
        APPEND ls_attach TO lt_objbin.
      ENDLOOP.
    Call the function module to convert the data into Hex
      CALL FUNCTION 'SO_RAW_TO_RTF'
        TABLES
          objcont_old = lt_objbin
          objcont_new = lt_objbin.
    Append converted hex data to attachment table
      LOOP AT lt_objbin INTO lv_line.
        ls_conv = cl_abap_conv_out_ce=>create( encoding = 'UTF-8' endian = 'B').
      Call lmethod to add the data to the output buffer sequentially.
        CALL METHOD ls_conv->write( data = lv_line ).
        lv_buffer = ls_conv->get_buffer( ).
        MOVE lv_buffer TO lv_hexa.
        MOVE lv_hexa TO ls_hex-line.
      Append converted hex data to attachment table
        APPEND ls_hex TO gt_attach.
      ENDLOOP.
    Regards,
    Prashant

  • Removing message type tag in output file

    Hi guys,
    I'm new to XI. I have done an xml file to xml file scenario. It is working successfully
    The output file has a format
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:mt_xml_receiver xmlns:ns0="http://xml2xml">
         <DETAILS>
              <ID>111</ID>
              <NAME>Varun</NAME>
              <LOCATION>India</LOCATION>
              <ADD>Bangalore</ADD>
              <MOBILE>46572727</MOBILE>
              <EMAIL>[email protected]</EMAIL>
         </DETAILS>
    </ns0:mt_xml_receiver>
    I want to remove the additional tag present for the message type and i want the output in the format
    <?xml version="1.0" encoding="UTF-8"?>
         <DETAILS>
              <ID>111</ID>
              <NAME>Varun</NAME>
              <LOCATION>India</LOCATION>
              <ADD>Bangalore</ADD>
              <MOBILE>46572727</MOBILE>
              <EMAIL>[email protected]</EMAIL>
         </DETAILS>
    Can any one help me on how to achieve this???
    Pl help me on this guys
    Regards
    Varun

    HI Varun,
    This will help you..
    In the message type <b>mt_xml_receive</b>r there is a box where the namespace name is specified.
    Simply delete the same and activate the message type.
    In your case what you can do is as you dont want the message type name also.
    you can create the message type name as DETAILS instead of mt_xml_receiver.
    Regards,
    Sumit
    ps : reward points if tht helped u.

  • When I open up an e-mail attachment a box pops up PRINT TO FILE below that line OUTPUT FILE NAME with an empty line for the file name vs. simply going to my default printer?

    when I open up an e-mail attachment a box pops up PRINT TO FILE below that line OUTPUT FILE NAME with an empty line for the file name vs. simply going to my default printer?

    Make sure that '''''Print to File''''' isn't selected in the native print dialog box ''(see screenshot below)'' middle-right, and make sure your Printer is selected at the top of that dialog box.
    ''I'm a little confused why an email attachment would need to go directly to the printer, but that's what you asked about.''

  • Barcode font not visible in Bursting output file

    My requirement is to email the xml report output to mailing list. I have attached the bursting control file to do this. But the email attachment file is not showing the barcode font.
    I have defined the font and font mapping set and updated the mapping set to the template code using the configuration setup. With this i m able to see the barcode font in the xml report output. But the email attachment is not showing the barcode font.
    I followed the method2 mentioned in the below link,
    http://blogs.oracle.com/xmlpublisher/2007/09/bursting_barcodes.html
    and font file in JRE_TOP/lib/fonts directory and placed the xdo.cfg file in JRE_TOP( in my client instance its called as AF_JRE_TOP). But still the email attachment did not show barcode font.
    Please let me know if any of the steps requires changes. Kindly assist me to get the barcode font in the bursting output.
    xdo.cfg file contents as follows,
    <config version="1.0.0" xmlns="http://xmlns.oracle.com/oxp/config/">
    <!-- Properties -->
    <properties>
    <!-- System level properties -->
    <!-- PLEASE SELECT A VALID TEMPFILE DIRECTORY!!! -->
    <property name="system-temp-dir">/tmp</property>
    <!-- PDF compression -->
    <property name="pdf-compression">true</property>
    <!-- PDF security -->
    <property name="pdf-security">false</property>
    <property name="pdf-open-password">user</property>
    <property name="pdf-permissions-password">owner</property>
    <property name="pdf-no-printing">true</property>
    <property name="pdf-no-changing-the-document">true</property>
    </properties>
    <!-- Font setting -->
    <fonts>
    <font family="Free 3 of 9 Extended" style="normal" weight="normal">
    <truetype path="/fonts/FRE3OF9X.ttf" />
    </font>
    </fonts>
    </config>
    Edited by: 830913 on Jan 24, 2011 9:46 PM
    Edited by: 830913 on Jan 24, 2011 9:50 PM

    Never Mind. I forgot to do font mappings :( (duh!!)

  • Chinese character in PDF output file ?

    I have trouble to display Chinese characters (traditional Chinese) on PDF output file. Is there anyone can help ?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Rene Kello ([email protected]):
    From 'Reports 6i Release Notes'...
    Reports supports PDF 1.1.
    The Adobe Acrobat Reader cannot read .PDF report files generated by Report Builder if the report contains certain types of non- English character set languages (typically multi-byte) or Unicode character set.
    Same with reports 6.
    Install Acrobat Reader 4.X. Print to Acrobat Distiller printer. Works for Baltics.
    cheers,
    Rene.<HR></BLOCKQUOTE>
    It works ! Thank you !

  • PDF Output File Format

    Hi all,
    Does somebody know what is the PDF output file format in Oracle EBS 11.5.10.2?
    Is it PDF/X, PDF/E, PDF/UA, PDF/VT or something else?
    Thanks and regards,
    Karmit

    Hi,
    See this thread.
    concurrent ouput to email
    concurrent ouput to email
    Regards,
    Hussein

Maybe you are looking for

  • Time Capsule setting up and not showing up on utility

    Hi, I'm just trying to set up a time capsule with two laptops. I've already got a wireless network and so wanted to add it on as a backup. The first time I plugged it in, my laptop (macbook pro) found it immediately on opening Airport utility and I w

  • I get a security sandbox error #2122 when i try to use ImageSnapshot on video player

    hey guys... so all my application does is... it has a video player... and when i initiate the component it loads the flv from a different server, and plays the video... now while its playing the video i have a button called capture, and whe you hit t

  • Does it matter if I use Wi-Fi or Ethernet?

    My iMac is right next to the modem for my internet connection.  It has Wi-Fi and an Ethernet so I plug it in.  Is there any benefit, improvement in speed or otherwise to plugging it in with the cable? Thx!

  • Which HDD in macbook pro?

    Hi, Would these Hard disks fit in my macbook pro from november 2009? Samsung HDD 500 GB SATA 2,5" HM500JJ Samsung HDD 500 GB SATA 2,5" HM500JI The upper one has 16MB cache and runs at 7200rpm where the other one has 8MB cache and runs at 5400rpm. Wha

  • Browsing through a list of several pages - best algorithm?

    i have a web application where you can view a list of records. the resulting set is divided into pages, so that the user can browse (previous, next) through the list. the jsp page for displaying a list is pretty simple, it get's a vector from the dat