Business Hub rate not updating.

Hi guys, me again!
It's been a little while so I thought I'd post a problem I've been having with my Business Hub. Effectively when I first got the business hub, the Rate would always match the Max Rate, I.e. when the line capacity changes (which can do because of the length of the line) the rate would change with it. I was happy with this as my Max rate rarely dropped below 1150kbps and so I stayed in that profile. Often it would go up to above to 1300 and the rate would follow even if it didn't mean a change in IP profile.
However, now things have changed. It seems as though the rate doesn't follow the Max Rate and it's actually causing problems. For instance, for the last 2 weeks my rate was stuck at 944kbps (which gives me a profile of 750kbps) while my rate was 1250 with 6.4db noise (which gives me a profile of 1000kbps). I checked the diagnostics and Max Rate dropped below 1150kbps only once for a very short time and it was soon up again to 1200+. What's annoying is that for the last 2 weeks I could have been on a higher IP profile but it simply wasn't updating. Then yesterday the rate went up to 1360 (still in the 1000kbps profile range), yippee I thought, but to no avail as it was down to 1050 (back down to 750 profile) again this morning, despite having a max rate of 1200. It seems as though it rarely updates the Rate if Max Rate is higher, but instantly updates it if it has a lower value.
I don't know why it's begun doing this but as you can see it shouldn't be doing this as its stopping my IP profile from rising despite my Max Rate increasing.
Any help would be greatly appreciated,
Regards,
Mike.

unless you are on a non adsl-max/adsl2 line then what you seem to think happens does not sound at all correct, certainly it is not how either of my lines work (both business hubs),
What happens is that you get a sync, fine, at that stage it determines the amount of data that can be send and that becomes your rate, over the length of the connection the max rate value can vary due I believe to bitloading and fluctuation normal interference on the line but this does not alter the sync rate on any of my lines EVER.
You seem to be losing sync then due to some reason and this causes you to swtch to another rate, either you have a line issue, an internal wiring issue or your target margin is set to low for the line you have (which would mean you get a really good sync during the day but at night it would tend to drop).
Now when you get a new sync and it is in the different IP profile band to the last ones(s) then two things can happen
1 - your sync means you drop a band and in which case this happens within 75 minutes, normally much quicker
2 - Your sync means you should go up a band and this should happen eventuallly.
When going up a band (unless you are on the CN21 88.2% method (which you are not by what you say) then there are two methods that would apply to you depending on your exchange.
Method 1 - 3 days. After 3 days of having a sync rate ALWAYS within the new higher band the profile should change, it does not matter despite what others saty if you have resyncs in between but every single one of them must be in the same band or greater.
Method 2 - Adaptive max. Same rules as above re syncs but the timeframe is much reduced, At the speeds you are talking about it basically works out at 24 hours if jumping 1 band and 12 hours if jumping more than 1 (allow 2 hours extra that these since the update seeems to be a scheduled task).
IN either of the above your profile can stick so if it has not updated within 3 days then you need to contact the mods on this site, posting the results of a bt speedtester and your hub stats and ask for the profile to be checked. They will be able to see the correct value on their systems and the wrong value on the speedtest and so know it is stuck or not.
Stuck profiles in my experience do occasionally get unstuck without any help but so far when this has happened it has been at 3-3.5 days only and if after that time then it never happens.
If my post was helpful then please click on the Ratings star on the left-hand side If the the reply answers your question fully then please select ’Mark as Accepted Solution’

Similar Messages

  • Error: Can't Add a New Sales Order: -10  Exchange rate not updated,

    Hi,
    I'm trying to add several Sales Orders contained in a XML document, whose root element corresponds to the Sales Person created that XML. Anyway, after I fill a Sales Order Document Object with the info in the XML and try to add it the following error appears: "Exchange rate not updated  [RDR1.U_Desc4][line: 2] , 'USD'" Which is strange because this company handles most of its transactions in MXP Currency. I will post the piece of Code that fills the object hoping it helps:
    For Each xndSalesOrder In xmlSalesOrder.Item("SalesMan").ChildNodes
                    oSalesOrder = Me.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                    oSalesOrder.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                    With xndSalesOrder.Item("HEADER")
                        oSalesOrder.CardCode = .Item("Deudor").InnerText
                        oSalesOrder.DocDate = DateTime.Parse(.Item("FechaCont").InnerText, Nothing)
                        oSalesOrder.DocDueDate = DateTime.Parse(.Item("FechaEnt").InnerText, Nothing)
                        oSalesOrder.Comments = .Item("Observaciones").InnerText
                        oSalesOrder.DocRate = 11
                        oSalesOrder.DocCurrency = "MXP"
                        'oSalesOrder.ContactPersonCode = .Item("Contacto").InnerText
                        'User Fields
                        oSalesOrder.UserFields.Fields.Item("U_RefOV").Value = _
                            xndSalesOrder.Attributes.Item(0).InnerText
                        oSalesOrder.UserFields.Fields.Item("U_Referencia2").Value = .Item("Referencia").InnerText
                        oSalesOrder.UserFields.Fields.Item("U_FechaReferencia").Value = _
                            DateTime.Parse(.Item("FechaReferencia").InnerText, Nothing)
                    End With
                    With xndSalesOrder.Item("LINEAS")
                        For Each xndLinea In .ChildNodes
                            If intContLineas >= 1 Then                             oSalesOrder.Lines.Add()
                            End If
                            oSalesOrder.Lines.ItemCode = xndLinea.Item("Articulo").InnerText
                            oSalesOrder.Lines.Quantity = CDbl(xndLinea.Item("Cantidad").InnerText)
                            oSalesOrder.Lines.Price = CDbl(xndLinea.Item("Precio").InnerText)
                            oSalesOrder.Lines.TaxCode = xndLinea.Item("Impuesto").InnerText
                            oSalesOrder.Lines.DiscountPercent = CDbl(xndLinea.Item("DescuentoTotal").InnerText)
                            oSalesOrder.Lines.SalesPersonCode = xmlSalesOrder.Item("SalesMan").Attributes.Item(0).InnerText
                            oSalesOrder.Lines.Currency = "MXP"
                            'User Fields
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Promocion").Value = _
                                xndLinea.Item("AplicaProm").InnerText 'Valores posibles: Si, No
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc1").Value = _
                                CInt(xndLinea.Item("Descuento1").InnerText)
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc2").Value = _
                                CInt(xndLinea.Item("Descuento2").InnerText)
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc3").Value = _
                                CInt(xndLinea.Item("Descuento3").InnerText)
                            'If xndLinea.Item("AplicaProm").InnerText = "Si" Then
                            oSalesOrder.Lines.UserFields.Fields.Item("U_Desc4").Value = _
                                CInt(xndLinea.Item("Descuento4").InnerText) 'This is the UDF that's giving me problems!!!
                            'End If
                            intContLineas += 1
                        Next
                       If oSalesOrder.Add() <> 0 Then
                            Me.Company.GetLastError(intErrorAdd, sErrMsgAdd)
                            If (0 <> intErrorAdd) Then
                                FillLog("Sales Order Error: " & CStr(intErrorAdd) & "," & sErrMsgAdd)
                            End If
                            xmlLogSalesOrder.Item
                        End If
                    End With
                Next
    If you look at the code I've even tried the solution of hardcoding the DocRate and the Currency as seen in a similar post about the DTW.
    Sorry if code is in Spanglish, its quite late around here. I hope you can help me because it's kind of an urgent matter and I can't seem to find a solution for it.
    Other useful data: SAP BO 2005 Patch 4.
    Thanks in advance...
    Alfredo Gargari

    Hi Alfredo,
    Have you tried to add the same salesorder by hand, I think you wil first get a form with exchange rates.
    I think you should add a check to your program to check for an update currency rate (the sbobob function GetCurrencyRate does this for you).
    GetCurrencyRate MethodDescription
    Returns a Recordset object that contains the currency rate for a specified date and currency code.
    See Currency Bobs sample.
    Syntax
    Public Function GetCurrencyRate( _
       ByVal Currency As String, _
       ByVal Date As Date _
    ) As Recordset
    Parameters
    Currency
    Specifies the currency code.
    Date
    Specifies the date for the currency exchange rate.
    Return Type
    A Recordset object that contains one field named CurrencyRate that holds the rate value.
    SAP Business One returns 0 if the system cannot find the exchange rate.
    Regards,
    Ad

  • -10 Exchange rate not updated  , 'USD'

    Hi Experts,
    Am with a problem in Sdk Code(A\R Sales Invoice object)..My problem defines  as follows:
    I am having a table with 10 records in UDT..While Adding the UDT Records to Sap Sales Invoice(A\R)..by Getting the A\R invoice Object(13) ..Adding the 10 fields of UDT Table to OINV and INV1..it's throwing an error -10 Exchange rate not updated  , 'USD'..How to handle this in Code..Help would  be appreciated.
    Thanks in advance.

    Hello,
    This means, that the exhange rate is missing your local currency vs USD in the system. Your Business Partner or any of items you are adding to the invoice is using USD (price list or customer is in USD).
    My tip is some of the items has USD price set or USD Purchase price used.
    DO the following:
    Check the POsting date of your invoice
    Go to Administration -> Exhnage rate, and locate the posting date and USD from the matrix, and enter the rate.
    Post your invoice.
    it will work
    Regards
    János.

  • DTW Error -- "Exchange Rate Not Updated"

    After resolving my other document loading errors identified by the DTW, I now receive the same error for every record that I try to load for Purchase Invoices, Sales Orders and Sales Invoices.  It is…
    <b>Exchange rate not updated, ‘USD’  Notice: all records are rollbacked.</b>
    Any idea how to fix this?  I'm confused since I built the company with both Local and System Currencies as “US Dollar”, the Default Account Currency is the “Local Currency”, and the document load includes the DocCurrency field (set to "USD").
    I need to get this data loaded soon.  Any help would be greatly appreciated!
    Kind Regards,
    Scott

    My issues have been resolved...
    (1) The GL account must be an "expense" account.  The data migration that I am performing is pulling from another system that stores these transaction in a different way.  Therefore, even though the accounts from the source ERP system to B1 have been mapped correctly, I had to use a different "expense" account as the GL account associated with transactions in B1.
    (2) The DocType was, indeed, necessary to handle Service-type Purchase Invoices.  However, the DTW requires that the DocType value be set to '0' (for Items) or '1' (for Services).  This differs from the 1-character designation stored in the database table OPCH, a 'I' (for Items) and 'S' (for Services).  I would make a humble suggestion to SAP to setup the DTW accepted field values the same as are found in the database (or, at least, have a single and comprehensive resource for knowing what these accepted values should be).
    and, as noted above...
    (3) The DocCurrency and DocRate fields were required to load my data.  I suspicion that DocCurrency is required for all loads.  However, DocRate may not be since it could be set in the Exchange Rate form within B1.  Since my setup used the LC as the default currency AND I am using USD for both LC and SC, I believe it was necessary for me to use the DocRate field for this load.  This is another eccentricity that I would suggest SAP enclose within some sort of documentation about the DTW tool.
    The use of the DTW can be significantly simplified for customers with documentation and examples on its use.  The existing documentation is deficient.  Otherwise, I find it a nice tool to ease the data migration process for setting up Companies.
    Should anyone have further questions on my experience with this issue or other DTW-related topics, I would be pleased to reply with my experiences.  My contact information is available through my profile on this site.
    Kind Regards,
    Scott

  • Business area is not updating when allocating stock to sales order

    Dear Experts,
    When ever we allocating/dislocating stock in MB1B with 412E and 411E movement type,business area is not updating in the
    accounting documents.but we assigned business area to plant in the customization.its happening to our Depot,for remaing plants its working.
    Regards,
    Varun

    please suggest me right forum to post the issue.
    Regards,
    Varun

  • Exchange rate not updated with posting date, translation date updated

    Hi,
    I have the follwoing problem in F110. Currency documents are posted with exchange date of the docuemnt entry date. Translation date is updated with Posting date, just exchange rate is not updated. the systems calculates according entry date. Why entry date is one day before the date of posting, I cannot understand. The system takes the exchage date from entry date, which is one day before (docuemnt, posting and translation date)
    Thank you,
    Desimira

    Hello,
    This means, that the exhange rate is missing your local currency vs USD in the system. Your Business Partner or any of items you are adding to the invoice is using USD (price list or customer is in USD).
    My tip is some of the items has USD price set or USD Purchase price used.
    DO the following:
    Check the POsting date of your invoice
    Go to Administration -> Exhnage rate, and locate the posting date and USD from the matrix, and enter the rate.
    Post your invoice.
    it will work
    Regards
    János.

  • Hub Does not update many times

    Many a times, when I get a new message notification and see the hub, the message is not updated. I need to go inside the hub menu and into individual account and then see. When i come back to the hub, the message then appears. Whats the purpose of having a hub if the messages dont appear instantaneously.

    First, in your Hub screen, swipe down from the top right corner to the center of the screen FIVE times in a row.
    You should see a one second black screen and then a message "Preparing Hub". That should reset your Hub.
    ALSO: You have your mobile phone number listed as your "My Mobile Provider" or carrier. Putting your phone number out on the internet on these public forums for the world to see, is not wise. To change that, at the top of this page click on My Settings > Personal Profile > Personal Information, and in the entry block for "Carrier" type the name of your mobile provider.
    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

  • Business Area Field not Update in VF02 for output tex

    Hello All,
    in vf02 transaction the business area is not populating in case of output tex,i already search the relavent document in sdn but its not working,i impliment the exit userexit EXIT_SAPLV60B_006 (member of enhancement SDVFX006). as referance of http://scn.sap.com/thread/3146034,but my exit is not at all triger i check all the things like the project is already activated and i also thing that we need to fiel the bseg-table for tha i wrote the code also, as refer to
    http://scn.sap.com/thread/3164333,please suggest to resolve this issue. in  note SAP Note 199886 it say its a stnd.behv .
    THANKS,
    Sam

    Hi,
      iam not sure how it can be checked but in FS00 you can compare both GL Accounts at - control in chart of accounts whether it is p& l account or Balance sheet account
    also check the field status group
    if you can compare both GL accounts you will get the answer
    If you are doing sales  order check whether the Business area is appaering in the order
    iam sorry business area does not come from material master,profit centre comes from material master

  • BB Hub is not updating anything except emails after installing update 10.1.0.273

    Haye Everyone,
    My BB Hub stops updating Facebook, SMS/MMS, BBM, PIN, Whatsapp, YIM..
    I had tired all the given suggestions on different pages, threads except a security wipe.
    After a reboot, notifications come up for a couple of minutes and works fine with everything. But when i try to open or mark read any Facebook notification/message it went down again.
    after clicking the Facebook notification/message nothing updates in HUB, even if i made changes in HUB everything is just paused. all changes comes up after a reboot.
    Facebook and SMS notifications are set ON in HUB Management.
    I had reset the HUB but all in vain.
    One more thing i am facing is, when ever i connect my phone to LINK it says for an update, and surprisingly update version is same everytime and it downloads & installs in 10~20seconds, so phone reboots.
    I had tried same via BlackBerry Update website. same comes up. Even today i had tried updating my phone more than 30 times.
    I dont know what's really messy because i am not able to get messages at time and a delayed reply is creating problems for me.
    My OS details are as under,
    OS
    BlackBerry 10
    Softare Release
    10.1.0.273
    Build ID
    508730
    Flash Player Version
    11.1.121.147
    AIR Version
    3.1.0.147

    Hi registered and welcome to the BlackBerry Support Community Forums!
    When you start having problems with missing notifications, are you connected to Wi-Fi or to your Mobile Network? Do you receive any emails while you are not getting application notifications?
    In regards to the updates, if you have removed any pre-installed applications, the update server will detect this and inform you that an update is available (to reinstall the pre-loaded applications). 
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Business vendor volume not updating

    Hi,
    We have the following problem: when creating subsequent settlement with MEB4 the field S015-BONBA (business vendor volume) is less than expected, this can be seen comparing to the movements in MB51, but we cant find the origin of the problem because the system dont show any error messages. We believe it can be a problem related to support packages implemented months ago.
    Any ideas? . Thanks in advance

    Hi
    See SAP Note 429980 - LIS: Incorrect data in an info structure
    Regards
    Eduardo

  • Skype for Business not updating icons on start menu - Using OCT for Lync 2013 deployment

    We're currently deploying Lync 2013 to out fleet using the OCT to customize where the shortcuts are created.
    What we are finding is that the Skype for Business Patch does not update these icons.  It only updates the icons if they are in the default location (no OCT).
    Is there a standalone Installer for Skype for Business we could apply a TRANSFORM to? Or some other method of updating all icons startmenu, taskbar etc.
    Thanks

    Hi Alan Dooley,
    Have you tried to create a new desktop shortcut ?
    In addition, you can try to follow the FAQ below to rebuild the icon cache.
    https://social.technet.microsoft.com/Forums/windows/en-US/bea47202-d869-4155-8c8f-2a5b8bd7be1d/forum-faqhow-to-rebuild-icon-cache
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • BT business hub 2700hgv and 2701hgv

    Is there much of a difference between these hubs? And will they work with visions?

    The Business hub has it's issues (compared to non BT routers), for me the current one being that you cannot reboot it via routerstats (ie a url) but all in all these are fairlyl minor. Not being able to save and restore the settings is probably the worst one.
    On long lines it is a commonly accepted preference for sure. On mine it does not seem to make much of a difference except in one respect. All the previosu routers I have tried have showed on frequent occassions a minute by minute flucuation in noise margin (and also periods of no change) but the business hub does not show any of these at all generally so either it is hiding them which i doubt of it has some trick within it that is not on some other routers (perhaps inpluse noise impedence but that is a guess).
    The Noise margin over the day varies the same as it always did (but is clearer to see now) so that is no improvement over my old routers but that would be as expected pretty much since they were also good on long lines.
    What I don't know is how well the business hub can hold a low noise margin, my previous preferred router a WAG354G could normally hold it down to 0 and on occassion where it read -1 but my target margin was increased from 6 to 9 before I switched routers so the hub rarely sees 2 (and then only briefly) and at worst is seeing 3 or 4 overnight so I have no idea if it would hold to the same degree as the other routers would (however all routers would drop if the error count shot up at the same time to a high enough rate).
    When the 2701 came out I believe that there were some statements to it not being as good on long lines as the 2700 but these I suspect were not the results of a rigorous test.
    If my post was helpful then please click on the Ratings star on the left-hand side If the the reply answers your question fully then please select ’Mark as Accepted Solution’

  • Data not updating in table ,data transfered using DTW

    Hi Everybody,
    I had transfered data using DTW, it shows that data imported,but it not updated, that means it not shows in database.
    So please so me any solution to this.
    Regards,
    Srinivas

    Hi suda,
    I am giving he detailes of the BusinessObject
    BusinessObject =oUserLanguages
    template=oUserLanguages.csv
    i had copied the oUserLanguage.csv file and entered data into it and saved it(comma deliminated)
    steps:
    1.i had selected oUserlanguage object from list.
    2.i had selected source file (oUserLanguage.csv )
    3.the data properly matched and data is displayed when source tab is pressed. and ields are properly matched.
    4.three check boxes are checked.
    5.i had seen the message you are sucessfully specified required information for imporing data
    6.in lost step it shows like below
    Total:  2 business object(s)
    2 business object(s) imported successfully
    0 business object(s) not imported
    0 business object(s) updated successfully
    0 business object(s) not updated
    7.in log files status shows succeeded
    But I had cheked the languages , the data imported not shown.
    Regards
    srinivas

  • Business Area is not getting updated in "Main Bank Account" Line item (FF_5

    Hi Gurus,
    I am executing T Code: FF_5 for uploading the "Multi-Cash" Format. This transaction clears the Bank Clearing Account and post the entry to the credit of "Bank Main Account".
    Now while i had executed F110, the Business area was properly captured in the Bank Clearing Account Line item. But while executing FF_5, the Business Area is not getting captured against the "Main Bank Account" Line item.
    Can you please tell me how to capture the Business Area against the "Main Bank Account" Line item.
    Rgds,
    Prasad.

    Hi,
    1. In case of Business where payments are made centrally it is important to report
        Bank A/c Business area wise.
    2. However I have solved the problem by doing "Sustitution", and its working fine. The Business Area is getting updated against the Main Bank Account Line item.
    3. I am however getting one error while doing the upload in FF_5. The error occurs
       only if Business Area is a "required" field in Bank Account's "Field Status
       Group".
       Error: (00 298) Formatting error in the field COBL-GSBER ; see next message.
       But if I make Business Area as an Optional Field I am not getting an error and
       also the posting is done to Main Bank Account.
    Is there anyother method by which this error can be corrected.
    I have assigned 2 points for your inputs. Can you help me to solve this error as well.
    Rgds
    Prasad

  • Office 2013 Home and Business not updating

    I have two PCs on my network that I bought from Dell. Both came with a license for Office 2013 Home and Business. Office trial version was already on the machines and i just registered and activated the trial version using the licenses I was given from Dell.
    Everything was fine until I was troubleshooting a duplicate email issue in Outlook on of the machines. At this time I noticed Office didn't appear to be on the latest version of click-to-run. I am relatively unfamiliar with click-to-run Office 2013 and the
    changes to how it updates. Apparently it does this automatically. Problem is these two machines don't appear to be updating at all. I can't find an update history just a version number. I found online and performed the following troubleshooting steps:
    1.) Disable then re-Enable Updates by going into File -> Account -> Update Options
    - this seamed to start the downloading of updates but they never installed. That window telling me they were
    downloading just goes away and nothing happens.
    2.) If "1" doesn't work try an Online Repair.
    - the repair begins and ends before completing saying "Something happened". This effectively breaks the install and
    a following dialog box explains that Office was uninstalled.
    3.) Re-install Office
    - but have to run a cleanup tool first to remove remnants of previous install. I then find it difficult to find an
    installer that will work at all kept getting "Something happened" message. Finally Dell support found an installer that
    works. however even after the install Office will not update.

    Per your post, it seems that you activate the Office 2013 Home and Business trial version by Dell provided. I can confirm the update service is available for Office 365 subscription users, but I am not sure whether it is working for the trail version.
    You'd better confirm it with you Dell provider or post a new thread in
    Office 365 forum, thanks.
    Tony Chen
    TechNet Community Support

Maybe you are looking for

  • How do I get my ipod listed back on my itunes

    my brother in law connected his ipod to my computer and listed his as primary, how do i change it back to my ipod and be able to download songs onto my ipod

  • ITunes movie rental sync generates "authorize this computer" error message

    Hello. I've rented Cabin Fever (HD version) via iTunes and am trying to sync it to my iPad 2. The sync process continues for some time but then cancels with a message saying something like "this device is not authorized to play this content. Please a

  • Pop up in Applet (NOT JApplet)

    How do i create a single button pop up information box using applett. I want to be able to define text within it too.

  • Purchased movies and music

    Ok! Just purchased some music and dl'd with no problem but 3 movies have yet to download. Message window pops up, The iTunes is temporarily unavailable. Please try again later. Two days now.

  • Some Songs in Albums skips before finished to the next.

    Hy I have a problem. Some songs skips before they are finish to the next. Its a iTunes problem. When I copy the song to the desktop and play, the song plays complete whiteout any problem. So i have 100 and 100 of songs with this problem. This problem