Need information about Internal Tables

Hi Every one!
I Need some information about Internal tables. Pls help be above the same.
Thanks & with Regards,
Chandra.

Hi..,
<b>
Internal tables </b>
Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by line in memory, and each line has the same structure. In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs. You should use internal tables whenever you want to process a dataset with a fixed structure within a program. A particularly important use for internal tables is for storing and formatting data from a database table within a program. They are also a good way of including very complicated data structures in an ABAP program.
Like all elements in the ABAP type concept, internal tables can exist both as data types and as data objects A data type is the abstract description of an internal table, either in a program or centrally in the ABAP Dictionary, that you use to create a concrete data object. The data type is also an attribute of an existing data object.
<b>Internal Tables as Data Types</b>
Internal tables and structures are the two structured data types in ABAP. The data type of an internal table is fully specified by its line type, key, and table type.
<b>Line type</b>
The line type of an internal table can be any data type. The data type of an internal table is normally a structure. Each component of the structure is a column in the internal table. However, the line type may also be elementary or another internal table.
<b>Key</b>
The key identifies table rows. There are two kinds of key for internal tables - the standard key and a user-defined key. You can specify whether the key should be UNIQUE or NON-UNIQUE. Internal tables with a unique key cannot contain duplicate entries. The uniqueness depends on the table access method.
If a table has a structured line type, its default key consists of all of its non-numerical columns that are not references or themselves internal tables. If a table has an elementary line type, the default key is the entire line. The default key of an internal table whose line type is an internal table, the default key is empty.
The user-defined key can contain any columns of the internal table that are not references or themselves internal tables. Internal tables with a user-defined key are called key tables. When you define the key, the sequence of the key fields is significant. You should remember this, for example, if you intend to sort the table according to the key.
<b>
Table type</b>
The table type determines how ABAP will access individual table entries. Internal tables can be divided into three types:
<u>Standard tables</u> have an internal linear index. From a particular size upwards, the indexes of internal tables are administered as trees. In this case, the index administration overhead increases in logarithmic and not linear relation to the number of lines. The system can access records either by using the table index or the key. The response time for key access is proportional to the number of entries in the table. The key of a standard table is always non-unique. You cannot specify a unique key. This means that standard tables can always be filled very quickly, since the system does not have to check whether there are already existing entries.
<u>
Sorted tables</u> are always saved sorted by the key. They also have an internal index. The system can access records either by using the table index or the key. The response time for key access is logarithmically proportional to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique or non-unique. When you define the table, you must specify whether the key is to be unique or not. Standard tables and sorted tables are known generically as index tables.
<u>
Hashed tables</u> have no linear index. You can only access a hashed table using its key. The response time is independent of the number of table entries, and is constant, since the system access the table entries using a hash algorithm. The key of a hashed table must be unique. When you define the table, you must specify the key as UNIQUE.
<b>
Generic Internal Tables</b>
Unlike other local data types in programs, you do not have to specify the data type of an internal table fully. Instead, you can specify a generic construction, that is, the key or key and line type of an internal table data type may remain unspecified. You can use generic internal tables to specify the types of field symbols and the interface parameters of procedures . You cannot use them to declare data objects.
<b>Internal Tables as Dynamic Data Objects</b>
Data objects that are defined either with the data type of an internal table, or directly as an internal table, are always fully defined in respect of their line type, key and access method. However, the number of lines is not fixed. Thus internal tables are dynamic data objects, since they can contain any number of lines of a particular type. The only restriction on the number of lines an internal table may contain are the limits of your system installation. The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries. The line types of internal tables can be any ABAP data types - elementary, structured, or internal tables. The individual lines of an internal table are called table lines or table entries. Each component of a structured line is called a column in the internal table.
<b>
Choosing a Table Type</b>
The table type (and particularly the access method) that you will use depends on how the typical internal table operations will be most frequently executed.
<b>
Standard tables</b>
This is the most appropriate type if you are going to address the individual table entries using the index. Index access is the quickest possible access. You should fill a standard table by appending lines (ABAP APPEND statement), and read, modify and delete entries by specifying the index (INDEX option with the relevant ABAP command). The access time for a standard table increases in a linear relationship with the number of table entries. If you need key access, standard tables are particularly useful if you can fill and process the table in separate steps. For example, you could fill the table by appending entries, and then sort it. If you use the binary search option with key access, the response time is logarithmically proportional to the number of table entries.
<b>Sorted tables</b>
This is the most appropriate type if you need a table which is sorted as you fill it. You fill sorted tables using the INSERT statement. Entries are inserted according to the sort sequence defined through the table key. Any illegal entries are recognized as soon as you try to add them to the table. The response time for key access is logarithmically proportional to the number of table entries, since the system always uses a binary search. Sorted tables are particularly useful for partially sequential processing in a LOOP if you specify the beginning of the table key in the WHERE condition.
<b>
Hashed tables</b>
This is the most appropriate type for any table where the main operation is key access. You cannot access a hashed table using its index. The response time for key access remains constant, regardless of the number of table entries. Like database tables, hashed tables always have a unique key. Hashed tables are useful if you want to construct and use an internal table which resembles a database table or for processing large amounts of data.
regards,
sai ramesh

Similar Messages

  • Need Information About Java Platform Overview For Manager (WJTB-310)

    Hi, My name is Jeffry. I need information about Java Platform Overview For Manager (WJTB-310).
    I need Information about table of contents, how long it takes to study that training (approximately), how many chapters are in that training, minimum Internet connection speed to access that training, and everything you know about WJTB-310.
    Is there a synchronized audio in WJTB-310 ?
    Is there a video streaming in WJTB-310 ?
    Can I receive a certificate for any web-based training ? especially in WJTB-310 ?
    Is there a programming language material in WJTB-310 or just an overview ?
    Sorry for asking to many question
    Thanks
    Jeffry Kristianto Yanuar

    I thought I'd give you a response even if I can't answer your question completely. (I think we ought to start a separate thread entitled "How do you get any replies on this forum???") Here is what I have been forced to do. I introduced some JavaScript on the web page that contains the applet I want to be run. The sole purpose of the JavaScript is to detect which platform the client is on. If it's not MacIntosh, then I have JavaScript write the <object><embed> tag used by the Java plug-in. It it is MachIntosh, then I have JavaScript write the regular <applet> tag and let the Mac browsers do as best they can. With mixed and disappointing results. Netscape 6.2 crashes with a lot of applets. IE 5 brings up the applet okay but certain Swing components aren't displaying properly. The MacIntosh I've been testing on is version 9.1. I'm trying OS X tomorrow.
    Why don't you send a reply to my query under the Java Plug-in Forum--from aronsz, dated 06/11/02--if you have some more info by now. I sure would appreciate it.

  • Need information about daily back using DB13

    Hi,
           Need information about how to take daily backup through t-code: DB13
           I clicked on 2days date and then there at Action Pad tab clicked FULL DATABASE ONLINE + REDO LOG BACKUP.
           Then from here what to do

    pandu babai,
    in db13 we take daily backups.
    u can schedule the job according to ur requirement timing.
    daily online, disk or tape.
    plus redo logs as copy, delete and save.
    after scheduling the tasks the backup will be started and internally the background jobs like SAP_SLD_DATA_COLLECT etc., are triggered.
    (After the DB13 backup)also in the same screen if we double click on the backup option we can check the job log, action log and detail log for the scheduled backup.

  • I need information about personal experience with DFS-R: shortcomings and limitaions of DFS-R

    Hello,
    We plan to install DFS-R in our organization.
    I need information about personal experience with DFS-R: shortcomings and limitations of DFS-R.
    Thank you for any info. 

    Hi,
    You could refer to the articles below to see some limits about DFSR and some DFSR configuration mistakes which will cause DFSR problems:
    Understanding DFS Replication "limits"
    http://blogs.technet.com/b/filecab/archive/2005/12/12/understanding-dfs-replication-_2200_limits_2200_.aspx
    Common DFSR Configuration Mistakes and Oversights
    http://blogs.technet.com/b/askds/archive/2010/11/01/common-dfsr-configuration-mistakes-and-oversights.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I need information about reports

    hi gurus,
      i need information about Trending reports and Management reports. Can any body provide me the scenario regarding this issues:

    Hi
    Trend reports are the reports which show a certain trend all over the years
    Say, Sales revenue for the year compared to all the previous years...This show what is the trend in the last few years
    Management reports high level reports with summarized data which helps in decision making. Say, Vendor performance report...this report shows list of default vendors by ranking them and management can decide to continue or not to continue with certain vendors
    Regards
    N Ganesh

  • I need  information  about  oops  concept  programming  in abap

    Hi  ,
    I need  information  about  oops  concept  programming  in abap
    Thanks,
    Asha

    Of course, the best place to start is help.sap.com.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    There are a couple good books out there as well.  You can get them at www.amazon.com
    Regards,
    Rich Heilman

  • I need information about Web dynpro ABAP Exception : ICF Service Node

    I need information about Web dynpro ABAP Exception :
    ICF Service Node "/sap/bc/webdynpro/sap/abcd/undefined" does not exist.
    Here abcd is application name.
    ICF Service Node exists and activated but kindly let me know from where "undefined" is coming .
    Please let me know your comments /views about  this.

    Hi,
    I think ur webdynpro service is not active after upgradation.
    You have manually activate it.
    Go go Tcode SICF,Execute the Initial screen,
    and in this new screen give service  as your application name and click on filter.
    You will get your service below which will be ur application name .
    right-Click on the deactivate and activate it or just activate it,.
    This shd work

  • I need information about ESS and Training and Work Experience

    I need information about ESS and Training and Work Experience.
    Anyone know if  there is something inside of the component ESS about Training and Work Experience (infotypes 22 and 23)?
    I appreciate information.
    Thanks.

    Marciano,
    check this documentation
    http://help.sap.com/saphelp_erp2005/helpdata/en/4d/c19ce6ef2842258283afc35a54172a/frameset.htm
    Thanks
    Bala Duvvuri

  • Need information about "Activation Task"

    Hi at all
    I need information about "HOW" the activation task work. I try to found information on Metalink and I can't found anything. Who anyone show me where I can find this information?
    The information from Design Studio are not enough.
    Thanks in advice
    Luis
    Edited by: Luis_ITA on 9-giu-2011 10.35

    Hi Luis,
    Following are the resources you can use to seek information about Activation Tasks:
    1. Following link is from OU that provides an overview of the Activation Task:
    http://ilearning.oracle.com/ilearn/en/learner/jsp/rco_details_find.jsp?srchfor=1&rcoid=920335765
    2. Design Studio Online Help provides comprehensive description about the task – what is it, how to use it, different compensation modes etc.
    Thanks,
    Deepankar (Deep) Dey
    OSM- Product Management

  • NEED INFORMATION ABOUT "MAX_TEST" FUNCTION MODULE

    HI ABAPERS,
                      I need information about "MAX_TEST" function module . this function module is used in 4.6 version , now system have been shifted to 6.0.....here in 6.0 version this function module is not prasent.can any one tell me which new function module we can use in place of this function module, without changing the functionality........
             Thanks in advance
    regards,
    SUNIL

    The module is not very sophisticated. Profficiency in Java or ABAP will be a great bonus here. There are plenty of good materials regarding XI on SDN. I suggest to start with step-by-step guides and master all basic integration scenarios
    http://wiki.sdn.sap.com/wiki/display/XI/Step-by-Step+Guides
    Opportunities in industry are not bad also, cause PI is rather popular among customers. The best thing is that it fits any type of customer's business. Integration is demanded almost everywhere.

  • I also need information about use the ProConnect(r) Integ...

    I also need information about use the ProConnect(r) Integrated KVM 2-Port Switch to connect a Mac G4 and a PC anyone help
    software reviews editor

    I suggest you to go to linksys website & it will give all required information ,,,
    Or you can try this link ....

  • HT1849 my songs cut.. some of them playing only 45 seconds Why?  i need information about it..

    some of my songs playing only 45 seconds Why? i need information about it..

    Other people have been having similar problems over the last few days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting them from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link

  • Need information about retail project

    hi all
    tommorow i had a interview with my client.
    i need information about retail  project.
    like terms and business process overview .
    documentaiton can be sent to:   [email protected]
    points will awarded for sure.
    kiran

    Hi Rama
    Retailing consists of the sale of goods or merchandise, from a fixed location such as a department store or kiosk, in small or individual lots for direct consumption by the purchaser.[1] Retailing may include subordinated services, such as delivery. Purchasers may be individuals or businesses. In commerce, a retailer buys goods or products in large quantities from manufacturers or importers, either directly or through a wholesaler, and then sells smaller quantities to the end-user. Retail establishments are often called shops or stores. Retailers are at the end of the supply chain. Manufacturing marketers see the process of retailing as a necessary part of their overall distribution strategy.
    Shops may be on residential streets, shopping streets with few or no houses, or in a shopping center or mall, but are mostly found in the central business district. Shopping streets may be for pedestrians only. Sometimes a shopping street has a partial or full roof to protect customers from precipitation. Retailers often provided boardwalks in front of their stores to protect customers from the mud. Online retailing, also known as e-commerce is the latest form of non-shop retailing (cf. mail order).
    Shopping generally refers to the act of buying products. Sometimes this is done to obtain necessities such as food and clothing; sometimes it is done as a recreational activity. Recreational shopping often involves window shopping (just looking, not buying) and browsing and does not always result in a purchase.
    Most retailers have employees learn facing, a hyperreal tool used to create the look of a perfectly-stocked store even when it is not.
    Contents [hide]
    1 Retail pricing
    2 Retail Industry
    3 Etymology
    4 Retail types
    5 See also
    6 Notes
    7 References
    [edit] Retail pricing
    The pricing technique used by most retailers is cost-plus pricing. This involves adding a markup amount (or percentage) to the retailers cost. Another common technique is suggested retail pricing. This simply involves charging the amount suggested by the manufacturer and usually printed on the product bize the manufacturer.
    In Western countries, retail prices are often so-called psychological prices or odd prices: a little less than a round number, e.g. $6.95. In Chinese societies, prices are generally either a round number or sometimes a lucky number. This creates price points.
    Often prices are fixed and displayed on signs or labels. Alternatively, there can be price discrimination for a variety of reasons, where the retailer charges higher prices to some customers and lower prices to others. For example, a customer may have to pay more if the seller determines that he or she is willing to. The retailer may conclude this due to the customer's wealth, carelessness, lack of knowledge, or eagerness to buy. Another example is the practice of discounting for youths or students. Price discrimination can lead to a bargaining situation often called haggling, in which the parties negotiate about the price. Economists see this as determining how the transaction's total surplus will be divided into consumer and producer surplus. Neither party has a clear advantage, because of the threat of no sale, in which case the surplus vanishes for both.
    Retailers who are overstocked, or need to raise cash to renew stocks may resort to "Sales", where prices are "marked down", often by advertised percentages - "50% off" for example."Sales" are often held at fixed times of the year, for example January sales, or end-of-season sales, or Blue Cross Sale
    [edit] Retail Industry
    Retail Industry has brought in phenomenal changes in the whole process of production, distribution and consumption of Consumer Goods all over the world. In the present world most of the developed economies are using the Retail Industry as their vital growth instrument. At present, among all the industries of U.S.A the Retail Industry holds the second place in terms of Employment Generation. In fact, the strength of the Retail Industry lies in its ability to generate large volume of employment.
    Not only U.S but also the other developed countries like U.K, Canada, France, Germany are experiencing tremendous growth in their Retail Sectors. This boom in the Global Retail Industry was in many ways accelerated by the Liberalization of Retail Sector.
    Observing this global upward trend of Retail Industry, now the developing countries like India are also planning to tap the enormous potential of the retail sector. Wal-Mart,the world's largest Retailer has been invited to India. Other popular Brands like Pantaloons, Big Bazar, Archies are rapidly increasing their market share in the retail sector. According to a survey, within 5 years, the Indian Retail Industry is expected to generate 10 to 15 million jobs by direct and indirect effects. This huge employment generation can be possible because of the fact that being dependent on the the Retail Sector shares a lot of Forward and Backward Linkages.
    Emergence of a strong Retail Sector can contribute immensely to the economic development of any country. With a dominant retail sector, the farmers and other suppliers can sell their produce directly to the major retail companies and can ensure stable profit. On the other hand, to ensure steady supply of goods, the Retail Companies can inject cash into the production system. This whole process can result into a more efficient production and distribution system for the economy as a whole.
    [edit] Etymology
    Retail comes from the French word retaillier which refers to "cutting off, clip and divide" in terms of tailoring (1365). It first was recorded as a noun with the meaning of a "sale in small quantities" in 1433 (French). Its literal meaning for retail was to "cut off, shred, paring". Like the French, the word retail in both Dutch and German (detailhandel and Einzelhandel respectively) also refer to sale of small quantities or items.[citation needed]
    [edit] Retail types
    According to Jim there are three major types of retailing. The first is the market, a physical location where buyers and sellers converge. Usually this is done in town squares, sidewalks or designated streets and may involve the construction of temporary structures (market stalls). The second form is shop or store trading. Some shops use counter-service, where goods are out of reach of buyers, and must be obtained from the seller. This type of retail is common for small expensive items (e.g. jewelry) and controlled items like medicine and liquor. Self-service, where goods may be handled and examined prior to purchase, has become more common since the Twentieth Century. A third form of retail is virtual retail, where products are ordered via mail, telephone or online without having been examined physically but instead in a catalog, on television or on a website. Sometimes this kind of retailing replicates existing retail types such as online shops or virtual marketplaces such as futurebazaar.com or Amazon.[2].
    Buildings for retail have changed considerably over time. Market halls were constructed in the Middle Ages, which were essentially just covered marketplaces. The first shops in the modern sense used to deal with just one type of article, and usually adjoined the producer (baker, tailor, cobbler). In the nineteenth century, in France, arcades were invented, which were a street of several different shops, roofed over. counters, each dealing with a different kind of article was invented; it was called a department store. One of the novelties of the department store was the introduction of fixed prices, making haggling unnecessary, and browsing more enjoyable. This is commonly considered the birth of consumerism [3]. In cities, these were multi-story buildings which pioneered the escalator.
    In the 1920s the first supermarket opened in the United States, heralding in a new era of retail: self-service. Around the same time the first shopping mall was constructed [4] which incorporated elements from both the arcade and the department store. A mall consists of several department stores linked by arcades (many of whose shops are owned by the same firm under different names). The design was perfected by the Austrian architecht Victor Gruen[5]. All the stores rent their space from the mall owner. By mid-century, most of these were being developed as single enclosed, climate-controlled, projects in suburban areas. The mall has had a considerable impact on the retail structure and urban development in the United States. [6]
    In addition to the enclosed malls, there are also strip malls which are 'outside' malls (in Britain they are called retail parks. These are often comprised of one or more big box stores or superstores.
    Non-traditional exterior of a SuperTarget, JacksonvilleLocal shops can be known as brick and mortar stores in the United States. Many shops are part of a chain: a number of similar shops with the same name selling the same products in different locations. The shops may be owned by one company, or there may be a franchising company that has franchising agreements with the shop owners (see also restaurant chain).
    Some shops sell second-hand goods. Often the public can also sell goods to such shops, sometimes called 'pawn' shops. In other cases, especially in the case of a nonprofit shop, the public donates goods to the shop to be sold (see also thrift store). In give-away shops goods can be taken for free.
    There are also 'consignment' shops, which is where a person can place an item in a store, and if it sells the person gives the shop owner a percentage of the sale price. The advantage of selling an item this way is that the established shop give the item exposure to more potential buyers.
    The term retailer is also applied where a service provider services the needs of a large number of individuals, such as with telephone or electric power.
    IS Retail was original develop to meet specific needs of Retail industry where standard SD/MM cannot.
    - Significant functionality difference are:
    - Store specific features are built into IS Retail where as it is not in
    standard SD/MM.
    - Mass processing of pricing (some of the retail features were
    included as standard SAP as of 4.6)
    - Assortment handling is not in standard SAP
    There are other differences in inventory costing/valuation etc.
    Retail valuation only available in SAP Retail.
    What is known in the trade as the "retail inventory method" or the "retail method" involves valuating stocks at retail, often aggregated at merchandise category or departmental level.
    Both the cost method and the retail method can be used in SAP Retail.
    Actually IS-Retail is a combination of MM and SD plus other funtionalities speacially developed for the retail industry such as:
    Promotions
    Pricing
    Assortments
    Clasification
    Merchandise category
    Seasons
    Is important to mention that all the funtionality of MM and SD is avialable in SAP IS-Retail with some diferences in some transactions:
    Material master data (article in retail) has some diferences.
    Vendor master data.
    Site master data.
    Reward if useful to u

  • Need information about t-code SCAT

    Hi All,
             I need information about t-code *SCAT.*
             I dont know any thing about this transaction. I need information about how to use. What for we will use. Basis people how they can use this SCAT t-code.
             Try to help me out in solving this issue.
    Regards,
    Sateesh J

    SCAT is used to upload the data with the transaction.The use of CATT is for bulk uploading of data. Although CATT is primarily a testing tool, it can be used for the mass upload of data. The way CATT works is like a real user actually inputting on the SAP screen.
    The over-all procedure to upload data using CATT is as follows:
    · Creation of the CATT test case & recording the sample data input.
    · Download of the source file template.
    · Modification of the source file.
    · Upload of the data from the source file.
    Refer the links:-
    http://sap.ittoolbox.com/documents/popular-q-and-a/catt-procedure-1795
    http://www.thespot4sap.com/Articles/CATT.asp

  • Need Information about More ports Fiber Optic Switches

    Hiii Guys,
    I need information about which Cisco Switch consist more Fiber Optic Ports. I knew one model Cisco (WS-C3750G-12S-E) Catalyst 3750G-12S-12 Gigabit Ethernet SFP ports. But we can using this we can make stacking up to 9 devices. Even though I need more than 12 ports in single device. Could any one help me out in this.

    Hi Sayed,
    Please take a look at the 3560E-12SD:
    http://www.cisco.com/en/US/prod/collateral/switches/ps5718/ps7078/product_data_sheet0900aecd805bac22.html
    [edit] Sorry, didn't catch from the first post reading that you've considered stacking (the 3560 doesn't support stacking).
    For more than 12 fiber ports on a single device you'll need to go for the 4500 series with the appropriate modules:
    http://www.cisco.com/en/US/products/hw/switches/ps4324/prod_models_comparison.html
    Cisco Catalyst 4500 and 4500-E Series Line Cards
    http://www.cisco.com/en/US/prod/collateral/modules/ps2710/ps5494/product_data_sheet0900aecd802109ea.html
    WS-X4418-GB Cisco Catalyst 4500 Gigabit Ethernet Module, server switching 18 ports (GBIC).
    BR,
    Mohammed Mahmoud.

Maybe you are looking for

  • Batch Management - Cost Benefit Analysis

    Hello experts My client is evaluating batch magmt in their mfg operations.The key requirement/driver is material traceability. They would like to know what is the impact of using batch mgmt in terms of adiotional resources,transaction and maintenance

  • CS5 design view blank

    I've been searching for the answer, nothing is helping. Yesterday I tried to open a website made for my class (linked to a template I believe) and design view suddenly showed up blank, also in split view. Code grayed out. Preview in browser and live

  • Invalid Descriptor Index

    I am using MS Sql Server 2000. I am getting following error while trying to retrieve records. javax.servlet.ServletException: [Microsoft][ODBC SQL Server Driver]Invalid Descriptor Index      org.apache.jasper.runtime.PageContextImpl.doHandlePageExcep

  • I downloaded Firefox 4.0, but there isn't an "install" button to click on and I continue to get the download prompt each time I sign on my computer.

    After clicking the download button, the download box comes up and asks if I want to save or cancel. I click on save and nothing happens that I can tell. I do not get anything that says to click on for installing the upgrade to 4.0. This happens every

  • I have an iphone 4s

    My iphone 4s needs to be backed up, I am having problems with everything, when connected to itunes to do the backup it shows the phone being 8gb, but in the phone settings it is only showing 6gb.. when I spoke with verizon tech support they referred