Put internal display into overscan

I've unlocked screen spanning so that i can have a vga res of 1280x960 but this is putting lots of unnessary pressure on the GPU, the poor thing is obviously suffering sometimes. Things like the fancy screen transitions of exposé and dashboard are extremely jerky. Switch back to mirror mode and they are silky smooth.
I know that Apple in all their wisdom decided not to offer a way for turning off the internal display but is there any way to switch the main display into an overscan mode in order to circumvent the 1024x768 limitation when using mirror mode?
Almost all graphic cards, including the radeon mobility can do overscan so there must be a way to enable it for the ibooks lcd.

HI Sudhakar
Hierarchial ALV is used to show header and Item data in different rows.
IF you want to divide a particual record into different rows then you have to give row no. also in field catalog like
for <field1>
i_fieldcat-row_pos = '1'.
i_fieldcat-column_pos = '1'.
for <field6>
i_fieldcat-row_pos = '2'.
i_fieldcat-row_column = '1'.
Regards
Aditya

Similar Messages

  • Ipad displays "ipad is disabled connect to itunes", I have tried putting the ipad into recovery mode and then restoring but that does not work. I have also tried doing a hard reset of the ipad and that does not work either. Any ideas?

    Ipad displays “ipad is disabled connect to itunes”, I have tried putting the ipad into recovery mode and then restoring but that does not work. I have also tried doing a hard reset of the ipad and that does not work either. Any ideas?
    My son let one of his friends use his ipad. The next time he tired to use it he could not get it unlocked, I tired to unlock it but it kept telling me that I had the wrong pass code. With out me knowing my son continued to tire until it completely disabled it self.

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • How to join  fields from different internal tables and display into one int

    hai i have one doubt...
    how to join  fields from different internal tables and display into one internal table..
    if anybody know the ans for this qus tell me......

    hii
    you can read data as per condition and then can join in one internal table using READ and APPEND statement..refer to following code.
    SELECT bwkey                         " Valuation Area
             bukrs                         " Company Code
        FROM t001k
        INTO TABLE i_t001k
       WHERE bukrs IN s_bukrs.
      IF sy-subrc EQ 0.
        SELECT bwkey                       " Valuation Area
               werks                       " Plant
          FROM t001w
          INTO TABLE i_t001w
           FOR ALL ENTRIES IN i_t001k
         WHERE bwkey = i_t001k-bwkey
           AND werks IN s_werks.
        IF sy-subrc EQ 0.
          LOOP AT i_output INTO wa_output.
            READ TABLE i_t001w INTO wa_t001w WITH KEY werks = wa_output-werks.
            READ TABLE i_t001k INTO wa_t001k WITH KEY bwkey = wa_t001w-bwkey.
            wa_output-bukrs = wa_t001k-bukrs.
            MODIFY i_output FROM wa_output.
            CLEAR wa_output.
          ENDLOOP.                         " LOOP AT i_output
        ENDIF.                             " IF sy-subrc EQ 0
    regards
    twinkal

  • Conversion of internal table into excel file format &put it on app server

    Hi,
    My requirement is to convert the internal table into excel file format and I have to store it on application server so that administrator can send the file thr e-mail attachment.
    So, please let me know how to convert the records of internal table and store it on application server in Excel file format.
    TIA,
    Nitin

    Hi,
      Use FM GUI_DOWNLOAD to download the data from inernal table to excel sheet.
    Then Using tcode CG3Z u can transfer file to application server.
    *&      Form  sub_download
          text
    -->  p1        text
    <--  p2        text
    FORM sub_download.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
        BIN_FILESIZE                    =
          filename                        = p_path
         filetype                        = 'ASC'
        APPEND                          = ' '
         write_field_separator           = 'X'
        HEADER                          = '00'
        TRUNC_TRAILING_BLANKS           = ' '
        WRITE_LF                        = 'X'
        COL_SELECT                      = ' '
        COL_SELECT_MASK                 = ' '
        DAT_MODE                        = ' '
        CONFIRM_OVERWRITE               = ' '
        NO_AUTH_CHECK                   = ' '
        CODEPAGE                        = ' '
        IGNORE_CERR                     = ABAP_TRUE
        REPLACEMENT                     = '#'
        WRITE_BOM                       = ' '
        TRUNC_TRAILING_BLANKS_EOL       = 'X'
        WK1_N_FORMAT                    = ' '
        WK1_N_SIZE                      = ' '
        WK1_T_FORMAT                    = ' '
        WK1_T_SIZE                      = ' '
      IMPORTING
        FILELENGTH                      =
        TABLES
          data_tab                        = it_final
        FIELDNAMES                      =
      EXCEPTIONS
        FILE_WRITE_ERROR                = 1
        NO_BATCH                        = 2
        GUI_REFUSE_FILETRANSFER         = 3
        INVALID_TYPE                    = 4
        NO_AUTHORITY                    = 5
        UNKNOWN_ERROR                   = 6
        HEADER_NOT_ALLOWED              = 7
        SEPARATOR_NOT_ALLOWED           = 8
        FILESIZE_NOT_ALLOWED            = 9
        HEADER_TOO_LONG                 = 10
        DP_ERROR_CREATE                 = 11
        DP_ERROR_SEND                   = 12
        DP_ERROR_WRITE                  = 13
        UNKNOWN_DP_ERROR                = 14
        ACCESS_DENIED                   = 15
        DP_OUT_OF_MEMORY                = 16
        DISK_FULL                       = 17
        DP_TIMEOUT                      = 18
        FILE_NOT_FOUND                  = 19
        DATAPROVIDER_EXCEPTION          = 20
        CONTROL_FLUSH_ERROR             = 21
        OTHERS                          = 22
      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.                    " sub_download
    Otherwise use OPEN DATASET and TRANSFER statement to download data from internal table to direct application server
    Regards,
    Prashant

  • How can I disable the internal display on my MacBook Pro with connected external display?

    I used this metod with the MagSafe power cable connected (see http://osxdaily.com/2012/06/15/yet-another-way-to-turn-off-internal-lcd-display- of-macbook-pro-with-lid-open/).
    Open System Preferences and click “Mission Control”, then click on “Hot Corners”
    Select a hot corner and pull down the menu to select “Put Display to Sleep”
    Now connect the external display to the Mac and move the cursor to the newly created sleep corner to turn off the internal display
    Close the MacBook lid and wait a few seconds before opening the lid again, the internal display should stay off while the external display will be powered on
    This worked great under Mac OS X 10.7.4, but after the last update to 10.7.5 it doesn’t work more. The built-in display turns off really, but a few seconds after opening the lid it lights up again. Do you have any suggestions? Dimming the brightness or clamshell mode is not very useful.
    MacBook Pro 13-inch,
    2,7 GHz Intel Core i7,
    Mac OS X Lion 10.7.5 (11G56)
    Thanks!

    I have the same problem: not able to work with my external display mirroring the internal one - while shutting the internal display off.
    I believe there is an issue with Mac OS X Lion 7.5 that Apple needs to solve, since apparently it does not happen with this version of the OS only...
    https://discussions.apple.com/thread/4315808?start=45&tstart=0
    Or any other way to solve it?
    Mac Book Air, 13-inch Mid 2011
    Mac OS X Lion 10.7.5 11G63
    Thank you!

  • How to put a String into a byte array

    How can i put a String into a byte array byte[]. So that i can send it to the serial port for output to an LCD display. Cheers David

    javadocs for String
    getBytes
    public byte[] getBytes()
    Encodes this String into a sequence of bytes using the platform's default charset, storing the result into a new byte array.
    Returns:
    The resultant byte arraySince:
    JDK1.1

  • How do I put this output into a table ?

    I query a table and output using the following :
    <cfoutput query="qryAreas"
    group="state">#state#<br>
    <cfoutput
    group="city"> #site#<br><cfoutput>  #zipcode#<br></cfoutput><p>
    </cfoutput>
    </cfoutput>
    Since this is dynamic, the output gives me one column all the
    way down to the end of the page/screen.
    How do I dynamically output this into a table with two or
    three columns, displaying the same data as above ?
    I can probably do individual queries and put each one into a
    <td> but there has to be a better way to do this
    dynamically.

    My current output, without table, list the first state, then
    the first city under that state, then all zipcode for that city. It
    then list the second city for that state and all zipcodes for that
    city, When all the cities are exhausted for that state, it skips a
    line and then lists the next state, city, etc., and starts the
    process all over again. It gives me one column to the end of the
    screen.
    So for each td, I would like to have the state, the cities
    and zipcode, then the next td would have the next state, all cites
    and zipcodes, etc. I would not know how many states are in the
    table, so each td should contain a state.

  • Error while downloading data from internal table into XML file

    hi all,
    i developed a program to download data from into internal table to xml file like this.
    tables: mara.
    parameters: p_matnr like mara-matnr.
    data: begin of itab_mara occurs 0,
                matnr like mara-matnr,
                ernam like mara-ernam,
                aenam like mara-aenam,
                vpsta like mara-vpsta,
          end of itab_mara.
    data: lv_field_seperator type c,     " value 'X',
          lv_xml_doc_name(30) type c,    " string value ‘my xml file’,
          lv_result type i.
          lv_field_seperator = 'x'.
          lv_xml_doc_name = 'my xml file'.
    types: begin of truxs_xml_line,
              data(256) type x,
          end of truxs_xml_line.
    types:truxs_xml_table type table of truxs_xml_line.
    data:lv_tab_converted_data type truxs_xml_line,
         lt_tab_converted_data type truxs_xml_table.
    data: lv_xml_file type rlgrap-filename value 'c:\simp.xml'.
    select matnr ernam aenam vpsta from mara into table itab_mara up to 5
           rows where matnr = p_matnr.
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
    EXPORTING
       I_FIELD_SEPERATOR          = lv_field_seperator
      I_LINE_HEADER              =
      I_FILENAME                 =
      I_APPL_KEEP                = ' '
       I_XML_DOC_NAME             = lv_xml_doc_name
    IMPORTING
       PE_BIN_FILESIZE            = lv_result
      TABLES
        I_TAB_SAP_DATA             = itab_mara
    CHANGING
       I_TAB_CONVERTED_DATA       = lt_tab_converted_data
    EXCEPTIONS
      CONVERSION_FAILED          = 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.
    open dataset lv_xml_file for output in binary mode.
    loop at lt_tab_converted_data into lv_tab_converted_data.
    transfer lv_tab_converted_data to lv_xml_file.
    endloop.
    close dataset lv_xml_file.
    this program is syntactically correct and getting executed, but when i open the target xml file it is showing the following error.
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    XML document must have a top level element. Error processing resource 'file:///C:/simp.xml'.
    will anyone show me the possible solution to rectify this error
    thanks and regards,
    anil.

    Hi,
    Here is a small sample program to convert data in an internal table into XML format and display it.
    DATA: itab  TYPE TABLE OF spfli,
          l_xml TYPE REF TO cl_xml_document.
    * Read data into a ITAB
    SELECT * FROM spfli INTO TABLE itab.
    * Create the XML Object
    CREATE OBJECT l_xml.
    * Convert data in ITAB to XML
    CALL METHOD l_xml->create_with_data( name = 'Test1'
                                         dataobject = t_goal[] ).
    * Display XML Document
    CALL METHOD l_xml->display.
    Here are some other sample SAP programs to handle XML in ABAP:
    BCCIIXMLT1, BCCIIXMLT2, and BCCIIXMLT3.
    Hope this helps,
    Sumant.

  • External screen doesn't go into standby when putting MacBook Pro into sleep

    I'm using a new MacBook Pro with an external monitor (DELL P2411H) through a Mini Displayport to DVI adapter.
    When putting the Macbook into sleepmode, the external screen goes into standby but immediately wakes up, then goes back into standby and wakes up ... this cycle doesn't stop. The only option is to manually push the powerbutton on the display.
    I'm having this issue too when using a MacBook Pro 13", so it's not a single issue.

    I got similar Problem, my external monitor will go to standby mode and then switch on immediately, and the go to sleep , and the monitor will show no signal detect

  • Clamshell mode thinks internal display is running

    I use my MBP with an external display. Unfortunately, it always thinks that the internal display is still running even after I detect displays. The MBP is closed and I use a USB mouse and keyboard. The pointer can easily get "lost" off the screen. I've reset and restarted but the problem always comes back.

    I just open my MBP before plugging up the TB display.  Then after the TB comes on, I close the MBP back into clamshell mode.  Works better for me that way. 
    Does that work for you as well?
    -Brad

  • I can't connect my iPod classic to iTunes, it just doesn't react when I put the USB into the PC

    hey, I have an iPod classic and it can't connect to iTunes.
    I put the USB into my computer trying to add music, but it doesn't seems to react.
    It DOESN'T say that it can't recognize the Ipod..
    - Itunes just simpely doesn't react when I put the USB-cabel into my computer.
    - when i go to the task manager the "apple device mobile" and "ipod service" is acitve in the processes
    - I've tried to restart my computer (windows XP)
    - update iTunes
    - reinstall iTunes
    - restart my apple devices mobile manager
    what I think is the problem (which I can't solve) is that iTunes doen't even react to the USB
    plz hlp me!
    - ps it really should be able to add music to my iPod without getting help from a expert.

    Hello qz0rz213,
    It would seem that iTunes has encountered or developed an issue in the process of trying to sync photos to your device. The best place to start would be removing the iPod Photo Cache (thus allowing for a new version to be created).
    Note: Deleting this folder will not remove the original images from your library.
    iTunes: Understanding the iPod Photo Cache folder
    http://support.apple.com/kb/TS1314
    If the issue is not resolved by removing the iPod Photo Cache, the following article goes into further steps that can both help you determine the source of this trouble and eliminate it.
    Symptoms
    In certain situations, iTunes may display an alert or may be unable to sync photos to an iPod or iOS device. Examples include:
    After updating iOS, iTunes displays an alert that there is not enough room to sync photos
    This error appears: "The iPhone/iPod touch '[device name]' cannot be synced. The required file cannot be found."
    This article outlines steps to resolve these issues.
    iTunes: Unable to sync photos
    http://support.apple.com/kb/TS3697
    Cheers,
    Allen

  • Radeon 6490M stalling MBP on internal display, running fine on ext. monitor

    Hi,
    my early 2011 MBP (2,0 Ghz i7 - running OSX 10.8.2) started acting strangly a few days ago.
    When I use the internal display at home, the machine will crash whenever tasks are handed over from the
    Intel HD G 3000 to the Radeon 6490. However, when i plug the the MBP into it's external dispaly ( NEC EA 190M)
    at work where is use it as a desktop in clamshell-mode, the MBP is working just fine.
    I already thought i might be a problem with overheating or loose contacts between the GPU and the logicboard.
    But then, why does it stall in desktop-mode but not in clamshell-mode?
    Any ideas?
    Greetz
    MatKo

    Hi Clinton,
    I can tell from the systemreport, that the Radeon is driving the ext. display ( see screenshot):
    That gives me a little hope, that the GPU isn't shot altogether.
    No, I don't have the Apple Care Plan. Here in Europe we enjoy a two year manufacturer's liabilty by law. So unless you want a thrid year of warranty Apple Care doesn't makes that much sense here. I got my MBP in May 2011, so i'm good.

  • How can i put one scene into JPanel of the swing?

    how can i put one scene into JPanel of the swing?

    980571 wrote:
    ty for the information but i have a problen with JFXpanel when i try to into a panel it doesnt display insideSorry to hear that. If you want assistance with the code, feel free to post the relevant parts of it. Make sure to use \ tags when you do.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to fetch the SAP Standard Prog. built internal table into my_z_prog.?

    Hi Experts,
    Pls. let me know that,
    How to fetch the SAP Standard Prog. built internal table into my_z_prog.?
    For more explannation, pls. see my other thread with name of yestrday,
    SUBMIT RFGLBALANCE WITH selection criteria, then How to get resulted itab?
    thanq

    Hi
    Suppose RFGLBALANCE is your standard program and you have an internal table named I_RFGLBALANCE.
    And lets say your Z program name is Z_SRINIVAS.
    First find out the type of the internal table you want in your Z-program in the standard program. And declare an internal table of similar type in your Z-program.
    I hope you can do this much.
    Later wherever you are putting the below mentioned code.
    SUBMIT RFGLBALANCE WITH selection criteria
    Write the code which i have written.Obviously modify it to suit your requirement.
    Please show what is not working fine so that even anyone else can help you with the problem you are facing.
    Regards,
    Mayank

  • Xstring or internal table into archive

    Hello,
    is there a function module or something else, which can put a file from an xstring/internal table into the archive, to only ones i´ve found require the file to be on the application server or frontend pc
    regards franz

    Hello Franz,
    did you find a solution regarding your problem?
    I found a similar thread with a similar answer...: Storing XSTRING in ArchiveLink
    Did you find a better solution?
    Thanks in advance and BR, Christian

Maybe you are looking for