How to make balance

my data :
1,2,3,4,5,6,7
I want to get balance like this :
amt balance
1 1
2 3
3 6
4 10
5 15
6 21
7 28
balance = balance + previous record
how to make it using sql ? anybady can help?
I need it in report.

hi
if u run in SQL then use this query
SELECT r1.run_date, r1.run_value, sum(r2.run_value) Running_Total
     FROM Run_Total r1, Run_Total r2
     WHERE r2.run_date <= r1.run_date
     GROUP BY r1.run_date, r1.run_value
     ORDER BY r1.run_date
Rizwan

Similar Messages

  • How to make balance in reconcilation account

    Hi gurus
    When I am posting JV in FB50 by debiting to depreciation asset retirement account and crediting to asset account which is reconciliation account its giving error as below
    Account xxxxx in company code xxxx cannot be directly posted to
    Message no F5354
    I want to make zero balance on this accounts as asset account is closed in the company code.     
    Please let me know how can i make them zero
    Regards
    Sunitha
    Edited by: sunitha reddy on Mar 18, 2010 3:26 PM

    Hi,
    The error F5354 is not an unknown error:                               
    Please check your account determination in AO90 as this error is a     
    typical customizing error.                                                                               
    Please be aware, that certain accounts cannot be reconciliation        
    accounts but are 'normal' GL accounts. That is an important reason why 
    this error does show.                                                                               
    Since the upgrade, the system checks now some account controls and that
    is why you get the error message now (even if it was working before    
    with the same customizing and even if this account is not directly used
    in the current transaction).                                                                               
    You may want to review the FI-AA consistency report re G/L Accounts:   
    IMG Path:                                                              
    FI-AA -> Preparing for Production Startup -> Check Consistency         
    -> Consistency Report: Asset G/L Accounts (tx OAK4 = program RACKONT1),
    here you will find the same error messages as in AFAB.                                                                               
    As per note 7595 indicates:                                                                               
    The balance sheet accounts and the accumulated depreciation accounts   
    must be characterized as reconciliation accounts of account type 'A'.  
    Down payment account KTANZA must also be a reconciliation account      
    of account type 'A'. The clearing account for down payments KTANZG     
    must not be set up as a reconciliation account.                                                                               
    Error message F5345 indicates that's you are using reconciliation      
    accounts in a depr. area which doesn't post online (T093-BUHBKT > '1') 
    So, if the accumulated depreciation account is a reconciliation account
    it is fine. The problem must be found somewhere else. Maybe the account
    is also used for a concept where non-reconciliation accounts are needed
    (for example and offsetting account or a clearing account).                                                                               
    Please check table T095 in the account determination for revaluation.  
    The field KTAUFW is defined like KTANSW with the reconcilation account.
    That is correct as they are balance sheet accounts.                                                                               
    But the contra account must not be the same, because when posting      
    revaluation the system try to post                                     
    with posting key 70/75 KTAUFW against 50/40 KTAUFG.                    
    The problem is that reconciliation account can only be posted          
    with posting key 70 / 75.                                              
    So you have to change the contra accounts.                                                                               
    Regards Bernhard

  • I have a $10 gift card balance on my Apple ID but when I try to rent a movie it wants me to use my debit card. How can Make it use the iTunes credit?

    I have a $10 gift card balance on my Apple ID but when I try to rent a movie it wants me to use my debit card. How can Make it use the iTunes credit?

    Hi ...
    Select None for payment method > iTunes Store: Changing account information
    Be aware, an auto renewing subsciption by require a credit card.

  • How to make IIS plug-in do STICKY load balancing

    There are two classes of scalable services: pure and sticky. A pure service
    is one where any instance of the application can respond to client requests.
    A sticky service is one where a client sends its requests to the same
    instance; those requests are not redirected to other instances.
    It seems to me that weblogic IIS proxy plug-in does not support the sticky
    load balancing.
    Could someone give me some information on how to make the proxy sticky?
    Is there configuration parameters for this?
    Thanks,
    -Lei

    I set the cluster.
    It seems to me that there is some problem with the Set-Cookie mechanism of
    the plug-in.
    Sometime it set the cookie in my browser, sometime it is not.
    Even from the wlproxy.log, I could set something like
    Fri Aug 03 17:56:12 2001 Hdrs to
    client:[Set-Cookie]=[AribaNode=O2tII92qHlP2tpZjUV0m5ued1s6X028cUPu24QcGj1Q25
    AE5VXOd!1782877802312707887!ltang.ariba.com!8001!7002; domain=ariba.com;
    path=/]
    But the cookie is not set in my browser, what might be wrong here?
    Thanks,
    -Lei
    "Eric Gross" <[email protected]> wrote in message
    news:[email protected]...
    I do believe that this will not work since if clustering is not enabled, a
    cookie will not be set on the browser that contains the primary and
    secondary server.
    You are specifying two different ports in your servers. You need to use
    clustering in order to get this functionality with the plugin.Furthermore,
    you will achieve fail-over.
    Regards,
    Eric
    "Lei Tang" <[email protected]> wrote in message
    news:[email protected]...
    Here is what I did for the examples under the bea sample directory.
    I put the following in test1/WEB-INF/weblogic.xml
    <session-descriptor>
    <session-param>
    <param-name> CookieDomain </param-name>
    <param-value> *.ariba.com </param-value>
    </session-param>
    <session-param>
    <param-name> CookieName </param-name>
    <param-value> AribaNode </param-value>
    </session-param>
    <session-param>
    <param-name> CookiePath </param-name>
    <param-value> /test1 </param-value>
    </session-param>
    </session-descriptor>
    </weblogic-web-app>
    I add the following in iisproxy.ini
    # This file contains initialization name/value pairs
    # for the IIS/WebLogic plug-in.
    WebLogicCluster=ltang.ariba.com:8001,achu.ariba.com:7001
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Debug=ALL
    WLLogFile=c:\tmp\wlproxy.log
    WlForwardPath=/test1
    DynamicServerList=OFF
    CookieName=AribaNode
    I use SesssionServlet.java as an example
    When I involk http://proxy/test1/SessionServlet, I always get 1
    if I use
    http://proxy/test1/SessionServlet:AribaNode=................................
    I could see the session becomes sticky.
    If I do not want to use URL rewriting, what should I do in order to makethe
    session STICKY
    for this example.
    Thanks,
    -Lei
    "Eric Gross" <[email protected]> wrote in message
    news:[email protected]...
    If you leave the CookieName untouched on the WebLogic side, then there
    should be no reason to make the change in the plug-in.
    But yes, you need to make sure the cookie names are the same.
    Regards,
    Eric
    "Mark Vaughn" <[email protected]> wrote in message
    news:[email protected]...
    Actually, you also need to make sure you set the "CookieName" in theplugin.
    That let's the plugin read the cookie set by WebLogic to determine
    who
    the
    primary and secondary servers are for that session. Otherwise, theplugin
    has no
    way of knowing if you are establishing a new session or returning to
    an
    existing
    one. The cookie will tell it if you have a current session and who
    it
    should
    send you to for continuing that session, or failing that session
    over.
    >>>>
    Eric Gross wrote:
    Without having clustering enabled, you will not get Sticky load
    balancing.
    You need to have clustering so that a cookie is sent back to the
    client
    that
    contains information about where it's session is located.
    Otherwise,
    you
    are just going to get round-robin each time.
    You can refer to the following page for more information:
    http://e-docs.beasys.com/wls/docs61/cluster/servlet.html
    Regards,
    Eric
    "Lei Tang" <[email protected]> wrote in message
    news:[email protected]...
    WebLogicCluster=machine1:7001,machine2:7001
    ConnectTimeoutSecs=20
    ConnectRetrySecs=2
    Debug=ALL
    WLLogFile=c:\tmp\wlproxy.log
    WlForwardPath=/test,/test1
    DynamicServerList=OFF
    I run two standone (Admin server) weblogic servers on machine1
    machine2.
    Then I deploy application test.war on machine1 first, then onmachine2.
    Should I make machine2 as a managed server and machine1 as an
    admi
    n
    server?
    Will this make the session sticky?
    Thanks,
    -Lei
    "Eric Gross" <[email protected]> wrote in message
    news:[email protected]...
    It would help us to know how you have iisproxy.ini configured.
    Sticky
    load
    balancing should work fine if you have the plug-in and
    WebLogic
    Server
    setup
    correctly.
    How have you setup the plug-in?
    Thanks,
    Eric
    "Lei Tang" <[email protected]> wrote in message
    news:[email protected]...
    There are two classes of scalable services: pure and sticky.
    A
    pure
    service
    is one where any instance of the application can respond to
    client
    requests.
    A sticky service is one where a client sends its requests to
    the
    same
    instance; those requests are not redirected to other
    instances.
    It seems to me that weblogic IIS proxy plug-in does notsupport
    the
    sticky
    load balancing.
    Could someone give me some information on how to make the
    proxy
    sticky?
    Is there configuration parameters for this?
    Thanks,
    -Lei
    .-. Mark Vaughn
    /V\ 7024 Corona Dr.
    // \\ North Richland Hills, TX 76180
    /( )\ [email protected]
    ^^-^^
    "Give a man a fish and you feed him for a day;
    teach him to use the Net and he won't bother you for weeks."
    Ben Woodbridge

  • How can make consolidation balance sheet

    how can make consolidation chart of account.
    Moderator: With a bit of research

    In simple terms, I would say that if you have define a group chart of accounts, you can get a consolidated report by preparing a financial statement version based on Group chart of accounts.  Define the group chart of accounts (in the same line as you define operative chart of accounts) and assign the group chart of accounts in the operative chart of accounts.  You can create GL accounts in group of chart of accounts for making entries on a consolidation base.  Once you do this while creating the GL accounts in FS00, you will have an additional field of account number in Group chart of accounts.  There you can give the GL account number created in the group chart of accounts.  So whenever you make a posting to your individual company code GL accounts, the same will also get updated in the group chart of account GL account number. 
    I hope you have got a flair of things now..  Nevertheless, by simply proceeding in this line is not enough to have a true picture of things from the group point of view.  There may be other things to consider like elimination of inter-company profits, losses, transfers, etc.  For this purpose, you will have to go for additional installations like SEM-BCS, BI, etc.

  • Need advice on how to make my website look better!

    ive made a website for a security company but im just not 100% happy with it, i dont know if it doesnt look professional enough or things need changing design wise. i am open to any ideas on how to make my website look better, i also dont mind if anyone wants to dramtically change it if their idea is better. I would just very much appreciate a review and constructive critisism and ideas for a newly designed version of the site please!
    [advertising slogan removed by host]
    Thanks!

    As a novice, some things I see: The footer has redundant, unecessary images (4 large images-for your services--REDUNDANT) odd? The text part of footer: text seems close, scrunched, have some space between heading and items, DO NOT CENTER TEXT!,
    One of the service links bought to page with SAME LARGE image on homepage-change picture, don't use same large image for 2 different pages.
    DO NOT use CONTACT US as 1 of 5 links on menubar. Do in another creative way, and/or use footer for contact. I think this looks amateurish (my opinion of course).
    If I remember, the homepage and the rest of site, have exact same page structure.--See if you can atleast change the structure of inner pages versus the homepage.
    Didn't look at enough, but..maybe...
    each of your services should be a main menu link on your menubar. I would not put contact us on menubar, and you also had another menubar link with no dropdown( of course ok, but maybe could restructure)--Also your last service (on right of menubar)---why is that one different, and not included with the other services??
    Seems like your menubar (items) structure could be reworked.--I would suggest, briefly looking at, to maybe have each service as a primary menu heading/title..YOU MAY NOT NEED A DROPDOWN MENU? Make sure if dropdown it is necessary.
    Local security should be one of your services.
    Have your footer logo, as is to left, but maybe put your footer links more to the right;;It will 'balance' the footer section
    Your top logo seems too close to your main LARGE image (Which btw, seems oddly large compared to the rest of your site?)--That LARGE top image(the same palce on every same looking page), seems too big for your page--Why doen't it line up with the rest off your page content?

  • How to make the status of a sales order complete of which PART DELIVERY

    How to make the status of a sales order complete of which PARTIAL DELIVERY has already done. <b>(Assigning rejection status not accepted)</b>

    Hi Gyana
    There is no document with me. But I can confidently say that because I am using this functionality.
    In my case I have created a Order Reason as "Short Closed". once you short close this order only the balance quantity gets rejected (provided you have already made previous delivery and PGI).
    Try it in one of your test clients if you have. Once it is short Closed it wont also show in the orders due for processing in Production.
    Also you can generate reports based on this if your customer wants to know how many order he has short closed, qty of item short closed etc.
    Try it.
    Rgds
    Sunil

  • How to make Clsuter aware EJB

              Platform: Weblogic 6.0sp2 in WINNT
              Hai,
              I have made IP loadbalancing ( The DNS Host entry swaps IP in intervals) as per
              the documentation. By Using the clsuter IP i have created a cluster entey in the
              wl 6.0 console and added two servers in the Cluster. Now i don't know how to make
              my EJB Cluster aware?. what parameters should i change in teh XML file and compilation
              option to make it cluster aware.
              Also i would like to know whether Will it be enough if i put teh same copies of
              JSP and servlets in both machine to make that too cluster aware. Will there be
              any probelm in session ?
              Regards,
              srini
              

              Hi Kumar , Lynch , Penfriend,
              Thanx for ur Quick replies .. That helped me a lot.. I am going through the examples.
              I would like to know changes that i have to make on JSP & servlets to make it
              cluster aware. I am using the IP Load balancing ( host name refers to two different
              IP at intervals ).
              Thanx.
              regards,
              srini
              Pen Friend <[email protected]> wrote:
              >Srinivasan,
              >
              >We ship a cluster example in .\samples\examples\cluster\ejb. You could
              >take a look at the deployment descriptors and try running it.
              >
              >
              >
              >Kumar Allamraju wrote:
              >
              >> By default ejb's are compiled with clustering options ON.
              >> So ejbc generates cluster aware stubs anyway. You don't need
              >> to do anything to deploy them in a cluster environment.
              >>
              >> --
              >> Kumar
              >>
              >> Srinivasan wrote:
              >>
              >>> Sir,
              >>>
              >>> (1) What option of the weblogic ejbc is required in my case. is
              >>> -clusterable
              >>> option suffice. Sir, Could you please mention which document are you
              >>> refering
              >>> too. ( I have only the cluster.pdf from BEA )
              >>>
              >>> (2) The Host name is already load balanced by teh WLBS Software.If
              >>> the host is
              >>> load balanced then will placing the same JSP and servlet in both the
              >>> servers in
              >>> cluster suffice.
              >>>
              >>> Thanks for the Help sir.
              >>>
              >>> regards,
              >>> srini
              >>>
              >>> "Lynch" <[email protected]> wrote:
              >>> >Hi,
              >>> >
              >>> >1. You need to use weblogic's ejbc to compile your ejb jar file to
              >>> generate
              >>> > the stub classes.
              >>> >2. Web cluster demands load balancing and fail-over. You need to
              >do
              >>> lots
              >>> > of work yet. Maybe you could start with the docs.
              >>> >
              >>> >Hope this helps,
              >>> >Lynch
              >>> >
              >>> >
              >>> >"Srinivasan" <[email protected]> ¼¶¼g©ó¶l¥ó
              >>> >news:[email protected]...
              >>> >>
              >>> >> Platform: Weblogic 6.0sp2 in WINNT
              >>> >>
              >>> >> Hai,
              >>> >>
              >>> >> I have made IP loadbalancing ( The DNS Host entry swaps IP in
              >>> intervals)
              >>> >as per
              >>> >> the documentation. By Using the clsuter IP i have created a
              >>> cluster
              >>> >entey
              >>> >in the
              >>> >> wl 6.0 console and added two servers in the Cluster. Now i don't
              >>> know
              >>> >how
              >>> >to make
              >>> >> my EJB Cluster aware?. what parameters should i change in teh XML
              >>> file
              >>> >and
              >>> >compilation
              >>> >> option to make it cluster aware.
              >>> >>
              >>> >> Also i would like to know whether Will it be enough if i put teh
              >>> same
              >>> >copies of
              >>> >> JSP and servlets in both machine to make that too cluster aware.
              >>> Will
              >>> >there be
              >>> >> any probelm in session ?
              >>> >>
              >>> >>
              >>> >> Regards,
              >>> >> srini
              >>> >
              >>> >
              >>
              >
              

  • How to make the delivery cost changeable after cancellation of GR?

    Create a PO (with Delivery cost), then GR (101) , then cancel the GR (102), but the delivery cost still cannot be modified eventhough the GR has been cancelled - how to make the delivery cost changeable after cancellation of GR?

    Hi
    "You are not allowed to add new delivery costs in a purchase order once goods receipt has been carried out as these would then be proposed in the invoice verification. The related posting to the clearing account for goods receipt and invoice receipt would not then balance, if no further goods receipt took place.
    After the invoice has been received successfully, it is not possible to change the delivery costs in the order. This is because information necessary for problem-free operation is no longer available for the delivery costs that have already been posted for subsequent reversals or invoices, or the operation can no longer be done without errors.
    It is also not possible to change delivery costs for stock transfers with SD shipping after goods have been successfully issued, as this can lead to errors during cancellation."
    I think you have to delete the line item and create a new line item with revised delivery conditions..
    MRao

  • How to make color tone like this?

    I'd like to find out how to make similar "color tone" effect like this:
    http://www.horror-movies.ca/watermark.php?filename=poster_THE_SITTER_2D_ORING.jpg
    I'm talking about those striking "artificial" skin tones you can see on many movie posters (or advertising/fashion posters). For example:
    http://www.impawards.com/2008/posters/curious_case_of_benjamin_button_ver3.jpg
    http://www.impawards.com/2008/posters/tropic_thunder_ver4.jpg
    http://www.impawards.com/2008/posters/twilight_ver6.jpg
    http://www.impawards.com/2008/*****_slap_ver7.html
    http://www.impawards.com/tv/posters/fringe_ver9.jpg
    http://www.impawards.com/tv/posters/dexter_ver2.jpg
    http://www.impawards.com/2008/posters/hellboy_two_ver2.jpg
    I don't know how to describe it (sorry, english is not my first language), but I like the way the color on the skin affects only certain tones. I hope you understand what I'm talking about :) I tried to play with layer blending (BW + color balance of shadows)... but I never manage to do something like this. I suppose it has to be a common technique, sice I see it on so may posters and photos. Does anybody have some advice? Thanks!

    Alan,
    The links you posted seem to suggest the effect you are after may be the result of luminance masking, perhaps coupled with a knockout layer to protect the eyes. Try this procedure:
    (a) Duplicate the background layer CTRL + J (and perhaps rename it Blur as that helps to emphasise the purpose of the new layer).
    (b) With the new Blur layer active, from the Menu bar choose Filter/Blur/Gaussian blur about 20% for starters each image may require slight variations to this amount.
    (c) Turn off the visibility of the new Blur layer and select/make active the Background layer.
    (d) Go to Channels Palette and CTRL click on the Red channel. Return to the Layers Palette. Turn visibility of new Blur layer back on and select it.
    (e) With the new Blur layer active, click the Add layer mask button at the bottom of the Layers Palette this adds the Luminosity Mask to this layer and results in seeing the Gaussian blur now only inside the lightest (50%) details of the image. Now change the Blend Mode of this layer from Normal to Overlay. If the effect seems too strong, try the Soft Light blend mode which is less severe. If you want a greater effect than Overlay delivers, try Linear Light. You can back off the effect of any of these blend modes with the Opacity slider but that would, I think, also back off the amount of Blur, which may or may not (depending upon the image) lessen the overall effect you are aiming for.
    (f) Next comes the Knockout Layer (KL) to remove the effect of these Blur and Blend Mode edits from the eyes. The KL must be on top of the Blur layer, so make the Blur layer active and then add a new transparent layer above it - CTRL + Shift + N and name it Knockout.
    (g) On the new KL, select the eyes with the Elliptical Marquee Tool (select too much rather than too little reason follows later) and fill the selection with Black ALT + Backspace (provided Foreground Colour in Tools Palette is Black). Then deselect the eyes CTRL + D.
    (h) Bring up the Layer Style dialog box (LSDB) by double clicking on the icon for the KL. In the LSDB change Knockout from None to Shallow and reduce Fill Opacity from 100 to zero % and click OK which dismisses the LSDB. That is it you have now eliminated the effects of the Blur layer on the eyes using the Black holes on the KL.
    (i) To remove any excess eye selection, you use the Eraser tool (set to about 50% hardness) and paint around the edges of the eyes with the Eraser tool what this is doing is reducing the size of the holes in the KL and bringing back the effects of the edits from the Blur layer.

  • How to load balance runbooks?

    Hi,
    Now I have successed to deploy an seccond Runbook Server in an test environment. But I have not fully understanding how the runbooks run on the primary vs standby. And I know that by default one Runbook Server can handle 50 runbooks, and how to scal out
    runbooks?
    How to load balance runbooks?
    How to fail over runbooks?
    /SaiTech

    you can change how many concurrent runbooks are allowed to run on a single runbook server. 50 is just a default value.
    you can assign a runbook to run on a specific runbook server (or more). this is the simplest way to load balance.
    runbooks will failover automatically. do note that the runbook will start all over, hence you need to put in safeguards in your runbook. word of adwise is to keep runbooks small and chain them together. This makes them easier to recover.
    Cheers,
    Anders Spælling
    Senior Consultant
    Blog:  
    Twitter:   LinkedIn:
    Please remember to 'Propose as answer' if you find a reply helpful

  • How to make skin tone like newborn baby?

    I take a photo that is a girl.
    Her skin tone is near yellow tone.
    How to make skin tone like newborn baby?
    It means: brightly, have a little pink, and translucent (I don't know how to say that...).
    I've already search this question, but my english is not good....
    I don't know which word is apportiprate....
    Hope someone can help me.
    Thank you

    In my opinion,
    * 70% of the job is getting white balance correct, since that will help baby look, in the picture, close to the same color baby was, in real life.
    * 15% is selecting a camera profile that renders colors closest to how you want.
    * 10% comes from HSL tool.
    * 5% from locals (paint to touch up color).
    Note: you may also need temp/tint locals if photo shot under mixed light: flourescent is greenish, incandescent is yellowish, flash is flash, daylight is different...
    Note: numeric values are for illustration purposes only - the point is that you don't want to go painting until you've got everything else squared away, and you don't want to be mucking with HSL until you've got a fitting camera calibration profile selected and white balance adjusted.
    Not sure what else to say, except color can be further refined (in addition to the above-mentioned) using:
    * RGB curves
    * split toning
    * ratio of saturation to vibrance
    * amount of contrast
    * shadow-tint
    and you can develop your own camera calibration profile just for baby skin if you want ;-)
    Cheers,
    Rob

  • How to make a repeated todo

    Does anyone know how to make a repeated to do like ...balance checkbook and have it repeat every three or for days...
    also is there a way to have an alarm be a text message sent to my phone...cool no?
    imac G5   Mac OS X (10.4.7)  

    I'm using GarageBand on a iPad mini 2

  • Dose any one know how to make a game simular to runescape?

    what i am talking about is i want to make a agme for my website.
    i want it to be a mulity user game where charators can interact with another. So dose anyone have any videos i can whats like a tortorial to make one or any info.
    Thank you for ur help.

    I dont know how to make a game like runescape, but to be quite honest it was runescape that got me starting. In april last year I toke the Java tutorial with the aim to create an online multiplayer role playing game. When I was done with the tutorial I posted some messages i gamecreation forums around to try and find a designer to work with. Around august last year I found him and we had a conversation about how to do it. He told me about opengl, animation techniques and alot of other stuff that day. Stuff I didnt understod the first thing about. But he told me to read up on it since it was good stuff to know if you want to make a good game.
    I toke some tutorials at NeHe's openGL site. They are not the best I have seen but they taught me the basics. after that I did something cracy. I tried to find out how to make skeletal animation work so we could use my designers skeletal animated 3d models. I wrote a parser and 3 month later I understod and implemented skeletalanimation into the engine. Btw. I use something called JOGL to access OpenGL from Java. Next step was to implement tweening, kamera and thats where I am now.
    I toke a loan im my appartment to give me untill feb. 2007 to finish something and Im working everyday on this project. Good thing is that my designer is just as devouted and has also made arrangements so he doesnt have to work for a while. Now he can use all his time rigging, animating and making textures for characters, monsters, the world and so on.
    Its looking good so far and I havent lost my motivation and lust yet, but there is a long way to a finished game.
    I still have to learn about collision detection, culling, octrees, networking and a billion other issues but I enjoy leaning and working with it.
    When thats done there will be gameplay, AI, a balanced economy system and so on to develope.
    Its a long journey, but if all this dont hit you in the stomach and if you think you have the mental stamina for it, I would say go for it. If you succeed, good for you. If not, you gave it a shot!
    Good luck!

  • I was able copy the hardrive of my old macbook from "My Passport" onto the desktop on an older iMac. but i dont know how to make my hardrive and user name be the main one since someone had used it in the past and had their info on the comp. please help!

    I recently broke my 2008 macbook. i was able to use an external hardrive to back up my data onto My Passport. I was going to buy a new computer but a friend told me sher had an older version of the iMac. (not sure how old but it doesnt have a camera if that helps) i was able to hook it up and turn it on but i ran into a few problems. 1) the "authentic" user or whatever it says is someone who previously used the computer. i added me as a user but im not sure how to make me the main user. 2) after hooking up My Passport, i was able to drag my files and copy them to the desktop.(i think i did it correctly) now, i dont know how to make my hard drive and applications and iformation the "main " info. The current apps on the iMac are super old versions of iTunes and iPhoto and such. 3) while trying to open the apps from my macbook on the iMac, it said it didnt have the right software to open these apps.
    I am so computer illiterate so someone please help!!! Also, i do not have internet in my new apartment yet so if there is a way to make this happen without using the internet that would be preferred. sorry for the horrible spelling and poorly written paragraph.
    THANK YOU!!

    You are not going to be able to run your old system from the backup on this old computer as the hardware is incompatible.
    You need to get a new computer or a refurbished one.

Maybe you are looking for

  • I dont see the SAP toolbar in Crystal Reports XI

    I installed crystal reports XI (I only have one CD) and Business Objects Enterprise. I also installed Business objects integration kit for SAP, after I opened the crystal reports from the start menu I don't see any SAP BW Add On. I don’t know why thi

  • Same problem as some others, can't install iTunes 10.6.1 on WIN 7 64-bit !

    After deleting all apple components from my system, the installer each time shows the error message, that it's not able to finish the installation cause a required program doesn't work correct. The installation on the same computer (Virtual PC WIN XP

  • How to fix error 17 ?

    When I restore my iPhone 3g with iTunes and it is finished there is a advice with the error 17. I don't know the problem. Can anyone help me?

  • The menulets in the top right corner of my screen have disappeared. What should I do?

    My brother was using my iMac today, and logged out of my account. When he did, every menulet in the top right corner of the screen disappeared besides Spotlight and the printer one. I tried to go to System Preferences and bring the menu buttons back

  • Software development S60R3

    It seems that more and more interesting tools are coming or are already here. Personally I found native Symbian language pretty simple but there are many issues which take time to learn. In the future E-series is interesting platforms for custom prog