How does rate plan work if I'm the only iphone with family?

Both my stepdad and mom will be using normal phones... and I will be using an iPhone 3G. How does the rate plan work? Do my parents have to have their own rate plan, and I have to take my own iPhone line?

yeah zipidy is wrong.
im doing the same thing. We have unlimited family texting, which works in conjunction with my iphone, all i had to do was add the 30 dollar data plan.

Similar Messages

  • Why isn'y home sharing working? Am I the only one with this problem...

    I've watched about 12 youtube tutorials on how to use home sharing and none of them are working. ive redownloaded itunes and its still not working.
    what's going on !?
    Help!!!!

    Hi there,
    The good news is that M-Audio have just released a new set of drivers. Check out the following support article:
    http://www.m-audio.com/index.php?do=support.faq&ID=36be2fb74b90752fe3568b07c20a2 189
    While this relates specifically to Leopard, perhaps you were falling foul of some driver issue.
    Time to try updating your existing drivers and let us know. By the way, no, you were FAR from the only person with this problem. M-Audio have been very slow in getting drivers out. Let's hope this is now a thing of the past.
    Pete

  • How does iTunes Match work - do I keep the music?

    Hey guys! With iOS 7, I can finally stream my music that I downloaded/bought on iTunes directly from iCloud, which is really amazing because I can finally free up my storage on my iPhone. Now, the only songs I have to store are the ones that I bought from places other than iTunes and I'm actually thinking about subscribing iTunes Match for several reasons:
    1. I don't just download music from iTunes, I sometimes also buy music on Amazon and Google Play.
    2. The music I bought on Amazon somehow  has lower volume(intensity level, i.e. not loud) sometimes.
    3. I did rip and still rip some music from CDs and it would be great if iTune can match it and then I can just stream them from iCloud.
    4. The quality of some of the music I ripped was not the highest quality and I would love to upgrade them without having to rip them all over again.
    Now, here is my question. Will the songs stay if I only subscribe iTunes Match for a year only and then cancel the service? That means if I cancel the service a year later, can I still stream my music from iCloud? So the music I bought elsewhere is equivalent to the music I bought on iTunes (the music stays with my Apple ID). One more question, I heard that sometimes iTunes can't match your songs because the artist name or album name in your library are spelled or showed differently (',' rather than '/', "The" rather than "the"). If iTunes can find the right album artwork for my music, can I also assume it will match my songs without any problem? So all I have to do *if* iTunes can't find the music is to modify the artist name or/and album name?
    That's it! Thank you in advance!

    jerryroundel wrote:
    Do you know how iTunes match the music? For example, I ripped the CD "Rent [Film Soundtrack]" and there are actually two discs, so I have two album names Disc 1 and Disc 2 while iTunes version only has one album and with different name of course ("Rent (Original Motion Picture Soundtrack)"). In this case, will iTunes Match work?If not, is there anyway that I can make it work?
    As I mentioned, ID3 tags are not a factor in whether a track will match or not. The service uses a small "sonic fingerprint" of the file which it compares against an online database. So your ripped album having a slightly different Album name than what is is in the iTunes Store actually will not have any effect on the tracks matching or not.
    jerryroundel wrote:
    Another thing is that I know I get to keep my music as long as it is in my HDD, but can I still stream my songs directly from iCloud after I cancel the subscription as if I bought them on iTunes?
    No.

  • How does a delta work when BW is the source?

    Greetings to All,
    We are loading from R/3 into DSO1, and then from DSO1 into DSO2.  The R/3 extractor that loads DSO1 is delta-enabled.  We are not sure, however, if a delta mechanism governs the load from DSO1 into DSO2.  The DTP says its extraction mode is delta, but does that mean, if a row in DSO1 changes, it will negate the key figures on the  original row and send a new row the way R/3 does?
    For example, suppose the R/3 extractor sends us Row 1. 
    Row 1 has a key figure with a value of $100.
    Row 1 gets changed in R/3, and the new value is $125. 
    The R/3 delta mechanism takes care of this by negating the key figure on the appropriate row and sending us a correcting row.  For example, the R/3 extractor will send us:
    Row 1 $100
    Row 1 -100
    Row 1 $125
    So... the net value in DSO1 is correct, i.e. 100 - 100 + 125 = 125. 
    When we load from DSO1 into DSO2, however, do you know what rows will load into DSO2?  Is BW "smart" enough to do this type of negation?
    Thanks! 
    Regards,
    Sarah-Jane

    The R/3 delta mechanism takes care of this by negating the key figure on the appropriate row and sending us a correcting row
    The function of negation is not done by R/3 rather by BI with use of before and after images in ODS. R/3 sure does send us the changed records but not the associated negation values in a new row. So if Bi can handle delta with one ODS, sure it can handle others too.
    http://help.sap.com/saphelp_bw33/helpdata/en/10/54853b175d214ee10000000a11402f/content.htm
    Message was edited by:
            voodi

  • How does SAPscript 'WRITE_FORM' works ?

    Hi
    I have a Z program working fine, it is a SAPM07DR copy and i aggregated some fields to WASCHEIN form.
    But i see when the program (standard or copy) calls the write form, the field values in program have other values (just the previous values) than the values wich appears in the printed form.
    For example: 
    WASCHEIN KOPF Window has the WERKS value:
             Plant:    &*T001W-WERKS&
    But when the write form is called
              CALL FUNCTION 'WRITE_FORM'
                EXPORTING ELEMENT = 'KOPF'
                WINDOW            = 'KOPF'.
    In the program the *T001W-WERKS field has a different value that the value wich appears in the spool, debugging i see that the field has the prevoius value in the program:
    Program
    *T001W-WERKS
    (when Write Form).............Spool
        '     '...................................Plant:  0900
        '0900'.............................Plant:  0901
    I had to do the same logic in my new aggregated fields, but i realy don't know why does the program works in this way.
    Why the print program and sapscript function works in this way ?
    How does WRITE-FORM works, that is where the function take from the values to print ?
    Thanks
    Frank

    Hi Max
    I hope the program works like you said, but it works:
    old_werks = '   '
    T001W-WERKS = '0900'.
    *T001W-WERKS = T001W-WERKS .
    *T001W-WERKS = old_werks.    <-- '   '
    CALL FUNCTION 'WRITE_FORM'
    (form KOPF with *T001W-WERKS)
    old_werks = '0900'
    T001W-WERKS = '0901'.
    *T001W-WERKS = T001W-WERKS .
    *T001W-WERKS = old_werks.    <--  '0900'
    CALL FUNCTION 'WRITE_FORM' 
    (form with *T001W-WERKS)
    But the FM prints 0900 and after 0901, when the *T001W-WERKS values were '    '  and  '0900'   !!!
    (and with the *T001W-NAME1 field occurs in the same way)
    Why does the FM prints that values ??
    Thanks
    Frank

  • How does TimeOut(Sec) works/ behave in FTP Adapter?

    Hi ,
    How does TimeOut(Sec) works/ behave in FTP Adapter?
    Lets Say : If I mention 300 Secs in this . How Should it behave ??
    if a file processing in adapter is taking more then 300 sec , will it also be  terminated ??? what error response i will get in such case.
    Regards
    Prabhat Sharma.

    Hi,
    if there's a network error the channel may hang (for a very long time)
    if you specify 300 secs after that time the channel will reset the connection and you can start pooling again
    for more details:
    Note 849089 - XI 3.0 / PI 7.0 File Adapter: FTP Timeout Handling
    Regards,
    Michal Krawczyk

  • How does Merged Dimensions Work in WebI created on SAP BI Queries

    Hi,
    I need to know how does Merge dimensions work in WebI when using SAP BI Query as source?
    Below is my understanding when connection is defined for the universe on oracle database:
    1) To get the data in merged dimensions, there must be physical join (Either Direct or vai some other tables) between different tables at backend level (This means  there  must be join between tables in Oracle database.)
    2) we get the UNION of data when dimensions are merged at webI level.
    I dont know how this works in SAP BI.
    Since there is different data model defined for different BI Queries in SAP , and for each BI Query and there is seperate Universe, So how can you get correct data in WebI when there is no connections in DSO's used in different BI queries?
    Can any one suggest me the way data apperas in merged dimensions for WebI created on SAP BI?

    I assume we are only talking about merging dimensions in Web Intelligence here and not on the BW backend. this is a client side mere where you have 2 resultsets.
    if you want to do this on the BI server side it would be a multi-provider combining different InfoProviders - or a InfoSet - depending on the join type you need. MultiProvider is a union, Infoset allows you to choose
    Ingo

  • How does SUM actually works

    Hi,
    I'm puzzled by how SUM actually works.
    I've got a table with the following fields:
    SET_OF_BOOKS_ID NOT NULL NUMBER(15)
    SUMMARY_CODE_COMBINATION_ID NOT NULL NUMBER(15)
    DETAIL_CODE_COMBINATION_ID NOT NULL NUMBER(15)
    TEMPLATE_ID NOT NULL NUMBER(15)
    LAST_UPDATED_BY NOT NULL NUMBER(15)
    LAST_UPDATE_DATE NOT NULL DATE
    ORDERING_VALUE NOT NULL VARCHAR2(25)
    Using the below, I was able to get the total value of all the ordering value.
    select sum(ordering_value) from gl_account_hierarchies where set_of_books_id = 1 and summary_code_combination_id = 1147;
    I was happy that I could get the total value but am puzzled as ordering value is of data type VARCHAR2.
    Is sum(ordering_value) a VARCHAR2 or a NUMBER then?
    I did a simple test, inserting the following record:
    insert into gl_account_hierarchies values(1,1024,1,2,3,'11-APR-2002','xyz');
    After committing, I double check by using the following statement:
    select * from gl_account_hierarchies where last_update_date = '11-APR-2002';
    and was able to retrieve the newly inserted record.
    But when I did another check with the following statement:
    select * from gl_account_hierarchies where set_of_books_id = 1 and summary_code_combination_id = 1147;
    I wasn't able to retrieve the newly inserted record.
    Why is that so? How does SUM actually works? Is the output of SUM a VARCHAR2 or NUMBERIC value?
    thanks in advance!!
    Yu S.S

    SUM() gives a number.
    What you have come across is an implicit data conversion. Basically the SQL parser doesn't reject your query as being syntactically invalid just because you're attempting a mathematical function on a non-numeric column. Instead when you execute your query SQL substitutes this
    select sum(to_number(ordering_value)) from gl_account_hierarchies where set_of_books_id = 1 and summary_code_combination_id = 1147;
    If you want to check this create a view
    create order_value as select sum(ordering_value) sum_val from gl_account_hierarchies ;
    and then desc it.
    Cheers, APC
    SUM(

  • How does request.setAttribute() works?

    How does request.setAttribute() works?
              Does it append data to http header and forward? Does it set to a memory
              space like session.setAttribute() does?
              Thank you
              Jim
              

              Q. Does it append data to http header and forward?
              No.
              Q. Does it set to a memory space like session.setAttribute() does?
              Yes. So you can set attributes in request scope and use them in the servlets and
              JSPs in the servlet chain via request dispatcher and jsp:include/jsp:forward.
              "Jim" <[email protected]> wrote:
              >How does request.setAttribute() works?
              >Does it append data to http header and forward? Does it set to a memory
              >space like session.setAttribute() does?
              >
              >Thank you
              >Jim
              >
              >
              

  • How does at NEW works?

    Hi,
    How does AT NEW works with the below code>
    LOOP AT i_crhd into x_crhd.
    at new arbpl.
    v_resource = x_crhd-arbpl.
    LOOP AT i_afko into x_afko.
    at new plnbez.
    v_matcode = x-afko-plnbez.
    READ TABLE i_mseg into x_mseg with key x_afko-aufnr.
    IF sy-subrc eq 0.
    IF x_mseg-bwart eq '101'.
    v_menge_101 = v_menge_101 + x_mseg-menge.
    ELSEIF i_mseg-bwart = '102'.
    v_menge_102 = v_menge_102 + i_mseg-menge.
    ENDIF.
    ENDIF.
    endat.
    ENDLOOP.
    endat.
    ENDLOOP.
    Thanks a lot!

    Hi,
    In your program....
    For every new arbpl AT NEW will trigger and for eveery at new plnbez one more new field will trigger.
    Ex:  We have below records in your internal table 'i_crhd'.
    arbpl
    101
    101
    102
    103
    103
    and  we have records in internal table 'i_afko '
    plnbez
    A
    A
    A
    B
    B
    C
    C
    For every change in arbpl record AT new will fire and for every cheange in plnbez one more AT new will fire.
    Pls. reward if useful...

  • I wanted to know how does technical support work via icloud and is there any new technology out that helps providing technical support

    i wanted to know how does technical support work via icloud and is there any new technology out that helps providing technical support?

    basically I’m doing a project were I wanted to find out if there are recent technology  out that provides technical support for example they do it with remote access but is they any new ways that  they can support us and just wanted to find out if icloud gives technical support then how?

  • How does chat applet works?

    how does chat applet works? What specific technologies should i learn to make a chat messaging work?
    thanks in advance for ur help...

    Chat applets work on sockets. Normally there are two parts. One server and one or more clients. The clients connect to the server and any message sent by a client is then distributed by the server to all the other clients.
    Sun's site is incredibly slow tonite so I'll give you a google link
    http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=chatserver+chatclient+java

  • How does opatch lsinventory works

    How does opatch lsinventory works ?

    Hi,
    Refer links:
    http://download.oracle.com/docs/cd/B19306_01/em.102/b16227/oui8_opatch.htm
    http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e15294/prereq_checks.htm
    http://avdeo.com/2008/08/19/opatch-utility-oracle-rdbms-patching/
    thanks,
    X A H E E R

  • How does adobe encoder work with windows 8?  I can't get it to work.

    How does adobe encoder work with windows 8?  I cant get it to work.

    Flash Media Live Encoder doesn't work with Windows 8.
    The best it gets is Windows 7 64 bit.

  • How does mackeeper 2012 work? and what is the benefit? is that same with kaspersky for windows? tks

    How does mackeeper 2012 work and its benefit? Is that same with Kaspersky for windows?

    Good, be sure not to use their uninstaller, which can cause more havoc, use the instructions in my first link.
    Real shame they can advertize this junk on most every Mac site!
    ClamXAV, free Virus scanner...
    http://www.clamxav.com/
    Free Sophos...
    http://www.sophos.com/products/enterprise/endpoint/security-and-control/mac/
    Little Snitch, stops/alerts outgoing stuff...
    http://www.obdev.at/products/littlesnitch/index.html

Maybe you are looking for

  • Using a view to create a theme?

    Can a view be used to create a theme? For example, I have several views which are subset of another table which contains my imagery (using GeoRaster). I would like to create a theme for each of these views. I know that a GeoRaster theme has the optio

  • Value Mapping error

    Hi Experts While testing Value Mapping we are getting following error in trace Trace level="1" type="T">Key mapping from some information----   has not been performed</Trace>   <Trace level="1" type="T">*** END APPLICATION TRACE ***</Trace> Regards A

  • EDI Fax Problem

    Hi All, The EDI notifications (payment details for electronic payments) being sent by fax are erroring out because mail servers were reconfigured to point to Exchange instead of Domino servers. The issue is the syntax used for Domino (ie. "Accts_rec@

  • Why do I have to Re-Register my Touch each time i sync it?

    Every time I connect my Touch, I have to repeat the registration process. This is a replacement Touch for one that I had that blew up on me. Only thing I can figure is, they made me register it at the store where the replaced it, and it tried to sync

  • All my text is in CAPS (without Caps lock on)... any idea why?

    Typing in text layer types capital letters (even if I type regular small letters). No idea why and how I can change this.