E-Mailed Reports

(In case anyone is interested or ever searches on this.....)
I recently had a very simple workflow requirement as part of an APEX app which involved mailing some simple report for someones weekly approval.
My solution feels a bit hacky, but it was a very quick way to get simple APEX reports included in a mail:
http://www.benjaminwootton.com/?p=38
Pagination is the obvious problem - no solution to that one as yet!
Ben

Benjamin,
I thought that your solution is working all on client side....i.e. redirecting data from HTML to default e-mail client....
I'm sorry, but I do not see if that have anything with ability to send mail from ApEx?

Similar Messages

  • Hi ! I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    Hi ! I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    There is a link at the bottom of this page. http://www.apple.com/contact/

  • Good morning. I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an e.mail i can use in Apple USA? Thanks.

    Good morning. I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    There is a link at the bottom of this page. http://www.apple.com/contact/

  • Sending variables via the e-mail report

    I don't have an LMS, so I'm sending via e-mail some courses to my coworkers and getting their answers via the e-mail report, one of the problems with this is that I cannot  validate name, last name, user's e-mail, and business unit automatically.
    Once I get the answers I copy and paste the results in Excel in order to do the grading and analysis, I do it this way because the Quiz results analyzer either gives only the final grade or shows each anser student by student.
    The way I solved this before was adding a question slide for each field and making them survey questions, the issue with this is that the users need to fill 4 or 5 fields and if I use questions it also means 4 or 5 pages.
    Is there a way to fill this information using Text Entry Boxes and sending the content via the e-mail report using variables?
    As far as I know this was not possible in previous versions of Captivate, I just upgraded to 5.5
    Thanks

    Look for iPhoto in the lower left under media in the upload window
    click here for an expanded discussion of the many options for accessing your iPhoto library safely.
    LN

  • E-Mail reports failing after upgrading to DPM 2012 R2.

    I am trying to follow Mike Jacquet's blog post regarding fixing e-mailed reports after ugprading to DPM 2012 R2.  The link is here:  http://blogs.technet.com/b/dpm/archive/2013/12/05/attempts-to-schedule-a-mailed-report-in-dpm-2012-fail-with-reporting-services-server-cannot-connect-to-the-dpm-database.aspx
    I get to step 13, and at that point, I try to Test the Connection -  I get the error "A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that
    the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)"
    On my system, there is no Connection String on that screen -  I assume that could be the problem?  Does anyone know approximately what should go in that box?  I've tried something similar to what the screenshot displays, changing the server
    name and database names of course, but I get the same error.
    KW

    Hi
    From within DPM console select Management tab. From here select About DPM. Obtain needed information from section DPM’s SQL Server.
    The data source = DPM ServerName\SQL instance
    initial catalog = DPMDB Name
     Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial
    to other community members reading the thread. Regards, Dwayne Jackson II. [MSFT] This posting is provided "AS IS" with no warranties, and confers no rights."
    Figure 1: From DPM console select About DPM

  • "E-mail report" feature doesnt work as it supposed to ?

    hi,
    I've created a custom public report in OEM and i'm scheduling it with email sending. However, the mail i'm receiving is:
    From : wrong value -> it contains the value from 'reply to' field in the schedule folder
    the content is just a link to the OEM login page !!!!
    i thought at least i will have a link to the report and even the report output in the mail received.
    Is it a bug or is it the normal behavior ???
    Thanks for your replies
    Christophe

    Apart from the fact that you need to set the "Schedule report" checkbox and E-Mail recipient in the Report Definition you don't need to do any additional setup.
    So in the report definition go to the Schedule Page
    Check "Schedule Report"
    Check "E-mail report each time the scheduled report completes"
    Enter the "Reply To" (Senders address)
    Enter the "To" (Recipient to receive the e-mail)
    Regards
    Rob
    http://oemgc.wordpress.com

  • E-mailing report changes current directory

    When I e-mail report the current directory is changed and when
    there is Image in the report it can't be found.
    And the next time I run the report and DESTYPE=File, the file is saved at
    c:\Program Files\Common Files\System\Mapi\1033\NT

    change your registry key entry which says
    REPORTS60_TMP to which ever dir you want

  • E-mail Reports Contents

    HI,
        i searched in forum for this problem but i couldn't found relevant solution for this. I want to E-mail Report Contents as a body of Email. I am geting report result somehow and holding it in a Variable type "String". Now i need some way to pass this String Variable as a body of E-mail.
    Is there any FM which is helpfull in this context. I checked 'SO_DOCUMENT_SEND_API1' but it's send only 255 Char's only. but my String Variable definately contain data more than this.
    Please reply.

    if you already has to the email content in a string you can use the following FM code to email the same.
    FUNCTION y_email_simple_html.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(SENDER_ID) TYPE  AD_SMTPADR
    *"     REFERENCE(SUBJECT) TYPE  SO_OBJ_DES
    *"     REFERENCE(MESSAGE) TYPE  STRING
    *"  TABLES
    *"      RECEPIENTS TYPE  BCSY_SMTPA
    *"      RETURN TYPE  TABLE_OF_STRINGS OPTIONAL
      DATA: tmp_str TYPE string .
      IF NOT recepients[] IS INITIAL .
        CLEAR result_content.
        result_content = message .
        CLEAR : server, port .
        CALL FUNCTION 'TH_GET_VIRT_HOST_DATA'
           EXPORTING
             protocol             = 1
             virt_idx             = 0
    *   LOCAL                = 1
          IMPORTING
            hostname             = server
            port                 = port
          EXCEPTIONS
            not_found            = 1
            internal_error       = 2
            OTHERS               = 3 .
        CLEAR tmp_str .
        CONCATENATE 'http://' server ':' port '/sap/public/' INTO tmp_str .
        REPLACE ALL OCCURRENCES OF '/sap/public/' IN result_content WITH tmp_str .
        CLEAR tmp_str .
        CLEAR: conlength,conlengths .
        conlength = STRLEN( result_content ) .
        conlengths = conlength .
        REFRESH text .
        CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
          EXPORTING
            text      = result_content
          TABLES
            ftext_tab = text.
        TRY.
            CLEAR send_request .
            send_request = cl_bcs=>create_persistent( ).
            CLEAR document .
            document = cl_document_bcs=>create_document(
                            i_type    = 'HTM'
                            i_text    = text
                            i_length  = conlengths
                            i_subject = subject ).
    *     add document to send request
            CALL METHOD send_request->set_document( document ).
            CLEAR sender .
            sender = cl_cam_address_bcs=>create_internet_address( sender_id ).
            CALL METHOD send_request->set_sender
              EXPORTING
                i_sender = sender.
            CLEAR wa_rec .
            LOOP AT recepients INTO wa_rec  .
              CLEAR recipient .
              recipient = cl_cam_address_bcs=>create_internet_address(
                                                wa_rec ).
    *     add recipient with its respective attributes to send request
              CALL METHOD send_request->add_recipient
                EXPORTING
                  i_recipient = recipient
                  i_express   = 'X'.
            ENDLOOP .
            CALL METHOD send_request->set_status_attributes
              EXPORTING
                i_requested_status = 'E'
                i_status_mail      = 'E'.
            CALL METHOD send_request->set_send_immediately( 'X' ).
    *     ---------- send document ---------------------------------------
            CALL METHOD send_request->send(
              EXPORTING
                i_with_error_screen = 'X'
              RECEIVING
                result              = sent_to_all ).
            IF sent_to_all = 'X'.
              APPEND 'Mail sent successfully ' TO return .
            ENDIF.
            COMMIT WORK.
    * *                     exception handling
    * * replace this very rudimentary exception handling
    * * with your own one !!!
          CATCH cx_bcs INTO bcs_exception.
            bcs_message = bcs_exception->get_text( ).
            APPEND bcs_message TO return .
            EXIT.
        ENDTRY.
      ELSE .
        APPEND 'Specify email address for sending' TO return .
      ENDIF .
    ENDFUNCTION.
    <u><b>TOP Include</b></u>
    FUNCTION-POOL Y_EMAIL.                      "MESSAGE-ID ..
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: text               TYPE bcsy_text.
    data: xtext type standard table of solix .
    DATA: document           TYPE REF TO cl_document_bcs.
    DATA: sender             TYPE REF TO if_sender_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    DATA: bcs_exception      TYPE REF TO cx_bcs.
    DATA: sent_to_all        TYPE os_boolean.
    DATA: conlength TYPE i ,
          conlengths TYPE so_obj_len ,
          result_content TYPE string .
    *      subject TYPE so_obj_des .
    DATA: e_r_page TYPE REF TO cl_rsr_www_page.
    data: content_length     TYPE     w3param-cont_len ,
          content_type     TYPE     w3param-cont_type,
          return_code     TYPE     w3param-ret_code .
    data: html type standard table of w3html .
    data: server type string ,
          port type string .
    data: wa_rec type ad_smtpadr .
    data: bcs_message type string .
    Regards
    Raja

  • E-mail Reporting Issue

    I'm using CP3 and at the end of my quizzes that I am
    preparing, I want the users to send the email so I may see their
    results. The problem is that they are getting the message about
    "This form is being submitted using e-mail". Is this an IE problem
    or is there a setting I can change in Captivate so users won't get
    this. Also, two of my test candidates are using Firefox as their
    default and they are not getting the message. Can anyone help?
    Terry Kabbani

    Welcome to our community, Neil
    For
    ANYONE seeing the issues with E-Mail reporting, please
    Please PLEASE report it to Adobe using the Wish Form/Bug Reporting
    Form. I'm sure many of you have no idea that this is your direct
    feed into what the developers work on. Each submission places a
    vote or acknowledgment of the issue and gives them the ability to
    prioritize what they do. So reporting it is a crucial step to
    seeing it eventually resolved or removed. (My personal vote is if
    they can't make it work reliably across the board, they should
    remove it.)
    Click
    here to view the WishForm/Bug Reporting Form
    Cheers... Rick

  • Microsoft Junk E-mail Reporting Add-on bouncing Emails after EOP migration

    Our organization recently migrated from FOPE to Exchange Online Protection. Users who have the
    Microsoft Junk E-mail Reporting Add-on installed on their Outlook desktop client now receive the following email message when reporting Junk Mail:
    Delivery is delayed to these recipients or groups:
    [email protected]
    Subject: Delayed Mail (still being retried)
    This message hasn't been delivered yet. Delivery will continue to be attempted.
    Is there a fix for this issue? Is there an alternate Add-on or should we uninstall the existing one from our Outlook clients?
    Thanks,
    Jason.

    Hi,
    Sometimes some add-ins may take more time to load in Outlook, it depends on the performance of your machine and if you have multiple add-ins enabled, please consider disable some if you don't use them a lot.
    Since you haven't mentioned which version of Outlook you are using, please note for Outlook 2013 users, we can try disabling the hardware graphics acceleration to check if this can help improve the performance:
    Go to FILE tab -> Options -> Advanced
    -> Display -> Uncheck Disable hardware graphics acceleration
    -> OK.
    Let me know if you have any other question.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • XP and generated e-mail reports

    We are running an executable created in Labview 6.1. The application generates an e-mail report when it sees an event that exceeds preset points in the value it is monitoring, in this case the frequency of the utility grid. I admit I know little about the application itself; it uses a 6023E DAQ card to obtain its input and uses the Labview 6.1 runtime engine to operate. Anyway on to the problem, up to recently, we had operated the application on a PC running Windows 2000. We had a system crash and decided to upgrade to Windows XP. We have just restored the machine to service and I used the 6.9.3 DAQ driver and Labview Runtime engine 6.1 to try to stay with the same vintage as the executable. Since the restore the application has not been able to send out any e-mail. I assume this is some issue with XP, but I am not sure. The XP installed is XP Pro with the latest service packs installed. Any idea's what we can try, or what additional information do you need.

    Since we do not have Labview, only the executable, the internal examination of the process was out of our reach. However we were able to figure out it was going through the process up the point of trying to send the e-mail since it was creating the .jpg image and writing it to the hard drive that it sends as an attachment to the e-mail report. We came to the conclusion something with the new setup was keeping the application from shaking hands with our SMTP mail server. The answer proved to be something unexpected. When IT upgraded the operating system they also decided to update the anti-virus software. Unknown to us this new version of MacAfee Enterprise has a mass mailing worm blocker. It has a white list of known e-mail clients that it will allow to send mail, so when we tested with a regular mail client all appeared to be well. However the Labview application was NOT in the white list and was blocked from sending any mail. The MacAfee program proved quite resistant to allowing us to add the Labview application to the white list and we finally had to disable that feature completely.

  • Mail report from ORACLE Financials

    Hi,
    I am running a customized report as a request from ORACLE APPLICATIONS under NT:
    destype=MAIL desname=[email protected]
    I am getting REP-4202 (Error occurred while logging on to the Mail subsystem) as a result in request log output.
    When I mail same report on app server from DOS promt everything is OK.
    When I run same report from OFIN with default destype everything is OK as well.
    Is it possible to mail reports using destype=MAIL from ORACLE Financial or should I use alert?
    Please respond ASAP.
    Thanks a lot. Andrei.
    null

    Thank you very much for your reply
    I have changed the fonts in the report, but when i run it from the EBS its has the same problem. from the EBS output font look like as (COURIER) rather than CALIBRI WESTERN.
    tell me what i have to change anything.

  • Mailing reports from oracle applications

    Hi,
    I am running a customized report as a request from ORACLE APPLICATIONS under NT:
    destype=MAIL desname=[email protected]
    I am getting REP-4202 (Error occurred while logging on to the Mail subsystem) as a result in request log output.
    When I mail same report on app server from DOS promt everything is OK.
    When I run same report from OFIN with default destype everything is OK as well.
    Is it possible to mail reports using destype=MAIL from ORACLE Financial or should I use alert?
    Please respond ASAP.
    Thanks a lot. Andrei.

    hi Andrei,
    You mentioned maling a report on app server from DOS promt.
    Can you please tell me how you do that.
    Thanks.

  • HT201359 Yesterday I buy 99 usd point from game ! But the game system say cant pass the payment ! But today iTunes send mail report say the payment is go over !

    Yesterday I buy 99 usd point from game ! But the game system say cant pass the payment ! But today iTunes send mail report say the payment is go over ! So ?the payment ?

    Months of impecable service form BT as an option 3 customer. (I've even recommended BT to people)
    but
    For the past 2 weeks peak traffic has murdered my connection.
    I can get 14mbit off peak, and it used to drop to about 7-9 at peak times.
    Now its down to 1-2mbit at peak times. (no i haven't breached FUP as I check my btinternet inbox for the 80GB warning)
    I think its resonable to experience drop off but 90%!!!
    BT advertising says fast speeds at peak times. less than 2mbit is not fast. (that the governments minimum standard!!!)
    I don't know how to procede because when I'm experiencing these issues if I ring up I will end up waiting so long to speak to someone (because its peak time) the concection wiill be better again.
    I can think of no recourse other than to approach trading standards...
    Guarnetee me 5mbit at peak times (enough to stream HD iplayer) and I'd be happy
    That is what BT vision customers are in essence are getting + what ever their PC is using.
    Fair usage? what about Fair Supply.

  • Mail Reports Incorrect Number of Emails

    Sometimes when Mail downloads messages, it reports more messages than it actually downloads. For example, I just Bounced a Spam email and when the message came back from the Post Office saying the address was invalid, Mail reported downloading 2 messages when only one appeared. Any ideas why this happens?

    That's your IMAP mailbox syncing all copies.
    [Bouncing Spam is a useless endeavor|http://www.dontbouncespam.org>.

  • Mail Reports that the home directory is full

    My iBook has Norton Firewall on it and when I connected it to the high speed internet in a hotel room, the Firewall went crazy logging thousands of hits in a few minutes. Eventually the iBook stopped and a multi-lingual message requested that I reboot the iBook.
    In the meantime, I had started the Mail program.
    Once I managed to get the iBook working again, (it took some time and I had to restart the machine with the shift key down), I ran the usual disk clean-up utilities, Disk Utility, DiskWarrior and Drive Genius. The machine then rebooted and everything except mail worked correctly. Mail will not start but instead reports the following:
    Mail cannot update your mailboxes
    because your home directory is full.
    You must free up space in your home folder before
    using Mail. Delete unneeded documents or move
    documents to another volume.
    There is lots of free disk space on this machine and I can work with files with other programs so I think a mail file must be corrupted. I would appreciate hearing from anyone who knows how to fix this problem.
    iBook G3, G4 Minitower   Mac OS X (10.4.6)  

    My question has been answered by a posting made to another member during the time I was typing in my problem.
    Thanks

Maybe you are looking for

  • Services with multiple account assignment.

    Hi all, How can I find out the POs which are having the multiple account assignment for the service line items from tables ? I am looking for services with multiple account assignments Regards

  • Creating t.code for ABAP query and Transport  it TO Production and run it .

    Hi Friends Thanks for ur reply , The requirement is that i want to create tcode for abap query and that query can be regenearted , in case of regeneration programe name i got answer programame name will be change, i created and modified query but i s

  • XI Basic Terminologies and main topics

    Hai Im SAP-BW Consultant . And im working for one MNC . I want to learn the XI by my own. Because i have system in my office. 1) So please tell me wht are the basic terminologies of XI and basic information, important topics in that . 2) Is it necces

  • Error "Acrobat 8 Professional cannot be launched" | CS3

    Hi Everyone, I have a MacBook Pro with 10.7.5 and CS3. My Acrobat 8 Professional won't open and gives the error message "Acrobat 8 Professional cannot be launched at this time. You must launch at least one other suite component (such as Adobe Photosh

  • How to delete corrupted files on ipod classic

    Somehow the "index" of files on my Ipod Classic HD got corrupted so none of my music, video, etc files showed up on the Ipod.  The library, and all the files, would display in Itunes so I followed the instructions and copied them over to an external