What is the wrong in the below code

Hello All,
I am creating a DDIC table dynamically through a program.
REPORT  zbc_create_table2.
TABLES: dd02l.
PARAMETER: tab_name TYPE tabname OBLIGATORY VISIBLE LENGTH 18 .
SELECT-OPTIONS s_table FOR dd02l-tabname.
DATA: gs_cl_bc_dyn TYPE REF TO zcl_bc_dyn.
DATA rc TYPE sy-subrc.
DATA: ls_dd02v TYPE dd02v.
DATA: gt_fields TYPE TABLE OF dd03p,
      gs_field TYPE dd03p,
      gs_progname TYPE trdir-name,
      ls_dd05m TYPE dd05m,
      ls_dd08v TYPE dd08v.
ls_dd05m-tabname = tab_name.
ls_dd08v-tabname = tab_name.
TRANSLATE gs_progname TO UPPER CASE.
CREATE OBJECT gs_cl_bc_dyn.
gs_field-tabname = 'TEST'. gs_field-fieldname = 'MANDT'.
gs_field-position = '1'. gs_field-keyflag = 'X'.
gs_field-rollname = 'CHAR1'.
APPEND gs_field TO gt_fields.
ls_dd02v-tabname = tab_name.
ls_dd02v-contflag = 'A'.
ls_dd02v-mainflag = 'X'.
CALL FUNCTION 'DDIF_TABL_PUT'
  EXPORTING
    name                    = tab_name
dd02v_wa                = ls_dd02v
*   DD09L_WA                = ' '
TABLES
   dd03p_tab               = gt_fields
*   DD05M_TAB               = ls_DD02V
*   DD08V_TAB               = ls_DD08v
*   DD35V_TAB               =
*   DD36M_TAB               =
EXCEPTIONS
   tabl_not_found          = 1
   name_inconsistent       = 2
   tabl_inconsistent       = 3
   put_failure             = 4
   put_refused             = 5
   OTHERS                  = 6
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
CALL FUNCTION 'DDIF_TABL_ACTIVATE'
  EXPORTING
    name        = tab_name
*      auth_chk    = 'X'
*      prid        = -1
  IMPORTING
    rc          = rc
  EXCEPTIONS
    not_found   = 1
    put_failure = 2
    OTHERS      = 3.
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
i am getting an error message 'tabl_inconsistent' in FM  'DDIF_TABL_PUT'
Regards,
Lisa

hi Lisa,
first of all you have to add the following lines (before the FM is called to create the table):
ls_dd02v-tabclass = 'TRANSP'.
this will create a transparent table.
but there could be more errors, you just have to debug the FM if it still does not work
hope this helps some
ec

Similar Messages

  • What has gone wrong with the equalizer on the latest update, every single one is all distorted

    what has gone wrong with the equalizer on the latest update, every single one is all distorted

    I had a similar-sounding problem with version 11.1.2.31 x64.  Every song I played sounded as if the speakers were being over-driven.  
    This problem was fixed after I installed the new verion: 11.1.2.32 x64.  I am using Windows 7, too.

  • Knows someone absinthe? What can go wrong when the jailbreak? what is VPN?

    knows someone absinthe? What can go wrong when the jailbreak? what is VPN?

    philippwayne wrote:
    What can go wrong when the jailbreak?
    See this Apple doc:
    Unauthorized modification of iOS has been a major source of instability, disruption of services, and other issues

  • HT1386 i have been trying to sync my device to itunes but it keeps saying i have the wrong itunes. the thing is its the same one i have had all the timei have had this phone?

    i have been trying to sync my device to itunes but it keeps saying i have the wrong itunes. the thing is its the same one i have had all the timei have had this phone? I have even went through and uninstalled and reinstalled 3 times. what the hek is going on? HELLP!!!!

    another messge popped up "Itunes can not connect to this iPhone(iPod).An uknown error occurred (0xE8000084)."

  • What's going wrong in the code

    Hi
    This program indent is to run linux commands from text field and print the o/p in text area.The program is displaying o/p
    sometimes and some times it is not.Please help me to find the solution for this.
    please its urgent...
    thanks.
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    class StreamGobbler extends Thread
    InputStream is;
    String type;
    String text;
    StreamGobbler(InputStream is, String type)
    this.is = is;
    this.type = type;
    this.text = "";
    public void run()
    try
    InputStreamReader isr = new InputStreamReader(is);
    BufferedReader br = new BufferedReader(isr);
    String line=null;
    StringBuffer sb = new StringBuffer();
    while ( (line = br.readLine()) != null)
    sb.append(line);
    sb.append("\n");
    String st = sb.toString();
    text = st;
    // System.out.println(text);
    } catch (IOException ioe)
    ioe.printStackTrace();
    class GoodWindowsExec
    class GoodWindowsExec
    String Exec(String args)
    String result = "";
    try
    String osName = System.getProperty("os.name" );
    System.out.println(" OS NAME is "+osName);
    String[] cmd = new String[3];
    if( osName.equals( "Linux" ) )
    cmd[0] = "/bin/bash";
    cmd[1] = "-c";
    cmd[2] = args;
    Runtime rt = Runtime.getRuntime();
    System.out.println("Execing " + cmd[0] + " " + cmd[1]//+"\n");
    + " " + cmd[2]);
    Process proc = null;
    proc=rt.exec(cmd);
    StreamGobbler outputGobbler = new
    StreamGobbler(proc.getInputStream(), "OUTPUT");
    outputGobbler.start();
    int exitVal =-1;
    exitVal=proc.waitFor();
    System.out.println("exitVal is:"+exitVal);
    result = outputGobbler.text;
    System.out.println("Result is:"+result);
    catch (Throwable t)
    t.printStackTrace();
    System.out.println("WIth in result:"+result);
    return result;
    public class test2
    public static void main(String[] args)
    BoxLayoutFrame frame = new BoxLayoutFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    // Designing form
    class BoxLayoutFrame extends JFrame implements ActionListener
    JLabel enter;
    JTextField tf1;
    JButton b1;
    JTextArea text;
    JSplitPane splitPane;
    String str;
    public BoxLayoutFrame()
    setTitle("Box Layout");
    setSize(500,500);
    enter = new JLabel("Enter:");
    tf1 = new JTextField(15);
    tf1.setMaximumSize(tf1.getPreferredSize());
    b1 = new JButton("Go");
    b1.addActionListener(this);
    Box hbox1 = Box.createHorizontalBox();
    hbox1.add(enter);
    hbox1.add(Box.createHorizontalStrut(10));
    hbox1.add(tf1);
    hbox1.add(Box.createGlue());
    hbox1.add(Box.createGlue());
    hbox1.add(b1);
    Box hbox2 = Box.createHorizontalBox();
    text = new JTextArea("");
    int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
    int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
    JScrollPane jsp = new JScrollPane(text,v,h);
    hbox2.add(jsp);
    splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,hbox1,hbox2);
    Box vbox = Box.createVerticalBox();
    vbox.add(splitPane);
    add(vbox,BorderLayout.CENTER);
    //Executing commands from text field
    public void actionPerformed(ActionEvent evt)
    try
    str = tf1.getText();
    GoodWindowsExec cmd = new GoodWindowsExec();
    text.setText(cmd.Exec(str));
    catch(Exception exe)
    text.setText("\t\t"+"file not found:");
    text.append("\n");
    }

    Solved! With one line of code :) Even though I was setting the link as a child of the main component, I wasn't setting the component as a parent of the link. So, for anybody else who's been having this problem, if you noticed in my "createLink" method, I was doing this:
    // Create Link
    private HtmlCommandLink createLink(MethodBinding mb,
    String linkId)
    FacesContext context =
    = FacesContext.getCurrentInstance();
    Application application  =
    = context.getApplication();
    HtmlCommandLink link =
    =
    (HtmlCommandLink)application.createComponent(HtmlComma
    ndLink.COMPONENT_TYPE);
         link.setAction(mb);
         link.setId(linkId);
         return link;
    }Well, after you create the link, you gotta do this as well:
    link.setParent(this);This sets the main component as the parent to the link, getting rid of my exception. Thanks for anybody who responded to any of my posts on here!

  • How to insert record inside the internal table in below code

    Hi all,
    My requirement is to find the sub-total and need to insert in between the internal table.
    You can see the output ....where I want the sub-total F2 when 1 & 2 combindely , 3 , 4& 5 combindely .Please check it and let me know is it possible
    when i am using modification  it is not creating extra row inside the table instead it is modifying one row and putting the total there.
    For ex: the origianl output is
    F1   F2       F3
    A      1          1
    B      1          1
    F      2          1
    D      3          1
    E      4          1
    C      5          1
    We want to display all the total of f2 of 1-2 , 3 , 4-5
    so expcected output is
    F1   F2       F3
    A      1          1
    B      1          1
    F      2          1
         *              3  ->This is the sub-total of 1& 2 of f2
    D      3          1
            *           1 ->this is the sub-total of 3
    E      4          1
    C      5          1
          *             2 -> this is the sub-total of 4 & 5
    = space
    But coming output is
    A 1          1
    B 1          1
    *             3 -> it is modifying the F row and inserting the total .Total is comong correct but is shoule insert  instead of modifying the record!!
      *           1
    E  4          1
    *             2
    Please help how to insert the row total at the end of the chage of field
    Please find the below code ..Due to space problem i am attaching below
    Sas

    Here is the solution ....i Got the answer Thanks for your helping hands friends
    REPORT  YTEST_MODIFY.
    DATA: BEGIN OF ITAB OCCURS 1,
    TOT TYPE C,
    F1 TYPE C,
    F2 TYPE C,
    F3 TYPE I ,
    END OF ITAB.
    DATA: BEGIN OF JTAB OCCURS 1,
    F1 TYPE C,
    F2 TYPE C,
    F3 TYPE I ,
    END OF JTAB.
    START-OF-SELECTION.
      ITAB-F1 = 'A'.
      ITAB-F2 =  1.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'B'.
      ITAB-F2 =  1.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'C'.
      ITAB-F2 =  5.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'D'.
      ITAB-F2 =  3.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'E'.
      ITAB-F2 =  4.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'F'.
      ITAB-F2 =  2.
      ITAB-F3 =  1.
      APPEND ITAB.
      SORT ITAB BY F2.
      LOOP AT ITAB.
        WRITE:/1 ITAB-F1 ,
              8 ITAB-F2 ,
              10 ITAB-F3 .
      ENDLOOP.
      LOOP AT ITAB.
        IF ITAB-F2 = 1 OR ITAB-F2 = 2.
          ITAB-TOT = 1.
          MODIFY ITAB.
        ELSEIF ITAB-F2 = 3.
          ITAB-TOT = 3.
          MODIFY ITAB.
        ELSEIF ITAB-F2 = 4 OR ITAB-F2 = 5.
          ITAB-TOT = 4.
          MODIFY ITAB.
        ENDIF.
      ENDLOOP.
      SKIP 2.
      SORT ITAB BY TOT.
      DATA : L_SUM(2) TYPE C,
             L_ROW(2) TYPE C.
      LOOP AT ITAB.
        MOVE-CORRESPONDING ITAB TO JTAB.
        APPEND JTAB.
        L_SUM = L_SUM + ITAB-F3 .
        AT END OF TOT.
          CLEAR JTAB.
          JTAB-F3 = L_SUM .
          APPEND JTAB.
          CLEAR L_SUM.
        ENDAT.
      ENDLOOP.
      LOOP AT JTAB.
        WRITE:/1 JTAB-F1 ,
              8 JTAB-F2 ,
              10 JTAB-F3 .
      ENDLOOP.
    *  DATA: a TYPE i , b .
    *  LOOP AT itab.
    *    IF b = 0.
    *      a = a + itab-f3.
    *    ENDIF.
    *    AT END OF tot.
    *      MOVE space TO itab-f1.
    *      MOVE space TO itab-f2.
    *      MOVE a TO itab-f3.
    *      MODIFY itab .
    *      CLEAR a.
    *      b = 1.
    *    ENDAT.
    *    b = 0.
    *  ENDLOOP.
    *  LOOP AT itab.
    *    MOVE-CORRESPONDING itab TO jtab.
    *    APPEND jtab.
    *  ENDLOOP.
    *  ULINE.
    *  LOOP AT jtab.
    *    WRITE: / jtab-f1 , jtab-f2 , jtab-f3.
    *  ENDLOOP.

  • What is the wrong with this small code of groupitems

    var msg =""
    if(app.documents.length > 0)
    var pgItems = app.activeDocument.pageItems;
    tot_obj=pgItems.length ;
    if( pgItems.length > 0 )
      var GroupItem =app.activeDocument.groupItems;
      total_Group = GroupItem.length;
       for(var a = 0;a<total_Group;a++)
        GroupItem[a].hidden=true;

    Use this code :
    app.activeDocument.groupItems[a].hidden=true;

  • What im doing wrong in the loop?

    Mistyped
    Edited by: 794018 on Sep 20, 2010 5:11 AM

    >
    How I can change this code
    to have the output like this
    >
    Well you need to look at your output and see where the first line of output is wrong.
    This is the first line of output
    >
    3          120
    >
    If that line is not correct ask yourself where those values came from.
    The output is done by this line
    System.out.format ("%s\t\t%s\n",i,dist);So the 3 came from 'i' and the 120 came from 'dist'.
    Is the 3 correct? If not then 'i' is not correct.
    So look at your code one line at a time and try to figure out why the first value of 'i' is not correct.
            for (int i = numberOfhoursTraveled; i < milePerhour; i++) {
               dist = (int) convertDistanceTraveled(milePerhour, numberOfhoursTraveled);What is the value of 'i' the first time through the loop? It is numberOfhoursTraveled which is 3. Is that what you want?

  • HT1386 i got a used ipod touch and when I connect it - it doesn't show up on my computer. I have an Itunes account and it does not show my device at all. any clue what I', doing wrong? The ipod is on and plugged in

    I am having trouble - when I turn on my ipod touch - the only thing on the screen is a usb cable with an arrow pointing to the itunes logo. I got it from a friend who cleared all of his stuff off of it. I can't get any of the stuff I downloaded on it. maybe it didn't sync with my computer. it doesn't show up when I go to the itunes store on the top bar next to the library tab either. HELP ! lol

    iOS: Device not recognized in iTunes for Windows
    or
    iOS: Device not recognized in iTunes for Mac OS X

  • Photosmart all i one 7520 Printing problems the wrong scale the printout

    I will print covers for DVD cases. Have done it before from two different programs to my previous photosmart printer without problems. Now since I change the Photosmart All in One 7520 will be reduced format in both height and width. A degradation of the picture takes place.

    Hello there @AgnetaL 
    Welcome to the HP Forums!
    I understand you are facing some issues when printing DVD cases from your Photosmart 7520.
    I would recommend checking the printers specifications, as this unit may support different sizes, paper types, etc than the previous printer did.
    Here is the link for you to get to the: Printer Specifications for the HP Photosmart 7520 e-All-in-One Printer Series
    If there is still an issue, let me know which programs you have tried printing from, which paper size and type you are using, and which troubleshooting steps you have tried already.
    Have a great Monday!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • The iPhone has one fault the headphone jack pin  in the wrong spot, The iPhone 5 has one fault the headphone jack pin  in the wrong spot

    I mean iPhone 5 so listen to music on a stereo ?

    don't tell us users.  We can't do anything.
    http://www.apple.com/feedback/iphone.html

  • Want to Incerese the performence for below code.

    Hi everyone.
    Please can anyone help me in improving the perfoemence for this below code.
      LOOP AT IT_EBAN INTO WA_EBAN.
    MOVE WA_EBAN-TXZ01 TO WA_ZTOBI_PUR_RQ_LD-TXZ01.
                    MOVE WA_EBAN-MATKL TO WA_ZTOBI_PUR_RQ_LD-MATKL.
                    IF WA_EBAN-BADAT > WA_EBAN-ERDAT.
                      MOVE WA_EBAN-BADAT TO WA_ZTOBI_PUR_RQ_LD-CHANGED_DATE.
                      WA_ZTOBI_PUR_RQ_LD-CHNGIND = LC_I.
                    ELSEIF WA_EBAN-BADAT <= WA_EBAN-ERDAT.
                      MOVE WA_EBAN-ERDAT TO WA_ZTOBI_PUR_RQ_LD-CHANGED_DATE.
                      IF WA_EBAN-LOEKZ = SPACE.
                        WA_ZTOBI_PUR_RQ_LD-CHNGIND = LC_U.
                      ELSEIF WA_EBAN-LOEKZ = LC_X.
                        WA_ZTOBI_PUR_RQ_LD-CHNGIND = LC_D.
                      ENDIF.
                    ENDIF.
            IF WA_EBAN-BSMNG NE 0.
            SELECT EBELN LOEKZ EBELP FROM EKPO INTO TABLE IT_EKPO WHERE BANFN = WA_EBAN-BANFN AND BNFPO = WA_EBAN-BNFPO.
    *If Purchase Orders found
            IF NOT IT_EKPO[] IS INITIAL.
              LOOP AT IT_EKPO INTO WA_EKPO.
                SELECT BEDAT FRGRL PROCSTAT FROM EKKO INTO TABLE IT_EKKO WHERE EBELN = WA_EKPO-EBELN.
                READ TABLE IT_EKKO INTO WA_EKKO INDEX 1.
                IF WA_EKPO-LOEKZ = ''                                 
                    ENDloop.
    Edited by: kumar.p.D on Jan 15, 2010 6:02 AM
    Edited by: kumar.p.D on Jan 15, 2010 6:05 AM
    Moderator message - You have violated at least two forum rules. Please see Please read "The Forum Rules of Engagement" before posting!  HOT NEWS!! and Please Read before Posting in the Performance and Tuning Forum before posting - post locked
    Edited by: Rob Burbank on Jan 15, 2010 9:15 AM

    In pseudocode:
    1.-  Declare it_ekpo as sorted table with key banfn bnfpo, and add the others fields you need.
          Declare it_ekko as sorted table with key ebeln, and add the others fields you need.
          Declare an internal table like it_eban, ie: it_eban2.
          Declare field-symbol like line of it_eban.
          Declare field-symbol like line ot it_ekpo and other like line it_ekko.
      2.-   it_eban2[]= it_eban[].
            delete it_eban2 where bsmng = 0.
            use it_eban2 in select for all entries to ekpo filling it_ekpo.
            use it_ekpo in select for all entries to ekko.
            free it_eban2.
       3.-  sort it_eban by banfn and bnfpo.
             loop at it_eban assigning the field-symbol instead of into.
             if bsmng <> 0.
              loop it_ekpo assigning field symbol where banfn and bnfpo.
                 at new ebeln.
                      read table it_ekko assigning field symbol with key ebeln.
                 endat
              endloop.
             endif.
             endloop.
      I hope it works  ...
    Edited by: Diego Alvarez on Jan 15, 2010 10:21 AM
    Edited by: Diego Alvarez on Jan 15, 2010 10:27 AM
    Edited by: Diego Alvarez on Jan 15, 2010 10:30 AM

  • Find/Replace highlights the wrong code

    Hi, when using the normal Find and search for specific text in my AS3 class file, it highlights the right position where it found the matching text, but when I use the Find/Replace it totally messes up, it highlights the wrong text in my code, but it displays the right position in the Find/Replace window. Is there a way to fix that, or is this a known bug? See attached screenshot.

    Hi,
    Thanks for sharing the file.
    The issue is with the End of Line(EOL) character. The file uses CR notation for its EOL and was used in Mac OS version upto 9 and in Mac OS 9. When a file is created using any of those versions of Mac OS then the EOL character would be CR which is obsolete now and is not recognized by many modern text editors.
    If the EOL is LF or CR|LF then the Find and Replace will work as expected in Flash CC.
    You can change the EOL of the file by opening and saving the file in Wordpad which will change the EOL to CR|LF.
    Hope this information will help resolve your issue.
    Thanks!
    Mohan

  • MX 6.1: ARGUMENT values in the wrong place

    Im having a very strange problem. I have a CF web service I
    am invoking and sending it several arguments. In one web service
    method it works fine and Im only sending 3 arguments. The other I
    am sending 6 and when I dump the ARGUMENTS arrary the values are
    with the wrong name. Below is some sample code and what my dump
    looks like. Any ideas?
    The dump for Start (which is correct) looks like this
    struct
    GUIDCOURSEID 5d74631f-2db8-4755-b465-180dbb4136a2 <!---
    correct--->
    GUIDORGANIZATIONID cee8a216-64f2-4703-9b44-dec4a478ddc7
    <!--- correct--->
    INTLEARNERID 999999 <!--- correct--->
    The dump the SCORMInitialize looks like this (shuffles the
    ARGUMENTS)
    struct
    GUIDCOURSEID normal <!---wrong --->
    GUIDORGANIZATIONID credit <!--- wrong --->
    INTLEARNERID cee8a216-64f2-4703-9b44-dec4a478ddc7 <!---
    wrong --->
    STRCREDIT 5d74631f-2db8-4755-b465-180dbb4136a2 <!--- wrong
    --->
    STRMODE 999999 <!--- wrong --->
    STRSCOID lesson01 <!--- correct--->
    Any help would be greatly appreciated. Im pretty much stuck.
    The shuffling is always the same, so I could code around it but Id
    prefer to know why its doing it so I dont have to bandaid it.
    TIA

    Update: I renamed my Main.cfc and the problem stopped. It
    doesnt really explain why it was happening but at least it works
    now.

  • Mail app displays the wrong Inbox when you open it.

    This problem can be easily reproduced if you have more than one email account configured in iOS 4.x
    It should be extremely simple to fix with the next update. I see that this same problem has been mentioned before, but I couldn't update that thread because it's "archived." If you want Apple to fix this, please report the issue to Apple using one or more of the links below:
    http://www.apple.com/feedback/ipodtouch.html
    http://www.apple.com/feedback/iphone.html
    http://www.apple.com/feedback/ipad.html (not sure if iPad Mail app is affected)
    Here's what I submitted...
    Subject:
    Simple software design issue in Mail app.
    Feedback Type:
    Design/Ease of Use
    Comments:
    Thanks for your work on making iOS better and better with each update! There is no option to provide general iOS feedback, so I'll submit this under "iPhone" and "iPod." I'm currently using the latest iOS (4.3.1).
    The native Mail app in iOS has had the Unified Inbox feature since iOS 4.0, which is very useful. However, there is a minor design flaw that could be easily resolved with a software update.
    My setup:
    I have 3 Exchange accounts on my device (Hotmail, Gmail[Default], Work). The Hotmail Inbox is empty at least 98% of the time because my Gmail account periodically downloads the messages. The only reason I have the Hotmail account entered on my device is to make sure I can see a message in "All Inboxes" even before my Google account retrieves it. On my device, the Gmail account is set as default for Mail and Contacts.
    The problem:
    I never intentionally select the Inbox for the Hotmail account because it should almost always be empty. I would simply view "All Inboxes." Still, half the time I open the Mail app, it shows the empty Hotmail Inbox. This is very annoying!
    I finally figured out how to reproduce it consistently:
    (must have more than one account configured)
    1) Launch the Mail app and back-up to the screen that shows the list of accounts / Inboxes (I usually try to leave it here when I'm done, hoping to see that screen the next time I open Mail).
    2) Without selecting a specific account or Inbox, push the Home button to exit the Mail app.
    3) Kill the Mail process from the multi-tasking menu.
    4) Open Mail again
    Mail will show whichever Inbox comes immediately after "All Inboxes", even if it's not your default account. In my case, it starts in the empty Hotmail Inbox every time...a folder that I never intentionally select. Each time, I have to go back to the list and tap "All Inboxes."
    So, if I leave Mail on the root screen before killing the process, it consistently displays the wrong Inbox the next time I open it. If I select an Inbox or "All Inboxes," it will remember that selection and show me that screen the next time I open Mail.
    What it should do:
    When Mail doesn't know which Inbox to display, it should...
    A. Start on the root screen with the list of accounts and Inboxes (preferred option).
    or B. Start in "All Inboxes" (secondary preference).
    or C. Start in the Inbox of the default account (not preferred, but better than showing an empty/unused Inbox).
    Thank you!
    Message was edited by: Ichinisan
    (not sure if iPad Mail app is affected)
    Message was edited by: Ichinisan
    Message was edited by: Ichinisan

    Try this...
    Launch the Mail app.
    Navigate to the "Mailboxes" page (the page that lists all of your accounts).
    Tap "Edit" in the top right corner.
    Scroll down to the bottom section of the page, titled "ACCOUNTS".
    Drag the triple-bars on the right to reorder the accounts listed. The first account listed will be the one that the app launches to.
    Hope this helps, I went crazy trying to figure that out and it worked for me.

Maybe you are looking for

  • Error message while creating configurable material for variant configuration.

    Dear All, I want to create configurable material for the purpose of variant configuration. When trying to create configurable material using mm 01 or mm k1, it is displaying an error message that internal number assignment is not possible for the mat

  • SSRS 2008 Created Commssion Report, now getting error message when I run this ( need Help)

    in SSRS 2008 2 years ago created Commission with sub reports added, it was working fine, some how started to get error   message when we entered some invoice # see below screen shot of error message but same time if I enter different invoice # it pro

  • Output as required

    Hi, I have following tables in oracle 10g database, tab1 U_ID     CARD_NO     NAME COMPANY     DEPT     SUB_DEPT 100     53071     AAA     ORA     IT     SMT 101     53072     BBB     ORA     IT     CS 102     53073     CCC     ORA     IT     VS 103 

  • Incredibly slow import

    I have a G5 with 4.5 GB RAM and a 74 GB 10,000 RPM Raptor Boot drive running LR with a 400 GB 7200 RPM Western Digital Internal drive holding my image files. I'm importing photos from a 133x Lexar SD card and a fast USB 2.0 reader. No problem with my

  • Resource for BO on Win and Linux

    Hi, I have a BusinessObjects project. Can you give me requirements resource for BO on Linux and Window?? Thanks Duypm