Does using homesharing use up internet usage if you do not get unlimited usage?

does using homesharing use up internet usage if you do not get unlimited usage?

No, it's on your local network,

Similar Messages

  • I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    Logged the call with SAP who directed me to 'Define settings for attachments' in IMG and setting the 'Deactivate Java Applet' & 'Deactivate Attachment versioning' checkboxes - problem solved.

  • I use a 10.8 system and can not get Terminal or Textmate to accept a password. I actually can't type it when prompted. Any ideas?

    I use a 10.8 system and can not get Terminal or Textmate to accept my password by that I mean, neither will even allow me to TYPE it in.
    I need this to edit hosts files. I've used Macs for years but am not that wise on the inner workings. HELP!?

    If you type a password into Terminal it will not appear on the screen at all, just enter it and press return.

  • HT1454 I have a speaker with I phone 30 pin dock, it use to work fine but i am not getting error saying accessory not supported,how i can determine what could be the problem

    I have a speaker with I phone 30 pin dock, it use to work fine but i am not getting error saying accessory not supported,how i can determine what could be the problem
    i am getting the same error with my rf transmitter that i use in my car

    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Did this start happening after an iOS update? Sometimes an iOS update will break compatibility.
    Sometimes this works:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.

  • I have used F4IF_FIELD_VALUE_REQUEST function module.but i am not getting t

    Hi friends,
    I have 2 screen fields EQUNR & EQKTX.i have attached custom help to EQUNR.when i select value from f4 help  then i want corresponding value from search help should get populated in the EQKTX field.
    I have used F4IF_FIELD_VALUE_REQUEST function module.but i am not getting the result.
    DATA: lt_return_tab      TYPE TABLE OF ddshretval.
      DATA: lw_return_tab      TYPE ddshretval.
      DATA: lv_equnr LIKE eqkt-equnr,
            lv_eqktx LIKE eqkt-eqktx.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
        EXPORTING
          tabname                   = 'EQKT'
          fieldname                 = 'EQUNR'
          searchhelp                = 'Z_EQKT'
          SHLPPARAM                 = ' '
         dynpprog                  = sy-repid
           dynpnr                    = sy-dynnr
         dynprofield               = 'GW_SCREEN-WPTXT'
          STEPL                     = 0
          VALUE                     = ' '
          MULTIPLE_CHOICE           = 'X'
          DISPLAY                   = ' '
          SUPPRESS_RECORDLIST       = ' '
          CALLBACK_PROGRAM          = ' '
          CALLBACK_FORM             = ' '
          SELECTION_SCREEN          = ' '
        IMPORTING
          USER_RESET                =
       TABLES
         return_tab                = lt_return_tab
        EXCEPTIONS
          FIELD_NOT_FOUND           = 1
          NO_HELP_FOR_FIELD         = 2
          INCONSISTENT_HELP         = 3
          NO_VALUES_FOUND           = 4
          OTHERS                    = 5
      IF sy-subrc = 0.
        READ TABLE lt_return_tab INTO lw_return_tab INDEX 1.
        IF sy-subrc = 0.
         MOVE lw_return_tab-fieldval TO lv_equnr.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = lw_return_tab-fieldval
            IMPORTING
              output = lv_equnr.
          SELECT SINGLE eqktx
            INTO lv_eqktx
            FROM eqkt
            WHERE equnr = lv_equnr AND
                  spras = sy-langu.
          IF sy-subrc = 0.
            gw_screen-wptxt = lv_eqktx.
            gw_screen-equnr = lv_equnr.
          ENDIF.
        ENDIF.
      ENDIF.
    Please provide the solution.

    I have written the same code as you said but still its not giving me the equnr value.
    DATA :  lt_dynpread1        TYPE STANDARD TABLE OF dynpread,
              lt_dynpread11       TYPE STANDARD TABLE OF dynpread,
              lw_dynpread1        LIKE LINE  OF lt_dynpread1,
              lw_dynpread11       LIKE LINE  OF lt_dynpread11,
              lt_return_tab1      TYPE TABLE OF ddshretval,
              lw_return_tab1      TYPE ddshretval,
              lv_equnr1           LIKE eqkt-equnr,
              lv_eqktx1           LIKE eqkt-eqktx,
             lt_eqkt            TYPE STANDARD TABLE OF eqkt,
              li_dselc       TYPE STANDARD TABLE OF dselc,
               lwa_dselc      TYPE dselc.
      TYPES: BEGIN OF lty_eqkt,
            equnr TYPE eqkt-equnr,
            eqktx TYPE eqkt-eqktx,
            END OF lty_eqkt.
      DATA: lt_eqkt TYPE TABLE OF lty_eqkt,
            li_dynpread    TYPE STANDARD TABLE OF dynpread,
            lwa_dynpread   TYPE dynpread.
      DATA:
            lg_condition    TYPE string.
      TYPES: BEGIN OF lty_eqktx,
               sign(1)   TYPE c,
               option(2) TYPE c,
               low       TYPE eqkt-eqktx,
               high      TYPE eqkt-eqktx,
              END OF lty_eqktx.
      DATA: lt_eqktx TYPE STANDARD TABLE OF lty_eqktx.
      DATA:lw_eqktx TYPE lty_eqktx.
      lwa_dynpread-fieldname = 'GW_SCREEN-WPTXT'.
      APPEND lwa_dynpread TO li_dynpread.
      CLEAR lwa_dynpread.
    Read Screen Field Values.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname     = sy-repid
          dynumb     = sy-dynnr
        TABLES
          dynpfields = li_dynpread.
    Read the first record as only one record will be present
      READ TABLE li_dynpread INTO lwa_dynpread INDEX 1.
      gw_screen-wptxt = lwa_dynpread-fieldvalue.
      CLEAR lw_eqktx.
      lw_eqktx-sign = 'I'.
      lw_eqktx-option = 'CP'.
      lw_eqktx-low = gw_screen-wptxt.
      APPEND lw_eqktx TO lt_eqktx.
      CLEAR lw_eqktx.
      IF gw_screen-wptxt IS INITIAL.
        SELECT equnr eqktx
             INTO TABLE lt_eqkt
             FROM eqkt.
      ELSE.
       MOVE 'EQKTX CP GW_SCREEN-WPTXT' TO lg_condition.
    *lg_condition = GW_SCREEN-WPTXT.
        SELECT  equnr eqktx
             INTO TABLE lt_eqkt
             FROM eqkt
          WHERE eqktx IN lt_eqktx.
      ENDIF.
      lwa_dselc-fldname = 'F0002'.
      lwa_dselc-dyfldname = 'GW_SCREEN-WPTXT'.
      APPEND lwa_dselc TO li_dselc.
      CLEAR lwa_dselc.
      lwa_dselc-fldname = 'F0003'.
      lwa_dselc-dyfldname = 'GW_SCREEN-EQUNR'.
      APPEND lwa_dselc TO li_dselc.
      CLEAR lwa_dselc.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
      DDIC_STRUCTURE         = ' '
          retfield               = 'GW_SCREEN-WPTXT'
      PVALKEY                = ' '
          dynpprog          = sy-repid
          dynpnr            = sy-dynnr
          dynprofield            = 'GW_SCREEN-WPTXT'
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
          value_org              = 'S'
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
        TABLES
          value_tab              = lt_eqkt
      FIELD_TAB              =
          return_tab             = lt_return_tab1
          dynpfld_mapping        = li_dselc
    EXCEPTIONS
       parameter_error        = 1
       no_values_found        = 2
       OTHERS                 = 3

  • Is there a way to stop the OS from switching to a newly opened app?  I would like to be able to continue what I'm doing while I wait for an app to launch and not get interrupted by a forced entry into the app.

    Is there a way to stop the OS from switching to a newly opened app?  I would like to be able to continue what I'm doing while I wait for an app to launch and not get interrupted by a forced entry into the app.
    As an example, I'm going to my email in safari, while I wait for it to load, I open an excel document, and the OS decides excel should be the front app, so I go back to safari so I can enter my login info, but halfway through my password the OS decides that excel is where I should finish typing my password.
    VERY ANNOYING.  Can I open apps in the background?

    Thank you everyone for the suggestions. J D, I'm not a terminal fan, but I'm sure it works.  I found a solution that I can use in the dock from another post. 
    Annoyed by Mac OS
    Works great and allows me to maximize those multitasking minutes.

  • TS3198 After doing the backup and restore how do you know if the phone is unlocked if you do not get the message: "Unlock Complete. Congratulations, your iPhone has been unlocked. To set up and sync this iPhone, click Continue."

    After doing the backup and restore how do you know if the iphone is unlocked if you do not get the message: "Unlock Complete. Congratulations, your iPhone has been unlocked. To set up and sync this iPhone, click Continue."

    If you don't get the message, your phone is NOT unlocked.

  • Heartbleed virus/vulnerability-I have been hearing about the "heartbleed vulnerability" and told to change all my passwords. Does this apply to Macs? I thought they could not get viruses and this was one of the reasons I got one.

    I have been hearing about the "heartbleed vulnerability" and told to change all my passwords. Does this apply to Macs? I thought they could not get viruses and this was one of the reasons I got one.

    See What is Heartbleed?
    (Fair disclosure: The Safe Mac is my site, and contains a Donate button, so I may receive compensation for providing links to The Safe Mac. Donations are not required.)

  • Wifi problems.  I am using my ipad connected to a secure server.  I keep having connection problems.  My ipad shows I am connected, but I can't use the internet at all.  I keep getting a not connected message.  Help

    I am using my ipad on a secure network.  I have problems staying connected.  It shows I'm connected with full bars but I can't use the internet.  I turn the wireless off, reset the network and turned off the ipad, but this problem keeps happening. (Its been going on about 2 weeks)  Any ideas?

    Sayingyou went through all the steps of fixing provides us with little information see we do not know what step you tried.
    - Have you reset your iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Powered off and then back on your router?
    - The troubleshooting here:
    iPhone and iPod touch: Troubleshooting Wi-Fi networks and connections-
    - Configuring your router to use no encryption as a test. If OK, the try a simple password.

  • Need to be able to use and sinc Google calendar, I can not get enhanced google email plug in for some reason

    I finally got a gmail account and have tried to create a calendar for my family using google calendar.  The calendar appears on my Torch 9810 but will not sinc with google calendar.  I keep reading that I need enhanced google mail plug in but can not find where to get this plug in.  I am not tech savy, so any help would be appreciated.  I am a long time Blackberry customer (15 years) and in the almost 2 years of having the Torch, I am ready to huck it out the window and give up.  I loved my Bold, the Torch does not compare in my ease of use.
    Thank you for your help.

    Hi and Welcome to the Community!
    From what I understand, Google discontinued support for the Enhanced PlugIn as well as many other things...but that's a change that Google made, not BlackBerry. Further, via the available OTA sync capability for Google Calendar, only the primary calendar can be synchronized...no others.
    So, I'm a bit unclear about your specifics...it sounds like you created (on Google) a sub-calendar for "family", and somehow got that to appear on your BB, but cannot get it to sync OTA with Google. But all of that sounds contradictory to what I understand...in that you should not have been able to get that sub-calendar to appear on your BB at all since Google only supports the primary calendar.
    So some further details about all of that will likely help greatly in understanding, and hopefully then providing you with useful guidance.
    Thanks and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • What do I use when Migration Assistant reads "you might not be able to transfer using firewire on this computer"?

    When using Migration Assistant to transfer from one Mac to another Mac, as soon as I get to the point where it says to connect the firewire to each computer, it says "You might not be able to transfer using Firewire on this computer". What do I use then?

    firetruckjanet wrote:
    The G5 is running osx 10.4.11, but so is the G4.
    I don't know if it's the Tiger or the Leopard.
    10.4.x is Tiger; 10.5.x is Leopard.
    I've not used the Tiger version of Migration Assistant (just Leopard and later), and there's not much in the way of Apple tech articles for it anymore.
    Since the message says "might not," I don't see any reason not to give it a try.  At worst, it will fail and perhaps leave a partially-transferred user account on the G5.  If that happens, we can deal with it.
    I'd make sure the connections are snug and secure, and try it.
    Good luck, and keep us posted.
    I don't have any backups of the G4 and I don't have an external drive and I don't know anyone who has one.
    If your data is important to you, invest in one . . . soon, and start making regular backups.  They're not very expensive (some as cheap as $50, good ones perhaps $100). Disk drives fail, especially after a few years, other things go wrong, and even the most careful users make mistakes now and then.

  • When I print to Canon 100 Pro using Photoshop elements 12 for Mac, do not get true color as when I print straight from photo

    When I print using Macbook and Adobe Elements 12 on Canon 100Pro, do not get true color.  When I download a photo and print from the download, I get true color.  Where do I start to fix issue?  It appears to be a Photoshow issue rather than Macbook or Canon 100 Pro.

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • When using the Photographic blur gallery I do not get get the Tools box on the side as I've seen in your tutorials.

    Why don't I get the Tools panel when I am using one of the blur tools in Filter Gallery? the Adobe tutorial shows the panel on the side, but I just don't get it.

    This is a user to user Forum, so you are not really addressing Adobe here, even though some Adobe employees thankfully have been dropping by.
    Which version of Photoshop do you use and which version is used in the tutorial you are referring to?
    Could you please post a screenshot to illustrate the issue?
    edited

  • Something using my internet usage ????

    Hi all, this may be a strange one, but i have contacted my operater and they were no help, so i thought i would let you guys give it a bash
    For some reason, something on my BBcurve is eating into my bandwidth every night at 00:00.01
    So 1 second past midnight every night, it conects to blackberry.net and does something, i cant work out what thou.
    I wouldnt mind but most nights its in the region of 5-8 meg  so its using something like 50% of mu usage allowance every month.
    i only go the phone 2 weeks ago, so need help, i cant find anything that uses this, i have no apps to speak of that might need to connect, unless one of them is checking for updates, but still this wouldn't happen every night, i thought maybe BB lumped together email retrieval but as you can see, this would be 100's to use 8 meg, and so far i have received about 15 emails in the 2 weeks.
    Any ideas on a setting i could check or a way of stopping the BB from connecting without my say so ???
    Or is their something that is using this usage from BB services ??
    thanks all,

    Well, its all a guessing game on my end...  Go check out an old app called MiniMon, and see if it will show you what the data is uploading/downloading to?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Hello there. I have a problem with my macbook pro. The built in wifi was broken. Is there anything I can do so I can still use the internet? Thank you.

    Pleas help. Thanks.

    There are any number of possibilies... you could have problems with runaway applications, causing your machine to overheat and setting the fans off, you could have bad fan sensors, etc.
    Open Activity Monitor (Applications>Utilities) and see if you have any apps that may be hogging the CPU. Call back.
    Clinton

Maybe you are looking for

  • How can i  display output in the same selection screen?

    I've a requirement. Suppose in my selection screen there are three input fields. On the basis of this selection screens input It will  display the output in the same selection screen. Can it be possible? . Can it be possible to modify the default scr

  • Impact Of eCATT Version Upgarde From 3.1 To 3.2

    Dear All, There is a query related to version upgrade of eCATT from 3.1 to 3.2. The Web Application Server is 6.20 with Patch level 46. What will be the impact of the version upgrade of eCATT to the already existing scripts which were developed in ve

  • Port refuses to go active on 5508

    We are installing a new 5508 but the management port refuses to go active on the network. It's a new box and just has a base configuration which appears to be identical to a second new box which is working (other than name an IP address). The only di

  • Converting .avi files into .mp4 .mov or any other file type for ipod

    Hello! I've got .avi file and i want to convert it into any playable file for my ipod is there some program? i've checked quicktime links and i ended up at a page with a 30 euro bill... anyways can anyone help me?

  • Example of USER_EXIT

    Hello friends, I dont know What is User Exits-Menu Exits-Function Exits. Can anyone tell me how to use it and how to make code for it. Give Example so i can run here and understand. Thanks in advance. Regards, Nimesh Master