Email functionality?

The following text I found at the URL below that talks about delivering your content via email. Is there documentation on how to use and implement custom delivery channels? Also could you tell me what email functionality Ebusiness 11.5.10 or where are documents on it?
http://www.oracle.com/technology/products/xml-publisher/index.html
Deliver to Anywhere
Deliver your content via printer, e-mail, fax, WebDav, or publish your report to a portal. The Delivery Manager's open architecture allows for easy implementation of custom delivery channels, as well.
Thank you,
Mark

I was able to use a pl/sql and a generic email program to send out reports generated from BI publisher.
This may look complicated but is easy if you break it out .
Requirement:- Sales order summary report need to be send to sales agents as a nightly run.
The process is simple
1) create a generic email program that will accept the directory and has the capability to read blob then attach to the email.
2) create a DIRECTORY in oracle database to point to APPLOUT
3) create a custom package that will submit the concurrent program that will create the pdf report.note make sure to add the layout before submitting the concurrent program sample
APPS.FND_REQUEST.ADD_LAYOUT('XBOL','XXCPD_OEXDRCAP','en-US','US','PDF');
4) Based on your environment the output pdf will be created in the APPLOUT location in the format SHORT_NAME_REQUESTID_1.pdf
5) call your generic email program to email this pdf.
This is only an alternative method instead of messing around with java code. What i have seen is if the pl/sql is generic this is a repeatable and transportable process.
Thank you,
Tom
WWW.CROOTPAD.COM

Similar Messages

  • How can I re-enable the "are you sure you want to delete this email" function?

    When I click delete my emails get deleted with one click. I accidentally click delete and they get lost in my trash folder often. How can I enable the "are you sure you want to delete this email" function?

    The following previous discussion may help: Re: Delete Confirmation Warning.  I want back.

  • Is there a way to disable 'Save as' and 'Send Email' function in Acrobat XI?

    Hi,
    Is there a way to disable 'Save as' and 'Send Email' function in Acrobat XI?
    Thnx in advance.

    I would hope there would be no way to disable Save AS that would reduce the applicationss capability. What are you trying to prevent happening?

  • Acrobat 9.0 - "attach to email" function no longer works (Win 7, MS Outlook 2010)

    Dear All,
    All of a sudden, my "attach to email" function no longer works.  If I open a PDF in Acrobat 9.0, and I try to "attach to email," nothing happens.  This feature has always worked for me in the past.  When I check for updates, Acrobat reports that I'm up to date.  I recently updated Flash Player 16 and Reader XI (11.0.10).
    My OS is Windows 7, 64 bit, and I use MS Outlook 2010.
    Thanks so much for your time.

    Hi rlee711,
    You might need to refer this kb file to resolve the issue:
    Attach To Email doesn't work | Acrobat 9.4.2
    Although, Acrobat 9 is not compatible with Outlook 10, I would like you to prefer using only the supported product.
    To understand in detail, please refer the link given below:
    Compatible web browsers and PDFMaker applications
    Regards,
    Anubha

  • How to change the password and username in the scan to email function of a HP laserjet 300

    Trying to set up the scan to email function. Using the printer pad, I get as far as getting to  SMTP outgoing and then I get an error message that the username or password is incorrect.    I do not know what the correct  username or password is.
    I would like to get rid of what ever the incorrrect information is and  redo the information.  NO one seems to understand the problem.  Any help?

    @Ray2905 
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • Acrobat 9.4.2 update breaks 'attach to email' functionality

    Everyone - The recent 9.4.2 CPSID_83708 Acrobat update has caused the 'attach to email' function not to work.  This is happening for at least two of my users whose computers are running  Windows XP Professional. I just installed the update on my Windows Vista machine in an effort to recreate the issue, but the problem did not manifest itself in my Vista machine.
    I have read with interest the print problems that several users are reporting related to this patch. I have had no problems printing, but the 'attach to email' issue is extremely troubling to us.  I realize that the work-around is to send the attachments directly from our email program which we are doing.  However, this does not decrease the urgency to get this resolved.  Some of our users are extremely accustomed to accomplishing tasks in a certain manner, and much stress results when I try to change their habits.
    When they click 'attach to email', an error message comes up that says 'Adobe Acrobat 9.4.2 has encountered a problem and needs to close.'  I am attaching the detailed information that I could view from the error window below.  Please advise on how I can uninstall this 'uninstallable' patch.  I have currently advised users to opt out of any Adobe updates, but I am sure that people will continue to receive them.
    Thanks in advance for any help with this.
    Penny Downey

    Could someone from Adobe respond to this specific issue so that we know we are being heard?  Will the fix for the print issue also resolve the 'attach to email' problem?  Is there any work around other than telling users to attach directly from their email programs?
    Thanks in advance for your response to our concerns.
    Penny

  • Standard Report RFKABLOO i need to add email functionality

    In Standard Report RFKABLOO i need to add email functionality. I am a bit
    Confused with the field groups used and insert statements as:
    INSERT
      icdpos-tabname
      icdpos-tabkey
      icdpos-fname
      icdpos-chngind
      icdpos-f_old
      icdpos-f_new
      fldtype
      fldleng
    INTO daten
    Its having some includes too flags set. Can anyone suggest how to proceed.

    Hi,
    did you try STR+F7?
    do you mean report RFKABL00 (00 -> zero zero) or oo?
    We only have RFKABL00 (zero zero)!
    regards, dieter

  • How to use email function in crystal report ?

    Post Author: kudo
    CA Forum: .NET
    Hi I'm a novice by touching .net not more than 2 months. Can somebody guide me how to use email function provided in crystal report components?(Better put a sample code so that I can understand well.)  ps: I'm using VS2005 VB.net.Thanks.

    Post Author: mewdied
    CA Forum: .NET
    'EXPORT to EMAIL        ''' Code for exporting the report to Mapi (.Net Windows application)        ''' *For a Web application you must export to disk as a PDF file first.
            crReportDocument.Load(Application.StartupPath + "\World Sales Report.rpt")        crMicrosoftMailDestinationOptions = New MicrosoftMailDestinationOptions        With crMicrosoftMailDestinationOptions            .MailCCList = "[email protected]"            .MailToList = "[email protected]"            .MailSubject = "Attached exported report"            .UserName = "admin"            .Password = "password"        End With
            crExportOptions = crReportDocument.ExportOptions        With crExportOptions            .DestinationOptions = crMicrosoftMailDestinationOptions            .ExportDestinationType = ExportDestinationType.MicrosoftMail            .ExportFormatType = ExportFormatType.PortableDocFormat        End With
            'Add some error handling        Try            crReportDocument.Export()            MsgBox("Report exported successfully.")        Catch err As Exception            MessageBox.Show(err.ToString())        End Try
    Hope this helps

  • Font size issue with the email functionality of infopath form

    Hi,
    We have a SharePoint list created and customised the form to send the form via email using email functionality in infopath form.
    We have made the font size of the form fields( rich text box) to 11. But it is showing as 10 in email. Also for a text box we set the font size to 14. But it is 13.5 in the email.
    Could anyone please let me know how to fix this issue?

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/afbd9fc3-b8d3-4ef9-a8bf-9cb136d12039/formatting-problem-with-email-from-an-browser-enabled-infopath-2010-form-in-sharepoint-2010?forum=sharepointcustomizationprevious
    Yes, this is normal. Forms Services has to convert the form to an aspx page, and things get lost in translation when this gets submitted via email.  My workaround has always been to set static widths to columns/controls, but you said that didn't work
    for you?  It's always worked for me.
    https://go4answers.webhost4life.com/Example/infopath-send-form-email-162481.aspx
    http://www.formotus.com/15413/blog-infopath/making-the-most-of-email-submit-with-infopath-and-formotus-forms

  • Unable to "share" a photo. Get error message stating server is not responding. But all normal email functions work just fine.????????

    unable to "share" a photo. Get error message stating server is not responding. But all normal email functions work just fine.????????

    Just a quick bump... Anyone got any thoughts on this?

  • Proper syntax for email function including a repeat region

    Hey Guys, a fellow ADDT developer and myself ran into a odd challenge recently and was wondering if someone knew a shorter answer.
    LET ME BE CLEAR..I’m not looking for a suggestion, we have resolved the problem..we ARE LOOKING FOR PROPER or shortest FORMAT.
    (we used a submit redirect to a php page that used the “Send Page Section”  and then redirected back..the email looks great)
    This may be a mood point since ADDT is going away but, until then, we feel this will be an useful post because quite often you may have multiple products to email from your SQL statement.
    With that said. We used the send email function on submit.
    1.       Our email content was a HTML content file. Since it was not a php file our repeat region obviously did not work.
    2.       We substituted the HTML file for PHP (just for giggles)..no joy
    3.       We tried regular content as a string..no joy
    We know how to get single rows with the  {table.column} format…but we need to list all undetermined number of products/rows.
    So how would the string or function re-write look  if you needed a repeat region.
    EX:
    emailContent (“ this” . ‘does’. “work”);  regular string
    emailContent (“ this” . $var   . “work”);  regular string
    emailContent (“ this” .   do{  $row; } while( xxx = xxx)  . “work”);  DOES NOT WORK
    emailContent (“ this” .   while( xxx = xxx)  {  $row; }   . “work”);     DOES NOT WORK
    I assume the conflict is you can’t have a function like DO or While in the string….but I also can’t use a php include file.
    There must be a shorter, cleaner syntax that won’t require an advanced set of arrays or for each???
    so  how would a nice clean example of  repeat region results  inside email content, or include file for email contnent, look?
    Thanks

    David, in theory I agree with you, but to a large degree I am completely changing the logic of my human interface. My existing code pre-processes the raw data and saves the results to disk for any future usage. 
    It can then rapidly rebuild all pages for the entire Intranet site when your personal view of the data is changed. 
    After the full creation of all pages, the fixed pages can be viewed using your browser. 
    When you want to change your view, you run the code which completely rebuilds every Intranet page.
    My new software will approach the data differently.  My raw data will be stored with no pre-processing. The pre-processing will occur as the user changes dates and the pages will be built individually on demand, one at a time.
    The second phase of my Windows Form app will be to create pop-up windows that allow the users to modify the definitions for their custom views of the market. 
    When a view is changed, the software will be able to pre-process, as needed, the current date’s data and rebuild the current page with any new changes.
    I intend to create a Refresh.cpp file.  The various segments of the Form’s code will set variable such as date change, view changed, watch list changed, etc. and then call Refresh(). 
    The refresh code will then be able to do the minimum recalculation necessary to rebuild the proper HTML stream. 
    This is another reason to break up the code into various cpp segments such as: LoadRawData, RecalculateViews, BuildPage, etc.
    PS: David, I tried to send you a personal e-mail using your home page link. 
    Hope that was OK and not against forum rules!

  • Regarding the email function in Iphoto

    When I email ordinary through mail, I add a attachment in the email, then it is shown inline and as a attachment.
    But when I use the email function in iphoto it only inlines the picture, it doesnt add the file as regular attachment, is there anyway I can change that?

    the reason why I need this so you understand me.
    is that I use to blog from email.
    if I email regular no problem at all with my attachment, but if I email through iphoto my blog doesnt recognize the picture in the email so it dont get added.

  • Email function only allows log on by email address

    The Email function only allows an email address to be used as the log on.
    My ISP's email system uses a single word hostname, therefore I cannot set up an email account with valid SMTP log on credentials.
    This is obviously OK for systems like GMail, where xyz@gmail is used together with a password but there are many systems that require just xyz and a password.

    Hi,
    The fix for this bug, might fix the issue you have.
    NX-OS 5.2(6b) Release Notes
    http://www.cisco.com/en/US/docs/switches/datacenter/mds9000/sw/5_2/release/notes/nx-os/mds_nxos_rn_526b.html#wp916553
    CSCuc03438
    Symptom: The first SSH login on a Cisco MDS 9100 or 9200 Series switch always fails.
    Workaround: This issue is resolved
    Regards,
    David.

  • Email functionality for PO Release Strategy:

    Email functionality for PO Release Strategy:
    >When PO is blocked an email must be sent out to the first approver.
    >If there is a second approver there should be sent out an e-mail after the first level is approved and soon.
    >When a PO is released by last approver an e-mail must be sent to the creator of the PO
    I need develop this demand without workflow.     
    I found an Exit 'EXIT_SAPMM06E_013' which is triggering when 'ME21N' is executed.
    But i'm unable to update the table EKKO before my code is executed.
    Here i need Rel. gr(FRGGR),
                Rel Str.(FRGSX),
                Rel Indicator(FRGKE),
                subject to release(FRGRL) AND
                Rel Status(FRGZU) from table EKKO to check whether the PO is Blocked or Released.
    Based on the values got from the table EKKO, i need pick email ids from ZTable which stores Email Ids.
    I'm able to get the PO no which is currently genereated and i need to pass this PO no. to table EKKO to get the above fields.
    But Table EKKO is updating in the database after the execution of my code.
    What do i need to do to get table EKKO updated in the database before my code is executed.

    Email functionality for PO Release Strategy:
    >When PO is blocked an email must be sent out to the first approver.
    >If there is a second approver there should be sent out an e-mail after the first level is approved and soon.
    >When a PO is released by last approver an e-mail must be sent to the creator of the PO
    I need develop this demand without workflow.     
    I found an Exit 'EXIT_SAPMM06E_013' which is triggering when 'ME21N' is executed.
    But i'm unable to update the table EKKO before my code is executed.
    Here i need Rel. gr(FRGGR),
                Rel Str.(FRGSX),
                Rel Indicator(FRGKE),
                subject to release(FRGRL) AND
                Rel Status(FRGZU) from table EKKO to check whether the PO is Blocked or Released.
    Based on the values got from the table EKKO, i need pick email ids from ZTable which stores Email Ids.
    I'm able to get the PO no which is currently genereated and i need to pass this PO no. to table EKKO to get the above fields.
    But Table EKKO is updating in the database after the execution of my code.
    What do i need to do to get table EKKO updated in the database before my code is executed.

  • URGENT: Cutomize Email functionality for Action Items

    Experts,
    I need to your help for a customization I need to help setup immediately.
    Here is the requirement : Client does not currently have an E-mail notification functionality turned on for Action Items. The requirement is to have E-mails sent out when ever an Action Item is Assigned to a User. The email should be sent to both the user who has been AssignedTo and the person who actually assigned.
    I believe this need customization to Criteria Workflow email and/or cutomization to the out of the mail templates - reviewr_mail.htm and reject_mail.htm .
    I am not sure which workflow is tied to Action Items.
    Any expert advise on this would tremendously help .
    Thanks in advance.
    Rakesh

    Old Old (6 years) data that only partly covers this, and on a current server may need some tweaking but this may help.
    The following are required and assumed for custom workflow email functionality:
    Stellent Content Server 7.x or higher
    A working knowledge of CS
    A working knowledge of CS workflow step event architecture
    A working knowledge of Idoc Script.
    Business Problem
    You wish to customize the email message, subject, template, or all of the above, sent out by CS Criteria workflow.
    Idoc Script Explanation
    There are several new or newly exposed Idoc Script variables and functions, as well as old stand-bys, that make customizing 7.x Criteria Workflow emails quick and easy. All the functions and variables described herein may be found in the Idoc Script reference guide.
    Emails will be triggered by criteria workflow:
    Upon Step Entry
    Upon Reject
    Upon execution of the <wfNotify()> Idoc Script function
    Customizing Email Templates
    There are two primary workflow email templates that are used to generate the email messages sent out to recipients. These are: reviewer_mail.htm and reject_mail.htm both of which are located in the default templates directory at:
    < Stellent Home Dir >/shared/config/templates
    These templates may be modified like any other template according to established component architecture best practices. The templates are Idoc Script enabled and, as such, may evaluate dynamic code and draw dynamic results when the server is creating the mail message. Of course, after the message instance is created from the template and sent off to the mail server, no additional scripting may be done. Email message template modification provides the greatest flexibility and opportunity for truly customized and dynamic workflow emails.
    It should be noted that not only may the email templates be modified for universal email changes, but also you may create custom workflow email templates based on the standard templates. Custom templates may be called as desired by adding them as the optional third parameter to <wfNotify()>.
    Example:
    <wfNotify(userName,"user",templateName)>
    or
    <wfNotify(aliasName,"alias",templateName)>
    If no template is specified, SCS will use the system default template.
    Although email template modification is relatively straightforward, such modification requires careful component development. Consequently, some clients prefer to modify the most important portions of the criteria workflow email: the subject and the message.
    Customizing the Email Subject Line
    Criteria workflow email subject lines may be modified in several ways. The core string resource may be modified according to standard component architecture. Additionally, the wfMailSubject IdocScript variable may be declared in criteria workflow step event scripting to give greater control and flexibility for narrowly targeted customization.
    The default criteria workflow email subject lines are defined in the ww_strings.htm file located at:
    < Stellent Home Dir >/shared/config/resourced/lang
    The string definitions are:
    <@wwWfIsNotifyOnly=Workflow notification for content item '{1}' is in step '{2}'.@> {1} = content item title. {2} = name of step in workflow.
    <@wwWfReadyForStep=Content item '{1}' is ready for workflow step '{2}'.@> {1} = content item title. {2} = name of step in workflow.
    <@wwWfRejected=Content item '{1}' has been rejected.@> {1} = name of content item.
    These may be aliased (superceded) in a component resource file. They are typically called with the localization Idoc Script function <$lc()$>. See the <@dynamichtml wf_approve_mail_subject@> include definition in std_page.htm for an example of how email subject line string includes may be implemented.
    For simple criteria workflow subject line changes Idoc Script, rather than full-blown components, may be used. The Idoc Script variable <$wfMailSubject="my subject"$> can be placed in step event script. The value of <$wfMailSubject$> can also accept Idoc Script. For example:
    <$wfMailSubject="My Custom Subject Line for the content with title <$dDocTitle$>"$>
    Note that no eval() function is required for the Idoc Script variable to evaluate when included in the wfMailSubject variable.
    If wfMailSubject is place in the entry event of a workflow step, then any email messages triggered by content entering the step will receive the customized subject line. Additionally, wfMailSubject may be declared just prior to a wfNotify() function and the email(s) generated by that function call will receive the custom subject line.
    Customizing the Email Message Line
    The email message line is not the same thing as the email body. Rather each SCS criteria workflow generated email contains several lines of standard data:
    Message: message line
    Workflow Name: workflow name line
    Workflow Step: workflow step name line
    Content Item:     content id line
    The message line will default to one of two messages depending on whether or not the workflow step is a "notification only" (i.e. 0 required reviewers) step or not. The relevant localized strings are:
    Notification only: <@wwWfIsNotifyOnly=Workflow notification for content item '{1}' is in step '{2}'.@> {1} = content item title. {2} = name of step in workflow.
    Review Required: <@wwWfReadyForStep=Content item '{1}' is ready for workflow step '{2}'.@> {1} = content item title. {2} = name of step in workflow.
    See the <@dynamichtml wf_approve_mail_message@> include definition in std_page.htm for an example of how email message line string includes may be implemented.
    For simple criteria workflow message line changes Idoc Script may be leveraged in step event scripts. The Idoc Script variable <$wfMessage="my message"$> may be placed in step events to give the workflow emails custom message lines. Like wfMailSubject, the value of wfMessage can accept tagged Idoc Script variables without requiring an eval() wrapper. If wfMessage is declared in the entry event of a workflow step, workflow generated email messages for that step will use the value assigned to wfMessage. Additionally, wfMessage may be declared prior to a wfNotify() function and the email(s) generated by that function call will receive the custom message line.
    These are not the only ways to customize criteria workflow email attributes. However, the SCS 7.x Idoc Script API provides these methods, functions, and variables to make customizing workflow emails simple.
    Requirements, Pre-Requisites, and Assumptions
    The following are required and assumed for custom workflow email functionality:
    Stellent Content Server 7.x or higher
    A working knowledge of CS
    A working knowledge of CS workflow step event architecture
    A working knowledge of Idoc Script.

Maybe you are looking for