What happens exactly during line selection

Hi,
What happens exactly during line selection of a report.
I mean suppose I display 20 purchase orders with data in a list.When I select one line say I call ME23N.
How will only that PO be called.
What happens internally?
Regards,
Subhashini

Each time you use HIDE statement, data are stored in special HIDE Area . The system inserts field name you are hiding together with its value. Current output line (SY-LINNO) is used to populate which index that entry will receive in Hide Area. That's
why HIDE statement must be entered before beginning a new line.
During line selection system variable SY-LILLI is read (index of selected line), then corresponding line in Hide Area is read and values are transported back to corresponding fields (data objects) you have hidden.
What is also important is that each list (basic, detailed) has its own Hide Area, that's why you can even use HIDE when you are already in AT LINE-SELECTION event block, hence create subsequent detialed lists. This will fill new Hide Area of detailed list and so on.
This topic is well discussed in BC405 course.
Regards
Marcin

Similar Messages

  • How To Print Field Value in TOP-OF-PAGE During Line Selection.

    How To Print Field Value in TOP-OF-PAGE During Line Selection when double click on field.

    (If my memory serves me well (not used for long time ago)
    Assign values to system fields sy-tvar0 - sy-tvar9, they will replace the placeholders "&0" through "&9" in the list headers and column headers.
    TOP-OF-PAGE DURING LINE-SELECTION.
         WRITE: / 'Interactive Report &3'.
      WRITE record-vbeln TO sy-tvar3.
    Regards,
    Raymond

  • Just upgraded to 5 from 3 - what happened to the page select icon? Can't find it in customize toolbars.

    Used to be you could select which page you wished to go back or forward to from the arrow icons on the navigation toolbar. The history menu item only shows 10 sites without having to open history for today. What happened? Is there another icon or a new plug in for this functionality? I used it all the time.

    ''what happened to the page select icon (Back/Forward)''
    The back/forward buttons have been moved to right-hand side of the navigation bar and the drop-down was removed. User right-click or hold click for one second to see the tab history. This is item #5 in my list.
    The History menu also has "Open Previous session" and "Open closed windows",
    to see more history use the History sidebar ("Ctrl+H") or the History Library List ("Ctrl+Shift+H") and sort or view by "Last visited".
    You can make '''Firefox 5.0.1''' look like Firefox 3.6.19, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 5.0.1, or 4.0.1, look like 3.6.*)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • TOP-OF-PAGE During line-selection in alv report

    Hi Expart
    In intractive Alv report u using top-of-page during line-selection . If u using so u give me one example with codeing .
    Regards
    Bhabani

    Hi,
    try this code...
    *& Report  ZCS_PRG8
    REPORT  Z_SJALV__PRG8.
    TYPE-POOLS: SLIS.
    *type declaration for values from ekko
    TYPES: BEGIN OF I_EKKO,
           EBELN LIKE EKKO-EBELN,
           AEDAT LIKE EKKO-AEDAT,
           BUKRS LIKE EKKO-BUKRS,
           BSART LIKE EKKO-BSART,
           LIFNR LIKE EKKO-LIFNR,
           END OF I_EKKO.
    DATA: IT_EKKO TYPE STANDARD TABLE OF I_EKKO INITIAL SIZE 0,
          WA_EKKO TYPE I_EKKO.
    *type declaration for values from ekpo
    TYPES: BEGIN OF I_EKPO,
           EBELN LIKE EKPO-EBELN,
           EBELP LIKE EKPO-EBELP,
           MATNR LIKE EKPO-MATNR,
           MENGE LIKE EKPO-MENGE,
           MEINS LIKE EKPO-MEINS,
           NETPR LIKE EKPO-NETPR,
           END OF I_EKPO.
    DATA: IT_EKPO TYPE STANDARD TABLE OF I_EKPO INITIAL SIZE 0,
          WA_EKPO TYPE I_EKPO .
    *variable for Report ID
    DATA: V_REPID LIKE SY-REPID .
    *declaration for fieldcatalog
    DATA: I_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    DATA: IT_LISTHEADER TYPE SLIS_T_LISTHEADER.
    declaration for events table where user comand or set PF status will
    be defined
    DATA: V_EVENTS TYPE SLIS_T_EVENT,
          WA_EVENT TYPE SLIS_ALV_EVENT.
    declartion for layout
    DATA: ALV_LAYOUT TYPE SLIS_LAYOUT_ALV.
    declaration for variant(type of display we want)
    DATA: I_VARIANT TYPE DISVARIANT,
          I_VARIANT1 TYPE DISVARIANT,
          I_SAVE(1) TYPE C.
    *PARAMETERS : p_var TYPE disvariant-variant.
    *Title displayed when the alv list is displayed
    DATA:  I_TITLE_EKKO TYPE LVC_TITLE VALUE 'FIRST LIST DISPLAYED'.
    DATA:  I_TITLE_EKPO TYPE LVC_TITLE VALUE 'SECONDRY LIST DISPLAYED'.
    INITIALIZATION.
      V_REPID = SY-REPID.
      PERFORM BUILD_FIELDCATLOG.
      PERFORM EVENT_CALL.
      PERFORM POPULATE_EVENT.
    START-OF-SELECTION.
      PERFORM DATA_RETRIEVAL.
      PERFORM BUILD_LISTHEADER USING IT_LISTHEADER.
      PERFORM DISPLAY_ALV_REPORT.
    *&      Form  BUILD_FIELDCATLOG
          Fieldcatalog has all the field details from ekko
    FORM BUILD_FIELDCATLOG.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'EBELN'.
      WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'AEDAT'.
      WA_FIELDCAT-SELTEXT_M = 'DATE.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'BUKRS'.
      WA_FIELDCAT-SELTEXT_M = 'COMPANY CODE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'BUKRS'.
      WA_FIELDCAT-SELTEXT_M = 'DOCMENT TYPE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'LIFNR'.
      WA_FIELDCAT-NO_OUT    = 'X'.
      WA_FIELDCAT-SELTEXT_M = 'VENDOR CODE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    "BUILD_FIELDCATLOG
    *&      Form  EVENT_CALL
      we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = V_EVENTS
    EXCEPTIONS
       LIST_TYPE_WRONG       = 1
       OTHERS                = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "EVENT_CALL
    *&      Form  POPULATE_EVENT
         Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'TOP_OF_PAGE'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
      ENDIF.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'USER_COMMAND'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'USER_COMMAND'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-NAME.
      ENDIF.
    ENDFORM.                    "POPULATE_EVENT
    *&      Form  data_retrieval
      retreiving values from the database table ekko
    FORM DATA_RETRIEVAL.
      SELECT EBELN AEDAT BUKRS BSART LIFNR FROM EKKO INTO TABLE IT_EKKO.
    ENDFORM.                    "data_retrieval
    *&      Form  bUild_listheader
          text
         -->I_LISTHEADEtext
    FORM BUILD_LISTHEADER USING IT_LISTHEADER TYPE SLIS_T_LISTHEADER.
      DATA HLINE TYPE SLIS_LISTHEADER.
      HLINE-INFO = 'this is my first alv pgm'.
      HLINE-TYP = 'H'.
    ENDFORM.                    "build_listheader
    *&      Form  display_alv_report
          text
    FORM DISPLAY_ALV_REPORT.
      V_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         I_CALLBACK_PROGRAM                = V_REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
         I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
         I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
         I_GRID_TITLE                      = I_TITLE_EKKO
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         = ALV_LAYOUT
         IT_FIELDCAT                       = I_FIELDCAT[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
        i_default                         = 'ZLAY1'
         I_SAVE                            = 'A'
        is_variant                        = i_variant
         IT_EVENTS                         = V_EVENTS
        TABLES
          T_OUTTAB                          = IT_EKKO
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "display_alv_report
    *&      Form  TOP_OF_PAGE
          text
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_LISTHEADER
       i_logo                   =
       I_END_OF_LIST_GRID       =
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
    RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN '&IC1'.
          READ TABLE IT_EKKO INTO WA_EKKO INDEX RS_SELFIELD-TABINDEX.
          PERFORM BUILD_FIELDCATLOG_EKPO.
          PERFORM EVENT_CALL_EKPO.
          PERFORM POPULATE_EVENT_EKPO.
          PERFORM DATA_RETRIEVAL_EKPO.
          PERFORM BUILD_LISTHEADER_EKPO USING IT_LISTHEADER.
          PERFORM DISPLAY_ALV_EKPO.
      ENDCASE.
    ENDFORM.                    "user_command
    *&      Form  BUILD_FIELDCATLOG_EKPO
          text
    FORM BUILD_FIELDCATLOG_EKPO.
      WA_FIELDCAT-TABNAME = 'IT_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'EBELN'.
      WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'EBELP'.
      WA_FIELDCAT-SELTEXT_M = 'LINE NO'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-SELTEXT_M = 'MATERIAL NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MENGE'.
      WA_FIELDCAT-SELTEXT_M = 'QUANTITY'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MEINS'.
      WA_FIELDCAT-SELTEXT_M = 'UOM'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'NETPR'.
      WA_FIELDCAT-SELTEXT_M = 'PRICE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    "BUILD_FIELDCATLOG_EKPO
    *&      Form  event_call_ekpo
      we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL_EKPO.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = V_EVENTS
    EXCEPTIONS
      LIST_TYPE_WRONG       = 1
      OTHERS                = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "event_call_ekpo
    *&      Form  POPULATE_EVENT
           Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT_EKPO.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'TOP_OF_PAGE'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
      ENDIF.
      ENDFORM.                    "POPULATE_EVENT
    *&      Form  TOP_OF_PAGE
          text
    FORM F_TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_LISTHEADER
       i_logo                   =
       I_END_OF_LIST_GRID       =
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    *retreiving values from the database table ekko
    FORM DATA_RETRIEVAL_EKPO.
    SELECT EBELN EBELP MATNR MENGE MEINS NETPR FROM EKPO INTO TABLE IT_EKPO.
    ENDFORM.
    FORM BUILD_LISTHEADER_EKPO USING I_LISTHEADER TYPE SLIS_T_LISTHEADER.
    DATA: HLINE1 TYPE SLIS_LISTHEADER.
    HLINE1-TYP = 'H'.
    HLINE1-INFO = 'CHECKING PGM'.
    ENDFORM.
    FORM DISPLAY_ALV_EKPO.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = V_REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = 'F_USER_COMMAND'
       I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      = I_TITLE_EKPO
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       IT_FIELDCAT                       = I_FIELDCAT[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         =
       I_SAVE                            = 'A'
      IS_VARIANT                        =
       IT_EVENTS                         = V_EVENTS
      TABLES
        T_OUTTAB                          = IT_EKPO
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.
    reward if helpful
    regards
    Shashi

  • What happen exactly when iPad is in STOP / Standby?

    Hi and thanks for reading.
    The title is quite clear as the body of this question
    What happen exactly when I stop my iPad to apps etc?
    I notice that my wifi is still active for certain operations: for example, I can receive push mail, facetime calls, but not skype phone calls... ??
    Are core apps still on and workable while extra apps like skype not?
    What else nice to know?
    Thanks, cheers

    Yes there are certain iOS core apps that are allowed to run in the background.  One of these is the Mail app so that push mail or scheduled fetch mail will work without having to have the screen on and the phone active.  the clock is another one (the built in clock that comes as part of iOS) so the alarm functions still work when the phone is asleep.  Notifications is another app that runs in the background.
    However, the majority of apps and all 3rd party are incapable of running in the background (the iOS actually is designed this way, so wayward apps cannot run up data or drain the battery).  Skype, for example, is only active when open and running actively in the foreground.

  • What happens to additional lines when you don't renew contract?

    My contract is nearly up, and I will not be renewing.  I am purchasing a home and will be going to a pre paid stupid phone.  I have two other lines on my account.  The second one is my gfs and hers expires a month after mine.  The third one is my parents (basic phone) and it doesnt expire till 2015.
    Since it's my account, if I close it after my gfs contract expires...what happens to the third line?  Right now with sharing my minutes it only costs me $17 a month for it.  I can only imagine that when it's all by itself that cost would rise considerably.

    Well if your out of contract and leave, the second line would become the primary. If your girl friend leaves after you then the third line on your account becomes primary. Now the cost of a basic phone is cheaper than a smart phone. However the individual plan for a basic phone I have no idea. Just call *611 and ask what a one line basic phone rate would be or look it up at the http://www.verizonwireless.com portal.
    Your parent could do an assumption of liability for that line to take it off your hands. Again ask your parent if that is what you and them want to do.
    Now if you just take the basic phone away, under the termination fee its $175 with $5 off each month until the 24 months are up. The balance you would have to pay.
    Good Luck
    Message was edited by: Elector

  • What happened to my purchased selections?

    Hi there,
    I download the free selection every week, when I downloaded today, I noticed my "Purchased" folder was half empty. When I looked closer, I saw that about half my songs are missing!!!
    What is going on? Do they take back the free selections that you download?
    All of Feb is gone, most of Mar is missing???? What happened? What can I do to get all my
    songs back?
    Thanks, Del

    I don't know what happened, but when I searched for one of the missing songs "Bubbly", they all came back again suddenly. Now they are all there.

  • Page number in Top of page during line selection

    Hi All,
    I am generating an interactive report.
    I want to display the same header at each page break.
    How to restrict the page size in At line-selection?
    I want to display page in format Page X of Y for each page break?How to handle it?
    Thanks in advance.
    Regards,
    Sandy

    Hi,
    Try the code:
    REPORT ZPAGETEST NO STANDARD PAGE HEADING LINE-SIZE 40
    LINE-COUNT 20.
    DATA:COUNT(6) TYPE N.
    DATA: LAST_PAGE_NO LIKE SY-PAGNO.
    DATA: TOTPAGE(6) TYPE C .
    TOP-OF-PAGE.
    WRITE:20 SY-PAGNO ,'of', '££££££'.
    START-OF-SELECTION.
    DO 100 TIMES.
    WRITE: / COUNT.
    COUNT = COUNT + 1.
    ENDDO.
    LAST_PAGE_NO = SY-PAGNO.
    TOTPAGE = SY-PAGNO.
    DO LAST_PAGE_NO TIMES.
    READ LINE 1 OF PAGE SY-INDEX .
    REPLACE '££££££' WITH TOTPAGE INTO SY-LISEL.
    MODIFY CURRENT LINE.
    ENDDO.
    Regards,
    Sesh

  • What happens exactly when you turn off your Wi-Fi?

    I was wondering, for the sake of knowing it, what exactly happens when you turn off the Wi-Fi of a Mac? I normally turn it off before putting it to sleep, because there have been some ocassions where after waking up, the Wi-Fi is on but not working. So I was thinking, what exactly happens with the radio when the computer goes to sleep or it's turned off.
    * Is it bad to turn off "hard" your Wi-Fi?
    * Is it bad to keep turning on and off the Wi-Fi?
    I think that it may have to be something about a Wi-Fi service, but I simply don't know nor found any answer on the Internet.
    Thanks in advance.
    Mac Mini, 2.8 GHz Intel Core i5
    OS X 10.10.3

    When your Mac goes to sleep, the wifi is automatically turned off. When you wake the Mac up, your wifi will turn back on and hopefully will reconnect a short time later.
    The purpose of Sleep is to save on energy, so wifi will be shutdown, as it is a significant energy drain.

  • What happens exactly when you buy a phone from a third party?

    My contract is going to end this month and I have a $50 gift card to Best buy. I already posted up a question but for this post I want to know exactly what will I get and what will I won't get.
    I'm hoping to buy a Droid Incredible or a Droid X2 or a Droid 3. (Have any reviews about one, two, or all of them? if you can please type them up... I already read reviews from the webpage and on google but you know more reviews are better)
    So first of all, I want to get the Droids from Bestbuy... I want to. Not I have to. Otherwise, I can get a phone in a nearby Verizon store.  (And I know that sometimes third party stores are bad and this one person said she got hers from walmart. But a lot of technology from walmart is bad. Bestbuy is a lot better in having better condition, quality, etc technology.)
    Will I get warranty/insurance from Bestbuy?
    Can I do a little demo or something like that as I search through Bestbuy's phones?
    Do I get like a return guarantee or something like that if I don't like it?
    If there are other things that I will get or won't get, please state what they are
    Finally, I've been asking specific questions about updating but since none of them apply to me, I want to know what I am eligible for.
    For a brief description: I had an LG EnV 3 but I lost that one and instead of buying a new phone, I just traded my mom's old phone (which was broken so she got a new, same type phone that she graciously gave me). And according to the employee there, when I traded phones, I was still eligible in upgrading to a new phone... Anyway, my mom's actual phone (not the one that I have) is the first line on the family plan. I will ugprade my phone when my two year contract expires.
    So what do you think I'm eligible for?
    I thought I was going to get $100 off but someone says that that's only for the first line... which is kinda confusing since the verizon employee said that me and my sister will get $100 when we upgrade our phones.
     I'm going to call Verizon either today or tomorrow but it's always good to know what non-employees know as long as its valid.

    Will I get warranty/insurance from Bestbuy?----From what I heard they do have their own insurance program that hey take out of your card directly. If you get it and Verizon teels you that you dont have insurance, dont freak out cause they cant see that.----- Can I do a little demo or something like that as I search through Bestbuy's phones?---- I dont know what you mean by a demo, but they do have phones on display to demo last I checked.------- Do I get like a return guarantee or something like that if I don't like it?---- They have a 30 day guarantee I believe, but remember that's for the phone, not for the contract thru vzw.====$100 is for primary line only, rep at store apparently wasnt paying attention or somethin lol. other than that, best buy is a 3rd party, which probaly has their own contract you will probaly sign, so you will need to read their terms throughly!!!

  • What happens when the row selection of a table is set as 'none'?

    I have a page, with a Search box, Departments and Employees tables. The user will enter a departmentId and click on Search button. Departments will be displayed. The departmentId column in Departments table is surrounded with a link. So when the user will click on the link, the desired employees will be displayed in the Employees table, if there is a view link between the VOs.
    Now suppose I have removed the view link. And the row selection of the Departments table is set as 'none'. So is it possible to get the desired employees of the chosen departmentId in this scenario, as because row selection has been disabled in the Departments table?
    I also dont want to use the Set Property Listener in this use case.

    Hi,
    If you have disabled rowselection and also are not implementing the selection listener? How will you find which row did the user select?
    Ramandeep

  • Time Machine Email Recovery?! What happen exactly?

    Hi and thanks for reading.
    I have a question:
    let's suppose I need to recover a mail (or a folder) of my iMail Time Machine Backup.
    If I enter in TM and select the related message/folder I want to recover and click on the bottom right RECOVER button, am I going to recover it and loose all the other messages/folder structure already present in my iMail software?
    In other words, if I recover a 3 months ago backup MSG or FOLDER, do I loose all the mail I got in the last 3 months?
    Many thanks,
    regards

    If I recall correctly from when I restored a mailbox 6 months ago or so, it put the messages into some kind of "Recovered Messages" mailbox.  You should be fine.  But make sure you've got a good backup of the current messages, just in case something goes wrong.

  • What happened to the Line Tool {from Elements 4}

    I have upgraded? From Photoshop Elements 4 to Photoshop Elements 12. Now running on a new Mac Mini. OS-X 10.8.5
    I used Elements 4 - 99% of the time, to add text comments, and then Draw a line with arrows at the beginning or end of the line. {to point very specific things in the photo out to others}. With that tool in PSE4 - I could define the width of the line and its color - as well as add Arrowheads to either end of the line.
    Opening and looking/learning Photoshop Elements 12 - - I can't find the Line Tool. Please don't tell me I just paid an upgrade fee - to lose the one tool I used most!
    Help!
    CarlB

    Click the custom shape tool:
    and you'll see the other shape tools in the tool options area:

  • What happened to the history selection in Bookmarks?

    Updated OS yesterday and history no longer exists.  Bookmarks bar is the first listing,

    If you touch the Bookmarks icon and then touch the "Clock" icon at the bottom you will see history.
    If you are saying that all your Bookmarks are gone then:
    Try terminating the Safari App and restarting it.
    To terminate Safari:
    1. Click the Home button
    2. Double-click the Home button to bring up the "recent Apps" tray at the bottom.
    3. Touch and hold on the Safari icon until a "-" appears
    4. Touch the "-" on the Safari App to terminate

  • What happened to the "Mail selected PDF document" in Preview?

    I get the error message "The "new Email with attachment" server could not be used" 

    Sorry, but it's gone.  Pages 4.3 is still located in an iWork Folder within your Applications Folder if you need to get work done. 
    Please be sure to let Apple know which of teh dozens of features they've cut are affecting you, so they know to put them back in!
    http://www.apple.com/feedback/pages.html
    Good luck!

Maybe you are looking for