OK - I got a really interesting question down in ABAP General and NW AppSer

This one is so interesting that I thought I'd draw a little extra attention to it here.
See:
Hang on to your hats! (shared buffer in multi-WAS/multi-update process env)
or:
Hang on to your hats! (shared buffer in multi-WAS/multi-update process env)
Any and all <i><b>informed</b></i> opinion welcome.

This is really cool: the <b>export to database</b> statement with a given key value for ID <i><b>replaces</b></i> what's already in the table for the same key value.
To see that this is true, copy the system table INDX to a custom table called ZINDX_QM (so you won't have to change the code below.)  Activate this custom table.
Then run the following code twice as follows:
1) the first time, leave the value of wa_stuff as it is declared, i.e.:
"This is some stuff"
2) the second time, change the value of wa_stuff to:
"This is some stuff - pass 2."
You'll see that the second value has replaced the first value in the custom table.
So the export to database statement actually does <b>a "replace", not an "append"</b>,  if the key value is already in the table.
REPORT  ZFOO.
type-pools: thfb.
TABLES:
  zindx_qm.
DATA:
  context_id             TYPE thfb_context_id,
  cntxt_user_dt(60)      TYPE c,
  cntxtud_s              TYPE string,
  rtrnd_hash             TYPE i,
  rtrnd_hash_n(22)       TYPE n,
  rtrnd_hash_c(22)       TYPE c,
  wa_zindx_qm            TYPE zindx_qm,
  v_chk_cnt              TYPE i,
  wa_stuff(40)           TYPE c VALUE 'This is some stuff - pass 1'.
CALL FUNCTION 'TH_GET_CONTEXT_ID'
  IMPORTING
    CONTEXT_ID       = context_id.
CONCATENATE context_id
            sy-datum
            sy-uname
       INTO cntxt_user_dt.
cntxtud_s = cntxt_user_dt.
CALL FUNCTION 'LCRDB_STRING_HASH'
  EXPORTING
    TEXT =  cntxtud_s
  IMPORTING
    HASH =  rtrnd_hash.
rtrnd_hash_n = rtrnd_hash.
rtrnd_hash_c = rtrnd_hash_n.
wa_zindx_qm-aedat = sy-datum.
wa_zindx_qm-usera = sy-uname.
wa_zindx_qm-pgmid = sy-repid.
EXPORT wa_stuff
  TO DATABASE zindx_qm(mo)
  ID rtrnd_hash_c
  FROM wa_zindx_qm.
CLEAR wa_stuff.
IMPORT wa_stuff TO wa_stuff
  FROM DATABASE zindx_qm(mo)
  ID rtrnd_hash_c.
WRITE: / wa_stuff.
Also, the second cool thing is that the "relid" (area) field of the custom table actually makes coding multiple storage statements much easier.  To see why this is so, just compare what's been commented out in the following BAdI method with what's replaced it:
method IF_EX_INSPECTIONLOT_UPDATE~CREATE_IN_UPDATE.
* 11/10: new export statements from XSQM exit
*EXPORT gt_outtab        TO DATABASE zindx_qm(tb) ID rtrnd_hash_c.
*EXPORT s7_tab_mseg      TO DATABASE zindx_qm(ms) ID rtrnd_hash_c.
*EXPORT v_cntr_recursion TO DATABASE zindx_qm(rc) ID rtrnd_hash_c.
* 11/10 - original decs/imports before switch to database exports from shared buffer exports
*v_memkey(60)      TYPE c,
*v_memkey2(64)     TYPE c,
*v_memkey3(65)     TYPE c,
*v_memkey4(65)     TYPE c,
*v_memkey5(65)     TYPE c,
*v_memkey6(65)     TYPE c,
*IMPORT gt_outtab        TO gt_outtab        FROM SHARED BUFFER indx(st) ID v_memkey.  now tb
*IMPORT s7_tab_mseg      TO s7_tab_mseg      FROM SHARED BUFFER indx(st) ID v_memkey2. now ms
*IMPORT v_cntr_recursion TO v_cntr_recursion FROM SHARED BUFFER indx(st) ID v_memkey3. now rc
*IMPORT v_do_exit        TO v_do_exit        FROM SHARED BUFFER indx(st) ID v_memkey4. now de
*IMPORT wa_zzqa02        TO wa_zzqa02        FROM SHARED BUFFER indx(st) ID v_memkey5. now wz
*IMPORT i_zzqa02         TO i_zzqa02         FROM SHARED BUFFER indx(st) ID v_memkey6. now iz
* for context id typing
TYPE-POOLS:
  thfb.
DATA:
  context_id             TYPE thfb_context_id,
  cntxt_user_dt(60)      TYPE c,
  cntxtud_s              TYPE string,
  rtrnd_hash             TYPE i,
  rtrnd_hash_n(22)       TYPE n,
  rtrnd_hash_c(22)       TYPE c,
  wa_zindx_qm            TYPE zindx_qm,
  v_chk_cnt              TYPE i.
DATA:
  v_do_exit         TYPE c,
  v_cntr_recursion  TYPE i,
  v_itab_cnt        TYPE i,
  v_index           TYPE i,
  v_mapl_cnt        TYPe i.
DATA:
  s_qals            TYPE qals,
  s7_tab_mseg       TYPE STANDARD TABLE OF mseg,
  wa_mseg           TYPE mseg,
  gt_outtab         TYPE STANDARD TABLE OF zzmseg_qm_2007,
  wa_zzqm           TYPE zzmseg_qm_2007,
  wa_zzqa02         TYPE zzqa02_prueflos,
  i_zzqa02          TYPE STANDARD TABLE of zzqa02_prueflos,
  wa_zqm_lottrck    TYPE zqm_lottrck,
  wa_mapl TYPE mapl,
  v_mtart           TYPE mtart,
  v_qmatv           TYPE qmatv.
DATA:
  v_cnt_wyt3        TYPE i,
  v_debug           TYPE i.
  CALL FUNCTION 'TH_GET_CONTEXT_ID'
    IMPORTING
    CONTEXT_ID       = context_id.
  CONCATENATE context_id
              sy-datum
              sy-uname
         INTO cntxt_user_dt.
  cntxtud_s = cntxt_user_dt.
  CALL FUNCTION 'LCRDB_STRING_HASH'
    EXPORTING
      TEXT =  cntxtud_s
    IMPORTING
      HASH =  rtrnd_hash.
  rtrnd_hash_n = rtrnd_hash.
  rtrnd_hash_c = rtrnd_hash_n.
*  CONCATENATE 'DEXIT'
*               sy-uname
*               sy-datum
*               context_id
*          INTO v_memkey4.
*  IMPORT v_do_exit TO v_do_exit FROM SHARED BUFFER indx(st) ID v_memkey4.
  IMPORT v_do_exit TO v_do_exit
    FROM DATABASE zindx_qm(de)
    ID rtrnd_hash_c.
*  CONCATENATE 'CRCSN'
*              sy-uname
*              sy-datum
*              context_id
*         INTO v_memkey3.
*  IMPORT v_cntr_recursion TO v_cntr_recursion FROM SHARED BUFFER indx(st) ID v_memkey3.
  IMPORT v_cntr_recursion TO v_cntr_recursion
    FROM DATABASE zindx_qm(rc)
    ID rtrnd_hash_c.
*  CONCATENATE sy-uname
*              sy-datum
*              context_id
*         INTO v_memkey.
*  IMPORT gt_outtab TO gt_outtab FROM SHARED BUFFER indx(st) ID v_memkey.
  IMPORT gt_outtab TO gt_outtab
    FROM DATABASE zindx_qm(tb)
    ID rtrnd_hash_c.
  DESCRIBE TABLE gt_outtab LINES v_itab_cnt.
  IF v_do_exit = 'N'.
    v_do_exit = 'Y'.
*    EXPORT v_do_exit FROM v_do_exit TO SHARED BUFFER indx(st) ID v_memkey4.
    EXPORT v_do_exit FROM v_do_exit TO DATABASE zindx_qm(de) ID rtrnd_hash_c.
*    CONCATENATE 'SQALS'
*                sy-uname
*                sy-datum
*                context_id
*           INTO v_memkey5.
*    IMPORT wa_zzqa02 TO wa_zzqa02 FROM SHARED BUFFER indx(st) ID v_memkey5.
    IMPORT wa_zzqa02 TO wa_zzqa02
      FROM DATABASE zindx_qm(wz)
      ID rtrnd_hash_c.
    IF v_cntr_recursion < v_itab_cnt.
*    CONCATENATE 'TQALS'
*                sy-uname
*                sy-datum
*                context_id
*           INTO v_memkey6.
*      IMPORT i_zzqa02 TO i_zzqa02 FROM SHARED BUFFER indx(st) ID v_memkey6.
      IMPORT i_zzqa02 TO i_zzqa02
        FROM DATABASE zindx_qm(iz)
        ID rtrnd_hash_c.
    ENDIF.
    APPEND wa_zzqa02 TO i_zzqa02.
*    EXPORT i_zzqa02 FROM i_zzqa02 TO SHARED BUFFER indx(st) ID v_memkey6.
    EXPORT i_zzqa02 FROM i_zzqa02 TO DATABASE zindx_qm(iz) ID rtrnd_hash_c.
    IF v_cntr_recursion = 0.
      CALL FUNCTION 'ZZQA02_ASSIGN_BDC' IN BACKGROUND TASK.
    ENDIF.
    EXIT.
  ENDIF.
*  CONCATENATE 'MSEG'
*              sy-uname
*              sy-datum
*              context_id
*         INTO v_memkey2.
*  IMPORT s7_tab_mseg TO s7_tab_mseg FROM SHARED BUFFER indx(st) ID v_memkey2.
  IMPORT s7_tab_mseg TO s7_tab_mseg
    FROM DATABASE zindx_qm(ms)
    ID rtrnd_hash_c.
  v_index = v_itab_cnt - v_cntr_recursion + 1.
  READ TABLE gt_outtab INTO wa_zzqm INDEX v_index.
  READ TABLE s7_tab_mseg INTO wa_mseg INDEX v_index.
  IF    wa_mseg-bwart <> '101'
    AND wa_mseg-bwart <> '103'.
    EXIT.
  ENDIF.
  IF  wa_mseg-werks <> '2000'.
    EXIT.
  ENDIF.
  SELECT
  SINGLE mtart
    FROM mara
    INTO v_mtart
   WHERE matnr = wa_mseg-matnr.
  SELECT
  SINGLE qmatv
   FROM  marc
   INTO  v_qmatv
  WHERE  matnr = wa_mseg-matnr
    AND  werks = wa_mseg-werks.
  IF    v_mtart <> 'ROH'
    AND v_qmatv <> 'X'.
    EXIT.
  ENDIF.
  s_qals = insplot.
*  v_lifnr_save = s_qals-lifnr.
  CALL FUNCTION 'QPBU_LOT_DELETE'
     EXPORTING
     I_QALS        = s_qals.
   s_qals-lifnr   = wa_zzqm-zzlifnr.
   s_qals-pplverw = '5'.
   s_qals-stat19  = 'X'.
  SELECT
  SINGLE plnty
         plnnr
         plnal
         zkriz
         zaehl
    FROM mapl
    INTO (s_qals-plnty,
          s_qals-plnnr,
          s_qals-plnal,
          s_qals-zkriz,
          s_qals-zaehl)
   WHERE matnr = wa_mseg-matnr
     AND werks = wa_mseg-werks
     AND lifnr = wa_zzqm-zzlifnr.
  v_do_exit = 'N'.
*  EXPORT v_do_exit FROM v_do_exit TO SHARED BUFFER indx(st) ID v_memkey4.
  EXPORT v_do_exit FROM v_do_exit TO DATABASE zindx_qm(de) ID rtrnd_hash_c.
  v_cntr_recursion = v_cntr_recursion - 1.
*  EXPORT v_cntr_recursion FROM v_cntr_recursion TO SHARED BUFFER indx(st) ID v_memkey3.
  EXPORT v_cntr_recursion FROM v_cntr_recursion TO DATABASE zindx_qm(rc) ID rtrnd_hash_c.
  wa_zzqa02-prueflos = s_qals-prueflos.
*  CONCATENATE 'SQALS'
*              sy-uname
*              sy-datum
*              context_id
*         INTO v_memkey5.
*  EXPORT wa_zzqa02 FROM wa_zzqa02 TO SHARED BUFFER indx(st) ID v_memkey5.
  EXPORT wa_zzqa02 FROM wa_zzqa02 TO DATABASE zindx_qm(wz) ID rtrnd_hash_c.
  SELECT COUNT( * )
    FROM mapl
    INTO v_mapl_cnt
   WHERE matnr = wa_mseg-matnr
     AND werks = wa_mseg-werks
     AND plnty = 'Q'
     AND plnnr <> '99999999'.
  IF v_mapl_cnt = 1.
    wa_mapl-matnr = wa_mseg-matnr.
    wa_mapl-werks = wa_mseg-werks.
    wa_mapl-plnty = 'Q'.
    wa_mapl-plnnr = '99999999'.
    wa_mapl-plnal = '01'.
    wa_mapl-zkriz = '0000001'.
    wa_mapl-zaehl = '00000001'.
    wa_mapl-lifnr = 'ZZZZZZZZZZ'.
    wa_mapl-datuv = sy-datum.
    INSERT INTO mapl VALUES wa_mapl.
  ENDIF.
  CALL FUNCTION 'QPBU_LOT_INSERT'
     EXPORTING
       QALS_NEW       = s_qals.
  IF wa_zzqm-zzltno IS INITIAL.
    EXIT.
  ENDIF.
  wa_zqm_lottrck-zzltno   = wa_zzqm-zzltno.
  wa_zqm_lottrck-werk     = wa_mseg-werks.
  wa_zqm_lottrck-prueflos = s_qals-prueflos.
  wa_zqm_lottrck-mblnr    = s_qals-mblnr.
  wa_zqm_lottrck-mjahr    = s_qals-mjahr.
  wa_zqm_lottrck-zeile    = s_qals-zeile.
  INSERT
    INTO zqm_lottrck
  VALUES wa_zqm_lottrck.
ENDMETHOD.

Similar Messages

  • HT201415 I just got an iPhone 4 passed down to me. A few questions?

    I had an iPhone 4 passed down to me. I read online that you can not use prepaid phone cards on the iPhone 4. Is this true? Also, I'm pretty sure the SIM card is internal on the 4(verify this?), so does this mean that I will have the same number as the person who passed the phone down to me? And is there any way for me to have my old number off of my old phone if I use a prepaid card? I have Verizon, but I don't plan on activating the phone with Verizon, as I want it prepaid.

    Sorry forgot to add this, I heard the iPhone 4 SIM card is internal, and there is no way to retrieve it. Is this true? How will this affect me if the phone was handed down to me? I don't want the old number, I would like mine.

  • I've got nothing(gray screen, question mark folder) Please Help!

    This problem is on my girlfriend’s computer, about the same as mine, PB G4 800mhz 768mb RAM, 10.4.x
    I am a competent user and this one has me worried…
    Problem
    Last night she goes to the computer sends an IM checks her e mail, watch some tv, goes back to the computer to look something up on line and its frozen, I do not recall if the mouse was visible but I don’t think there was a beach ball. She asks me what to do I said just give it a few minutes maybe it will process through what ever it is and be back to normal. We both forget to take a look at it before bed.
    This morning computer is still frozen/non-responsive and the fans are running... Shut down by holding down the power key. I try to re-start by pressing power key, screen lights up with gray background wait wait then the folder icon comes up with the question mark in it. This gets me worried.
    What I have tried
    I have tried to get it into target disc mode with my powerbook(computer B), I start up computer A holding down the T key and the screen goes to that moving firewire icon but the hard drive does not show up on my computer B.
    I tried unplugging it, removing the battery and re setting the pram
    I tried to run the hard ware test CD, but when I hold C to boot to the CD it spins up the disc and the little hardware test folder is in the middle of the screen but then it does not load any further. I had to shut down holding the power button. Computer would not eject CD so I had to start up and use unix eject cd command, this worked.
    I tried target disc mode again.
    I tried just a plain start up again.
    I do not have the 10.4 CD at my house so I have not tried to start from that yet, but I can borrow one from grandparents this evening after work, but I am worried since it will not start from the hardware test CD that it will not start from the system CD.
    I believe I have computer A backed up from either last week or the week before( I thought about doing it this weekend but did not get to it  ), she is not backed up daily as I am. Though she said there is quite a bit of important work from this past week.
    I have no idea what to do next or what the source of the problem could be(software or hardware). I fear the worst, but hope that you can share an idea that will turn out for the best!
    Please help me fix this computer, I can play with it some when I go home for lunch and then I need to get it fixed if possible this evening because she needs some important class work and grad school applications from it!
    Jerome

    So is the next step to try and re-format the drive and then use super duper to copy the back up over to that drive and then run disc utility and disc warrior on it? Which specs should I select for the re format, do they have to be the same as what is on my back up drive?
    Yes, reformatting the drive is the next step. Use your Panther installer discs, choose Mac OS Extended format, and check the box to install OS 9 drivers, just in case. The "Verified" SMART status is somewhat less reliable than a "Failing" status would have been: "Failing" definitely means trouble was detected, but "Verified" could just mean nothing seemed to be wrong right at the moment when you happened to ask. So if there's any trouble reformatting the drive, replace it: you shouldn't entrust anything important to it. If all goes smoothly with the reformat, the drive probably really is OK.
    What you can do with your backup depends on how you created it. If the backup is a bootable clone made with Carbon Copy Cloner or SuperDuper, you can clone it back to the reformatted drive the same way you created it in the first place, then add the extra files that were created or modified after you made the backup. If you just Finder-copied the drive to another drive, the backup isn't bootable, and copying it back onto the reformatted drive won't make that one bootable either: OS X isn't Finder-copyable. In that case, I really shouldn't advise you on reconstructing the former contents of the drive from your backup — my only experience of backing up OS X disks is by cloning, which eliminates all the hassles of making sure user accounts, passwords, permissions, etc. are transferred correctly to the backup, and then transferred correctly back to the original disk in a restore. Nearly four years after my adoption of OS X, I confess I'm still far more mystified by many aspects of it than I ever was by the old-time Mac OS.
    Message was edited by: eww

  • I have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    i have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    You just need a powered hub.. if you already use one then fine.
    Plug in just about any external hard disk will work fine. Format has to be readable by the TC.. ie fat32.. or much better HFS+.. plug it into a Mac to prepare the drive.
    Pick whatever size suits.. nowadays 2TB are most economical.
    WD, Seagate have goobled up all the minor players.. so pick one.
    Whatever suits your budget and asthetics.
    NOTE.. The USB on the TC is fine for printers.. IMHO it is the wrong way to go with USB disks.. use the internal disk of the TC.. USB is less than half the native speed plugged into a Mac.. TC to USB is slow.. far slower than internal drive.. or using external drive as external.

  • Got a question for all you peeps dos anyone know about i phones i have a i phone 3gs which i got unlocked i did a master reset or summin and just had a pic of apple so i plugged it in i tunes downloaded and it now says no service at the top of phone and i

    got a question for all you peeps
    dos anyone know about i phones i have a i phone 3gs which i got unlocked i did a master reset or summin and just had a pic of apple so i plugged it in i tunes downloaded and it now says no service at the top of phone and i tunes says invalid sim i put the correct sim in it used to be locked too and still says same pls any one with ideas?

    hi sorry what happoned is that ages ago i brought a i phone 3gs on 02 network i went to a sml phone shop and payed for them to unlock it. it has been fine till yesterday when i went to reset it from the phone it then turned off and came back on just just an image of a apple for about an hour so i connected to i tunes and it said downloading software after another hr it had finished but then i tunes said in had to insert a sim so i had to un plug the phone from laptop while i did this i put my orange sim in and the i phone said where do i live and had to connect to a internet connection but all the time saying no service where the signal bar is and then says activating i phone it took a few min and said couldnt finish it bec of the signal and to connect it to i tunes to do it so i connected it to itunes and i tunes just keeps saying invalid sim so i took my orange sim out and put a 02 sim in and is still saying invalid sim on itunes?

  • Question marks on my pictures and diagonal lines down the page

    My site is web.mac.com/jkmerchant. Last night I changed a couple page names, re-ordered them, added some photos, added a blog entry and updated the text, added a new picture on the welcome page and replaced a picture on the welcome page. Ever since then, my changes publish (with an error) and I can see the updates via my browser, but almost all of my pages now have question marks on the pictures and diagonal frame type lines down the page. I appreciate any suggestions to fix this problem. I've verified the question marks are appearing in IE using a windows computer and Safari (as well as in iWeb) on a Mac.

    Kevin ~ If you haven't already tried this, it may help — in iWeb do File > Publish All to MobileMe. If not, +"A lot of problems can be solved simply by..."+ Read more in the "Fix iWeb" section here:
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    Also it may be better to access your site via:
    http://web.me.com/jkmerchant
    ...rather than:
    http://web.mac.com/jkmerchant

  • Possibly really stupid question.

    What I've read about backing up itunes always refers to making sure that your purchased music doesn't get lost. There's a lot of other "stuff" in there also, things that weren't purchased...my own CD's, audiobooks, videos, etc`.
    Here's the really dumb question: If I hook up my external hard drive and copy itunes to it, does everything I have get copied to the external drive...music, videos, whatever?

    I know very little about the file structure on a Windows PC (Apple since 1984). On a Mac, which may be similar to Windows, I just select the *iTunes Music* folder, grab and drag it to the desired location on my external HD and let go. This creates an exact copy of the folder on my external drive.
    As far as getting there (to your *iTunes Music* folder) I can be of little help.

  • TS1424 Got asked 3 security questions and i have forgotten the answers how do i reset or get it to work????? HELP

    Got asked 3 security questions and i have forgotten the answers how do i reset or get it to work????? HELP

    Contact iTunes Support:
    http://apple.com/support/itunes/contact/

  • Really simple question i'm sure

    this is the first time i'm using iMovie, so bear with me. i have a handheld digital camera that records the video fine, uploads to my computer fine (in mpg format), but when i try to import the file it saves, it won't do it. i've also tried to import the files straight from the camera. please help, thanks.

    nevermind i'm an idiot. someone asked the same question down below, and i figured it out through their thread. i just needed to change the mpeg to a .mov or .avi. thanks anyway though.

  • Okay I got a new apple  ID not to long ago and answered some security questions and i got an iTunes card and it said it was my first purchase and asked me to answer the security questions and I do not remember them

    Okay so I have had apple for a while and I got a new apple ID not to long ago and then answered the security questions and it said that it was the first purchase with the apple ID and I have to answer them and now I don't remember the answers

    From an older post by King_Penguin:
    If you can't remember them then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Security' and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox) - but some recent posts are saying that Apple have temporarily suspended the reseting of security question/answers whilst account security processes are improved, so it may take longer.

  • I updated to maverick, and maybe it's a coincidence but my left shift key doesn't work unless i really press it down.  Is there any way to fix this without bringing it into the Genius Bar?

    i updated to maverick, and maybe it's a coincidence but my left shift key doesn't work unless i really press it down.  Is there any way to fix this without bringing it into the Genius Bar?

    Plugins usually are installed externally to Firefox. However, you can disable them in Firefox so that Firefox does not use them.
    SearchReset is supposed to automate the task of resetting certain preferences, but you still can edit them manually if necessary.
    '''''Address Bar Search'''''
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''keyword''' and pause while the list is filtered
    (3) Right-click '''keyword.URL''' and choose Reset. This should restore Google as the default for address bar search.
    Does that work?
    '''''Search Box'''''
    Usually it works to choose your preferred search engine from the drop-down. To remove an unwanted search engine plugin, usually the Manage Search Engines... choice at the bottom of the drop-down takes care of it.
    Do either of those work?
    There might be another way to hijack that search box; I think some of the other frequent responders probably are more familiar with it than I am.

  • This maybe a really dumb question...

    I know this maybe a really dumb question but I do need to ask:
    -Do I need to buy a new vista to install on my new mac?
    (I have a start up one that was included with my previous pc laptop..)
    -In terms of partitioning, how should I distribute space?
    Thank you in advance.

    jlee636:
    The Boot Camp installation guide is [HERE|http://www.apple.com/support/bootcamp>. It should be able to answer questions related to installation. Of course these discussions have several other information on boot camp/ windows. All you need to do is launch a search on them.
    -In terms of partitioning, how should I distribute space?
    Too many people make a partition very small and then regret having done so. My recommendation is to have a partition of at least 32GB. It is highly dependent on what your will be installing on Windows XP/Vista.
    -Do I need to buy a new vista to install on my new mac?(I have a start up one that was included with my previous pc laptop..)
    It is more than likely that the Windows disk that came with your previous PC/Laptop is an OEM disk and will only work properly with that particular PC. This is generally the case with Dell, HP, Sony etc. The installation disk in the cases above are usually branded.
    For more information on which Windows version(s) work with Boot Camp then please click [HERE|http://docs.info.apple.com/article.html?path=Mac/10.5/en/11889.html].
    Axel F.

  • I have a question for apple I bought a 15$ iTunes card and got to movie rentals it's been 3 days and the movie bearlly downloaded onced it finished it restarted it self I want my money back....what do I do

    I have a question for apple I bought a 15$ iTunes card and got to movie rentals it's been 3 days and the movie bearlly downloaded onced it finished it restarted it self I want my money back....what do I do

    You will have to contact Apple/iTunes support, we are just other users like you, not Apple employees.
    http://www.apple.com/support/itunes/contact/
    You can also Report a Problem with the rental in iTunes on your computer.
    http://appletoolbox.com/2012/03/how-to-report-a-problem-for-an-iphoneipadipod-to uch-app/

  • Hi i am samuel kim and i didnt remember my security question and got my account lock how to i unlock it and get my security question?

    Hi i am samuel kim and i didnt remember my security question and got my account lock how to i unlock it and get my security question?

    Click here for information. If you've forgotten the answers to the security questions and can't get them emailed to you for some reason, contact the iTunes Store staff via the link in that article.
    (75432)

  • Yesterday for the first time i turned on my macpro 2011 model and i got a crazy gray screen with lines all over it ,so i held down the power button and turn off then restarted and all was ok could someone help me with this,what caused this shut down. werd

    yesterday for the first time i turned on my macpro 2011 model and i got a crazy gray screen with lines all over it ,so i held down the power button and turn off then restarted and all was ok could someone help me with this,what caused this shut down. werd

    Are the lines like psychedelic herringbone?  If yes, I had that happen once, it was something serious, like the
    Logic board. The good news is that it was fixed without any loss of data on the hard drive. Take it in to have Apple look at it ASAP.  I took it to TekServe at the time, they are very nice about preserving your data and user library when possible.
    Good luck and don't panic.

Maybe you are looking for

  • I have songs that show up as on the Cloud on my iPad, but do not show on my laptop.

    Further information: These songs were uploaded from CD's back in '07, and deleted from my library several years (and a computer or two) ago.  I have never signed up for iTunes Match.  I recently decided that I would like to listen to some of the song

  • How To Create An Excel like Web Page?

    Hi All, Apex 4.1 I have created n interactive report which was converted from a spreadsheet. This is a very long report of 100 columns display. So the user got tired in scrolling it left to right and vice versa. How can I make it behave like excell s

  • Problem in activating process chanis

    Hi Experts, I installed NW 7.0 sr3 ABAP system, and then installed BI_CONT release 703 as add-on. But our BI consultant not able to find all the objects when he is trying to activate process chain from the bi content. Can anyone please tell me which

  • Subscribed Calendars - Get rid of Read Only ?

    Hello, I come to you guys as my last chance to solve my problem I'm trying to make a shared calendar with my office co-workers. We're trying to share a calendar and be able to edit it (all of us!). So, I tried to publish a calendar I've made on my iC

  • How to transfer Adobe application from C:\ to D:\?

    When I download the free Adobe Reader, it automatically stores in the C:\. If possible, I would like to transfer Adobe Download Manager, Adobe Flash Player and Adobe Reader from C:\ to D:\. My D:\ has a lot of spaces while my C:\ has limited storage.