E-mail Id's not Correct Against Customer No...

Hi,
In my report, i have a problem that when i selecting E-Mail against Customer no...it is displaying only those, which customer have the E-mail id...otherwise not showing...
Plz. check my code...
REPORT  zcust_master NO STANDARD PAGE HEADING LINE-SIZE 125  .
TABLES : tvkbt, knvv, kna1, j_1imocust, tvtwt, t005u, adr6.
TYPE-POOLS : slis.
DATA : BEGIN OF itab OCCURS 0,
            vkbur LIKE knvv-vkbur,                   " Sales Office
            bezei LIKE tvkbt-bezei,                   " Branch
            vtweg LIKE knvv-vtweg,                   " Distribution Channel
            kunnr LIKE kna1-kunnr,                   " Customer Number
            name1 LIKE kna1-name1,                   " Name
            name2 LIKE kna1-name2,
            ktokd LIKE kna1-ktokd,                   " Customer Account Group
            erdat LIKE kna1-erdat,                   " Date on which the Record Was Created
            stras LIKE kna1-stras,                   " House number and street
            ort02 LIKE kna1-ort02,                   " District
            ort01 LIKE kna1-ort01,                   " City
            pstlz LIKE kna1-pstlz,                   " Postal Code
            knurl LIKE kna1-knurl,                   " URL
            regio LIKE kna1-regio,
            bezei1 LIKE t005u-bezei,
            vtext LIKE tvtwt-vtext,                  " NAME
            j_1iexcd  LIKE j_1imocust-j_1iexcd,      " ECC Number
            j_1icstno LIKE j_1imocust-j_1icstno,     " CST Number
            j_1ilstno LIKE j_1imocust-j_1ilstno,     " LST Number
            j_1ipanno LIKE j_1imocust-j_1ipanno,     " Permanent Account Number
            j_1iexrn  LIKE j_1imocust-j_1iexrn,      " Excise Registration Number
            j_1iexrg  LIKE j_1imocust-j_1iexrg,      " Excise Range
            j_1iexdi  LIKE j_1imocust-j_1iexdi,      " Excise Division
            j_1iexco  LIKE j_1imocust-j_1iexco,      " Excise Commissionerate
            smtp_addr LIKE adr6-smtp_addr,
       END OF itab.
DATA    g_user_command TYPE slis_formname VALUE 'USER_COMMAND'.
DATA : w_container TYPE scrfname VALUE 'CL_GRID',
       w_cprog TYPE lvc_s_layo,
       g_repid LIKE sy-repid,
       w_save TYPE c,
       w_exit TYPE c,
       cl_grid TYPE REF TO cl_gui_alv_grid,
       cl_custom_container TYPE REF TO cl_gui_custom_container,
       it_fld_catalog TYPE slis_t_fieldcat_alv,
       wa_fld_catalog TYPE slis_t_fieldcat_alv WITH HEADER LINE ,
       layout TYPE slis_layout_alv,
       col_pos  LIKE sy-cucol ,
       alvfc TYPE slis_t_fieldcat_alv.
SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECT-OPTIONS   : vkbur FOR tvkbt-vkbur.
SELECT-OPTIONS   : ktokd FOR kna1-ktokd.
SELECT-OPTIONS   : vtweg FOR knvv-vtweg.
SELECT-OPTIONS   : kunnr FOR kna1-kunnr.
SELECTION-SCREEN : END OF BLOCK b1.
PERFORM fill_catalog1 USING:
'BEZEI'    'ITAB'    'BRANCH' ,
'KUNNR'    'ITAB'    'CUSTOMER CODE' ,
'NAME1'    'ITAB'    'CUSTOMER NAME',
'NAME2'    'ITAB'    'NAME2',
'VTWEG'    'ITAB'    'DISTT. CHANNEL',
'STRAS'    'ITAB'    'HOUSE NO. & STREET',
'ORT02'    'ITAB'    'DISTRICT',
'ORT01'    'ITAB'    'CITY',
'PSTLZ'    'ITAB'    'POSTAL CODE' ,
'BEZEI1'   'ITAB'    'REGION',
'J_1IEXCD' 'ITAB'    'ECC NUMBER',
'J_1IEXRN' 'ITAB'    'E/R NO.',
'J_1IEXRG' 'ITAB'    'Ex. RANGE',
'J_1IEXDI' 'ITAB'    'Ex. DIVISION',
'J_1IEXCO' 'ITAB'    'Ex. Commissionerate' ,
'J_1ICSTNO' 'ITAB'   'CST NUMBER' ,
'J_1ILSTNO' 'ITAB'   'LST NUMBER' ,
'J_1IPANNO' 'ITAB'   'PAN NO.' ,
'KTOKD'    'ITAB'    'ACC. GROUP',
'ERDAT'    'ITAB'    'CREATED ON',
'SMTP_ADDR' 'ITAB'    'E-MAIL ID',
'VTEXT'    'ITAB'    'NAME' .
SELECT akunnr aname1 aname2 aktokd aerdat astras aort02 aort01 apstlz aknurl a~regio
                bvtweg bvkbur binco2   csmtp_addr
                INTO CORRESPONDING FIELDS OF TABLE itab
                FROM kna1 AS a
                INNER JOIN knvv AS b ON akunnr = bkunnr
                INNER JOIN adr6 AS c ON aadrnr = caddrnumber
                WHERE a~kunnr IN kunnr
                AND   a~ktokd IN ktokd
                AND   b~vtweg IN vtweg
                AND   b~vkbur IN vkbur.
IF sy-subrc <> 0.
  MESSAGE 'DATA NOT FOUND.' TYPE 'I'(001).
ENDIF.
SORT itab BY kunnr.
LOOP AT itab.
  SELECT SINGLE bezei FROM tvkbt INTO itab-bezei WHERE vkbur = itab-vkbur.
  MODIFY itab INDEX sy-tabix TRANSPORTING bezei.
  SELECT SINGLE bezei FROM t005u INTO itab-bezei1 WHERE bland = itab-regio AND spras EQ 'EN' AND land1 EQ 'IN'.
  MODIFY itab INDEX sy-tabix TRANSPORTING bezei1.
  SELECT SINGLE j_1iexcd j_1iexrn j_1iexrg j_1iexdi j_1iexco j_1icstno j_1ilstno j_1ipanno FROM j_1imocust
  INTO (itab-j_1iexcd, itab-j_1iexrn, itab-j_1iexrg, itab-j_1iexdi, itab-j_1iexco, itab-j_1icstno, itab-j_1ilstno, itab-j_1ipanno)
  WHERE kunnr = itab-kunnr.
  MODIFY itab INDEX sy-tabix TRANSPORTING j_1iexcd j_1iexrn j_1iexrg j_1iexdi j_1iexco j_1icstno j_1ilstno j_1ipanno.
  SHIFT itab-kunnr LEFT DELETING LEADING '0'.                  " For Removing 0's from KUNNR
  MODIFY itab.
ENDLOOP.
layout-zebra = 'X' .
layout-colwidth_optimize(1) = 'X'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    i_callback_program      = 'ZCUST_MASTER'
    i_callback_user_command = g_user_command
    is_layout               = layout
    it_fieldcat             = it_fld_catalog
    i_default               = 'X'
    i_save                  = 'A'
  TABLES
    t_outtab                = itab
  EXCEPTIONS
    program_error           = 1
    OTHERS                  = 2.
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
*&      Form  FILL_CATALOG1
      text
     -->P_FIELDNAME  text
     -->P_REF_TABLE  text
     -->P_SCRTEXT    text
FORM fill_catalog1  USING   p_fieldname TYPE any
                            p_ref_table TYPE any
                            p_scrtext   TYPE any.
  CLEAR : wa_fld_catalog.
  wa_fld_catalog-fieldname  = p_fieldname.
  wa_fld_catalog-tabname    = p_ref_table.
  wa_fld_catalog-seltext_s  = p_scrtext.
  wa_fld_catalog-seltext_m  = p_scrtext.
  wa_fld_catalog-seltext_l  = p_scrtext.
  wa_fld_catalog-outputlen = 15.
  APPEND wa_fld_catalog TO it_fld_catalog.
ENDFORM.                    " fill_catalog1
      FORM user_command
-->  r_ucomm
-->  rs_selfield
FORM user_command USING r_ucomm LIKE sy-ucomm
                  rs_selfield TYPE slis_selfield.
  DATA: l_ta(4) TYPE c VALUE 'XD03'.
  CASE r_ucomm.
    WHEN '&IC1'.                             "dobbleclick
      READ TABLE itab INTO itab INDEX rs_selfield-tabindex.
      CHECK sy-subrc = 0.
      IF rs_selfield-fieldname = 'KUNNR'.
        SET PARAMETER ID 'KUN' FIELD itab-kunnr.
        CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.  "# EC*
      ENDIF.
      CLEAR r_ucomm.
  ENDCASE.
ENDFORM.                    "user_command
Plz let me know....
thanks

change select query like dis...
SELECT akunnr aname1 aname2 aktokd aerdat astras aort02 aort01 apstlz aknurl a~regio
bvtweg bvkbur binco2 csmtp_addr
INTO CORRESPONDING FIELDS OF TABLE itab
FROM kna1 AS a
INNER JOIN knvv AS b ON akunnr = bkunnr
LEFT OUTER JOIN adr6 AS c ON aadrnr = caddrnumber
WHERE a~kunnr IN kunnr
AND a~ktokd IN ktokd
AND b~vtweg IN vtweg
AND b~vkbur IN vkbur.

Similar Messages

  • Mail 5.1 not correctly marking messages on the Exchange Server as read

    Since I've upgraded to Lion, this has been a recurrent and persistent problem for which Apple has provided no good solution. Even though all the messages from my Exchage account have indeed been read, the little number in the red circle on the dock Mail icon as well as the the number of unread messages next to the Exchange inbox in the side pane in Mail will indicate some unread messages. I've tried deleting all the Mail-related files in the Library folder and reinstalling all of my accounts on several occasions. But it's only a matter of time before it returns. Right now it shows 2 unread messages when all have been read. And by the way, this happens with both my computer at work and at home. No such problem with my iPhone or iPad, or if a log in with a *gasp* Windows machine. Anyone see this or know how to fix? Many thanks.

    I have been having the same problem since last Thursday.  Spent nearly 2 hours on Tech Support with a 2nd level technician.  I was at home with 2 iPhones, 2 iPads and a couple computers available to be used while we investigated the issue.  It is a very strange behavior.  Here is a summary of the results of our efforts.
    1 - If you mark AOL mail as read on an Mac using Mavericks or Snow Leopard, it will be marked as read on iOS 7 on your iPhone or iPad within seconds.
    2 - If you open an AOL e-mail on your iPhone - by touching/loading it - it will stay marked as read on your iPhone, iPad and on your computer.
    3 - But, if you use the EDIT function - and try to mark an email as read (or mark all as read using the command at the bottom) the iPhone will initially mark the emails as read but they will NOT be marked as read on the AOL server.  Your computer and any other iOS 7 devices will not change the e-mail to read.  At some point, typically within 5 minutes, the message will reappear on the iPhone as unread.
    It seems to be tied to the EDIT function in iOS 7 mail as Read, Flag, Move, and Delete all fail to work in the same fashion.  It is also a one way error - iPhone iOS 7 to the AOL IMAP server - but only if you take action without viewing/loading the e-mail.
    Note that we tried multiple mail account deletes, various settings deletes, and even a total iPhone reset.  Nothing fixed this error.
    AOL mail on my iPad, using iOS 6, works as it should.  AOL mail on my wife's iPad, using iOS 7, has the exact same problem as my iPhone 5s.
    The 2nd level technician has concluded it is an iOS 7 bug and forwarded the information to the engineering team.
    If others are having this issue too - please add it to this thread.  We need to make sure Apple understands it is a wide spread issue that needs attention.
    Tim

  • HT5312 what if my rescue mail address is wrong ? I did typing mistake  . That mail address is not correct .

              I forgot my security questions . And it is required when I want to buy some appa at my new ipad mini because my account was the first time used in a new device. 
    The problem is my rescue maill address is wrong .. it should end up with  .COM . but I see it is .con

    You won't be able to change it until you can answer 2 of your questions, so you will need to contact iTunes Support or Apple to get the questions reset : https://discussions.apple.com/docs/DOC-4551
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then try Apple ID Account Security
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use the steps half-way down this page to correct your rescue email address : http://support.apple.com/kb/HT5312

  • Mail not correcting as i expect it to

        I have been using mavericks for a little while not and when I am using my Mac-mail it does not correct as I expect it to.  The lower case I does not change to uppercase I when type it by itself and words I would expect to have a red underline or correct such as "it self" do nothing for me.  Is there something I have not turned on or do I have to teach my computer  like I do my iPhone.  Any help would be greatly appreciated.

    Change the regex to "\\|_\\|"A "|" has a meaning to the parser and has to be escaped. Read the Pattern class API for details.

  • Javax.mail attachment not correctly encoded

    Hi,
    I have developed an online auction system which, has a function to generate invoices using the iText libraries.
    The invoices are stored as a ByteArray in a database and are mailed to the customer. This works find when running
    the application within my IDE (Netbeans) on Mac OS X and Apache Tomcat 6.0.29 and javamail 1.4.3. When running the application on
    Windows 2003 Server with same tomcat and javamail version the attachment is not readable on the client.
    The attachment is added to the e-mail using the following code;
    // Part two is the attachment
    messageBodyPart = new MimeBodyPart();
    messageBodyPart.setFileName(attName) ;
    messageBodyPart.setDataHandler(new DataHandler(new ByteArrayDataSource(attachment,attContType)));
    multipart.addBodyPart(messageBodyPart) ;
    The raw e-mail of the attachment when it is correctly encoded (running from my IDE)
    Content-Type: application/pdf; name=factuur_656.pdf
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=factuur_656.pdf
    JVBERi0xLjQKJeLjz9MKNCAwIG9iago8PC9MZW5ndGggMzM2L0ZpbHRlci9GbGF0ZURlY29kZT4+
    c3RyZWFtCnicjZPBboJAEIbvPMXcbBPEmd1lWXpr0/bWpFYOvTWoa0WQVUQPPfmofZQuaFGCNg0J
    gfDtfP+fCWvnIXK4BIUSoqnzFDlDZw0EaK/DfbKEwfuM4NHAsIIHzwQkIJo5vxQJCTIIIFo6Nztd
    pGYyLz8QUfryNlo0GA+owSjsE/UZEp4TPp4IpAFS9bHr4wi+UjVllpvJvEgWuyT/bLlk4KFqsDqV
    WcHKopu2MfTUiUvNptT5wcouWCWrsbgok1RnIIUL0Hvbjse60DlkcVx86bx3LhCoPN4c3AMjF9ud
    SdZJG8IC/vUEQnUTjF5GcJ/pooRDfuBgAyV2C/b5G/aALl10HodVAMfrTi7aTr9q/Vq9LsBspxrG
    And again when encoded from the server
    Content-Type: application/pdf; name=factuur_656.pdf
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=factuur_656.pdf
    JVBERi0xLjQKJeLjz9MKNCAwIG9iago8PC9MZW5ndGggMzM2L0ZpbHRlci9GbGF0ZURlY29kZT4+
    c3RyZWFtCnicP5PBboJAEIbvPMXcbBPEmd1lWXpr0/bWpFYOvTWoa0U/VUQPPfmofZQuaFGCNg0J
    P/DtfP+fCWvnIXK4BIUSoqnzFDlDZw0EaK/DfbKEwfuM4NHAsIIHzwQkIJo5vxQJCTIIIFo6Nztd
    pGYyLz8QUfryNlo0GA+owSjsE/UZEp4TPp4IpAFS9bHr4wi+UjVllpvJvEgWuyT/bLlk4KFqsDqV
    WcHKopu2MfTUiUvNptT5wcouWCWrsbgok1RnIIUL0Hvbjse60DlkcVx86bx3LhCoPN4c3AMjF9s/
    SdZJG8IC/vUEQnUTjF5GcJ/pooRDfuBgAyV2C/b5G/aALl10HodVAMfrTi7aTr9q/Vq9LsBspxrG
    Both attachments have the same length, and are similar (but are exactly the same).
    In the third line of the correctly encoded attachment the characters are; "gf" which are
    encoded in the not correctly encoded attachment to "P/".
    Also setting "-Dmail.mime.multipart.bmparse=false" did not make any difference.
    Any ideas, suggestions, solutions ?
    Cheers
    Peter

    Have you verified that the input byte array has the same contents in both cases?
    Is it possible that your server is picking up a different version of JavaMail?

  • I purchased CS5 Design Standard about 5 years ago. Now I am trying to install  second PC, but I got a message like " This serial number is not correct."  I want to know the correct serial number, but I missed my ex adobe ID because I've changed my E-mail

    I purchased CS5 Design Standard about 5 years ago. Now I am trying to install  second PC, but I got a message like " This serial number is not correct."  I want to know the correct serial number, but I missed my ex adobe ID because I've changed my E-mail address.

    It is not clear to me what your issue is with not being able to sign in to your Adobe account to find the serial number.  You should still be able to sign in and find your serial number if you registered the software.
    If your first PC is a Windows machine you might be able to extract the serial number from it using the Belarc Advisor
    http://www.belarc.com/free_download.html

  • The e-mail message could not be sent. Make sure the outgoing e-mail settings for the server are configured correctly

    I have a 2 server SharePoint farm.
    All outgoing emails were working fine.
    I just restarted both servers and now after that none of the emails are being sent. I am using OOB publishing workflow and it shows message:
    The e-mail message could not be sent. Make sure the outgoing e-mail settings for the server are configured correctly.
    Even if I setup Alert on some list, it doesn't send email.
    I have checked that outgoing email setting in CA is defined and like I said it was working fine without problems but after restart it is showing error.
    What could be the cause of this and how to fix it?
    EDIT
    I removed outgoing mail server in CA, added again and restart IIS but still emails from OOB workflow is not being sent. But email from Alerts are being sent. Don't know what to do now.

    This is really weird, It works when an alert is set but workflows doesn't send emails... Can you create a simple 1 Step workflow in SPD to send an email when a specific field is set. See if this sends an email..
    AJ MCTS: SP 2010 Configuration MCSA: Windows 7 If you find this post useful kindly please mark it as an answer :) TY
    I created a test workflow which sends email to user and it is also not sending email. But I am getting email from SharePoint regarding "variation" page changes as well as alerts which I told above.

  • When trying to send a link off firefox via email the system looks for a g mail account that I do not have nor want to have. I've told the settings to use my outlook account but it keeps looking for g mail. how do i correct?

    when trying to send a link off firefox via email the system looks for a g mail account that I do not have nor want to have. I've told the settings to use my outlook account but it keeps looking for g mail. how do i correct?

    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • TS3899 Cannot Get Mail The mail server is not responding. Verify that you have entered the correct account info in mail settings. What can I do?

    When I try to access Mail I get the following message "Cannot Get Mail. The mail server is not responding. Verify that you have entered the correct account info in Mail Settings". I have entered the correct account details and even deleted them and re-entered them but to no avail, Help.

    Try deleting the email account and readding it in the "other" tab instead of Yahoo/gmail, etc

  • Date and time mentioned in my mails are not correct.Similar date for all mails

    The date and time shown in my mails are not correct for all the mails its showing 31/5/12 but these mails were received on 1/11/14.

    Incorrect date or time displayed in various applications

  • Mail does not correctly reflect read status of Gmail IMAP messages

    Apple Mail is no longer correctly reflecting the read status of emails that have been read on other devices/computers when viewing my Gmail IMAP inbox. Whereas my iPhone and Gmail account both show changes in items' read status immediately or on next mail retrieval, in Apple Mail the only way I have currently of updating the read status is to quit Mail and restart it. Neither automatic fetching of Mail, nor clicking "Get Mail", nor right-clicking the Inbox and choosing "Synchronize Gmail" work.
    My other IMAP account (MobileMe) does not exhibit this behaviour, but Mail.app does this with Gmail on both of my desktop computers.
    Anyone out there with a similar problem? And are there any possible solutions, or is it a bug/incompatibility with GMail?

    This problem is still occurring for me in 10.5.5 - I even tested it by creating a new gmail account with only 1 message in it, in case it was a problem with large mailboxes, and the same thing happened.
    Mail messages marked read elsewhere are not updated in Mail on the next send/receive. I wonder if everyone with this problem could report the bug at http://www.apple.com/support/feedback and see if we can get this solved in 10.5.6

  • I right-click in a Yahoo e-mail window and select Languages - Spanish (Mexico) and start typing in Spanish, but it is not correcting my mistakes, or offering alternative spellings.

    I speak English. I am living in Chile and have a Dell/MS Windows Vista (English) laptop. I have Firefox 3.6.12. I have installed the Spanish (Mexico) dictionary. I right-click in a Yahoo e-mail window and select Languages - Spanish (Mexico) and start typing in Spanish, but it is not correcting my mistakes, or offering alternative spellings.
    I don't know if I have the correct plug-in, correct settings, or am expecting something that isn't possible.

    Do other dictionaries work if you select them in the Languages menu?
    See:
    * http://kb.mozillazine.org/Spell_checking
    * http://kb.mozillazine.org/Dictionaries
    * [[Using the spell checker]]

  • Hello.  I upgraded my MIFI 2200 (had no contract on it) to a Jetpack (with a contract) when customer service told me this 4G device would use less data because it was faster.  This was not correct.  Anyway, I got the device, had problems, did tech support

    I upgraded my MIFI 2200 (had no contract on it) to a Jetpack (with a contract) when customer service told me this 4G device would use less data because it was faster.  This was not correct.  Anyway, I got the device, had problems, did tech support, re-activated my MIFI.  1.  Decided to return the device. Spent hours with Customer Service, then finally up to Management, they agreed to take it back and void the contact, I sent it back immediately – and instead of voiding the contact they transferred it to my MIFI! Please cancel the contract on the MIFI. 2.  During the short time I had the Jetpack I continually received overage alerts, took it all the way up to 30 GB, each time I backdated the new data plan except twice when customer service did and failed to back date the increase, and once the computer locked customer service out and could not increase.  The end result is I have a $495 bill, many of these alerts were false since I ended up with only 14 MG for the month, etc.  I am asking that my bill be reduced significantly to reflect no overage and to compensate for these problems. Please open up a ticket for this.

    I had Verizon JetPak and you will find it will eat data like crazy. I opted to sign on to ATT Uverse and configured my phones and other devices to the WiFi on the Uverse system. It took about 5 minutes to completed the configuration.  I was using 10 to 12 GB monthly to support 5 devices. Even if you use Verizon DSL, you are still subjected to same GB allotment.  In my area, Verizon DSL is not available. With Uverse, I have 250 GB monthly to use, and I have not even come close to using anything of that magnitude. I reduced my GB package with Verizon to 2 GB per month and since having ATT Uverse, I never use more than 1GB a month with Verizon.
    I have no problem with Verizon cell phone service as we get a much stronger signal where we live than you can with ATT or any others.  It is just my opinion, but if you are running multiple devices off Verizon Jetpak, you will eventually spend a fortune to keep pace.  I pay $60 a month for 18 Mbps speed, although ATT have packages that cost much less. But, it saves me a bundle each month. The cost of Uverse alone is worth not having to run everything through a Jetpak.  
    If you have the  option to use another DSL service provider in your area, I recommend dumping the Jetpak and sign on with another carrier.

  • I have a problem with a few emails i wrote which were in the outbox. The outbox disappeared all of a sudden with my mails... However they were not sent since the email address was not correct (just 3 initials). Is there a way to get it back somewhere?

    Hello,
    I have a problem with a few emails i wrote which were in the outbox. The outbox disappeared all of a sudden with my mails... However they were not sent since the email address was not correct (just 3 initials). I was waiting to find out the correct email address of that person, put in in and then sen it...Is there a way to get it back somewhere on the ipad or in some cached folder?
    Many thanks for an answe to this.
    Swisslady2

    There is no cache where the emails would be stored on the iPad, but you could try quitting the mail app and then launch it again and see if the emails return.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Tap the home button. Then try mail again.

  • A number of songs in my  i tunes libray have "not available" against them (in the column headed "Time") and won't play. How do I correct this?

    A number of songs in my  i tunes libray have "not available" against them (in the column headed "Time") and won't play. How do I correct this?

    Hello enrique a.
    Instead of trying to re-invent the wheel on this one, take a look at an article such as this one to help you take care of these exclamations.  Basically, it means iTunes is unable to locate the file on your computer anymore.
    http://ipod.about.com/od/itunesproblems/qt/Fixing-The-Itunes-Exclamation-Point.h tm
    B-rock

Maybe you are looking for