Regarding SAP Cariear

Hi freinds,
       Currently i m working as a SAP ABAP Condultant......from last 6 months..now i m getting a chance to learn....SAP BW,SAP XI,SAP SD.................
pls,tell me which one is better for my future...........i  m very confuse.......
Regrds,
Paresh G

Give choices as follows :
1 . SAP BW - always good...
2. SAP XI  - better if u are bored with coding...
3. SAP SD - better if u want to go for CRM in future.
reward points if helpful....

Similar Messages

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Please check this link SAP Portfolio and Project Management (SAP RPM, cProjects) and cFolders
    Please check scn index to find relevant forum link.
    SCN Site Index

  • Need information/training material regarding SAP CRM Functional

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya

    Hi ,
    In the SDN lot of documents are there search in the WIKI.check the standard sap doc cr100.

  • Hi All,I have one serious problem regarding sap b1.

    Hi All,
    I have one serious problem regarding sap b1.
    In Sales order whenever I select the item from list or tax from list one. I got this
    Msg Box (Application has a problem. Diagnostic file c|:\Program file\SAP\sap Business one \Log\Sap Business one_20080602105441.dmp was created.
    Please contact support and attach diagnostic file). When select ok sap b1 application close. If anyone required screen short of all this error  plz give me Ur email id I will send u.
    Can any one help me?
    Awaiting Early Response
    Regards
    Rajkumar Gupta

    Hi Rajkumar,
    create a message at the marketplace and send them the diagnostic file with an error description.
    lg David

  • Regarding SAP Sales & distribution.

    Dear SAP Guru's ...
    I have a general Query.....Career Related.
    As SAP AG is Launching New products
    Such as SCM Enhancements BW and other IS versions....
    What will be the future situation and Market of SAP SD Consultant.
    We also heard that it will be mergedwith other higher version modules.
    Please advice me ....
    The Market Situation future?
    The Trends ?
    Whch module Should I focus ..after SD......
    Regards,
    Amaln Sarkar
    SAP SD Consultant.

    Dear Amlan,
    Well I think the foundation of all the new dimensional products is the base modules. Moreover working on the base modules gives the opportunity to understand the business process of different verticals. So there is nothing like end for the market for base modules.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • Regarding sap smartforms line items

    hi,
    this is regarding line items in sap smartforms
    when i am executing single line item i am getting out put
    when i am executing with 2 line items  i am getting error  like bellow
    You tried to switch to the next table column, but no other column exists. The current column is 9. The line type IT_GEN contains only 9 columns.
    plz explain clearly

    Hi,
    if you are using template and the line type is for 1 to 2 lines in the template... make sure that column position you mention is equal to the number of cells in the line type... if the data is displayed in the second row the row position should start from 2 and and column position should lie between 1 and 9.
    Just a suggestion ... its better to go with table node instead of going with template...
    regards
    padma

  • Regarding SAP PP Reports

    Hi Gurus,
    Can you explain me what is SAP PP Standard Reports..with important T codes..with details
    thank & Regard
    Rahul

    hi Rahul,
    Please check
    http://wiki.sdn.sap.com/wiki/display/ERPLO/SAPStandardReports
    http://www.sapfans.com/forums/viewtopic.php?f=9&t=235417
    Regards,
    Anand

  • Help Required Regarding - SAP Job names using R3 data flows

    We are calling a set of SAP Jobs using R3 data flows in data services. When ever a job fails we first kill the active SAP jobs by logging into SAP and then restarting the Jobs.
    There are about 100 odd SAP jobs that we call using these Data services Jobs so we wanted to kill the jobs using a reusable code on the SAP side by passing the Job name just before every R3 flows just incase its still in active status.
    So wanted to know if there are any short cuts to retrive the set of associated SAP job names because it will be a tedious process to hardcode the SAP job names and pass them as parameters for all the 100 + SAP job names in the custom defined resuable code.
    Any help or advice on this please !!

    The program is not meeting the expectations
    and the problem is due to reflection.Do we know this for certain?
    ... my application gets the class name, field name
    etc. from an XML file so i don't know their method names
    beforehand .
    Now since every class instance corresponds to a row
    in the database and i have to call get and set
    methods of each class instance so the performance
    keeps on degrading as the number of columns and rows increase .
    Can somebody suggest some improvement regarding this
    and regarding creating multiple instances of the same object Class.forName() will be using a hash already, so there is probably not much room for improvement.
    Class.newInstance() probably does not take significantly more processing than a simple "new Fubar();".
    Umpteen reflective method invokations (one per column) for each row/instance - Are you saying these are the problem?
    You can test this easy enough.
    If you comment out the reflective method invocations and leave the rest of your code untouched,
    does your application processing speed up significantly?

  • Regarding SAP -XI  associate certification.

    Hello friends,,
    Can anyone give me details regarding the  XI certification in Teched.
    what is the success rate in Teched ?
    pls also eqip me with the latest trends and patterns of the exam.
    Also provide all the links which will be helpfull for me to prepare for the exam.
    waiting for ur valuable responses.
    Thanks n Regards,
    ram
    Message was edited by:
            ramdevbabu reddy

    Hi
    <b>A Beginners Guide to XI Certification Details</b>
    /people/community.user/blog/2006/11/03/a-beginners-guide-to-xi-certification-details
    <b>Below are syllabus for XI certification:</b>
    TBIT40:
    https://websmp109.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT40
    TBIT41:
    https://websmp201.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT41&LANGUAGE=
    TBIT42:
    https://websmp206.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT42&LANGUAGE=
    TBIT43:
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60161651
    TBIT44:
    https://websmp102.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT44
    You will be asked 80 questions. Some of them are Multiple choice questions and some of them are true or false. You will not have any negative marks. You will get 25% of questions in BPM, 20% of questions in Adapters, Mapping. 10% of questions in Basics.
    Also you go through the this links which might help you:
    Re: SAp XI Certification
    /message/1887921#1887921 [original link is broken]
    /message/1887923#1887923 [original link is broken]
    Do you have Marketplace access? If yes, you can go to the following links,it explains everything regarding certification clearly.
    https://service.sap.com/%7Esapidp/011000358700005902252004E
    https://service.sap.com/~sapidp/011000358700003595762004E
    /thread/187737 [original link is broken]
    XI certification
    Go through these weblogs :
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    /thread/25311 [original link is broken]
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1008087,00.html
    Thanks!!
    Regards
    Abhishek Agrahari

  • Regarding SAP PI 7.0 Configuration

    Hi Experts,
    We Completed The SAP PI 7.0 Installation.
    Now we Are Doing The Configuration Steps.
    Here We run the post installation Templates which automatically configures PI system.
    <b>Steps:</b>
    Step 1: Go to this link http://<host name>: <HTTP port number>/index.html
    Step 2: Click on SAP NetWeaver Administrator
    Step 3: Click on seeDeploy and Changelink
    Step 4: First executed the templates for NWA for configuring you SLD
    Step 5: Then executed the templates for PI
    After this  for the  Importing the XI Content for Software Component Version SAP Basis
    1. Here We Are Trying to Copy XI3_0_SAP_BASIS_6.40_00_12.tpz from <installation DVD>
    to directory /usr/sap/<SAPSID>/SYS/global/xi/repository_server/import/
    But We Are Unable to Find out <b>/repository_server/import/</b><u></u>
    We Can Able to Find out the Path Upto <b>/usr/sap/<SAPSID>/SYS/global/xi/</b><u></u>
    Can Anybody Please help To Go in the Right Direction
    Regards
    Khanna

    Hi,
    Thanks for the Reply.
    This was solved by team a long back,
    Sorry, i forgot to close the thread
    REgards
    Seshagiri

  • Regarding SAP PI 7.0 Configuration of Integration Engine

    Hi Experts,
    We Installed SAP PI 7.0 Successfully.After that We Run the Template Installers for PI.
    Here We Selected <u><b>PI Post Install Process</b></u> Option in the Template Field.
    <b>Q1)</b>  After Completion of this Should we Configure All   IE , IS, AE  Or Those wil be Configured Automatically ????
    <b>Q2) </b> What are the Necessary Steps to Do Even We Run the Template Installer, To execute a Scenario  Successfully.?????
    Please Let me Know
    Regards
    Khanna

    Here is an extract from the OSS note. I guess,this should answer your second question
    Reason and Prerequisites
    To avoid problems while using the configuration wizard (template installer )please check prerequisites for post-installation in SAP documentation. That information can be found in SAP Help Portal (http://help.sap.com --> SAP Netweaver --> Installation and Upgrade guide --> Installation --> 2 - Installation - SAP Netweaver 2004s --> SAP NetWeaver 2004s Installation Documentation).
    Select your Operating System and Database and look for 'Post-Installation Steps for Usage Type *' in the dedicated document.
    Important: You cannot use the configuration wizard after
    Upgrade
    Add-In installation (Exception: Configuration of Usage Type BI-Java can be executed after Add-In Installation)
    Additional usage type enablement
    System copy
    Always install the latest available SPS + Patches before running the CTC.( You can find the latest LMTOOLS Patch at http://service.sap.com -> SAP Support Portal -> Downloads (Tab) -> Downloads (Menue) -> Support Packages and Patches -> Search for Support Packages and Patches -> Search for: LMTOOLS*P -> Download and Save the .sca. Apply the patch by using the SDM.)
    The sequence is:
    1. Installation
    2. Install latest SPS + Patches (if available)
    3. Run configuration wizard.
    You can run the configuration wizard only once for initial configuration.
    In these cases, you need to perform the corresponding configuration steps as described in the configuration documentation.
    For more information on how to access the configuration documentation, see 'Accessing Configuration Documentation in the SAP Solution Manager'.

  • Regarding SAP XI

    Dear All ,
    I have few queries :
    1) do I need to install SAP XI on Web AS machine or on a different machine .
    2)What is the hardware configuration for development & for production server of SAP XI .
    3)What are the prerequisites for installing SAP XI .
    4) what all components we need to install while installing SAP XI
    5)IMPLEMENTATION METHODOLOGIES FOR SAP XI
    Kindly help me , waiting for your feedback asap
    Regards
    Prabhat

    Hi Prabhat,
    Go to the following link and look for the XI installation, config, tuning etc.. guides.
    It will give you a good deal of idea.
    Hope it helps.
    https://service.sap.com/instguides
    Regards,
    Satish

  • Regarding SAP Scripts

    Hi All,
    I have issue in SAP Scripts.
    Issue is : I am calling a BOX command in my Layout set as follows : <b>BOX WIDTH '18.75' CM HEIGHT L_SY_TABIX1 CM FRAME 10 TW</b>
    I that <b>L_SY_TABX1</b> i need to get the value form Print Program,
    Can anybody clarify how can i make varaible L_SY_TABIX1 with value <b>'17.75'</b> with in single quotes.
    shall i need to decalre the L_SY_TABIX1 as &L_SY_TABIX1& & then how can i get single quotes on it.
    Please clarify.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    You dont have to concatenate quotes.
    You can dynamically put any value into a character variable, say,  ht, in your print program.
    Data : ht(10) type c.
    This variable should be within &, in the script. The program takes the value of height without rounding the decimals.
    BOX XPOS 0 CH YPOS '+1.5' LN WIDTH 30 CH HEIGHT &HT& CH FRAME 10 TW
    Thanks,
    Susmitha

  • Regarding SAP HR Payroll

    Hi all,
    Which table i have use to insert Stipend for the employee.
    And in case of student *** employee in the organisation, we have to insert 4 yrs stipend. suggest how to go ahead.
    Regards,
    Shahy

    Hi,
    If you require payroll relevant history of certain wage type you have to follow standard uploda procedure:
    http://help.sap.com/saphelp_40b/helpdata/pt/91/80e9087834d111a4620060b03c3b0e/content.htm
    Cheers

Maybe you are looking for

  • SWF not playing in PDF

    Hello , I am using FM11 with Windows 7. When I import a SWF in to Framemaker, it plays fine. When I print to PDF, the SWF just appears as an image. This is true if I Import By Reference or Copy Into Document.  The Embeded Adobe Flash files in PDF pre

  • JSF Reverse Engineering

    Hi All, I have developed JSF application using eclipse. Now, I need to create the class diagrams, sequence diagrams etc. I know it should have been the other way round, but for some reasons I have to go through this path. Is it possible to create the

  • MAY DAY !! After FF $ install All BOOKMARKS LOST while uninstall of Firefox 4 8 Beta ?? Whats the workaround to retrieve ?

    I had FF 8 Beta 8 installed already and installed FF4 just when it became available.Now all the bookmarks ( my bread and butter ) were imported properly into FF4 when installed.Today I tried to uninstall the old FF4 Beta 8 and guess what ???? the bet

  • Backing up PC MEdia Library before windows reinstall - h

    Hi, I have about 70g of music, which took a silly long time to put in the music library. Basically to do it involved my puter stopping responding for about 30 mins whilst the database was built. Now, reinstalling windows is quite a common thing for m

  • HT4623 updating iphone 3gs from version 4.2 to higher

    Hi I have a iphone which has not been connected to the internet for a year and is on version 4 software but i cant seem to update it to a better version as most of my apps dont work on version 4 Thanks