Problems displaying the site name in the header tab.

In the header displays the word "Connection" instead of the site, although the site is already open.

Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
*Don't click the Reset button on the Safe mode start window or otherwise make changes.
*https://support.mozilla.org/kb/Safe+Mode
If the extension or theme isn't working then you need to disable or uninstall it.
*https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Similar Messages

  • How to display the header data on different position in alv report

    hi all,
    how to display the header data on different position in alv report.
    for example ,
    customer                                                   name
      xxxx                                                         xxxx
                     vendor        name     street 
                      xxxx         xxxx      xxxxx
    pls   help me .

    hi
    as per my understanding you need to trnasfer header internal table data  to pdf..
    please check the following links for internal table to pdf..
    Convertion of Internal table data to PDF
    This link is related to ur issue
    Re: how to insert the calling of the FM: OTF to PDF
    Thanks

  • How we will display the header data and item data seperately in lists

    how we will display the header data and item data seperately in lists

    REPORT z_alv_list_block.
    TYPE-POOLS: slis. " ALV Global types
    SELECTION-SCREEN :
    SKIP,
    BEGIN OF LINE,
    COMMENT 5(27) v_1 FOR FIELD p_max. "#EC NEEDED
    PARAMETERS p_max(2) TYPE n DEFAULT '02' OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    DATA:
    1st Table
    BEGIN OF gt_kna1 OCCURS 0, " Data displayed
    kunnr LIKE kna1-kunnr, " Customer number
    ernam LIKE kna1-ernam, " Name of Person who Created
    erdat LIKE kna1-erdat, " Creation date
    name1 LIKE kna1-name1, " Name 1
    END OF gt_kna1,
    2nd Table
    BEGIN OF gt_mara OCCURS 0,
    ernam LIKE mara-ernam, " Name of Person who Created
    matnr LIKE mara-matnr, " Material number
    ersda LIKE mara-e rsda, " Creation date
    brgew LIKE mara-brgew, " Gross weight
    END OF gt_mara,
    3rd Table
    BEGIN OF gt_vbak OCCURS 0,
    vkorg LIKE vbak-vkorg, " Sales organization
    kunnr LIKE vbak-kunnr, " Sold-to party
    vbeln LIKE vbak-vbeln, " Sales document
    netwr LIKE vbak-netwr, " Net Value of the Sales Order
    waerk LIKE vbak-waerk, " SD document currency
    END OF gt_vbak.
    INITIALIZATION.
    v_1 = 'Maximum of records to read'.
    START-OF-SELECTION.
    Read data
    SELECT * FROM kna1
    UP TO p_max ROWS
    INTO CORRESPONDING FIELDS OF TABLE gt_kna1.
    SELECT * FROM mara
    UP TO p_max ROWS
    INTO CORRESPONDING FIELDS OF TABLE gt_mara.
    SELECT * FROM vbak
    UP TO p_max ROWS
    INTO CORRESPONDING FIELDS OF TABLE gt_vbak.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
    i_callback_program = sy-cprog
    i_callback_user_command = 'USER_COMMAND'.
    PERFORM list_append TABLES gt_kna1
    USING '1'
    'GT_KNA1'.
    PERFORM list_append TABLES gt_mara
    USING '2'
    'GT_MARA'.
    PERFORM list_append TABLES gt_vbak
    USING '3'
    'GT_VBAK'.
    PERFORM f_list_display.
    FORM USER_COMMAND *
    FORM user_command USING i_ucomm LIKE sy-ucomm
    is_selfield TYPE slis_selfield. "#EC CALLED
    CASE i_ucomm.
    WHEN '&IC1'. " Pick
    CASE is_selfield-tabname.
    WHEN 'GT_MARA'.
    WHEN 'GT_KNA1'.
    WHEN 'GT_VBAK'.
    READ TABLE gt_vbak INDEX is_selfield-tabindex.
    IF sy-subrc EQ 0.
    Sales order number
    SET PARAMETER ID 'AUN' FIELD gt_vbak-vbeln.
    Display Sales Order
    CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
    ENDIF.
    ENDCASE.
    ENDCASE.
    ENDFORM. " USER_COMMAND
    ----< /div>
    Form list_append
    FORM list_append TABLES ut_table
    USING u_no TYPE char1
    u_tabname TYPE slis_tabname.
    Macro definition
    DEFINE m_fieldcat.
    ls_fieldcat-fieldname = &1.
    ls_fieldcat-ref_tabname = &2.
    append ls_fieldcat to lt_fieldcat.
    END-OF-DEFINITION.
    DEFINE m_sort.
    ls_sort-fieldname = &1.
    ls_sort-up = 'X'.
    append ls_sort to lt_sort.
    END-OF-DEFINITION.
    DATA :
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv, " Field catalog
    ls_sort TYPE slis_sortinfo_alv,
    lt_sort TYPE slis_t_sortinfo_alv. " Sort table
    DATA:
    lt_events TYPE slis_t_event,
    ls_event TYPE slis_alv_event,
    ls_layout TYPE slis_layout_alv.
    ls_layout-group_change_edit = 'X'.
    ls_layout-colwidth_optimize = 'X'.
    ls_layout-zebra = 'X'.
    ls_layout-detail_popup = 'X'.
    ls_layout-get_selinfos = 'X'.
    ls_layout-max_linesize = '200'.
    CASE u_no.
    WHEN '1'.
    Build field catalog and sort table
    m_fieldcat 'KUNNR' 'KNA1'.
    m_fieldcat 'ERNAM' 'KNA1'.
    m_fieldcat 'ERDAT' 'KNA1'.
    m_fieldcat 'NAME1' 'KNA1'.
    m_sort 'KUNNR'.
    WHEN '2'.
    m_fieldcat 'MATNR' 'MARA'.
    m_fieldcat 'ERNAM' 'MARA'.
    m_fieldcat 'ERSDA' 'MARA'.
    m_fieldcat 'BRGEW' 'MARA'.
    m_sort 'MATNR'.
    WHEN '3'.
    m_fieldcat 'VBELN' 'VBAK'.
    m_fieldcat 'VKORG' 'VBAK'.
    m_fieldcat 'KUNNR' 'VBAK'.
    m_fieldcat 'NETWR' 'VBAK'.
    m_fieldcat 'WAERK' 'VBAK'.
    m_sort 'VBELN'.
    ENDCASE.
    IF u_no CA '13'.
    MOVE 'TOP_OF_PAGE' TO ls_event-name.
    CONCATENATE 'TOP_OF_PAGE' u_no INTO ls_event-form.
    APPEND ls_event TO lt_events.
    ELSE.
    MOVE 'TOP_OF_LIST' TO ls_event-name.
    CONCATENATE 'TOP_OF_LIST' u_no INTO ls_event-form.
    APPEND ls_event TO lt_events.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    it_fieldcat = lt_fieldcat
    is_layout = ls_layout
    i_tabname = u_tabname
    it_events = lt_events
    it_sort = lt_sort
    i_text =
    TABLES
    t_outtab = ut_table
    EXCEPTIONS
    program_error = 1
    maximum_of_appends_reached = 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.
    ENDFORM. " LIST_APPEND
    Form f_list_display
    FORM f_list_display.
    DATA ls_print TYPE slis_print_alv.
    ls_print-no_print_selinfos = 'X'. " Display no selection infos
    ls_print-no_print_listinfos = 'X'. " Display no listinfos
    ls_print-reserve_lines = 2. " Lines reserved for end of page
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
    i_interface_check = ' '
    is_print = ls_print
    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. " F_LIST_DISPLAY
    FORM top_of_page1 *
    FORM top_of_page1. "#EC CALLED
    PERFORM top_of_page.
    ENDFORM.
    FORM top_of_page3 *
    FORM top_of_page3. "#EC CALLED
    PERFORM top_of_page.
    ENDFORM.
    FORM top_of_page *
    FORM top_of_page.
    ULINE.
    WRITE : sy-uname, sy-title(56) CENTERED, sy-datum.
    ULINE.
    ENDFORM.
    FORM top_of_list2 *
    FORM top_of_list2. "#EC CALLED
    WRITE 'TOP OF LIST2'.
    ENDFORM.
    END OF PROGRAM Z_ALV_LIST_BLOCK ***********************

  • Problem displaying the value zero in dashboard

    Hello,
    I have a problem displaying the value zero.
    When I am Treat Numbers As number, the value that appears
    When Treat Numbers As Percentage box is empty.
    Can you tell me how to display this value when the criterion
    is in percentage format.
    thanks for answers
    Best regards

    cast the number as float or multiply by 1.00 e.g. 1.00 * table.column

  • Help,add button to contracts overview tab and the HEADER tab

    Hello,
    I would like add button to contracts overview tab and the HEADER tab .
    Do you want to change the standard procedure?
    /SAPSRM/WDC_CTR_DOFC_OV_H?
    Are there any other way?

    Hi,
    You can create a enchancement implemenation for /SAPSRM/WDC_CTR_DOFC_OV_H  and /SAPSRM/WDC_CTR_DODC_H_BD  by clicking on 'snail icon' .
    Creating button as per requirment. coding in  method on action of that button.
    Regards,
    Neelima

  • Is there an about:config option to change FF's default action when closing a tab so that it displays the previous tab rather than the next tab?

    With the new 3.6 tabbing behaviour (new tabs open to the right of the current tab, rather than at the end of the tab list), the old default behaviour when a tab is closed is no longer appropriate. Instead of displaying the next tab after the one that was closed, FF should display the previous one. Is there an about:config option to change the default behaviour upon closing a tab?

    Try one of these:
    *Tabberwocky: https://addons.mozilla.org/firefox/addon/14439
    *Tab Mix Plus: https://addons.mozilla.org/firefox/addon/1122
    *Tab Control: https://addons.mozilla.org/firefox/addon/1480

  • HT201436 How do I fix my voicemail?  When I press the voicemail button the phone dials voicemail instead of displaying the "greeting" tab.

    how do if ix my voicemail.  the phone dials voicemail when I press the voicemail button, instead of displaying the greetings tab.

    Hello there, BigAppleBorne65.
    The following article is specifically written to help you with your issue:
    iPhone: Troubleshooting voicemail
    http://support.apple.com/kb/TS4430
    Review all recommendations on this Knowledge Base article to resolve your issue.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • HR BAdi to display the header data of employee (PA30)

    Hello All,
    I am using transactions PA30 and PA20 to change the HR master data. I will explain my problem as follows.
    1) Transaction pa30. Enter personal number. Press enter. Screen will display employee basic info at header, just before selecting the any infotype. SSN number is also displayed for USA employee.
    2) I will select infotype 0002, change the SSN number, save it. before saving, in function module exit:EXIT_SAPFP50M_002 (INCLUDE ZXPADU02) , i am encrypting the SSN number and then stores it in DB.
    3) In BADI HRPAD00INFTY(BEFOE_OUTPUT), i am taking same encrypted SSN number form DB, decrypt it, and showing on screen.
    But the header part is still showing encrypted value. It is not decrypting the value before display. After investigation i found that, while displaying header part, mentioned Badi is getting called. I want to decrypt he same before display in header part only. It is working fine with detailed part (Means 0002 infotype screen).
    Which Badi should i use to decrypt the SSN number, before display it in header part??
    Any help??
    Thanks,
    Prashant

    Hi Prashant,
    The Badi method is triggering before the PBO, Means before infotype screen 3000
    In your requirement you have to implement the method AFTER_INPUT rather than BEFORE_OUTPUT in the same BADI implementation
    This will work, Try it out.
    Thanks
    Pavan
    Edited by: pavan kanike on Jan 30, 2009 7:34 PM

  • Problem displaying the output in the same view

    hi Gurus,
    I have developed an web dynrpo application and have three views, in the first view I am having an input field from which I am calling a BAPI by giving that input field value as input to the BAPI.
    Now is it possible to display the output also retrived from the BAPI on the same view.
    Thanks and regards
    kris

    hi LM,
    Thanks for your fast response.
    I think I was not clear in explaining my problem.
    I have a view in which I have an input field which is the input to the BAPI, now on entering the value in the input field I have a submit button, on clicking the BAPI should be executed and also the the output should be displayed on the same view.
    Now regarding the mapping both the input and output are in the same context, would that a problem.
    And also after getting the output from the BAPI I have to do some validations based on the output from the BAPI and get some message printed on the view.
    Please help me in this issue.
    Thanks and regards
    kris

  • Problems with the header

    Hello,
    I have followed the tutorial using my own Photos but now I have a problem. I have taken a screenshot to shot how the header "involves" with the next line.
    I don't know how to solve this problem?
    Isabella

    Moved to the main Dreamweaver support forum.
    It's not possible to determine the problem just by looking at a screenshot. The best way to get help is to upload the page to a website, and to post the URL in the forum. You also need to give more information about what you're trying to achieve. Do you want the navigation menu in a column alongside the heading, or should it be a single navigation bar running below the heading?

  • Displaying the header in the downloaded Excel sheet of BI Report

    Hi Friends,
          The BI report is mapped in the portal, there is a requirement to add a header part in the excel sheet which is downloaded from the Portal like displaying the company code and the date on which it is pulled out. How can it be done, please guide me.
    Thanks
    Karthik

    Hi,
    then that is an excel formattng.. After downloading, select the MATNR column, use the Menu option Firmat> Cells> Number--> custom and enter '000000000000000000'.
    Regards,
    Suresh Datti

  • Site name and populating header data in dashboards

    Hi All,
    Can anyone advise me how i may populate the "site name" field in the column headers on a dashboard? At the moment i have servers added from various sites and differing OU's in AD.
    But, when i add the site field in as a column, they are all blank!
    Can someone advise me how i may go about populating this info please?
    See attached/below for a screen shot of what i mean.
    Regards,
    Capt. Birdseye

    Hi,
    The Site Name column you are referring to is in fact the "Active Directory Site" attribute which is discovered by the "Discover Windows Computer Properties" object discovery.
    This discovery rule runs by default every day on all computers which are running windows.
    Is your Site ID filled in in AD and do you have enough privileges to read out this data?
    Is the AD mp installed + run as account configured?
    It's doing common things uncommonly well that brings succes. Check out my SCOM link blog:
    SCOM link blog
    Hi Dieter,
    Thank you for the reply. The AD mp is installed and configured correctly with the run as account. Im not sure what you mean by filling in the "site id" is this found in adsi? If i look up one of the servers, there is a site field which is greyed out, my
    understanding is that this is for DC's only, we do have some DC's listed in scom but the same field is still blank in the scom dashboards.
    If there are any other ways besides, custom fields, that i can have the site location of a server listed easily in the dashboards, please advise?
    Thanks and Regards,
    Capt. Birdseye

  • IN MIGO display mode not displaying the Invoice tab.

    Dear Sappers
    My Problem is , We r doing MIGO with excise & it capture well  posted it, But after that in display mode of MIGO the excise invoice tab not display?
    Why? How will get it?
    Please suggest better solution........
    Thanks

    I understand this note is useful if Excise tab not dispalyed while doing MIRO. But the issue is -In dispaly mode of MIGO the excise tab is not dispalyed even though we have captured the Excise during MIGO.
    Please let me know some solution on this as I am also facing same problem.
    Thanks
    Dhanu

  • I am having a persistent problems with the application tabs i pin not being saved. sometimes, they are not present when i re-open the browser.

    i have 3 sites i have repeatedly saved as an app tab. on the rare occasions i exit my browser, my pinned tabs are missing. furthermore, when i attempt to "restore previous session", the tabs that were open may be restored but the pinned tabs are ALWAYS missing and never restored.

    ''app-tabs not being saved...'''
    Be sure you close Firefox properly File (or "Firefox") > Exit not with the "x" in the upper right corner.
    Just because app-tabs will carry over from one session to another does not mean that they are fool proof or should be relied on., I keep mine in a bookmarks folder and replenish app-tabs from there when needed. It is also nice to have the "Tab Handler" to work with tabs and change all or a selection of tabs to app-tabs at once.

  • Does anyone has problem with the Glossary tab in RB8?

    The glossary tab does'nt show on *CHM file. Does anyone has that problem?
    1) Install RH8 on XP SP2 and register hhactivex.dll
    2) Start RH8
    3) Create new project.
    4) Click on '+' sign of Glossary from Project Manager to expand it and double click the Glossary(Default) to show the GLossary Pod.
    5) Type 'First' in the Term input field on the Glossary Pod, and click the + button to add it.
    6) Go to the 'Definition for :first section of the Pod and type in 'First'
    7) Save and generate the CHM file
    This is the first time I create a new project in RH8 with Glossary.
    If I import a previous project created with RoboHelp for Office X4 which has Glossary, and convert project to RH8 format and generate the CHM file, then the CHM file has the Glossary tab.
    I can't possibly beleive it is a bug in RH8 . However, what mistake did I make?
    This happens on XP SP2, RH 8.0.0.0.203, on XP SP3 with RH 8.0.2.208, on Win7 with RH 8.0.2.208. Basically, it doesn't matter on what PC we install RH8, doesn't matter how many time you register hhactivex.dll, the glossary tab never shows up. Howver, it shoes up on Winhelp.
    Thanks

    Hi there
    No, I don't believe they are ameteurs. Besides, some ameteurs do better work than "professionals".
    To be fair, some bugs are elusive. We may see them and report them but when the development team examines things they repeatedly and stubbornly fail to reveal themselves.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • Data Query combining GL, AP & AR

    Hi Guys, I work in a support project and having a hard time for finding the solution for the following request. Please help: "The information requested is as follows: - Number of GL entries per period - Number of manual GL entries per period - Number

  • Products not displaying on web

    Hi all, Iam new to iStore (using R12). I have added products in iStore Administration resp, but products are not visible in Customer Site. The products exists in inventory. i have see that the products are web enabled in both iStore and Inventory mod

  • Lookup Options in SOA11g.

    Hi , I have a requirement to create a lookup like below , and access the same in SOA 11g BPEL / Mediator process. This Should be dynamic in nature, so that business users can modify / add the lookup values at runtime. Level------AppName 1---------A 2

  • Monitor customer master deltas

    Hello All, I have created Deltas for 0Customer_Attr. Turned the change pointer on for Customer Master data and I can see the changes to the customer master in the BI system. The question I have is how to I see/monitor the ALE change in the R/3 system

  • API: Transport connect failed

    Hello, I've a Tacacs server ver. 3.2 running on a Win2000 SRV SP4 for outbound connections and a twin server for validate inbound connections (from Vpn Cli). Sometimes service Tacacs seems hang (more often for outbound conns, but sometimes for inboun