How to send multiple emails (more than 100...)  to a single email address ?

Hi folks,
I'm new here and that's my first topic in this forum, so I would be very glad if someone could help me on my problem.
I'm currently in the process to open my own business. Next week I should get access to my new email account (with my own domain). However, I have already ca. 300 emails on my private email account which are related to my new company, which I have to forward to my new email address.
Question: *How can i forward multiple (or selected) emails to a single address without packaging them into one email* (1st problem: this email would become too large and 2nd: it wouldn't be very useful to search for a particular content in only 1 large, single email). How do I have to use the Automator to automatize that process?
Many thanks for your help!
Message was edited by: Valahala

One way to solve your problem:
CREATE OR REPLACE PACKAGE BODY multiple_dept_pkg IS
   PROCEDURE multiple_dept (VARR_DEPT   IN     t_deptno,
                            P_result       OUT SYS_REFCURSOR) IS
   dept_str varchar2(4000) default null;
   BEGIN
      FOR i IN VARR_DEPT.FIRST .. VARR_DEPT.LAST LOOP
         dept_str:=','||varr_dept(i)||','||dept_str||',';
      END LOOP;
      OPEN P_result FOR
            SELECT *
              FROM EMP
             WHERE instr(dept_str,','||deptno||',') >0;
   END;
END;
SET SERVEROUTPUT ON
VARIABLE result REFCURSOR
DECLARE
   p_OTS_REC    multiple_dept_pkg.t_deptno;
   result_out   SYS_REFCURSOR;
BEGIN
   p_OTS_REC (1) := 10;
   p_OTS_REC (2) := 20;
   p_OTS_REC (3) := 30;
   multiple_dept_pkg.multiple_dept (p_OTS_REC, result_out);
   :result := result_out;
   COMMIT;
END;
PRINT result;
Cheers,
Manik.

Similar Messages

  • How to send multiple data files / music files using bluetooth / whatsapp / emails...

    hello everyone,,,
    is there any option to send multiple data files / music files using bluetooth / whatsapp / emails...
    as option to select multiple files using "SELECT in menu option / left aA"+ scroll tracepad" is availble with pictures only.
    and while receiving files via bluetooth i'm unable to do any other activity.

    One at time, via Bluetooth.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to get data of more than 100 fields by Bulk API V2.0?

    Hi all,
    I'm trying to get data from Eloqua by Bulk APIs because of big data.
    But my Contact has 186 fields (more than the Bulk export limitation 100). I think I need to get all data by 2 exports.
    How could I match 2 parts of a row and join them together?
    I'm afraid that any edit of data between the 2 syncs for the 2 exports would make the order different.
    E.G.:
        1. any record is deleted or edited(make it not matching the filter) after getting data of the first part and before getting the second part, then every one behind it would move up in the second part result.
        2. data of some fields (included in both parts) are changed between the 2 syncs, then values of the second part are newest but values of the first part are old.
    Any suggestions would be expected.
    Thanks,
    Biao

    bhuang -
    I don't know that you're ever going to get around the fact that things will change in your database while you're syncing the data. You're going to have to have some way to create exceptions on the sync side.
    If I was pushing data from Eloqua to another database and had to deal with the problem of matches changing while I was syncing, I'd create a few extra columns in my database to keep track of sync status for that record. Or create another small table to track the data mapping. Here's how I'd do it.
    I'd have two extra columns:  'mapped fields 1' and 'mapped fields 2'. They'd both be datetime fields.
    I would only do one set of syncs at a time. First, sync every record for the email + 99 fields. Do the entire list. For each batch, set the datetime of the batch in 'mapped fields 1' column.
    I'd then sync all records for email + other 86 fields. Do the entire list again. For this batch, set the datetime of each batch in their 'mapped fields 2' column to now().
    For any records that had only 'mapped fields 1' filled, but 'mapped fields 2' was empty, I'd re-run the second Eloqua API query using the email as the lookup value. If no results were returned, I'd delete the row. Otherwise, update and set 'mapped fields 2' to now
    For any records that had only 'mapped fields 2', I'd re-run the emails against the first Eloqua API query, fill in the missing data, and set 'mapped fields 1' to the current datetime. If the record wasn't returned, delete the row as it's probably not in the search any longer.
    Finally, set 'mapped fields 1' and 'mapped fields 2' to empty for all records, since you know the data is in sync. This will let you use the same logic above on your next sync.
    Does that make sense? It's not super clean, but it'll get the job done, unless your syncs are taking a ridiculous amount of time and your data changes super often. 

  • How to display - Message Length more than 100 characters

    Hi,
    I am displaying a message string which gets generated dynamically. Which means I donno theolength of that. It may go upto 200 characters also.
    However, In message display, the number of characters have some limit.
    Could you please let me know, How can I achieve this?
    MESSAGE E000 with lv_string.
    Thanks,
    Sandeep

    Hi Srini,
    I have already 4 place holders. And one of the place holder will be populated dynamically which I mentioned above. And more than 4 place holders, it is not accepting.
    Could you please help me.
    Thanks,
    Sandeep

  • How to display multiple waveforms (more than 2) with current time on x axis

    Dear All,
    I am trying to plot more than 2 waveforms on a graph/chart with current absolute time on the x-axis.
    It works if I plot two waveforms on XY graph  but shows broken wires (mismatching of data types) for more than 2 waveforms.
    Now, I have tried waveform charts and graphs, and ti doesnt work there too.
    I have attached my VI below.
    Can someone please help me out with this. 
    Attachments:
    timing problem.vi ‏21 KB

    Dear Mahu,
    I have attached a snapshot of my VI. This snapshot shows a VI which works perfectly but as soon as you will extend the bundle and add another random number generator, it will show data mismatching. 
    The reason why I am not using a chart, although it works perfectly for this, is beacuse I want to control the x axis (start and end time) to see data at time as specified by user. 
    Waiting for your reply. 
    Attachments:
    pic of prob.JPG ‏46 KB

  • How to send three attachments using three queries in a single email using sp_senddbmail

    Hi All,
    I have three scripts for extracting permissions at server,database & object level.Now how do i can execute all three queries and send multiple attachments in a single email using sp_senddbmail.I have done this before for single queries but not multiple
    queries. Kindly suggest.
    Regards
    Rahul

    Hi All,
    The requirement was that i had three different queries for listing permissions at server,database and object level.I wanted to build an solution to email results in attachment to user.
    However i have managed to do this with SSIS Package.I was curious to know if it can be done without SSIS.
    Thanks you all for your time and effort for this.
    Rahul
    It can be done without SSIS
    Just have a procedure to return  three query results as a single resultset. Then use sp_send_dbmail to execute query and send results as a email
    See
    http://blogs.msdn.com/b/sqlagent/archive/2010/11/03/sql-database-mail-send-t-sql-results-by-email.aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to send multiple files in parallel using ftp with single connection

    Hi.
    i have written code for file upload manager using ftp..
    it perfectly working with sequence file uploading in single connection..
    And i tried to upload multiple files with parallel processing in a single connection.... but it is not working properly.. i also used thread concept
    but single file only transfered and connection refused...
    my code here...
    //////////////////// main class //////////////////////////////////////////
    ftp.connect();
    ftp.login();
    String [] archivos = new  String[100];
                                      File dir = new File("C:\\Files Uploading\\");
                                       archivos = dir.list();
                                       for (int s=0; s<archivos.length;s++)
         //Start Data Transfer Here
         new DataTransfer(archivos[s]).start();
                                       Thread.sleep(1000);
    /////////////////////// thread class ////////////////////////////////
    class DataTransfer extends Thread
          String FileName="";
          String LocalPath="",RemotePath="";
           public DataTransfer(String fname)
         FileName = fname;
         LocalPath = "C:\\Files Uploading\\" + FileName;
         RemotePath = FileName;
         System.out.println(LocalPath);          
            public void run()
                        System.out.println("DataTransfer Started");
         /File Transfer Here
         try
               FileInputStream input = new FileInputStream(LocalPath);
                               Ftp_Client.storeFile(RemotePath,input);
         System.out.println("Successfully sent : " + RemotePath);
         catch (Exception exc)
              System.out.println(exc.getMessage());
              System.out.println("DataTransfer Ended");
         }otherwise tell me any other alternate way

    And i tried to upload multiple files with
    parallel processing in a single connection....
    but it is not working properly.FTP isn't a multiplexing protocol. How could it work at all?

  • How to send a mail more than 255 characters in PDF format

    Hi Experts
    I am facing a problem sending an ALV list spool as an email attachment in PDF format. Here my problem is spool has morethan 255 characters, so the contents are trukated after 255.
    I am using the FM "SO_NEW_DOCUMENT_ATT_SEND_API1" to send the email. Please give any good suggestion.
    Thanks in advance
    Praveen

    Hi,
    <li>After converting spool to PDF using CONVERT_ABAPSPOOLJOB_2_PDF, need to use below function module
    <li>Use SX_TABLE_LINE_WIDTH_CHANGE to convert line width to 255 chars.
       CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
          EXPORTING
            line_width_src              = 134
            line_width_dst              = 255
          TABLES
            content_in                  = i_pdf
            content_out                 = l_attachment
          EXCEPTIONS
            err_line_width_src_too_long = 1
            err_line_width_dst_too_long = 2
            err_conv_failed             = 3
            OTHERS                      = 4.
        IF sy-subrc NE 0.
          MESSAGE s000(0k) WITH 'Conversion Failed'.
          EXIT.
        ENDIF.
    Thanks
    Venkat.O

  • How can the ALV display more than 100 chars?

    Hi,
    I'm developing a ALV using ABAP Object, my problem is that I need that the ALV shows unless 1024 chars but it only shows 100.
    I have the followind code to create the container and the ALV grid:
        CREATE OBJECT v_o_container
          EXPORTING
             container_name              = c_container
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        CREATE OBJECT v_o_alvgrid
          EXPORTING
            i_parent          = v_o_container
          EXCEPTIONS
            error_cntl_create = 1
            error_cntl_init   = 2
            error_cntl_link   = 3
            error_dp_create   = 4
            OTHERS            = 5.
        CALL METHOD v_o_alvgrid->set_table_for_first_display
          EXPORTING
            i_structure_name              = c_structure
            is_layout                     = x_layout
          CHANGING
            it_outtab                     = i_alv_data
            it_fieldcatalog               = i_catalog
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4.
    Could anyone, please, tell me if I need anymore to show more char?
    Thank you very much.

    DATA: BEGIN OF i_alv_data OCCURS 0,
        pernr         LIKE p0001-pernr,   "personnel number
        icnum         LIKE p0185-icnum,   "personal ID
        vorna         LIKE p0002-vorna,   "First name
        nachn         LIKE p0002-nachn,   "Last name
        sachn         LIKE t526-sachn,    "PersAdmin
        sachn2        LIKE t526-sachn,    "Business Partner G
        text_persg    LIKE t501t-ptext,   "Employee group
        text_persk    LIKE t503t-ptext,   "Employee subgroup
        stext2        LIKE hrp1000-stext, "position
        stext1        LIKE hrp1000-stext, "department
        text_werks    LIKE t500p-name1,   "Location
        text_trfgb    LIKE t510g-tgbtx,   "PS type
        trfgr         LIKE p0008-trfgr,   "diageo band
        trfst         LIKE p0008-trfst,   "Local grade
        lm_name       LIKE p0001-ename,   "line manager name
        datfr         LIKE sy-datum,      "Validity from
        datto         LIKE sy-datum,      "Validity to
        comp_stat     LIKE dd07t-ddtext,  "Completion Status
        mobilitx      TYPE string,        "mobility text
        cab_continue  TYPE string,        "My Capab.and
        cab_start     TYPE string,        "My Capab.and Be
        nco1          TYPE string,        "Posib next car op
        nco2          TYPE string,        "Posi next car opt
        nco3          TYPE string,        "Pos next carop
        timing3       LIKE i_hap_t_body_cells-value_text,
        epcm          TYPE string,        "Employee Commitme
        mpcm          TYPE string,        "Manager commitmen
       END OF i_alv_data.

  • How to create multiple graphs ( more than 10 ) in report builder 10g

    Hi All ,
    I have a requirement to create approx 10 graph . I have created 4 graphs in paper layout 1st section ,while moving to 2nd section in paper layout for plotting the next graph ,its giving an error "REP-1212 : Object 'M_1' is not fully enclosed by its enclosing object Body " .
    Please help me ,if you have any idea to create multiple graph .
    Thanks
    B. Mohapatra

    This is a layout error message. I don't think it has anything to do with multiple graphs.
    Your object M_1 just gets too big:
    Cause: An object is not fully enclosed by the page. That is, the object extends beyond the page boundary.
    Action: Move or resize the object so that it does not extend outside the page boundary. Alternatively, increase the page size in the Report property palette.

  • Buffer pool Hit% more than 100%

    In one of my AWR Report under tab Instance Efficiency Percentages (Target 100%) , My Buffer Hit % is showing as 102.01% .
    I am not able to understand how can this possible to more than 100%.
    Please revert.

    http://www.orafaq.com/forum/m/431182/136107/?srch=more+than+100%25#msg_431182

  • Email more than one picture

    Hey, does anyone know how to email more than one picture in one email?
    Thanks

    Go to photo app and click on your camera roll.
    Click the little square with the arrow in the bottom right.
    Tap the pictures you want to select.
    Click the Share button when done.

  • How can i get more than 100 email in Mail? I can only see the latest 100. I have an hotmail account and it worked at my other mac.

    How can i get more than 100 email in Mail? I can only see the latest 100. I have an hotmail account and it worked at my other mac.

    How can i get more than 100 email in Mail? I can only see the latest 100. I have an hotmail account and it worked at my other mac.

  • How can I send more than one foto in a email

    How can I send more than one foto in a email?

    Or, to send up to 5 photos in one email, open the Photos app, go to the Album containing the photos, tap Select, tap up to 5 photos (a blue tick will appear on them), then tap the Share icon (square with arrow pointing up) and choose Mail.
    If you choose more than 5 photos this way, you won't get the Mail option.

  • How do you send more than one photo in an email?

    As above.....can you attach more than one photo to an email?

    Yes. If you are in the Photos app in thumbnail view (i.e. the photos are not full screen), then if you tap the icon top right of the box with the arrow coming out of it, you should be able to select up to 5 photos and be able to then tap the Email button top left to attach them to an email

Maybe you are looking for

  • Flash CS5.5[Publish Settings]: How to include custom Metadata tags in swf?

    In Flash CS5, the 'Publish Settings' for the fla had an 'Export SWC' checkbox that took care of that. The option is missing. Why was it removed and how can  that be done in 5.5?

  • Labview fpga development board

    hi all can i programme my own development board having xillinx fpga using labview fpga .. or lab view fpga can only be used by national instruments hardware ? Regards

  • Structural authorisation in HR-PD

    Hi there, Can somebody kindly advise how I can set up the following authorisation in PD. In the Qualification Catalog OOQA, we are giving a display authorisation to the PD administrators to see the entire structure in the qualification master data ca

  • Preposition size limit was exceeded

    Hi Everyone, I have a preposition job that's trying to copy a folder roughly 108GB in size (comprised of subfolders and files).  I have the job running nightly and it always terminates after several hours copying about 27GB of data saying, "Prepositi

  • Number that is a multiple of 9 and all digits are even?

    I've writen this short program to find a number that is a multiple of 9 yet all its digits are even. Here is the code. I'm sure its not very compact and am doing this the hard way. public class alldigitseven     public static void main(String[] args)