SECOND week in a row cell outage...

For the second week in a row, I'm travelling North Carolina I-95 and there's a cell tower problem for sure. DATA problem to be exact.
Between Mile Marker 127 and 112 on I-95 (approx) It connects/disconnects from 3G, doesn't try 4G, then switch to 1X , then back to 3G and gets nowhere. Even if I reset my 4620L router/modem, it makes no difference.
And it's the second week in a row that I get this problem in that area...

    Hey JFGilbert!
Once you go 4G LTE, there's simply no going back. So, I want to start by saying that I'm very sorry for this issue and I do feel your pain. But, it's nothing we can't address because we expect flawless service.
To start off, it would be best if we isolate the issue so we can identify the problem better. Is this the only area where you have this network hiccup? Do you have a zip code we can lookup so as to take a look at things on our VZW map? You can also view this at http://bit.ly/ymXLCI . Do you have any other devices with us that experience the same problems in this area? Something you may wish to try to optimize your device's performance is to pull the SIM card http://vz.to/O1rL4Q . That will resync your Jetpack with our network for the best service possible. I don't want you experiencing these persisting issues so I'm looking forward to your reply as well as results!
EvanO_VZW
VZW Support
Follow us on Twitter @VZWSupport

Similar Messages

  • How to get selected Row/Cell value in i5Grid

    Hi Friends,
    Can anyone help to how to find the selected Row/Cell value of a i5Grid object. I am able to register the event handlers which are getting invoked on row/cell selection. But I want to know how can I get the value of selected Cell/Row. I would like to add selected Items from one i5Grid to another one.
    So want to know how can I get and set the value of i5Grid object.
    MII version 14.0 SP4 Patch
    Thank in advance
    Shaji Chandran

    Hi Shaji,
    Here is my code.
    <!DOCTYPE HTML>
    <HTML>
    <HEAD>
        <TITLE>Your Title Here</TITLE>
        <META http-equiv="X-UA-Compatible" content="IE=edge">
        <META http-equiv='cache-control' content='no-cache'>
        <META http-equiv='expires' content='0'>
        <META http-equiv='pragma' content='no-cache'>
        <SCRIPT type="text/javascript" src="/XMII/JavaScript/bootstrap.js" data-libs="i5Chart,i5Grid,i5SPCChart"></SCRIPT>
        <SCRIPT>
            var Grid = new com.sap.xmii.grid.init.i5Grid("STC/C5167365/i5Grid_TagQuery", "STC/C5167365/TagQuery");
            Grid.setGridWidth("640px");
            Grid.setGridHeight("400px");
            Grid.draw("div1");
        function setCellValue()
        Grid.getGridObject().setCellValue(1,1,"Set");
        function setCellValueAgain()
        Grid.getGridObject().setCellValue(1,1,"Changed Again");
        </SCRIPT>
    </HEAD>
    <BODY>
        <DIV id="div1"></DIV>
        <INPUT type="Button" value="setCellValue" onClick="setCellValue()"/>
        <INPUT type="Button" value="setCellValueAgain" onClick="setCellValueAgain()"/>
    </BODY>
    </HTML>
    Regards,
    Sriram

  • ALV  List  in the same Column for the row  CELL  i need button or value

    Hi,
    In my ALV list  for the same column I need Button or  Value for the different rows (CELL) depending upon my condition.
    as well as I have to make  read only of 3 rd column CELL based on my first column dropdown value CELL for this Row Only.
    Depends upon the value in  column 1 /  row 2   I have to  read only  the CELL of   column 5 / row 2   ie for the same row.
    Depends upon the value in Column 1/ row 3    I have to   EDITABLE  or   Button   the CELL  of column 5 / row 3 ie for the same row
    How to do the logic for this.
    I tried and got it for the entire column only.
    But my requirement is for the sepecific cell in the column.
    Kindly help to proceed further.
    Thanks in advance.
    Dav

    Here is how you can make a particular cell in the row read-only based on certain conditions.
    In my example I am displaying the flight details in an ALV. Here I am checking the airline id and if it is "AA' I am making the cell in the column airline id as readonly. In my example I am putting a check and readonly on the same column. However you can do this for different columns as well.
    In order to achieve this you need to add a new context attribute 'READONLY' of type abap_bool to the context node which is bound to data node of ALV.
    The method where I populate the node has the following code to populate the data.
      data: lr_input_node type ref to if_wd_context_node,
            lr_flight_node type ref to if_wd_context_node,
            lv_cityfrom   type s_from_cit,
            lv_cityto     type s_to_city,
            ls_from       type bapisfldst,
            ls_to         type bapisfldst,
            lt_flights    type table of bapisfldat,
            ls_flights    type bapisfldat.
      data: lt_final type if_mainview=>elements_node_flighttab,
            ls_final type if_mainview=>element_node_flighttab.
    * Instantiate the variable lr_input_note to the node NODE_FLIGHT
      lr_input_node  = wd_context->get_child_node( name = 'NODE_FLIGHT' ).
    * Instantiate the variable lr_flight_note to the node NODE_FLIGHTTAB
      lr_flight_node = wd_context->get_child_node( name = 'NODE_FLIGHTTAB' )
    * Get the attributes CityFrom und CityTo
      lr_input_node->get_attribute( exporting name = 'CITYFROM'
                                    importing value = lv_cityfrom ).
      lr_input_node->get_attribute( exporting name = 'CITYTO'
                                    importing value = lv_cityto ).
    * Fill the stuctures ls_from and ls_to
      ls_from-city = lv_cityfrom.
      ls_to-city   = lv_cityto.
    * Call the function BAPI_FLIGHT_GETLIST
      call function 'BAPI_FLIGHT_GETLIST'
       exporting
         destination_from       = ls_from
         destination_to         = ls_to
       tables
         flight_list            = lt_flights.
    Now I am going to check if the airline id is 'AA' and based on that I will fill the readonly context attribute.
    loop at lt_flights into ls_flights.
        MOVE-CORRESPONDING ls_flights to ls_final.
        if ls_flights-airlineid = 'AA'.
          ls_final-readonly = abap_true.
        else.
          ls_final-readonly = abap_false.
        endif.
        append ls_final to  lt_final.
      endloop.
    Finally bind the data to the context node.
    * Bind the data to the node NODE_FLIGHTTAB
      lr_flight_node->bind_elements( lt_final ).
    Now you need to do the ALV configuration settings.
    * create an instance of ALV component
      DATA:
        lr_salv_wd_table_usage TYPE REF TO if_wd_component_usage.
      lr_salv_wd_table_usage = wd_this->wd_cpuse_alv( ).
      IF lr_salv_wd_table_usage->has_active_component( ) IS INITIAL.
        lr_salv_wd_table_usage->create_component( ).
      ENDIF.
    * get ALV component
      DATA:
        lr_salv_wd_table TYPE REF TO iwci_salv_wd_table.
      lr_salv_wd_table = wd_this->wd_cpifc_alv( ).
      wd_this->alv_config_table = lr_salv_wd_table->get_model( ).
      CALL METHOD wd_this->alv_config_table->if_salv_wd_table_settings~set_read_only
        EXPORTING
          VALUE  = ABAP_FALSE
    * set visible row count
      DATA:
        lr_table_settings TYPE REF TO if_salv_wd_table_settings.
      lr_table_settings ?= wd_this->alv_config_table.
      lr_table_settings->set_visible_row_count( '10' ).
      DATA:
        lr_column_settings TYPE REF TO if_salv_wd_column_settings,
        lr_column          TYPE REF TO cl_salv_wd_column.
      lr_column_settings ?= wd_this->alv_config_table.
      DATA: lr_input_field TYPE REF TO cl_salv_wd_uie_input_field.
      lr_column = lr_column_settings->get_column( 'AIRLINEID' ).
      CREATE OBJECT lr_input_field EXPORTING value_fieldname = 'AIRLINEID'.
      lr_column->set_cell_editor( lr_input_field ).
      lr_input_field->set_read_only_fieldname( value = 'READONLY' ).
      CALL METHOD lr_column_settings->delete_column
        EXPORTING
          id     = 'READONLY'

  • How to apply a commandlink to an ADF Header row cell

    I am implementing an ADF read only table. I have one column that I am designating as an add/delete column. In simple terms I would like the cell for this column in the header row to have a command link behind it which pops up an "Add Row" form. For each individual detail row the column will have a command link with the "Delete" function. I am having no problems with the delete.
    My question is, "Does anyone have guidance on how to apply a command link to a header row cell"

    Here is a sample based on your use-case:
    <af:table value="#{bindings.Employees.collectionModel}" var="row" rows="#{bindings.Employees.rangeSize}"
    emptyText="#{bindings.Employees.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.Employees.rangeSize}" rowBandingInterval="0"
    selectedRowKeys="#{bindings.Employees.collectionModel.selectedRow}"
    selectionListener="#{bindings.Employees.collectionModel.makeCurrent}" rowSelection="single"
    id="t1">
    <af:column sortProperty="#{bindings.Employees.hints.FirstName.name}" sortable="false"
    headerText="#{bindings.Employees.hints.FirstName.label}" id="c1">
    <af:outputText value="#{row.FirstName}" id="ot1"/>
    </af:column>
    <af:column sortProperty="#{bindings.Employees.hints.LastName.name}" sortable="false"
    headerText="#{bindings.Employees.hints.LastName.label}" id="c2">
    <af:outputText value="#{row.LastName}" id="ot2"/>
    </af:column>
    *<af:column id="c3">*
    *<f:facet name="header">*
    *<af:commandLink text="Add" id="cl2"/>*
    *</f:facet>*
    *<af:commandLink text="Delete" id="cl1"/>*
    *</af:column>*
    </af:table>

  • HT201418 My new iPad takes the second week to restore. Where do I see what exactly has already downloaded/restored and what has not?

    My new iPad takes the second week to restore. When I power it up, each time it asks me if I would like to continue to download remaining apps/data or would prefer to delete them. Would be great to know what exactly has not been downloaded/restored yet. Does anyone know where/how I can check that?

    Apps that are downloading will be greyed out.
    -Ethan

  • ICloud down second day in a row - - spoke to Apple support - -they have no clue about what is going on

    iCloud down second day in a row --  spoke to Apple support - - they have no clue what is going on OR when the problem can expect to be resolved.

    Hi raulraghav,
    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you. Please go to your profile page for the forum and look at the top of the middle column where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under "My Support Cases" you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis, as the agent may be waiting for information from you before they can proceed with any actions. To ensure you know when they have responded to you, at the top of your support case there is a drop down menu for support case options. Open that and choose "subscribe". Please keep all correspondence regarding your issue in the private support portal.

  • Conditionally Color a row based on the Day of the Week for that row ?

    Hi,
    I have a Table containing some timing entries for each day. I have been trying to format some rows depending on a value in one of the columns for that row. What I would like to achieve is color the cell background gray for every row where the Date found in the first Column isn't a Week Day.
    I have been trying many things by now, but can't seem to figure it out. Does anyone have suggestions ? I have included a screenshot of what I would like to achieve :
    Thanks a lot in advance,
    Stefaan
    Message was edited by: Stefaan Lesage

    Variations on my post linked in Badunit's message here:
    You'll need a second table with one column and as many rows as Table 1 (which contains the dates).
    The formula for Table 2 assumes the dates are in column B of Table 1.
    =OR(WEEKDAY(Table 1::B)=1,WEEKDAY(Table 1::B)=7)
    Enter the formula in the same row as the first data row in Table 1, and Fill it down.
    Rule for conditional formatting for all cells in Table 2: Equals TRUE
    Other instructions as in the linked message.
    Regards,
    Barry

  • TableView row cell content validation using Javascript

    Hi ,
       I need to validate the tableView cell which is opened for input as like text box using Iterator. I have a requirement to validate the cell when the row is selected.
       I tried with document.getElementById("solgrp_1_1").value, where solgrp is tableView id.
      Some how it is not working for me? and the second how can i recognise the row is selected or not in java script.
      Any input will help me. please sesuggest with your ideas.
    Regards,
    Praveen

    Hi Jan,
    If I undestood your question properly, you cannot know for sure that the row will be - in the end - selected because of the singleselect/multiselect issue.
    So, either you put the logic on the server side and give up the JS solution... or you have to inject some variables mirroring the selectionMode into Javascript so that you can test it in your JS validation function.
    Regarding the value of a cell, you can peform a document.getElementById( <id> ).value where <id> is of the form :
    <id_of_the_tableview>_<row_index>_<col_index>
    Check this in the source code of your page.
    Best regards,
    Guillaume
    Best regards,
    Guillaume

  • How to dynamically load an Image into a TableView when its row/cell becomes visible?

    Hi,
    I am building an application that shows tables with large amounts of data containing columns that should display a thumbnail. However, this thumbnail is supposed to be loaded in the background lazily, when a row becomes visible because it is computationally too expensive to to this when the model data is loaded and typically not necessary to retrieve the thumbnail for all data that is in the table.
    I have done the exact same thing in the past in a Swing application by doing this:
    Whenever the model has changed or the vertical scrollbar has moved:
    - Render a placeholder image in the custom cell renderer for this JTable if no image is available in the model object representing the corresponding row
    - Compute the visible rows by using getVisibleRect and rowAtPoint methods in JTable
    - Start a background thread that retrieves the image for the given rows and sets the resulting BufferedImage in a custom Model Object that was used in the TableModel (if not already there because of an earlier run)
    - Fire a corresponding model change event in the EDT whenever an image has been retrieved in the background thread so the row is rendered again
    Btw. the field in the model class holding the BufferedImage was a weak reference in this case so the memory can be reclaimed as needed by the application.
    What is the best way to achieve this behaviour using a JFX TableView? I have so far failed to find anything in the API to retrieve the visible items/rows. Is there a completely different approach available/required that uses the Cell API? I fail to see it so far.
    Thanks in advance for any hints here.

    Here’s what I have tried so far:
    I have defined a property in my model object that contains a weak reference to the image that is expensive to load. I have modeled that reference as an inner class to the object so I have a reference to its enclosing object. That is necessary because my cell factory otherwise has no access to the enclosing model object, which it needs to trigger loading the image in the background.
    The remaining problems I have is, that I don’t have sufficient control over the loading process, i.e. I need to delay the loading process until scrolling has stopped and abort it as soon as the user starts scrolling again and the visible content changes. Imagine that loading an image for a table row (e.g. a thumbnail for a video) takes 200ms to load and a user quickly scrolls through a few hundred records and then stops. With my current set-up, the user has to wait for all loading processes that were triggered in the cell factories to finish until the thumbnails of the records they are looking at will appear (imagine an application like finder to be implemented like that, it would simply suck UX-wise). In my swing application a background thread that loads images for the visible records is triggered with a delay and stopped as soon as the visible content changes. This works well enough for a good user experience. I don’t see how I can do this based on the cell API. It is nice to have all this abstracted away but in this case I do not see how I can achieve the same user experience as in my swing application.
    I also tried registering a change listener to the TreeCell’s visible property to make that control the image loading but I don’t seem to get any change events at all when I do that.
    I must be missing something.

  • Problem selecting table rows/cells in Indesign CC

    I have a problem when trying to select rows and cells within tables created in Indesign CC. I am using a Macbook Pro on OSX 10.9.4.
    As you can hopefully see from the image attached, I am unable to select cells & rows cleanly. Believe it or not the image attached shows the last 2 rows of the table selected. As I drag the cursor to highlight the cells/rows I want the highlighted section jumps all over the place so it is not clear which section of the table is actually selected.
    If anyone has any suggestions as to what might be causing this I would appreciate your thoughts.
    Thanks
    Craig

    I believe you should be on 9.1, this issue existed in that version and has been fixed in 9.2.1
    I would recommend that you upgrade InDesign CC to at-least 9.2.1
    Thanks
    Javed

  • Localized text for hour, minute, second, week, today, etc.

    You are able to get localized text for the weekday name, e.g. to get your localized name of "monday", use
    SimpleDateFormat sdf = new SimpleDateFormat("EEEE");
    String name = sdf.format(gregorianCalendar.getTime())for month names, you would use the format String MMMM:
    SimpleDateFormat sdf = new SimpleDateFormat("MMMM");Are there additional localized text available through some API? I'm looking for translations for "next", "previous", "day", "week", "month", "year", "hour", "minute", "second", "now", "today", "OK", "Cancel". (Of course, I could translate these myself and offer a MessageBundle, but if there are already translations down there through the API, why do work twice ;-)

    You are able to get localized text for the weekday name, e.g. to get your localized name of "monday", use
    SimpleDateFormat sdf = new SimpleDateFormat("EEEE");
    String name = sdf.format(gregorianCalendar.getTime())for month names, you would use the format String MMMM:
    SimpleDateFormat sdf = new SimpleDateFormat("MMMM");Are there additional localized text available through some API? I'm looking for translations for "next", "previous", "day", "week", "month", "year", "hour", "minute", "second", "now", "today", "OK", "Cancel". (Of course, I could translate these myself and offer a MessageBundle, but if there are already translations down there through the API, why do work twice ;-)

  • Making an existing row cell mandatory

    We have a requirement to make an existing cell on each order row mandatory. i.e. if the cell is filled from a dropdown list this is not a problem. i.e. the list appear if the tab key is selectged whilst in the cell. However, the user can click the subsequent cell, hence bypassing the cell that we would like to have the mandatory entry.
    Help!

    Hi,
    this is how i make a column in a matrix mandatory.This is done onclick of the add/update button before its action.
    If pVal.FormType = "149" And pVal.ItemUID = "1" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED And pVal.Before_Action = True Then
                    Dim strPrftCd As String '*** a variable that stores your Cost Code
                    oDataSet = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    oForm = SBO_Appln.Forms.GetFormByTypeAndCount(pVal.FormType, pVal.FormTypeCount)
                    oMatrix = oForm.Items.Item("38").Specific
                    For i = 1 To oMatrix.RowCount - 1
                        strPrftCd = oMatrix.Columns.Item("30").Cells.Item(i).Specific.value
                        If strPrjCd = "" Then
                                    SBO_Appln.SetStatusBarMessage("Cost Code is empty", SAPbouiCOM.BoMessageTime.bmt_Short, True)
                                    BubbleEvent = False
                                    Exit Sub
                        End If
                  Next         
            End If
    Hope That helps
    Manu

  • I can't keep Yahoo mail account open 2 weeks in a row even with a mark in box KEEP ME OPEN. I did go to Tools, Options, Security to check SAVED PASSWORD box

    Usually, after opening Firefox, to check my Yahoo mail, I log in with my password, and mark the little box in front of KEEP ME OPEN, I can check my mail, and then close Firefox. Whenever I open Firefox, I can access my Yahoo mail account without typing my password. It stays open for 2 weeks. From yesterday, whenever I close Firefox, to access my mail account, I must log in again no matter whatever I've tried such as: Tools-Options-Security-Saved Password, or log out, then log in, type PW, mark little box to KEEP ME OPEN. I even uninstall Firefox, restart, download and re-install Firefox 8.0. The problem can never be solved. It's very annoying to log in by typing again and again my PW. Please help me out since I don't know what causes this problem. Thanks everybody who can help me out.

    Benji, I did get the email server error message again last night around 8PM, but again the email does eventually go. Wondering if the 6PM to 9PM time frame is a busy time for Yahoo email servers and somehow our iTouch or portable devices take a lower priority? I seem to get the error only once a day now around that time, then everything seems fine again...could be a server issue.
    Still looking for a pattern with the blank white web pages when I try and view a previous web page. Seems to happen most when I look at the "iPod touch User Guide" (on the included bookmarks)...most of the other times the previous web page loads fine so....humm....
    I also had an issue with the Camera app today, the red light button and Picture/Video switch were staying dimmed...finally turned off the iTouch (holding down the Home button then pressing the Sleep/Off button on top) then turned it back on, so the iOS could reboot. That fixed the Camera app. Might want to try that too....seems like it might be a fix for a few things, especially after updating to iOS 4.2.1...
    Jeff

  • Second day in a row Safari is not working. It says "service temporarily unavailable ". I have had my iPad for 7 months. This has never happened before and now two days in a row! What can I do?

    Safari on my iPad says service temporarily unavailable. This has now happened two days in a row. What can I do to correct this? It has never happened before in 7 months of owning my iPad. I bought a wireless Logitech keyboard, but that should not affect Safari? It worked earlier in the day yesterday with then keyboard.

    NolaNirvana wrote:
    Also if I ever have to reboot again, is there some way to save the apps I have on my iPad? I did choose the option to back up prior to restarting, but apps had to be manually re-entered?
    This has me confused. Rebooting the iPad (holding down on the sleep and home buttons until the Apple logo appears on the screen) should not in any way, shape or form, remove content from the iPad.
    Then you stated that you chose the option to back up before restarting? There is no option to backup before "restarting" on the iPad. Are you restoring the device in iTunes?

  • Simple MDX : Associated Date Value for returned week number on Row Axis ?

    Team , I have this MDX Below :
    I'm trying to see if i can also have a Column which  Uniques the week Starting/Ending Date   as below , Thanks in advance for your help and time .
    1 20040101  20040101  20040103    (null)
    1 20040102  20040101  20040103      1
    1 20040103  20040101  20040103     (null)
    2 20040104  20040104  20040110    (null)
    2 20040105  20040104  20040110       1
    2 20040106  20040104  20040110       1
    2 20040107  20040104  20040110     (null)
    2 20040108  20040104  20040110      (null)
    2 20040109  20040104  20040110      (null)
    2 20040110  20040104  20040110      (null)
    Rajkumar Yelugu

    Hi Rajkumar,
    According to your description, you want to show the week start and week end date together with the date dimension members, right? In this case, you can add week start and week end attribute to date dimension. Adding Week Start and Week End dates to your
    Date Dimension table can make navigating your dimensional model extremely handy and tasty to the end user. Please refer to the link below to see the detail information.
    Calculating Week Start and Week End Dates Dynamically
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

Maybe you are looking for

  • How to reset password on iphone 5c without erasing phone

    Our daughter was playing with my wife's Iphone 5c and somehow changed her password to unlock the phone. Now she can't access it. She has not synced this phone in almost a year. If we do the solution EVERYONE keeps telling us, we will lose over a thou

  • How to set the icon for the entire application with JFrame.setIconImage

    I set the icon on the main frame using JFrame.setIconImage(). The icon is shown properly in the main frame. If more JFrames are opened from the main frame, the newly opened JFrames also show the icon. However if JDialogs are opended, in some cases th

  • Few Questions

    Hiya , ive had my Gorgious white macbook for 6 months now ... this week i am getting the caseing replaced due to the staining problem , . i was wondering could i ask for the caseing to be replaced as black not white ? ... would be usefull if they cou

  • Drawing on Line chart

    Hi how can I draw a line connecting top of each line series in the chart with multiple axis. Screenshot link below. Screenshot

  • J2me/kvm connectivity to PALM Oracle lite 8i/9i??

    I have a requirement to develop an application in Java for PALM OS with Oracle Lite 8i/9i connectivity. I want to know if j2me/kvm supports connectivity to PALM Oracle lite 8i/9i. Please help me to know what all java VM available in the market which