Flight Use

Hi Everyone!
I am 64, living outside a small city, and NOT a techie. I ordered my 3G iPad Friday morning after I finally understood what it could do for me! This is my first Apple product, ever. I have a question that I have not seen discussed here, probably because everyone else already knows the info. Here goes: I am flying to another state in two weeks and I want to use my iPad on the plane -- to play games or watch "Star Trek" from the digital copy that I got with my DVD set. Is there a "Flight Safe" mode or setting that I need to use while in the air?
Thanks!
Carol
Message was edited by: Carolinwa

Good try Brian, but you can turn on WiFi while Airplane Mode is ON so you can use WiFi on those airlines that offer it.
When airplane mode is on, a small airplane appears in the status bar at the top of the screen. Wi-Fi Cellular Data, and Bluetooth signals aren’t emitted, and GPS reception is turned off. Where allowed by the aircraft operator and applicable laws and regulations, you can turn Wi-Fi back on while still having Airplane Mode ON.
When you tun Airplane Mode OFF, WiFi (if ON) is also turned OFF and must be reselected ON.
Look at pages 116-117 of the iPad User Guide

Similar Messages

  • Problem when flying and using Ipod

    Everytime I fly my ipod crashes. Has anyone experienced this before? How do I fix it?

    This is not an uncommon complaint. If you search these forums going back a ways you will find a decent number of people who have iPods that after getting up in the air stop working until the land again.
    The iPod is supposed to be good to some number of feet (10,000 maybe?) and airlines normally pressurize their cabins to be no more than the equiv of 8000 feet, but often less, so normally should be below the pressure levels for proper iPod use.
    But, yes, some people just seem to have ones that don't even like a few/several thousand feet of elevation. Not much you can do about it unfortunately other than buying another one for flight use (maybe a flash based Nano would hold enough for most plane rides).
    Patrick

  • How to inactive the push button on tool bar of alv report

    hi masters,
    i m working on the ALV interactive report, in this report i have to do 2 different operation on 2 screen.
    eg.- on first screen i have the push button for 'data' and on second screen i will have the push button for 'upload'.
    in this i don't want to give the 'upload' button on first screen and same i don't want to give the 'data' button on 2nd screen.
    i tried with using the 2 different gui status and 2 different PF-STATUS but its not working.
    anyone can tell me how i can deactivate the 'upload' button on first screen and how i can do same for 'get' buttton on 2nd screen.
    regards,
    vicky

    HI Vicky ,
                      if u want an interactive ALV report , there are lot of forums already having the solution for that , but let me give u the solution anyway.
    In the function module "REUSE_ALV_GRID_DISPLAY" , import parameters
         I_CALLBACK_PF_STATUS_SET          = 'FLIGHT'
         I_CALLBACK_USER_COMMAND           = 'BUTTON_CLICK'
    has to be supplied to this function module . The PF status is where u hav created the two buttons , that PF status has to be given here .If the user clicks on the button then it is handled by the form routines . Inside the sub-routine based on the button the user has selected u could perform the action.
    FORM FLIGHT    USING RT_EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'FLIGHT' EXCLUDING RT_EXTAB.
    ENDFORM.
    Here the "Flight" is the PF_status .
    FORM BUTTON_CLICK USING UCOMM type SY-UCOMM
                           SELFIELD type SLIS_SELFIELD.
      CASE UCOMM.
        WHEN 'BUTTON!' .
    write ur code for button 1.
      WHEN "BUTTON"
      *Write ur code for button2 .
    end case.
    endform.
    for any queries reply back.
    regards

  • Substring Location in String

    I am having a problem using substring to select/filter.  The substring selection is not holding to the specified locations in the string.  Instead, it finds any matching text in the entire string.
    For reference, my web site intent is,
    1. A single XML master data base contains all photographs for display.  My XML data set does not have quotes.
    2. Spry tabbed panels are used to select galleries (Spry regions) (e.g. roses, Big Sur Coast, etc) from the master data base.  There are a dozen galleries.
    3. Thumbnails of a gallery are displayed in the content panel.
    4. Selecting a thumbnail displays a large view of the selected photo in a separate div (Spry detail region).
    The galleries are filtered using spry:test, with the "subject" variable compared against a specified value (i.e. rose, Monterey, Salinas, etc.).
    The "2010 Photographs" gallery is determined by the year of the photo.  In the "name" variable, the first 6 digits are the date (month, day, year).  I've set up the spry:test with substring as follows,
    spry:test="'substring({name},5,2)'.search ('10 ') != -1;"
    This is to obtain the 5th and 6th locations of "name" variable and compare it with the "10 ".
    A sample of the "photo" node follows,
    <photo>
    <name>032010 Lover's Pt, Pacific Grove 02a web.jpg</name>
    <width>599</width>
    <height>400</height>
    <thumbname>032010 Lover's Pt, Pacific Grove 02a thumbnail.jpg.</thumbname>
    <thumbwidth>150</thumbwidth>
    <thumbheight>100</thumbheight>
    <subject>night</subject>
    <description>West side of Lover's Point, Pacific Grove, Ca.; the surf was unusually calm.  The glow reflecting on the clouds and the bay is from the town of Santa Cruz.</description>
    </photo>
    <photo>
    <name>090609 Pelican over Pacific Grove 02a 8x10 web.jpg</name>
    <width>500</width>
    <height>400</height>
    <thumbname>090609 Pelican over Pacific Grove 02a 8x10 thumbnail.jpg</thumbname>
    <thumbwidth>125</thumbwidth>
    <thumbheight>100</thumbheight>
    <subject>animal</subject>
    <description>Pelican caught in flight; using a flash, this photograph was taken at dusk; Pacific Grove, Ca.</description>
    </photo>
    Both of these nodes would be selected with the "10 " criteria.  However the second one is not from the year 2010.
    The full source code is shown below.
    My search of these forums and the Internet have indicated that this should work.  Please explain what I am missing or doing incorrectly in the code.
    I thank you.
    Scott
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>EnvisionMoore</title>
    <style type="text/css">
    <!--
    body {
    background-color: #FFF;
    text-align: center;
    margin: 0px;
    padding: 0px;
    #wrapper {
    width: 98%;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    border: 0px dashed #F0F;
    position: absolute;
    left: 1px;
    top: 1px;
    height: 825px;
    background-color: #FFE4CA;
    #leftColumn {
    float: left;
    height: 700px;
    width: 400px;
    position: relative;
    left: 0px;
    top: 0px;
    #header {
    height: 125px;
    font-size: 24px;
    font-style: italic;
    vertical-align: bottom;
    padding: 0px;
    text-align: center;
    float: right;
    width: 50%;
    border: 0px solid #F00;
    position: relative;
    top: 0px;
    right: 0px;
    #selectedPhoto {
    height: 600px;
    font-size: 24px;
    font-style: italic;
    vertical-align: middle;
    padding: 0px;
    text-align: center;
    margin-top: 135px;
    width: 650px;
    border: 0px solid #0F0;
    position: absolute;
    right: -1px;
    bottom: 1px;
    -->
    </style>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var name;
    var width;
    var height;
    var thumbname;
    var thumbwidth;
    var thumbheight;
    var subject;
    var description;
    var thumbnail;
    var dsphoto;
    var dsdata;
    //-->
    </script>
    <script type="text/javascript">
    var dsdata = new Spry.Data.XMLDataSet("EM_photo.xml", "/gallery");
    var dsphoto = new Spry.Data.XMLDataSet("EM_photo.xml", "gallery/photos/photo");
    </script>
    <script type="text/javascript">
    function MM_callJS(jsStr) { //v2.0
      return eval(jsStr)
    </script>
    <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
      <div id="leftColumn">
        <div id="TabbedPanels1" class="TabbedPanels">
          <ul class="TabbedPanelsTabGroup">
            <li class="TabbedPanelsTab" tabindex="0">Welcome</li>
            <li class="TabbedPanelsTab" tabindex="0">Mechanical Engineering</li>
            <li class="TabbedPanelsTab" tabindex="0">Photography</li>
          </ul>
          <div class="TabbedPanelsContentGroup">
            <div class="TabbedPanelsContent">
              <h1><br />
      <br />
      <br />
      <br />Welcome!
      <br />
              </h1>
            </div>
            <div class="TabbedPanelsContent">Mechanical Engineering - Content 2</div>
            <div class="TabbedPanelsContent"> <!-- Photography - Content 3 -->
              <div id="TabbedPanels2" class="TabbedPanels">
                <ul class="TabbedPanelsTabGroup">
                  <li class="TabbedPanelsTab" tabindex="0">2010 Photographs</li>
                  <li class="TabbedPanelsTab" tabindex="0">Roses</li>
                  <li class="TabbedPanelsTab" tabindex="0">Calla Lilies</li>
                  <li class="TabbedPanelsTab" tabindex="0">Other Blossoms and Leaves</li>
                  <li class="TabbedPanelsTab" tabindex="0">Pacific Grove Beach</li>
                  <li class="TabbedPanelsTab" tabindex="0">Monterey Harbor and Beach</li>
                  <li class="TabbedPanelsTab" tabindex="0">Big Sur Coast</li>
                  <li class="TabbedPanelsTab" tabindex="0">Salinas Valley</li>
                  <li class="TabbedPanelsTab" tabindex="0">Animals</li>
                  <li class="TabbedPanelsTab" tabindex="0">Night</li>
                  <li class="TabbedPanelsTab" tabindex="0">Church</li>
                  <li class="TabbedPanelsTab" tabindex="0">Other</li>
                </ul>
                <div class="TabbedPanelsContentGroup-2">
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'substring({name},5,2)'.search ('10 ') != -1;" ; onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat = "dsphoto" spry:test="'{subject}'.search (/rose/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/callalily/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = "{thumbwidth}px" height = "{thumbheight}px" onclick="dsphoto.setCurrentRow('{ds_RowID}');" spry:repeat="dsphoto" spry:test="'{subject}'.search (/blossom/) !=-1;" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = "{thumbwidth}px" height = "{thumbheight}px" onclick="dsphoto.setCurrentRow('{ds_RowID}');" spry:repeat = "dsphoto" spry:test="'{subject}'.search (/^p/) !=-1;" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/Monterey/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/bigsurcoast/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/Salinas/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/animal/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/night/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/church/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                  <div class="TabbedPanelsContent-2">
                    <div spry:region="dsphoto dsdata"> <img src="{dsdata::thumbnail/@base}{thumbname}" width = {thumbwidth}px height = {thumbheight}px spry:repeat="dsphoto" spry:test="'{subject}'.search (/other/) !=-1;" onclick="dsphoto.setCurrentRow('{ds_RowID}');" /></div>
                  </div>
                </div>
              </div>
            </div>
            <!-- End "Photography Content 3" Tabbed Panels Content. -->
          </div>
        </div>
      </div><!-- End div "leftColumn" -->
      <div id="header">
        <p>Envision Moore</p>
        <p>      Mechanical Engineering and Photography</p>
        <p>      Scott W. Moore</p>
      </div><!-- End div "header". -->
      <div id="selectedPhoto">
      <div id="Selection" spry:detailregion = "dsphoto dsdata"  >
    <!-- Selected photographs are 400px tall. -->
    <img src="Photo-Email/{name}" width = {width}px height = {height}px align="center" />
      <br />
    Description<br /><br />
    <p> {dsphoto::email/base}{description} </p>
    </div>
    </div> <!-- End div "selectedPhoto". -->
    </div> <!-- End div "wrapper" -->
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    var TabbedPanels2 = new Spry.Widget.TabbedPanels("TabbedPanels2");
    //-->
    </script>
    </body>
    </html>

    Moore6931 wrote:
    Ben
    I thank you but the change of the starting location did not correct the problem.  I copied your script and pasted it into the source code but the results were the same set of thumbnails; several of the thumbnails are prior to (20)10.
    In considering the results, I decided to try,
    spry:test="'{name}'.search  ('10 ') != -1;"
    This filter gave the same result as,
    spry:test="'substring({name},4,2)'.search  ('10 ') != -1;"
    I found out that the "4,2" arguments of substring should be "4,6".  Each of these arguments are locations; other substring functions have location and length.
    I updated the filter to,
    spry:test="'substring({name},4,6)'.search  ('10') != -1;"
    The filter result was not changed.  Are the location arguments being ignored or overwritten by a default setting?  The symptom is that the first location is "0" and the second location is omitted.
    I thank you for your help.  This is rather fascinating!
    Scott
    Howdy,
    When you take a closer look at your at your code you will notice that you actually wrapped the substring function inside a string. So you are actually performing a search on:
    'substring(contents,4,6)'
    So what i would suggest is to do:
    spry:test="'{name}'.substring( 4,6 ).search( '10' ) != -1 "
    And if that doesn't work, try to use a function::syntax instead, see API: function::<function name>

  • Usage of export/import

    Hi All,
    i have a requirement to export one internal table from one function module and to import the same internal table in to another function module for this i have written code like this
    in first function module
    EXPORT it_acc TO DATABASE indx(hk) ID 'FLIGHTS'
           USING indx_export.
    after this i am calling a Tcode
    this Tcode contains a table control. In the PBO of the table control i written code like
    CALL FUNCTION 'ZFM_GET_SHOP_DATA'
        TABLES
          lt_acc = it_acc.
      indx-srtf2 = 0.
      IMPORT it_acc FROM DATABASE indx(hk) ID 'FLIGHTS'
             USING indx_import.
    But i am unable to get the data. Can any body suggest what's the mistake i am making.
    Regards

    Hi,
        it_acc type and lengthn should be of same in export
        and import and they should be same in LUW.
        Hi,
    export and import stores data in ABAP memory
    which is available in same LUW.
    data matnr like mara-matnr value 'TEST'
    export to memory ID 'test field matnr.
    import matnr from memory id 'TEST'
    here matnr in export and importv should be of same name
    and length.
    SAP global memory is used in SET,GET parameter id.
    they are stored in table tpara.
    also check below link
    Re: IMPORT FROM / EXPORT TO MEMORY ID ...
    Regards
    amole

  • How to add the push button on the apllication tollbar of IL02 tcode

    Hi Friends,
    I have to add the push button on the application tool bar of the IL02.when that push button is pressed then some operation to be performed.Could you please suggest how to add.Is there any screen exit if yes what is that.
    With out screen exits if there is any way ?
    Thanks and regards,
    shyla

    HI Vicky ,
                      if u want an interactive ALV report , there are lot of forums already having the solution for that , but let me give u the solution anyway.
    In the function module "REUSE_ALV_GRID_DISPLAY" , import parameters
         I_CALLBACK_PF_STATUS_SET          = 'FLIGHT'
         I_CALLBACK_USER_COMMAND           = 'BUTTON_CLICK'
    has to be supplied to this function module . The PF status is where u hav created the two buttons , that PF status has to be given here .If the user clicks on the button then it is handled by the form routines . Inside the sub-routine based on the button the user has selected u could perform the action.
    FORM FLIGHT    USING RT_EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'FLIGHT' EXCLUDING RT_EXTAB.
    ENDFORM.
    Here the "Flight" is the PF_status .
    FORM BUTTON_CLICK USING UCOMM type SY-UCOMM
                           SELFIELD type SLIS_SELFIELD.
      CASE UCOMM.
        WHEN 'BUTTON!' .
    write ur code for button 1.
      WHEN "BUTTON"
      *Write ur code for button2 .
    end case.
    endform.
    for any queries reply back.
    regards

  • UR/MR Redemption Value, Data Points please!

    While considering the merits of a CSP or EDP card, we are often faced with an "average cpp" for each point system.  The general consensus is that a UR point is worth 2.4 cpp while an MR point is worth 1.8 cpp.  I am hoping that people with experience with each program can enlighten me on the method of calculation of a point.  When calculating your average cpp (cents per point), do you calculate it against the FULL PRICE ticket quoted by the airline, or do you peruse sites like Hotwire, Kayak, Skiplagged, Orbitz, etc. and calculate the cost of your flight using the cost in points vs the price on a common travel site? Consider this scenario: You are looking to book a one-way, domestic flight on your favorite airline.  United quotes you at $300, but you have the option to purchase with 15,000 points.  However, Orbitz has the same flight for $200, plus Discover deals gives you 10% back, bringing the total cost of your flight down to $180. The question I'm posing is: when cashing in your points would is this a realistic scenario, or do airlines generally charge similar prices to travel sites?  Would you consider the points to be valued at 2 cpp in this scenario or would you consider the points to be valued at 1.2 cpp?  From what I can tell, travel sites are generally significantly cheaper than purchasing directly from the airline (or else it wouldn't make sense to that there would be so many).  Therefore, if the valuation of your points doesn't take into account travel sites, their value would seem to be inflated to some degree.   FWIW, I'm not at the point in my life where I travel a whole lot.  I'm doing research for the future.

    Hello dskp,
    As your in Cartesian display, if you know the abscissa or the ordinate, you could easily found your points using a for loop with your data points indexed in input and a comparison function.
    Please be more specific if you need an example.
    Best regards.

  • Database selection goes for a dump

    Hi,
    I am using SELECT....ENDSELECT to fetch the data in Chunks. Whenever I get a chunk of data I am creating a separate task for that which calls RFC enabled Function Module.
    In Simple words....
    SELECT.....
      CALL FUNCTION <XYZ> STARTING NEW TASK STARTNAME.
    ENDSELECT....
    In the first iteration, I am selecting 1000 records and it is working fine, but when the program runs for the second iteration it is giving a dump DBIF_RSQL_INVALID_CURSOR.
    What could be the problem? I searched SDN and found few answers like for the second time it will not give a dump. But, I have a vague idea here. Anybody please provide me with a solution.
    Thanks,
    Babu Kilari

    Hi Babu,
    When you mention Collective Run as the option under the RFC enabled FM, all the data is passed to the External Memory and when the collection is over, it will be imported to the database using the index.
    For Ex:
    TABLES indx.
    DATA indx_tab TYPE TABLE OF indx.
    DATA sflight_tab TYPE TABLE OF sflight.
    SELECT * FROM sflight INTO TABLE sflight_tab.
    EXPORT sflight_tab TO DATABASE indx(hk) ID 'FLIGHTS'
           USING indx_export.
    indx-srtf2 = 0.
    IMPORT sflight_tab FROM DATABASE indx(hk) ID 'FLIGHTS'
           USING indx_import.
    FORM indx_export USING foo.
      APPEND indx TO indx_tab.
    ENDFORM.
    FORM indx_import USING foo.
      READ TABLE indx_tab INTO indx WITH KEY srtf2 = indx-srtf2.
      indx-srtf2 = indx-srtf2 + 1.
    ENDFORM.
    Your FM when you use with Coll.run option will run similar to this logic.
    Regards,
    -Syed.

  • Safari and Travelocity -- can't view airline seats before booking

    I've been able to view seating plans for many flights (without actually booking flights) using Windows XP Internet Explorer, and Travelocity, but am unable to do this when using Mac OSX Safari and Travelocity or Expedia. (same problem using Mac versions of Firefox and Netscape browsers).
    Seeing which specific seats are available before booking a flight is a big help in trip planning.
    Why doesn't this work on a Mac, using Safari?________
    (It works on a Mac, using Safari and Orbitz travel site. But I'd also like to have this ability when using Travelocity or Expedia sites).
    I'm using the latest versions of OSX, Safari, Netscape, Firefox.

    Yes, the DNS codes can remain. You can also replace those two with 4.2.2.1 and 4.2.2.2. These are codes supplied by Verizon.
    Who is your internet provider?
    When I place a reservation in the Travelocity system with United, here's what the screen eventually looks like:
    Curious too if you run into the same problem trying Safari from another User Account? Here's directions how to do set up an account if your not sure how to do this:
    Here is guidance from Apple on how to set up the account. You can ignore step 7 in the article.
    Also, on the system preference>Accounts panel, click on "log-in" options. There, select "fast user switching". This allows you to go back and forth between user accounts via an icon in your Menu Bar at the top of the computer screen.
    Log-on to the new account and start Safari. If the seat plan is viewable in the new account, then your problem is specific to your regular user account. Otherwise, similar response means a system-wide problem.
    Post back
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer, Airport Express (2 units)

  • Selecting Multiple Rows from ALV GRID Display

    Hi,
    I am having a ALV GRID Display. I want to select multiple rows from the Output and move them to an internal table.
    Please let me know how do I acheive this.
    Thanks in advance,
    Ishaq.

    Hi,
    Have a look on the following code. It displays the selected rows which hv been selected in basic list.
    TABLES:
      spfli.
    TYPE-POOLS:
      slis.
    DATA:
      BEGIN OF t_spfli OCCURS 0,
        checkbox.
            INCLUDE STRUCTURE spfli.
    DATA:  END OF t_spfli.
    DATA:
      t_sspfli LIKE STANDARD TABLE OF t_spfli .
    DATA:
      fs_spfli LIKE LINE OF t_sspfli.
    DATA:
      fs_layout TYPE  slis_layout_alv,
      w_program TYPE sy-repid.
    SELECT *
      FROM spfli
      INTO CORRESPONDING FIELDS OF TABLE t_spfli.
    *fs_layout-info_fieldname = 'COLOR'.
    fs_layout-box_fieldname = 'CHECKBOX'.
    w_program = sy-repid.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
        i_callback_program       = w_program
        i_callback_pf_status_set = 'FLIGHT'
        i_callback_user_command  = 'SPFLI_INFO'
        i_structure_name         = 'SPFLI'
        is_layout                = fs_layout
      TABLES
        t_outtab                 = t_spfli
      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.
    *&      Form  FLIGHT
          text
         -->RT_EXTAB   text
    FORM flight    USING rt_extab TYPE slis_t_extab..
      SET PF-STATUS 'FLIGHT' EXCLUDING rt_extab.
    ENDFORM.                    "FLIGHT
    *&      Form  SPFLI_INFO
          text
         -->UCOMM      text
         -->SELFIELD   text
    FORM spfli_info USING ucomm LIKE sy-ucomm
                           selfield TYPE slis_selfield.
      selfield-refresh = 'X'.
      CASE ucomm.
        WHEN 'FLIGHT'.
          LOOP AT t_spfli.
            IF t_spfli-checkbox = 'X'.
              t_spfli-checkbox = ' '.
             t_spfli-color = 'C51'.
              MODIFY t_spfli TRANSPORTING checkbox.
              fs_spfli = t_spfli.
              APPEND fs_spfli TO t_sspfli.
            ENDIF.
          ENDLOOP.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
      CLEAR fs_spfli.
      fs_layout-info_fieldname = 'COLOR'.
    fs_layout-confirmation_prompt = 'X'.
      fs_layout-key_hotspot = 'X'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = w_program
          i_structure_name   = 'SFLIGHT'
          is_layout          = fs_layout
        TABLES
          t_outtab           = t_sspfli
        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.
      REFRESH t_sspfli.
    ENDFORM.                    "SPFLI_INFO
    Regards,
    Chandu

  • Dezign the database?

    Good morning Sirs and Ladies,
    soon I starting the project for design of database system (too start project small). I need to know of good site for help the design begin.
    Thank you Sirs and Ladies.

    >
    >
    He says that table names should be singular. I've thought about this and finally concluded that it was a good idea,
    I disagree - table names should be plural.
    The data model describe entities and relations - e.g. a INVOICE entity and its relationship with the CUSTOMER entity.Well, I could speciously argue that you don't know for a fact that you'll ever even have 1 customer or 1 invoice. ;)
    How many actual entities are stored in the container is not applicable to the name of the container - as the
    table is designed to hold any number (from zero to infinite/amount of diskspace available/pk constraints) of
    these entities. Thus using the plural form for the table makes sense - singular does not.If you're taking the strictly logical stance, then yes, I would agree. However, your argument is predicated on
    the idea that everyone always knows the exact relationship between the two entities. I think the point
    of the page that I indicated to the OP was that for the very prosaic reason that it's just "easier all round"
    to just keep everything singular (of course the subtext is that it's "easier all round not to have to think").
    Do you feel that tables should all be plural? Or that they should reflect the nature of the tables - think
    of my nuclear power plant example - singular CREATE TABLE Core_Meltdown or the plural?
    Nomenclature is not a trivial issue - I worked in an airline where the word "flight" meant different things depending
    on whether you were talking to Engineering, Flight Crew or Marketing. In IT, we used the word "Leg" for
    an aircraft taking off and landing, the table name "Return_Trip" (*) for a return flight and the word "Rotation"
    for a series of flights over a season. It took us a while to educate the various departments to use these
    words instead of the overly generic "Flight" - or should that be "Flights"?
    <to get back to the point at hand>
    It was bad enough to get people to agree on a new nomenclature, in order to avoid any of the singular/plural
    issues, we used the article at my suggestion. Some of the more clued-in people in the various departments
    would be at least granted select privileges on different tables - having everything singular (and everyone
    knowing that) eliminated ambiguity. Plural for everything would have served the same purpose.
    Paul...
    (*) I fought a forlorn battle to have a return "Flight" use the term "Aller_Retour", but was rebuffed by
    the Philistine PHB's.

  • Power in the UK

    i am having problems understanding what options i have for powering my T500 while on the pland and in England when i step of of it. i purchased it in the US and so i have a US power adapter, the standard one that it ships with. now i wish to return to th UK and would like to be able to purchase the correct adapter before i leave.
    do i need to buy the slim adapter 41N8460? will i need to specify anything on the order so that i get a UK 3 pronged power socket on it? or will i have to order this seperatly?
    any help anyone can offer would be greatly appreciated.
    also i need a bag, would people reccomend the thinkpad range? i am considering the deluxe expander.
    thanks
    Message Edited by Mugen on 14-03-2009 06:29 PM
    T500 - Vista Ultimate- 2Gb RAM- 160Gb 7200 HDD - T9400

    Mugen wrote:
    now i wish to return to th UK and would like to be able to purchase the correct adapter before i leave.
    All you need to do is purchase the correct removeable power cable when you reach the UK. 
    The power cable socket on the  US power blocks is a very common global type, so you should have no trouble finding a UK power cable that will fit into it at a High Street electronics (or similar) store.
    For in-flight use, what you need will depend on what type of power the airline concerned provides (if any) on the aircraft operating the particular flight you are on. You may find this web site helpful......  http://www.seatguru.com/articles/in-seat_laptop_power.php
    Cheers,
    Bill
    I don't work for Lenovo

  • HT2792 Just purchased from an airport store the MagSafe Airline Adapter so I could use my MacBook Air on a long haul flight. But, the airline adapter plug doesn't fit the socket. Am I missing something?

    I purchased at the airport last week before a long haul flight the MagSafe Airline Adappter so I couod keep working on the MacBook Air without fear of the battery running out before I had completed the necessary work. The shop assistant assured me the kit worked on all planes but......the socket on the flight, both outbound and inbound, was the normal female 2 pin/3 pin socket that I used to use for my old thinkPad. What am I doing wrong? Am I missing something obvious here
    Thanks for any help you can offer.
    Geoff

    Hi CaptFred,
    Thanks for taking the time to respond. I understand your point and have indeed separated them. Since sending the message I have visited the Apple Store to check the picture of the accessory in case I was missing something and I wonder if I am missing the 20mm adapter but, over and above that, I just dont see the right size/shape empower port socket in the plane seat, only the traditional 3 pin/2 pin sockets. I wonder if the salesman was selling me a pig in the poke because the Apple Store also says that it fits some commercial airlines whereas the salesman told me it worked in all flights. I suspect I will need to go to the airline companies direct to see which planes have this particualr Empower port. In the meantime I am tempted to ask for my money back. Geoff

  • HT1222 I like the new iOS 7 for iphone... But i think it's not a good idea to allow switch the iphone on flight mode when it is locked.. What happens if your iphone is stolen or lost? You couldn't be able to locate it using find my iphone... Can i remove

    I like the new iOS 7 for iphone... But i think it's not a good idea to allow switch the iphone on flight mode when it is locked.. What happens if your iphone is stolen or lost? You couldn't be able to locate it using find my iphone... Can i remove this from the bottom menu?

    And have your phone set to require a passcode before it can be accessed.

  • Is it possible to use an external drive to play movies on my iPhone 5?  I am going on a long flight and only have a 16gb iPhone.  I will not have access to wifi, so it would have to connect manually.

    Is it possible to use an external drive to play movies on my iPhone 5?  I am going on a long flight and only have a 16gb iPhone 5.  I will not have access to wifi, so it would have to connect manually.  I've heard of apps that connect to an external for this very purpose, but its via wifi. 

    http://www.seagate.com/external-hard-drives/portable-hard-drives/wireless/seagat e-satellite/
    Use Google and you can find similar drives from other companies.

Maybe you are looking for

  • HT3702 How can I remove credit card from file

    I can't update my apps I want to remove credit card information on file

  • Pick Release 11.0.3

    Hi, We are getting error in the log while submitting concurrent request in release sales order form pick release as below and in pick slip we are getting 'no data found' message. Here is the error in the pick release log file WSH_UNSUPPORTED_ARG IN D

  • Conveting M4V files to MP3

    Hi = Ihave severa; mv4 files that I would like to convery so that I can burn an audio CD for my car.Does any one know of anything (software) that does this for a mac? thanks

  • Changes in CC 5.2 over 5.1

    Hi all, i've been searching for documentation in terms of new/changed functionality in the Compliance Calibrator ver 5.2 over 5.1. I've already seen some new functions in 5.2. May I know where i could find the 'change log'? It does not seem available

  • Cannot access Filters when they are saved to a folder in the shared area

    hello I have created a series of filters in oracle BI 11g and have saved these filters in the shared area under folders eg : Folder : Purchasing Report Filters Content : (The filter) However I cannot access the filter when applying it to a purchasing