Is there a way to send output from a Concurrent Request via email in r12?

We are looking for a way to send emails out from the Concurrent Request output in r12.
Discussions internally have involved using Unix procedures/commands but we were looking for an EBS integrated solution if one is available.
I did find document 811716.1which seems to provide a solution, but the patches and information given are for 11i (we are r12). If this functionality is available in r12, is there any further documentation we can use?
Any assistance would be appreciated.
Thanks.
Kevin
Edited by: user3065048 on Jul 21, 2009 2:52 PM

Duplicate post.
Is there a way to send output from a Concurrent Request via email in r12?
Re: Is there a way to send output from a Concurrent Request via email in r12?

Similar Messages

  • Is there a way to prevent DHCP from egress per port via ACL?

    Is there a way to prevent DHCP from egress per port via ACL?
    i am running serveral SRW248G4's in a MDU enviroment. I need a way to not have dhcp from one customer to the other, however get mine through uplink port.
    Any ideas?

    i don't think that this would be possible. when you setup acl to prevent services (dhcp in your case), you would need to specify an ip or range of ip address. if computers is yet to receive an ip then it wont even communicate with the dhcp server.

  • Is there a way to send info from cloud deployed app to a local app?

    Hi
    I have an application deployed to cloud service and through a iframe loaded in another local application.
    I there a way to send info form the deployed cloud app to the local app?

    Thanks for the reply.
    I created one webservice and deployed to cloud server. From browser am able to run the url and able to get the result.
    https://...oraclecloudapps.com/CloudAppTest-ViewController-context-root/jersey/webServiceBean/text
    The same url when am trying to access from a java code main
        Client c = Client.create();
        WebResource resource =
        c.resource("https://...oraclecloudapps.com/CloudAppTest-ViewController-context-root/jersey/webServiceBean/text");
        String response = resource.get(String.class);
      System.out.println("response"+response);
    getting Exception in thread "main" com.sun.jersey.api.client.UniformInterfaceException: GET https://...oraclecloudapps.com/CloudAppTest-ViewController-context-root/jersey/webServiceBean/text returned a response status of 302
    at com.sun.jersey.api.client.WebResource.handle(WebResource.java:607)
    at com.sun.jersey.api.client.WebResource.get(WebResource.java:187)
    at view.client.main(client.java:26)
    Process exited with exit code 1.
    Can please suggest on this.
    Thanks
    Jeeth

  • To send output as a PDF attachment via email

    Hi experts
    I have the (smartform) output data in OTF format..and displaying it in PDF form with FM 'HR_EFI_SHOW_PDF_FORM' .
    Now the requirement is <b>to send this output as a PDF attachment via email</b>.
    Please help me with sample code to perform this.
    Regards,
    Matt.

    Hi,
    Check this links,
    /people/sap.user72/blog/2004/11/10/bsphowto-generate-pdf-output-from-a-bsp
    Also for email:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8cd6adbb-0301-0010-39ba-938c601d5db9
    Refer the following link for more details:
    http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm
    Thanks,
    Reward If Helpful.

  • Is there any way to retrieve notes from a broken iphone via usb connection?

    I have an old broken iphone 3g and I want to retrieve the notes from my old phone; however, there is absolutely no way I can turn the phone on and manually email the notes to myself.  Is there any way I can retrieve the notes from a file transfer system once synching up the iphone to my computer?  If anyone can help me with this I would greatly appreciate it! 
    Thanks

    If the phone doesn't power on and isn't seen by the computer then you wouldn't be able to pull data off it with the USB connection to your computer.
    You could pursue data recovery if the notes are very valuable, but the cost can be similar to having data recovered from a failed computer drive(possibly prohibitively expensive).

  • Workflow-Attaching pdf from Custom Concurrent Request to email notification

    Hi,
    I was wondering if anyone has done something similar before and maybe have any suggestions?
    I am trying to attach a .pdf file that is generated by a custom concurrent request report to an email notification.
    The .pdf is generated correctly and I can access the file but I’m having problems trying to attach it to the email notification
    I have tried to use Wf_Engine.SetItemAttrText and Wf_Engine.SetItemAttrDocument but are unable to get it to attach the file.
    Does anyone know where I can find an example how to use either of the above API's? and a detailed explanation of them?
    Should the attachment always be in FND_LOBS to be picked up or can it be picked up from the file system?
    What should the Workflow - Notification - Performer Value be set to, that is referencing the message with the Document Attribute?
    I'm unable to find a detailed explanation of how this can be done in the Oracle Workflow Developers Guide Release 2.6.4.
    Any reference material or guidance as to where an example can be found will be greatly appreciated
    Thanks
    Coenraad

    The PLSQL procedure that generates the PL/SQL BLOB documents must follow standard API formats and a sample is shown below.
    procedure GENERATE_PDF(document_id in varchar2,
    content_type in varchar2,
    document in out nocopy blob,
    document_type in out nocopy varchar2)
    is
    l_docid pls_integer;
    l_filename varchar2(100);
    l_errmsg varchar2(100) := 'The Document is not found in the Database';
    l_bdoc blob;
    l_data_type varchar2(100);
    begin
    l_docid := to_number(document_id);
    dbms_lob.CreateTemporary(l_bdoc, FALSE, DBMS_LOB.Session);
    SELECT file_data
    into l_bdoc
    FROM fnd_lobs
    WHERE file_id= l_docid;
    dbms_lob.Copy(document, l_bdoc, dbms_lob.getLength(l_bdoc));
    exception
    when others then
    dbms_lob.WriteAppend(document, length(l_errmsg), l_errmsg);
    wf_core.context('SA_MLRTST','GENERATE_PDF',document_id);
    raise;
    end GENERATE_PDF;
    You can use FND_LOBS or any other table to get the content. The content must be stored into the corresponding table before using it.
    The following is the PLSQL script for generating BINARY data for a file
    declare
    l_bfile BFILE;
    l_temp_blob blob;
    l_docid number :='1000';
    l_ctype varchar2(300) :='application/pdf';
    l_filename varchar2(50) :='testfile.pdf';
    begin
    dbms_lob.createtemporary(l_temp_blob, true, dbms_lob.session);
    l_bfile := BFILENAME('OEX_INPATH',l_filename);
    dbms_lob.fileopen(l_bfile, dbms_lob.file_readonly);
    dbms_lob.loadfromfile(l_temp_blob, l_bfile, dbms_lob.getlength(l_bfile));
    INSERT INTO fnd_lobs(file_id, file_name, file_content_type,file_data,file_format)
    VALUES( l_docid,l_filename,l_ctype,l_temp_blob,'binary');
    end;
    OEX_INPATH - this is a database directory, you need to copy the pdf file which you want to convert to BINARY to the location which this directory points
    l_filename - name of the file which need to be converted to BINARY format

  • Is there any way to send output in BlueJ to a .txt file?

    I want to send the output of my BlueJ program to a .txt file. Is there any command to do it? If yes, then please tell me the syntax of that command along with an example using it?

    Again, you're just misunderstanding the tools you're using. Java should do that, not BlueJ. You have to research this from the perspective of writing Java code to do it. If you search how to make BlueJ do it, you won't find it because BlueJ has nothing to do with it.
    So you know your basic requirements.
    - you use System.out
    - you want that to go to a file in stead of to the command prompt / BlueJ console
    Do you know how to work with files yet? If not, that would be something you need to learn right now. And after that, try a Google for "java System.out file" and see what you get.

  • Is there a way to send audio from my mac to my iphone that i plug into a speaker dock?

    HI,
    I would like to watch a movie on my MacBook Air but would like to send the audio to my iphone to plug into my speakers so i can have a sort of surround sound system? help me please.
    thanks,
    spenserfromle mars

    You can copy the pages files on your Mac into the file sharing section of iTunes. Then sync your iPad. The files will be copied to your iPad. There is a link to the iPad manual in the bookmarks of safari on your iPad. Download and view the manual especially the section on sharing with iTunes.

  • Is there a way to send music from iPod to iTunes?

    I lost a lot of songs mysteriously. First, iTunes would not play ANY songs. I consolidated all my music to my external hard drive, which I had been meaning to do anyway. I am sure it got everything, but I am missing 300 songs. They are nowhere to be found ANYWHERE on my computer. ANYWHERE.
    Anyway, I still have them on my iPods. How can I get them off and back to my computer?

    Yes there is and I'll be happy to email you how. [email protected] is my address.

  • Is a way to send photos from bridge to lightroom ?

    hi
    is there a way to send photos from bridge to lightroom?
    i know only to drag and drop
    but is there a script or other ways to send photos to my lightroom catalog
    w7 64bit
    thanks

    i know only to drag and drop
    Which to my knowledge is the fastest way because you already have selected the files or folder anyway. Since Bridge is a browser showing the content of your disks and Lightroom puts files (often in different versions) in a library you can't combine both to a suitable workflow, at least that is my opinion.
    However if you want them in LR the best way I would know is to use the import option in LR itself.

  • Is there a way to send multiple pdf's in one email from iBooks?  I have several that I've saved that I need to send to one person. If it can't be done directly, is there a work around?

    Is there a way to send multiple PDF documents from iBooks in one email?  I have several that need to be sent to one person and can't figure out how to send more than one at a time. If you can't, is there a workaround?

    Warehouse that PDF on your own server, then link to it from your book.
    Ken

  • Is there a way to send the contact list from my flip phone to the Verizon Messages app on my tablet?

    I have a Convoy flip phone. I recently installed the Verizon Messages app on my iPad Air, since it's a pain in the neck to type texts on the phone. With the app on my tablet, I can easily send (and receive) texts. But is there a way to sync or send the contact list (phone book) from my flip phone to the Verizon Messages app on my tablet? Thanks.

    Hi daniel1948,
    Thanks for using our forums! While there are ways to get contacts from your phone onto your tablet, the Convoy series of phones is not capable of syncing directly with the Verizon Messages service. It is capable of using the Backup Assistant service. You'll find this option under Contacts in the menu. Once you have backed up the contacts, you can use your online My Verizon account to export contacts to either a Google or iCloud account, which would allow you to access them from your iPad at a later time via sync. Here's a link with some useful information on how to use the Backup Assistant service.
    http://vz.to/1GWVASh
    EricW_VZW
    Follow us on TWITTER @VZWSupport
    If my response answered your question please click the _Correct Answer_ button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Is there a way to block someone from sending Text Messages ONLY?

    I would like to block a family member from sending text messages but I do not want to restrict calling abilities in case of an emergency.
    I have gone to My Verizon>>Safeguards but this option only seems to allow you to block on an "All or Nothing" basis.
    Is there a way to prevent someone from sending you text messages while still allowing phone calls?

    Thanks for your response. I have an I Phone (I Messages) but the party that I want to block does not have an I Phone.

  • I put together and sent 10 pictures from my granddaughter's birthday party. Is there a way of sending them with a link recipients can click on, rather than having all the pictures download as part of the email message?

    I put together and sent 10 pictures from my granddaughter's birthday party. Is there a way of sending them with a link recipients can click on, rather than having all the pictures download as part of the email message?

    Hello userlarry, do you have Mobile Me? You could use that. Or you could compress them, you would still need to send them in an email, but it would help with size limitations of emails.
    To compress them, put them in a folder and right click on the folder. You should see a Compress option. Then just drag the .zip file into your mail.
    Regards,
    Graham

  • Is there a way to stop Mail from trying to send?

    Is there a way to stop Mail from trying to send? (Poor thing has been trying for a day and a half. I'd like to put it out of its misery.)

    What options do you have if you right click on the pending email.
    Just why is that mail not being sent? That is the real problem. Something isn't correct with your email outgoing settings making sending any emails impossible.

Maybe you are looking for