Problem in moving one talbe to anlther table

Hi ,
we are working in ECC6.0 ,here we are facing problem while moving one table to another table .plz find below code.
data : itab1 like p2001,
         itab2 like p2002.
select single * from pa2001 into itab1 where ...........
move-corresponding :itab1 to itab2.
but here we are getting the error like both structures are deffirent ,so could you please let me know how to solve this problem.
Thanks in advance,
Sai.

Hi sai,
the sample code which you have specified here is fine...
i dont see any issues.
Can you specify the exact code and the error.?
the code mentioend is perfrcty alright.
the error u get might be beause of some other part of the code
thanks,
Jose

Similar Messages

  • Problem in moving data of an internal table to other internal tables

    My internal table ITAB contains two columns NODE and VALUE.
    The contents are as follows
    NODE                VALUE
    A                              1
    B          2
    C          3               
    D          4
    E          5
    F          6
    D          7
    E          8
    F          9
    G          10
    H          11
    I          12
    G          13
    H          14
    I          15
    G          16
    H          17
    I          18
    J          19
    K          20
    L          21
    J          22
    K          23
    L          24
    My requirement is I need to move the values to JTAB such that JTAB should have columns as D E F and should be having the following values filled in the columns.
    JTAB
    D     E     F
    4     5     6
    7     8     9
    Similarly  I need to move the values to KTAB such that KTAB should have columns as G H I  and should be having the following values filled in the columns.
    KTAB
    G     H     I
    10     11     12
    13     14     15
    16     17     18
    Similarly  I need to move the values to NTAB such that NTAB should have columns as G H I  and should be having the following values filled in the columns.
    NTAB
    J     K     L
    19     20     21
    22     23     24
    Please help. Any help is higly appreciated. if dont want to put several if conditions as it will effect performance. is there a simple way to do this

    Hello,
    How itab is sorted ?
    - For example table jtab has 3 fields D E F. D is the first one and F the last one.
    -- Are itab entries sorted like that :
    D  5                  <--- 1st field of structure jtab
    E  4
    F  7                  <--- last field of structure jtab
    or like that
    E  4
    D 5
    F 77
    or something else
    re-using the code of  a®s. You can do something like that :
        loop at itab.
            CASE itab-node.
             WHEN 'D' OR 'E' OR 'F'.  "jtab fields
                    CASE itab-node.
                       WHEN 'D'. "1st field
                              CLEAR              wa_jtab.
                              MOVE itab-value TO wa_jtab-d.
                       WHEN 'F'. "last field
                              MOVE itab-value TO wa_jtab-f.
                              APPEND wa_jtab TO jtab.
                       WHEN OTHERS.
                              ASSIGN COMPONENT itab-node OF STRUCTURE wa_jtab TO <fs>.
                              IF  sy-subrc IS INITIAL.
                                   MOVE itab-value TO <fs>.
                              ENDIF.
                     ENDCASE.
             WHEN 'G' OR 'H' OR 'I'.  "ktab fields
                    CASE itab-node.
                       WHEN 'G'. "1st field
                              CLEAR              wa_ktab.
                              MOVE itab-value TO wa_ktab-g.
                       WHEN 'I'. "last field
                              MOVE itab-value TO wa_ktab-i.
                              APPEND wa_ktab TO ktab.
                       WHEN OTHERS.
                              ASSIGN COMPONENT itab-node OF STRUCTURE wa_ktab TO <fs>.
                              IF  sy-subrc IS INITIAL.
                                   MOVE itab-value TO <fs>.
                              ENDIF.
                     ENDCASE.
               ENDCASE.
      ENDLOOP.
    Pre requisite: itab must be sorted by field position in structure of each target tables (jtab ktab ...)
    Remark : if target tables have lot of fields you can use range instead of WHEN 'D' OR 'E' OR 'F'.
    Cordialement,
    Chaouki.
    Edited by: Chaouki AKIR on Feb 19, 2009 9:59 PM

  • Problems with moving directories

    Hi, i have a problem with moving one subdirectory from one directory to another. Here is the code
         public static boolean moveToDir(String filename, String dirname)
         if( XFileUtils.fileExists(filename) )
         return onMoveSingleFileToDir(filename,dirname);
         File dir = new File(".");
         FileFilter fileFilter = new WildcardFilter(filename);
         File[] files = dir.listFiles(fileFilter);
         boolean _flag = true;
         for (int i = 0; i < files.length; _i++)
         String _cfilename = files[_i].getName();
         if( !XFileUtils.fileExists(_cfilename) )
         throw new RuntimeException("file or dir does not exists"+_cfilename);
    flag = flag && onMoveSingleFileToDir(_cfilename, dirname);
         return _flag;
    Can anyone help me?
    Thank you very much!
    Elias

    Also, a sample DAD would look like:
    <Location /database1>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDatabasePassword This_Password
    PlsqlDatabaseConnectString database1 TNSFormat
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDefaultPage f?p=130
    </Location>
    <Location /database2>
    SetHandler pls_handler
    Order allow,deny
    Allow from All
    AllowOverride None
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDatabasePassword This_Password
    PlsqlDatabaseConnectString database2 TNSFormat
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDefaultPage f?p=131
    </Location>
    The tnsnames.ora file would then look similar to:
    DATABASE1 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = the_database_server)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = DATABASE1)
    DATABASE2 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = the_database_server)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = DATABASE2)
    Again, these are edited copies of what I use, but something similar should work for you.
    Bill Ferguson

  • Problem in moving to final interanl table

    Hi all,
      i have one problem when moving all the fileds in final internal table
    t_eina is the final internal table
    i want to itab-matnr and maktx in t_eina or anyother final internal please correct the code according to htis requriment.if any one is intrested
    tables: ztab2,mara,mvke,MARAV,eina.
    DATA: BEGIN OF T_ztab2 OCCURS 0,
    MTART LIKE ztab2-MTART,
    dwerks like ztab2-dwerks,
    END OF T_ztab2.
    DATA: BEGIN OF T_mara OCCURS 0,
    matnr like MARAV-matnr,
    maktx like MARAV-maktx,
    MTART LIKE ztab2-MTART,
    dwerks like ztab2-dwerks,
    prat1 like mvke-prat1,
    lifnr like eina-lifnr,
    END OF T_mara.
    DATA: BEGIN OF itab OCCURS 0,
    matnr like MARAV-matnr,
    maktx like MARAV-maktx,
    MTART LIKE ztab2-MTART,
    dwerks like ztab2-dwerks,
    prat1 like mvke-prat1,
    lifnr like eina-lifnr,
    END OF itab.
    Data : begin of t_eina occurs 0,
    matnr like eina-matnr,
    lifnr like eina-lifnr,
    Mtart like mara-mtart,
    dwerk like mvke-dwerk,
    maktx like marav-maktx,
    end of t_eina.
    *data: begin of itab occurs 0,
         matnr like marav-matnr,
         mtart like marav-mtart,
         maktx like marav-maktx,
         end of itab.
    *DATA ITAB LIKE STANDARD TABLE OF MARAV WITH HEADER LINE .
    select * from ztab2 into corresponding fields of table t_ztab2 .
    select amatnr amaktx amtart ddwerk d~prat1 into table t_mara
    from MARAV as a inner join mvke as d on amatnr eq dmatnr
    for all entries in t_ztab2 where a~mtart eq t_ztab2-mtart
    and d~dwerk = t_ztab2-dwerks.
    select amatnr amaktx amtart ddwerk d~prat1 into table itab
    from MARAV as a inner join mvke as d on amatnr eq dmatnr
    where a~mtart = 'Z030'.
    SORT T_MARA BY MATNR.
    Select matnr LIFNR from EINA into corresponding fields of table t_EINA
    for all entries in t_MARA Where matnr = t_MARA-matnr.
    *select * from marav into corresponding fields of table ITAB  where mtart = 'Z030'.
    SORT T_EINA BY MATNR.
    loop at t_EINA.
    Read table t_MARA with key matnr = t_EINA-matnr.
    move t_mara-mtart to t_eina-mtart.
    move t_mara-matnr to t_eina-matnr.
    move t_mara-dwerks to t_eina-dwerk.
    move t_mara-maktx to t_eina-maktx.
    modify t_eina transporting mtart matnr dwerk maktx.
    endloop.
    <u></u>

    instead of modifying just use append t_eina.

  • I have Mail with 5 accounts. The problem is that one of them is constantly active, that is with the moving wheel showing a search for new mails.

    I have Mail with 5 accounts. The problem is that one of them is constantly active, that is, with the moving wheel showing a search for new mails, while the others accounts are not active.

    hello
    Would not take the moving wheel as indication that account is active. There could be other reasons for it. From the menu Window, choose 'connection doctor' that will show you how each account has connected. Next, from the Window menu choose 'activity veiwer' that will show you exactly what activity is causing the moving wheel.

  • How do I add more than one column to a table using SQL?

    Hi
    I need to add 3 columns to a table using SQL
    the syntax
    "ALTER TABLE TEST ADD COLUMN newcol1 float";
    works fine - for adding one coumn only.
    For multiple columns I tried various permutations along the lines of
    "ALTER TABLE TEST ADD (COLUMN newcol01 float, COLUMN new2 float,COLUMN new3 float)";
    "ALTER TABLE TIPSTEST ADD COLUMN new1 float"
    "ALTER TABLE TIPSTEST ADD COLUMN new2 float"
    "ALTER TABLE TIPSTEST ADD COLUMN new3 float"
    etc., but this doesn't work.
    From a web search it sounds like SQL can only add one column at a time.
    I have a workaround : create intermediate temporary tables , copying data and adding
    one column at each stage. It seems a fairly awkward way of programming though.
    Am I missing something simple : is there a way to add multiple columns in one go?
    Thanks

    OK : solved an underlying problem with this one myself
    for the code
    String createString;
    createString =  "select COFFEES.* INTO NEWCOFFEES FROM COFFEES"; // example
              Statement stmt;
              try {
                   stmt = a_Globals.database1Connection.createStatement();
                          stmt.executeUpdate(createString);
                   stmt.close();
                   a_Globals.database1Connection.close();
              } catch(SQLException ex) {
                   System.err.println("SQLException: " + ex.getMessage());
              }                    commenting out the line:
    a_Globals.database1Connection.close();
    Allowed the subsequent SQL statement(s) to work OK. Looks like this was the cause of several
    difficulties, preventing me doing several SQL instructions in turn.
    Thanks for the responses.
    Mike2z

  • Moving one file in unix directory path into another unix directory path

    Hi All,
    I have issue regarding moving one file in one unix directory into another unix directory.
    Actual requirement is as below:
    I have two unix directories 1. /var/opt/working 2. /var/opt/error
    Now i have a file [ FILE1 ] in [/var/opt/working] working directory.
    In code checking i found it is error file now in my abap i want to move/send this file [FILE1] to another unix directory [/var/opt/error].
    How can solve this issue in ABAP code.
    Can anybody solve this issue!
    Thanks,
    Deep.

    1. Open the 1st file using Open dataset for input /var/opt/working
    2. Get the data into internal table
    3. Open the 2nd file using Open dataset for output /var/opt/error
    4. TRANSFER the data from the internal table to 2nd file
    5. CLOSE 2nd file
    6. Close 1st file
    7. Delete 1st file using DELETE DATASET dsn.

  • Chart - problem with realize one of the function under CR XI

    Post Author: mrowa
    CA Forum: Charts and Graphs
    Hello,
    I have
    problem with realize one of the function under CR XI. I would be persuade if
    any of us would like to help me.
    1)   
    1) From
    database (basically from one table), I take data to make report. Each of record
    have appropriate fields:
    dteData
    intYear
    intMonth
    intDate
    2)   
    2) I
    want to realized comparison data from two or more periods of time on one chart
    and in one table. For easily explanation I will describe problem on two
    periods.For instance, user want to display and compare
    on chart date (type monthly -sum data of each month) from 2007.02 u2013 2007.05
    with date from 2006.03 u2013 2006.06. So we compare month 2007.02 with 2006.03;
    2007.03 with 2006.04; 2007.04 with 2006.05; 2007.05 with 2006.06
    On char I would like to display bars with comparison
    of months.
    Problem is that I donu2019t know how to write
    something similar. I can use one period without any problems, but two and mores
    I canu2019t realized.
    Detail description:
    I passed
    two parameters two report:
    {?from}, {?to} u2013for first period
    {?offset}, it means {?from}+{?offset},
    {?to}+{?offset}  - for second period
    On axis Y I have Sum(intDate);On
    X (year + month). But on each value x( example 20007.02) I need to have
    two values (bars). Value for standard period and offset.
    For example for x=2007.02, I need
    two bars one equal 2007.02 and second with offset u2013 2006.03
    Movement to next value (bar) is
    persuade by fields {data.rok}&{data.month} first or second period. This is
    combination of two elements year&month defined under Formula. Problem
    persist in that both period has different year.month and here problem starts once
    again. I donu2019t know how to solve it. I have found out one solution but it
    limits user only for two periods (I want to compare more).
    My idea for compare only two
    periods:
    I make one query in CR for one
    period and second query for second period.
    Firs query:
    "SELECT 
           year ,
          month
    Second query
    "SELECT 
           year + FLOOR({month + offset} % 13),
          {month + offset} % 13
    Then in CR I connect two periods and
    make u201Ctableu201D (results of queries) with JOIN on fields year and month.
    This solution is not functional,
    because I need to make reports for days and hours as well. In this solution I
    canu2019t use (%31), because not all months has 31 days.
    I use CR in WEB app made in Visual
    Studio 2005. Maybe from aspx we can manipulate with date to get exact solution,
    and solve problem with SELECT.
    Hope my description clearly
    describe problem and someone will be able to help me. I would be thankful.

    I have had similar problem before.
    Because I had too many data, the legend would not display all the data. Also the chart would not display all the data. But I was able to find a work around.
    In your case, Right click on the Legend text and click on Format Legend Entry.
    Change the font of the legend to 4 (which is the minimum). This may work.
    If you are also having problem with data labels, you could change the font size of the data labels.
    Hope this helps.
    Thank you.

  • How do I extend one line of a table to two pages?

    I have the problem, that I want a lot of text in one line of the table. Since I have a lot of long and in between short lines, I get a lot of free space on my print-outs as the lines with a lot of text are all put on the next page. And the maximum size of one line is one page. I know from MSword that the lines can be carried to the next page. Is that possible with pages, too?
    I'd love to hear an answer!
    Thanks,
    Lukas

    You split the line into two .
    As it was explained here a lot of times, a row is an object which isn't allowed to cross pages boundaries.
    Yvan KOENIG (VALLAURIS, France) jeudi 28 avril 2011 15:20:35

  • Events moved one hour forward in the Iphone calendar

    Hi,
    I have Iphone 3gs, 3.1.3.
    Windows 7 and Office 2007.
    In both of them I have marked the V on change the clock automatecly
    The time in the Iphone and my PC are the same time.
    I think that since I moved the clock I have this problem.
    1. All the events in the Iphone calendar moved one hour forward.
    For example event that starts at 9 in the outlook will start at 10 at the Iphone.
    2. All the events for full day in the iphone are one day backward.
    For example event that is in all munday in the outlook, is in all sunday.
    I tried to delete the event are sync.
    I tried to force rewrite all the calendar information in the next sync
    I tried to unmark the V in the automatecly clock change.
    Can someone helps me?
    Thanks
    Elad

    Under the setting app in on the iPhone, go to the mail, contacts and calendar heading. At the very bottom of the calendar settings, do you have time zone support turned on?

  • Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    You can download the trial version (http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html) to convert the PDF back to WORD if you do not have the original. The conversion may not be perfect, but it is typically better than starting from scratch. You may be lucky and get a good result. You might check the settings (in the save screen) to try retain format versus retain text flow. The format version can be a pain to edit since it creates a bunch of text boxes. The flow version may require you to reformat in WORD, but you likely would want to do that anyway.

  • 2 thunderbolt displays worked fine daisy chained, moved one to work in other room, now only one will work.  both work independantly or both plugged into my macbook pro.

    I have 2 thunderbolt displays and have had them daisy chained for months where I only would plug one into my macbook pro 15" retina and both displays have worked great.  The other day I moved one of them into the conference room, connected also a HDMI cord to a projector to do some work with staff on software design. 
    I brought my thunderbolt back into my office and plugged it back into the other thunderbolt dispay, then plugged the other display back into my macbook and started it up and now I can only get one to work daisy chained.  They both work great independantly or if both of them are plugged into my macbook pro, but not daisy chained any longer.
    Is there a setting I need to look at to maybe reset so that my macbook pro will use both thunderbolt displays daisy chained?
    Thanks for anyones advice and sharing any similar issues and how you fixed the issue.

    Hi there,
    The first thing that I would recomend is resetting the PRAM on your portable.
    OS X Mountain Lion: Reset your computer’s PRAM
    http://support.apple.com/kb/ph11243
    If the issues persist, then you may need to force the device to detect displays.
    OS X Mountain Lion: About the Display pane of System Preferences
    http://support.apple.com/kb/ht5369
    How can I detect displays?
    If the detect displays option is not available, hold down the Option key while you are in the Display pane.
    - Griff W.

  • Long List of Problems and no one will help!!!

    I have had NOTHING but problems with this phone since the sales clerk talked me into buying it.  I've had it for a little over a year and a half.  It's had "Software" issues out the rear and it's been replaced and still has the very same issues.  YET I can't swap it out with another phone without paying through the nose for a new one.  Verizon sold me a phone that does not work completely.  Verizon keeps replacing it with the same phone and numerous Verizon employees keep telling me that this phone has MANY known issues, LOTS of complaints.  Yet I am still stuck with a phone that is barely useable.  I am so disgusted right now.
    Here is just a SMALL sampling of issues with my phone and I am still being denied a new phone unless I want to pay $600. I have 4 weeks until I can "Upgrade"  and I still can't even get an early upgrade.  I have been VERY patient waiting for my "TWO YEARS" to be "UP" so I can upgrade without being robbed.  This in addition to suffering through the Black Berry Storm that SUCKED and was replaced 7 times in a year and a half period due to "Software issues"  I will admit, two of those replacements were my fault - one got wet and the other was stolen, but still, 5 replacements is not acceptable.  Then I went to buy my new phone (Glory day for me) then I get talked into this Fascinate and it's just as bad as the Storm was, if not worse.  I can't seem to win.  I have decided to go for an iPhone.
    Here is my list of problems and NO one can fix them, no one can help, I get told that this is a known problem yet Verizon won't take care of their customers that got screwed by this phone.  I've been a loyal customer for 7 years. I love the actual cellular service, I rarely get dropped calls, which is why I stick with verizon, but I am seriously considering jumping ship, because even though I'm loyal, I buy my phones through them, I can't get support.
    The SHORT LIST of problems that makes this phone 100% unacceptable:
    1)  Can't text 3/4 of the time because a little grey box pops up in the text box and it won't accept anything I type into it.
    2)  Have not been able to send picture emails for several months now - Verizon can't figure out why.  My husband misses out on a lot of pics of our kids, I like to text him fun pics of them doing things or when we are on vacation without him.
    3) phone freezes up on a regular basis.  Several times a day.  I have to pull the battery out and reboot.
    4)  Sometimes I can't answer the phone when it rings - the phone rings and when I slide the puzzle piece to answer the phone, it freezes and continues to ring long after the person has hung up and the only way to get it to stop ringing is to pull the battery out and reboot the whole thing.
    5)  a LOT of times, people will call my phone and it won't ring - it goes straight to voicemail.  I have had people call me when they are sitting right next to me and it doesn't ring (and yes, I've checked the volume, it's on, the phone is on) sometimes though, it rings and I actually can answer it, but lately, it's becoming more and more of a problem being able to receive and actually be able to answer them
    6)  I can't use Facebook.  It takes forever to actually get into FB and when I do, it only shows about 5 posts before it freezes.  A few weeks ago, I could post to FB but only here and there, now I can't post from FB from my phone at all.  I know that's likely due to the APP - but FB on this phone has always sucked. 
    7)  At home, even when I standing next to my wireless router, it says I have "Lost Signal", yet all of my other wireless devices work from 5400 square feet away, on the other side of the house, upstairs.  Even when I'm standing in the Verizon store, it says "Internet Connection Lost"  It is so frustrating.  I am a busy mom and I have 5 minuts to myself and I can't even check FB or browse on the internet and yes, I have checked, all of my connections are set up correctly.  My wireless is enabled on my phone.  But it still doesn't work.
    8)  Email - it's constantly refreshing, even though I have it set to only refresh once and hour.  I think I even changed it to once a day.  Instead, that little "refresh wheel" spins constantly on my phone and while this little refresh wheel spins, I can't read email, I can't write email and I can't send email.  When it finally stops and I open an email and the try to respond and write back, that little refresh wheel starts spinning again and then I have to wait until i can get home to a real computer to actually read & Respond to email. 
    9)  Calendar inputs the wrong time.  I had a dentist appt at 9:30am.  I set it as 9:30am.  When I saved it, it changed it to 10:40am.  I went back into the calendar function to change it thinking I had input the wrong time, but no, when I went to edit it, my 9:30 time was set, I hit save again and saving it changed it to 10:40.  WTH?  I can't even rely on the calendar function.
    10)  Two weeks ago, I woke up, looked at my clock, which I also rely on as an alarm clock.  The room was dark.  The clock said 5:30am.  But for some reason, it felt later.  Sure enough, I get up, check my husbands alarm clock, it's 7:30am.  I am so thankful I had a gut feeling and looked at another clock.  I did not change my time zone on my phone (in fact, I went looking for Time change stuff and I couldn't even find it.  Then two hours later, the phone went back to normal time all on it's own.
    11)  Text messages occasionally pop up and it tells me it's from Jay Smith (Not real name) and when I open the actual text, it's from Sarah Jenkins (not real name)  WTH?  How am I supposed to rely on text if its confused itself?
    12)  Phone shuts itself off all the time, several times a day.  All of a sudden I will hear the musical tone of my phone shutting down and then at some point, it will turn itself back on.  When I turn it back on, it resends out old text messages (See below)
    13)  Text message randomly sends out old text messages to people that I sent text messages out to months ago.  So the people will text me back saying "WTHeck is this about?" and I look and it's an old text message I sent them a month or two ago.  It usually does this when the phone freezes, shuts itself down and restarts.  I have found out that IF I delete my text messages timely, then it won't resend out any old text messages, but I am not very good about deleting stuff and often times, text message contains some important information that I haven't yet had the time to copy down and save.  I shouldn't HAVE to delete my text messages so it doesn't randomly send out text messages to people.
    14)  Often times, I will send out a text message and it will fail to send the message and I get a text message saying my text message has failed. 
    I could go on, but I think that will give sufficient evidence that this phone stinks and that Verizon should give people owning this phone a chance to get a new phone without raping their wallets.
    Maybe someone here will listen?  Because no one at the store does...  I pay for Verizon service that I barely even get to use because my phone doesn't perform like the guy who sold it to me told me it would.
    CAN YOU HEAR ME NOW????

      About the only thing I can say is to keep going to Verizon, or calling customer service to get them to look at the issues. I talked to 1 rep that told me to dial either 4# symbols, or 4* symbols (Can't remember which it was) after I got the VM message but did not have the phone ring, so it would mark my account record and they could search and troubleshoot the issue.
      As far as your upgrade, I think you have done the right thing so far, and that is signing up on this forum, that way you can look at the different phone forums and see what issues that people are having. Talking to people that have the phone is a great way to find out what the issues are. Verizon Sales reps will only sell you the latest and greatest, or if there is something that they are being told to push to get out of stock.
      Going with an iPhone is ok, just make sure it is correct for you, because like you said earlier, once it is done, it is done and you are stuck with it for 2 years. I had a friend who made a knee-jerk reaction to a bad phone, and did the same thing. They regretted it after 6 months. I am not saying the iPhone will be bad for you, just make sure you do your homework.

  • My mouse scrolls shows each line moving up instead of moving one line at a time annoying

    Since downloading firefox 3.6 when I scroll down a page it shows each line moving up instead of just moving one line up its very annoying

    It could be that there is not enough memory in the printer or the print server to hold the entire document while printing. The printer gets Postscript files, which are larger than the original document. Also, if you are doing multiple copies, if you collate the pages, that takes more memory than printing each page multiple times.

  • MacBook 2006 w/Snow Leopard; HP B210 printer; print problem; error message: One or more components of the HP printing software are corrupted or missing. Reinstalled software but Mac will not cause printer to print.

    ? MacBook 2006 w/Snow Leopard; HP B210 printer; print problem; error message: "One or more components of the HP printing software are corrupted or missing..." Reinstalled software but Mac will not cause printer to print.  My MacBook Pro works fine with same wireless printer.

    Hi ArielAce , thanks for getting back to me!
    I would recommend downloading and running the HP Print and Scan Doctor.
    Please keep me posted!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

Maybe you are looking for

  • What size external hard drive should I purchase

    What size external hard drive should I purchase?  I'm not tech savvy, so please speak slowly.  I'm looking at OWC Mini Stack Classic to match my  older Mac Mini.  Do I need 500 GB, 1 TB or more?      Plus, I have to add memory to upgrade to Snow Leop

  • Is a viewquest compatable with ipod classic 120 gb

    if so why does my viewquest say it is disconnected when it is firmly sitting in the dock?

  • Bind variable only can take valor one time?

    Can you help me about the different results in "SQL Developer" and "SQL*Plus" with bind variable's management? I execute next code. My table emp have 14 records.var n_fetch number; var n_rowcount number; declare cursor S is select emp_no from emp; v_

  • Top 5 Performance Counters for SSAS Multidimentional

    I have SharePoint 2013 and SQL Server 2014 based reporting solution on Azure. I have dedicated VM for SSAS. I would like to collect performance data (CPU, RAM etc...) What are top 5 most important performance counter for SSAS? (PERFMON) Kenny_I

  • Different order type to use for iStore

    Hi, We have 2 sites as per OU1 and OU2. Set ASO: Default Order Type to IBE_CUSTOMER_1, IBE_CUSTOMER_2. Now if we want to use more than this order type what we need to do apart from creation of new responsibility. Thanks, Ashish