How to fix white line on top while using personas ?

Everytime I set a persona for Firefox I get a white line on top, I heard that it can be fixed by modifying the pref.js file, but I don't want to mess that up.

Here's a picture of how it looks by the way.

Similar Messages

  • How to display horizontal line in top-of-page by using object oriented ALV?

    How to display horizontal line in top-of-page by using object oriented ALV.
    I am created top-of-page in object oriented alv.
    But not be successes in showing horizontal line in it.
    Can any one pls give solution for this..
    Thanks and regards..

    Hi
    Try like this
    data: gt_list_top_of_page type slis_t_listheader. " Top of page text. 
    Initialization. 
    perform comment_build using gt_list_top_of_page[]. 
    form top_of_page. 
    * Note to self: the gif must be loaded into transaction OAOR with 
    * classname 'PICTURES' AND TYPE 'OT' to work with ALV GRID Functions. 
    * I Loaded NOVALOGO2 into system. 
    call function 'REUSE_ALV_COMMENTARY_WRITE' 
         exporting 
    * I_LOGO = 'NOVALOGO2' 
    * i_logo = 'ENJOYSAP_LOGO' 
             it_list_commentary = gt_list_top_of_page. 
    endform. " TOP_OF_PAGE 
    form comment_build using e04_lt_top_of_page type slis_t_listheader. 
    data: ls_line type slis_listheader. 
          clear ls_line. 
          ls_line-typ = 'A'. 
          ls_line-info = 'Special'(001). 
          fgrant = xgrant. 
          concatenate ls_line-info fgrant 
          'Stock Option Report to the board'(002) 
                 into ls_line-info separated by space. 
                        condense ls_line-info. 
          append ls_line to e04_lt_top_of_page. 
    endform. " COMMENT_BUILD
    Use following syntex for footer print in alv:
    * For End of Page
    form END_OF_PAGE.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      write: sy-uline(50).
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    *  For End of Report
    form END_OF_LIST.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    check this link
    http://abapprogramming.blogspot.com/
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5dc3e690-0201-0010-1ebf-b85b3bed962d
    Changing width of a custom container dynamically
    Display Page numbers in ALV
    Insert picture in selection screen.
    Logo in OO ALV Grid
    Reward all helpfull answers
    Regards
    Pavan

  • How to fix white screen of death on iPod 4g after screen replacement?

    How to fix white screen of death on iPod 4g after screen replacement?

    I would try to reset it before anything else.  To do this press and hold the home and power buttons until the the white screen shows the apple logo (~ 15 secs.).
    If this does not work then more than likely the LCD is damaged.
    btw- The white screen is common after repairs.  The reset fix works 90% of the time.
    iRefresh ltd.
    http://www.ipodrefresh.com

  • I had greyed out wifi, looked on the net how to fix it and it said to use a hairdryer which worked it greyed out again 5 mins after, so i did it again this happened 3 times then the 4th time the screen went white any ideas whats happned an how to fix it?

    i had greyed out wifi on my iphone 4s, looked on the net how to fix it and it said to use a hairdryer which worked it greyed out again 5 mins after, so i did it again this happened 3 times then the 4th time the screen went white any ideas whats happned an how to fix it?

    No, sounds like when you dropped it an cracked the screen it may have also damaged the logic board or the repair person damaged a cable.

  • How to insert multiple line items in fv60 using bdc.

    Hi all,
          How to insert multiple line items in fv60 using bdcs

    hi
    chk this
    DATA : IT_BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE.
    DATA : IT_MESSAGES LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA : V_EBELP(30) , V_MENGE(30) , V_WERKS(30), V_EMATN(30) ,
    V_PEINH(30).
    DATA : FILE TYPE STRING, V_MSG(100) , V_IND(2) TYPE N , FLAG VALUE 'X'.
    PARAMETERS: P_FILE(50) TYPE C DEFAULT 'C:\ME21_TEST'.
    DATA : BEGIN OF ITAB OCCURS 0,
            IND(02),
            LIFNR_001(010),
    data element: BSART
            BSART_002(004),
    data element: BEDAT
    data element: EKORG
            EKORG_004(004),
            EKGRP_006(003),
    data element: LPEIN
            LPEIN_005(001),
    data element: EMATNR
            EMATN_01_007(018),
    data element: EWERK
            WERKS_01_008(004),
    data element: EPEIN
            PEINH_01_009(006),
    data element: EWERK
           MENGE_01_013(017),
    data element: AUFEP
            EBELP_014(005),
    data element: AUFEP
         END OF ITAB.
    START-OF-SELECTION.
    FILE = P_FILE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = FILE
        FILETYPE                      = 'ASC'
        HAS_FIELD_SEPARATOR           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      TABLES
        DATA_TAB                      = ITAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SORT ITAB BY IND.
    START-OF-SELECTION.
    LOOP AT ITAB.
    REFRESH IT_MESSAGES.
    <b>V_IND = V_IND + 1.</b>
    <b>AT NEW IND.</b>
    <b>READ TABLE ITAB INDEX SY-TABIX.</b>
    PERFORM BDC_DYNPRO      USING 'SAPMM06E' '0100'.
    PERFORM BDC_FIELD       USING 'EKKO-LIFNR'
                                  ITAB-LIFNR_001.
    PERFORM BDC_FIELD       USING 'RM06E-BSART'
                                  ITAB-BSART_002.
    *perform bdc_field       using 'RM06E-BEDAT'
                                 ITAB-BEDAT_003.
    PERFORM BDC_FIELD       USING 'EKKO-EKORG'
                                  ITAB-EKORG_004.
    PERFORM BDC_FIELD       USING 'RM06E-LPEIN'
                                  ITAB-LPEIN_005.
    PERFORM BDC_FIELD       USING 'EKKO-EKGRP'
                                  ITAB-EKGRP_006.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '/00'.
    ENDAT.
    <b>PERFORM BDC_DYNPRO      USING 'SAPMM06E' '0120'.
    CONCATENATE 'EKPO-EMATN(' V_IND ')' INTO V_EMATN.
    PERFORM BDC_FIELD       USING  V_EMATN
                                   ITAB-EMATN_01_007.
    CONCATENATE 'EKPO-WERKS(' V_IND ')' INTO V_WERKS.
    PERFORM BDC_FIELD       USING  V_WERKS
                                   ITAB-WERKS_01_008.
    CONCATENATE 'EKPO-PEINH(' V_IND ')' INTO V_PEINH.
    PERFORM BDC_DYNPRO      USING 'SAPMM06E' '0120'.
    PERFORM BDC_FIELD       USING  V_PEINH
                                   ITAB-PEINH_01_009.
    *CONCATENATE 'EKPO-MENGE(' V_IND ')' INTO V_MENGE.
    *perform bdc_dynpro      using 'SAPMM06E' '0120'.
    *perform bdc_field       using  V_MENGE
                                  ITAB-MENGE_01_013.
    *CONCATENATE 'EKPO-EBELP(' V_IND ')' INTO V_EBELP.
    PERFORM BDC_DYNPRO      USING 'SAPMM06E' '0120'.
    PERFORM BDC_FIELD       USING  'RM06E-EBELP'
                                   ITAB-EBELP_014.</b>PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '/00'.
    AT END OF IND.
    PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                  '=BU'.
    ENDAT.
    CALL TRANSACTION 'ME21' USING IT_BDCDATA MODE 'A'
                                             UPDATE 'S'
                                        MESSAGES INTO IT_MESSAGES.
       LOOP AT IT_MESSAGES WHERE MSGTYP = 'E' OR MSGTYP = 'A'.
         IF FLAG = 'X'.
         CALL FUNCTION 'BDC_OPEN_GROUP'
         EXPORTING
            CLIENT                    = SY-MANDT
           DEST                      = FILLER8
            GROUP                     = 'GAMY_FAILURE'
           HOLDDATE                  = FILLER8
            KEEP                      = 'X'
            USER                      = SY-UNAME
           RECORD                    = FILLER1
           PROG                      = SY-CPROG
         IMPORTING
           QID                       =
          EXCEPTIONS
            CLIENT_INVALID            = 1
            DESTINATION_INVALID       = 2
            GROUP_INVALID             = 3
            GROUP_IS_LOCKED           = 4
            HOLDDATE_INVALID          = 5
            INTERNAL_ERROR            = 6
            QUEUE_ERROR               = 7
            RUNNING                   = 8
            SYSTEM_LOCK_ERROR         = 9
            USER_INVALID              = 10
            OTHERS                    = 11
         IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
         CLEAR FLAG.
         ENDIF.
         CALL FUNCTION 'BDC_INSERT'
          EXPORTING
            TCODE                  = 'ME21'
           POST_LOCAL             = NOVBLOCAL
           PRINTING               = NOPRINT
           SIMUBATCH              = ' '
           CTUPARAMS              = ' '
           TABLES
             DYNPROTAB              = IT_BDCDATA
          EXCEPTIONS
            INTERNAL_ERROR         = 1
            NOT_OPEN               = 2
            QUEUE_ERROR            = 3
            TCODE_INVALID          = 4
            PRINTING_INVALID       = 5
            POSTING_INVALID        = 6
            OTHERS                 = 7
         IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
        ENDIF.
    CALL FUNCTION 'FORMAT_MESSAGE'
      EXPORTING
        ID              = IT_MESSAGES-MSGID
        LANG            = 'EN'
        NO              = IT_MESSAGES-MSGNR
        V1              = IT_MESSAGES-MSGV1
        V2              = IT_MESSAGES-MSGV2
        V3              = IT_MESSAGES-MSGV3
        V4              = IT_MESSAGES-MSGV4
      IMPORTING
        MSG             = V_MSG
      EXCEPTIONS
        NOT_FOUND       = 1
        OTHERS          = 2
       WRITE : / V_MSG.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDLOOP.
       ENDLOOP.
    IF FLAG NE 'X'.
      CALL FUNCTION 'BDC_CLOSE_GROUP'
       EXCEPTIONS
         NOT_OPEN          = 1
         QUEUE_ERROR       = 2
         OTHERS            = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      ENDIF.
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR IT_BDCDATA.
      IT_BDCDATA-PROGRAM  = PROGRAM.
      IT_BDCDATA-DYNPRO   = DYNPRO.
      IT_BDCDATA-DYNBEGIN = 'X'.
      APPEND IT_BDCDATA.
    ENDFORM.
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
        CLEAR IT_BDCDATA.
        IT_BDCDATA-FNAM = FNAM.
        IT_BDCDATA-FVAL = FVAL.
        APPEND IT_BDCDATA.

  • HT5002 I used Inkscape on Linux before moved to Mac. Now I am trying to install it using MacPorts, but libpixman has some problems that has been reported out there. Does any one know how to fix it without the need to use other way than MacPorts?

    I used Inkscape on Linux before moved to Mac. Now I am trying to install it
    using MacPorts, but libpixman has some problems that has been reported out there.
    Does any one know how to fix it without the need to use other way than MacPorts?

    Start with this comprehensive troubleshooting article:
    https://discussions.apple.com/docs/DOC-3521
    Look at this one for possible solutions:
    https://discussions.apple.com/docs/DOC-3353
    Ciao.

  • How do I  turn music completely off while using maps

    How do I turn the music off while using apps for directions. Every time I use maps to navigate somewhere I get music that comes on automatically anyone know how to turn this off?

    Just disabling firewire at the system settings not physically shuts off power to the firewire port. And since you feel by yourself facing a hardware defect, I would recommend taking the computer to a repair center.
    Maybe they are able (I'm absolutely not sure about, but sometimes hope dies at last to remove an internal cable and so shut down the firewire ports without replacing any expensive parts.

  • White 'line' at top of images edited in iPhoto '09?

    Hi all,
    I get a (very thin) white line on the top of my images in iPhoto '09. It occurs on some (not all) images when I sharpen them. Anyone have any clues?
    I have posted an example here.
    Note that this does not happen in Aperture 2 but I find iPhoto '09 easier to use.
    Any help?
    All the best
    MacF31

    It's on the first page also. How are you adding the photos to the pages, both album and front? Are you processing the photos in a 3rd party editor?
    Something like this was discussed quite a while a ago. Here is the link to the topic:
    Welcome Page Image Problem
    Message was edited by: Old Toad

  • How to avoid white lines

    Hi All,
    How to avoid the white lines below the selection-options text in the selection screen of the report?
    I am seeing light while lines below each selection-options or parameters text
    Thanks
    aRs

    hi,
    don't use simple select-options / parameters
    but
    <b>selection-screen begin of line</b>
    ...select-options
    ...    end of line
    sample from RFKORD10
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(30) TEXT-101.
    SELECTION-SCREEN POSITION POS_LOW.
    PARAMETERS      VSTID    LIKE RF140-VSTID.
    SELECTION-SCREEN POSITION POS_HIGH.
    PARAMETERS      DVSTID   LIKE RFPDO1-KORD10DV DEFAULT ' '.
    SELECTION-SCREEN COMMENT 61(9) TEXT-102.
    SELECTION-SCREEN END OF LINE.
    A.
    Message was edited by:
            Andreas Mann

  • How to remove white line that appears on background of flash file when viewing in powerpoint?

    When importing a swf file into powerpoint with a background colour a thin white line appears on the top of the flash movie when played in powerpoint. The white line disappears when you click onto another slide and back again, but always appears when initially playing the slide. Anyone have any ideas why this is and how to remove it?
    Any help is appreciated.
    Dom

    Doesn't the Location Bar (URL's) also disappear in the Add-ons Tab? <br />
    Separator or border used to delineate the User Interface (Toolbars) from the content area.
    Contact the developer of Tree Style Tabs. If that white line doesn't appear until you click on a Tab, I would call it a Bug or glitch in that extension.

  • Thin white line at top of ipod 80G classic screen

    Would like to know if there is a way to get rid of this line, which is located across the top of the screen, in the area where the battery icon is located. The screen was fine then I downloaded the latest version of software for the 80G Classic and synced it. Next thing I knew I had this white line across the top of the screen. Is there a way to get rid of the line, or do I have to send the unit in and have Apple repair it? Only had the unit since December 2007.

    Oh - you are good!
    Kat
    "-->dan mode" <[email protected]> wrote in
    message
    news:eb0a6u$isd$[email protected]..
    > Tis on yer image.
    >
    >
    http://www.blastoffmusic.org/Assets/backgroundBody.jpg
    >
    >
    > --
    >
    > Dan Mode
    > --> Adobe Community Expert
    > *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    > *THE online Radio*
    http://www.tornadostream.com
    > *Must Read*
    http://www.smithmediafusion.com/blog
    >
    >
    > "KatOlds" <[email protected]> wrote in message
    > news:eb08q3$h8o$[email protected]..
    >>I have a thin white line that appears at the to of
    the page even though my
    >>css declares {margin: 0 auto; padding: 0;) Any ideas
    what that might be?
    >>
    >> Link: www.blastoffmusic.org/index4.htm.
    >>
    >> Thanks for your input!
    >>
    >> :)
    >> Kat
    >>
    >
    >

  • White line at top of JPEG's

    This is curious.
    I updated my website last night and now all of a sudden, I have a very thin white line at the top of all the new images I placed in it.
    The thing is, I did nothing different from what I do normally and they are not visible in iWeb.
    Could someone kindly take the time to navigate my site and see what I mean and potentially come up with a solution as it would be much appreciated.
    Specifically at these pages:
    http://www.antoniospinozzi.com/home.html
    http://www.antoniospinozzi.com/me.html
    http://www.antoniospinozzi.com/art.html
    http://www.antoniospinozzi.com/photos.html
    http://www.antoniospinozzi.com/design.html
    http://www.antoniospinozzi.com/asleep.html
    http://www.antoniospinozzi.com/***.html
    Thanking whomever in advance.

    There are several threads regarding this issue:
    http://discussions.apple.com/click.jspa?searchID=-1&messageID=2553733

  • My mac repeatedly reflows the screen and all the open file windows. why is this happening and how do I fix it? it happens while using Adobe InDesign 3.

    this happens from time to time and I think in the past I have done a restart to make it stop. it's possible it only happens while using Adobe InDesign CS3 but I have not watched diligently enough to say for sure. the hard disk repeatedly, every 30 seconds or so, spins up and the entire screen reflows, finishing on the finder with open windows all opening in order. everything moves. then I need to go back to InDesign only to have it happen again. I don't necessarilly touch any keys or the mouse. as I type here it has stopped so maybe it really is an InDesign issue. does anybody know what's going on?

    BDAqua and old comm guy,
    thanks so much for the good advice. I used both of these and now the problem has stopped. first I checked the finder crash logs and yes, my finder had been crashing repeatedly.
    next I removed the preferences files from the library, rebooted from the CD and ran disk utility to repair preferences. since then my computer has been stable.
    there were some preferences that didn't get repaired when I ran disk utility. I am copying them here to refer to later if I need to. I don't understand what these mean to me:
    Warning: SUID file "System/Library/Filesystems/AppleShare/afpLoad" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/Resources /DiskManagementTool" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/pppd" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/vpnd" has been modified and will not be repaired.

  • Schedule lines not updating while using the BAPI_SCHEDULE_MAINTAIN

    Hi all,
    I am using BAPI_SCHEDULE_MAINTAIN to change the schedule line delivery date and schedule line quantity
    while i was changing using t-code ME38 it is changing but while using the above mentioned BAPI i am getting the below errors
    1)Instance PurchSchedagreement of object type <schedule agreement no> could not be changed
    2)Delivery date outside period covered by factory calendar H2.
    Any idea??
    Regards,
    Satishreddy.

    Issue Resolved

  • How do I move files in iCloud while using my mini iPad?

    I just recently got an iPad mini with retina display.  This is my first iPad.  There are many things that are new to me.
    At the moment, I'm trying to figure out how to move or delete files in iCloud Drive while using my mini iPad.  As I understand it, the only way to look at, organize or move files in the iCloud drive is to login to iCloud via a browser other than installing a separate specific application that lets me do that.  However, I have found that even if I login to the iCloud drive using a browser, I still can't move or delete files while using the mini iPad although I can view the file list and folder list, create file folders, and use files for which I already have an application installed.
    How do I get around this so that I can do those things?  Do I really have to get a separate application to do that?  If so, what's a good one to use?

    Hi Files get sent to iCloud when you backup this happens Automatically When you charge your iPad Since ios 7 Almost everything can be done over your WiFi Software updates  apps& data can all be synced over WiFi We have  2 iPhones & 3 iPads & have not used PC for over a year. For Apple Devices. Go to ibooks download iPad user guide its Free. Cheers Brian

Maybe you are looking for

  • Error when exporting IDOC from one XI system to another

    Hi all, When I do an export for an IDOC from my one XI server to be able to import it into another I get the error below. The funny thing is that it works perfectly for my COND_A idoc but not at all for DEBMAS and MATMAS idoc. Any ideas? <b>Error dur

  • Problem in invoking the web services

    Hi all, I am new to java web services i develoed a simple webservices here i am posting the code i generated every thing using wstools of Jboss4.0.5AS package com.javasrc.webservices.age; import java.rmi.Remote; import java.rmi.RemoteException; publi

  • HT201335 Mirroring function on Apple TV 3gen not working - help please

    I have a brand new Mac Book Air and recentlypurchased the Apple TV (3rd gen). The mirroring icon worked until I closed the screen on the laptop and then Apple TV stopped working on the tv I was streaming content to. I opened the screen and since then

  • Does oracle10g is supported by XML editor XML Spy??

    All: I have installed XMLSpy 2004 R3 professional edition and trying to Connect Oracle XML DB. But I am getting error that "Invalid userId or Password". I am trying to connect to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production

  • Freeing disk space

    I am down to 30GB's on my SL Mac. Anyone got any ideas on what I can delete? I have done all the obvious steps which is emptying the trash, and deleting unwanted apps. John