Cockpit and LOgo

Hello Experts,
After sucessfully set up my logo as the background, I then enabled my cockpit. As soon as I did that, the logo as the background disappeared.
Where can I see it?? or why it disappear?
Finally, with the cockpit function every time i give a clik to one document there is an annoying bip bip.
Do you know why? I woud like to get rid of it.
Many thanks for your reply,

Hi,
For your 1st question i.e. about the logo, the solution is to see if you have closed it unpurposely. If not, you check the setting of the cockpit by clicking the setting icon in the top right of the cockpit window. if neither one of the solution solved, log a message to sap support.
The second question, i.e. about bip-bip, it is solved in the SBO 8.8 SP00 PL13. Download it and then upgrade your current B1 8.8 to the PL13.
Rgds,
JimM

Similar Messages

  • Header and Logo in Blocked ALV

    Is It possible to put header and logo in Blocked ALV Report.
    Is yes shall I go with the same way we put the Header and Logo in ALV Grid report.
    Thanks in Advance.

    Hi,
    You can put the haeder and logo  same like we have used to do in classical ALV's....
    sample code snippet..
    REPORT  ZALV_BLOCKEDALV .
    *provide tables
    TABLES: MARA, MAKT, MARD.
    *provide type-pools
    TYPE-POOLS: SLIS.
    *provide select-options
    SELECT-OPTIONS: S_MATNR FOR MARA-MATNR.
    *provide data objects
    DATA: V_REPID TYPE SY-REPID,
          WA_MARA_FIELD TYPE SLIS_FIELDCAT_ALV,       "it is for field catalog
          WA_MAKT_FIELD TYPE SLIS_FIELDCAT_ALV,
          WA_MARD_FIELD TYPE SLIS_FIELDCAT_ALV,
          WA_MARA TYPE MARA,
          WA_MAKT TYPE MAKT,
          WA_MARD TYPE MARD,      IT_MARA_FIELD TYPE SLIS_T_FIELDCAT_ALV,
          IT_MAKT_FIELD TYPE SLIS_T_FIELDCAT_ALV,
          IT_MARD_FIELD TYPE SLIS_T_FIELDCAT_ALV,
          IT_MARA TYPE TABLE OF MARA,
          IT_MAKT TYPE TABLE OF MAKT,
          IT_MARD TYPE TABLE OF MARD,      V_LAYOUT TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS TYPE SLIS_T_EVENT,            "it is for events
          WA_EVENTS TYPE SLIS_ALV_EVENT.V_REPID = SY-REPID.
    *provide field catalog perform
    PERFORM FIELD_CAT.
    *call the initial function module
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
      EXPORTING
        I_CALLBACK_PROGRAM             = V_REPID
    *   I_CALLBACK_PF_STATUS_SET       = ' '
    *   I_CALLBACK_USER_COMMAND        = ' '
    *   IT_EXCLUDING                   =
    *provide perform for select the data
    PERFORM SELECT_DATA.
    *call mara append list
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                        = V_LAYOUT
        IT_FIELDCAT                      = IT_MARA_FIELD[]
        I_TABNAME                        = 'MARA'
        IT_EVENTS                        = IT_EVENTS[]
    *   IT_SORT                          =
    *   I_TEXT                           = ' '
      TABLES
        T_OUTTAB                         = IT_MARA
    EXCEPTIONS
       PROGRAM_ERROR                    = 1
       MAXIMUM_OF_APPENDS_REACHED       = 2
       OTHERS                           = 3.
    *call makt append list
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                        = V_LAYOUT
        IT_FIELDCAT                      = IT_MAKT_FIELD
        I_TABNAME                        = 'MAKT'
        IT_EVENTS                        = IT_EVENTS
    *   IT_SORT                          =
    *   I_TEXT                           = ' '
      TABLES
        T_OUTTAB                         = IT_MAKT
    EXCEPTIONS
       PROGRAM_ERROR                    = 1
       MAXIMUM_OF_APPENDS_REACHED       = 2
       OTHERS                           = 3.
    *call mard append list
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        IS_LAYOUT                        = V_LAYOUT
        IT_FIELDCAT                      = IT_MARD_FIELD
        I_TABNAME                        = 'MARD'
        IT_EVENTS                        = IT_EVENTS
    *   IT_SORT                          =
    *   I_TEXT                           = ' '
      TABLES
        T_OUTTAB                         = IT_MARD
    EXCEPTIONS
       PROGRAM_ERROR                    = 1
       MAXIMUM_OF_APPENDS_REACHED       = 2
       OTHERS                           = 3.
    *display the data
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * EXPORTING
    *   I_INTERFACE_CHECK             = ' '
    *   IS_PRINT                      =
    *   I_SCREEN_START_COLUMN         = 0
    *   I_SCREEN_START_LINE           = 0
    *   I_SCREEN_END_COLUMN           = 0
    *   I_SCREEN_END_LINE             = 0
    * IMPORTING
    *   E_EXIT_CAUSED_BY_CALLER       =
    *   ES_EXIT_CAUSED_BY_USER        =
    * EXCEPTIONS
    *   PROGRAM_ERROR                 = 1
    *   OTHERS                        = 2.
    *&      Form  TOP_PAGE
    *       text
    FORM TOP_PAGE.  WRITE:/ 'THIS IS BLOCKED ALV REPORT PROGRAM BASED ON 3 BLOCKS' COLOR
    5.ENDFORM.                    "TOP_PAGE
    *&      Form  FIELD_CAT
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM FIELD_CAT .WA_MARA_FIELD-COL_POS = 1.
    WA_MARA_FIELD-FIELDNAME = 'MATNR'.
    WA_MARA_FIELD-REF_TABNAME = 'MARA'.
    APPEND WA_MARA_FIELD TO IT_MARA_FIELD.
    CLEAR WA_MARA_FIELD.WA_MARA_FIELD-COL_POS = 2.
    WA_MARA_FIELD-FIELDNAME = 'ERSDA'.
    WA_MARA_FIELD-REF_TABNAME = 'MARA'.
    APPEND WA_MARA_FIELD TO IT_MARA_FIELD.
    CLEAR WA_MARA_FIELD.WA_MARA_FIELD-COL_POS = 3.
    WA_MARA_FIELD-FIELDNAME = 'ERNAM'.
    WA_MARA_FIELD-REF_TABNAME = 'MARA'.
    APPEND WA_MARA_FIELD TO IT_MARA_FIELD.
    CLEAR WA_MARA_FIELD.WA_MARA_FIELD-COL_POS = 4.
    WA_MARA_FIELD-FIELDNAME = 'LAEDA'.
    WA_MARA_FIELD-REF_TABNAME = 'MARA'.
    APPEND WA_MARA_FIELD TO IT_MARA_FIELD.
    CLEAR WA_MARA_FIELD.WA_MAKT_FIELD-COL_POS = '1'.
    WA_MAKT_FIELD-FIELDNAME = 'MATNR'.
    WA_MAKT_FIELD-REF_TABNAME = 'MAKT'.
    APPEND WA_MAKT_FIELD TO IT_MAKT_FIELD.
    CLEAR WA_MAKT_FIELD.WA_MAKT_FIELD-COL_POS = 2.
    WA_MAKT_FIELD-FIELDNAME = 'MAKTX'.
    WA_MAKT_FIELD-REF_TABNAME = 'MAKT'.
    APPEND WA_MAKT_FIELD TO IT_MAKT_FIELD.
    CLEAR WA_MAKT_FIELD.WA_MAKT_FIELD-COL_POS = 3.
    WA_MAKT_FIELD-FIELDNAME = 'MAKTG'.
    WA_MAKT_FIELD-REF_TABNAME = 'MAKT'.
    APPEND WA_MAKT_FIELD TO IT_MAKT_FIELD.
    CLEAR WA_MAKT_FIELD.WA_MARD_FIELD-COL_POS = 1.
    WA_MARD_FIELD-FIELDNAME = 'MATNR'.
    WA_MARD_FIELD-REF_TABNAME = 'MARD'.
    APPEND WA_MARD_FIELD TO IT_MARD_FIELD.
    CLEAR WA_MARD_FIELD.WA_MARD_FIELD-COL_POS = 2.
    WA_MARD_FIELD-FIELDNAME = 'WERKS'.
    WA_MARD_FIELD-REF_TABNAME = 'MARD'.
    APPEND WA_MARD_FIELD TO IT_MARD_FIELD.
    CLEAR WA_MARD_FIELD.WA_MARD_FIELD-COL_POS = 3.
    WA_MARD_FIELD-FIELDNAME = 'LGORT'.
    WA_MARD_FIELD-REF_TABNAME = 'MARD'.
    APPEND WA_MARD_FIELD TO IT_MARD_FIELD.
    CLEAR WA_MARD_FIELD.WA_EVENTS-FORM = 'TOP_PAGE'.
    WA_EVENTS-NAME = 'TOP_OF_PAGE'.
    APPEND WA_EVENTS TO IT_EVENTS.ENDFORM.                    " FIELD_CAT
    *&      Form  SELECT_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM SELECT_DATA .SELECT *
    FROM MARA
    INTO TABLE IT_MARA
    WHERE MATNR IN S_MATNR.SELECT *
    FROM MAKT
    INTO TABLE IT_MAKT
    WHERE MATNR IN S_MATNR.SELECT *
    FROM MARD
    INTO TABLE IT_MARD
    WHERE MATNR IN S_MATNR.ENDFORM.                    " SELECT_DATA
    hope  this will help you
    regards,
    kiran
    Edited by: kiran  kumar on Aug 23, 2010 1:43 PM

  • SharePoint 2013: Error when clicking on Title, description, and logo

    Hi.
    I'm in the process of upgrading from SharePoint 2007 to 2013 and have come across an error which I think has occurred since trying to deploy a new feature to implement our "Company Theme" (Custom look). Please note, everything is otherwise behaving
    as expected in the new 2013 environment and the issue does not occur for site collections/content db's that are deleted and restored from the interim 2010 upgraded backup, so I am assuming its something I've done as part of deploying, retracting and redeploying
    the theme feature (a number of times).
    So, on to the problem... When I click on "Title, description, and logo" in Site Settings I get the following error:
    "Sorry, something went wrong
    A list, survey, discussion board, or document library with the specified title already exists in this web site.  Please choose another title."
    My research suggests there is something wrong with the masterpage, which I had initially included as part of the feature but have since gone back to using the default "seattle.master" when creating the Composed look (only spcolor and spfont are
    different now).
    The same error also occurs when trying to preview a composed look.
    Anyway, while I can probably get away with re-upgrading the affected site collections and re-enabling the theme feature, I'd like to know if I can fix this (or rather, what caused it) before going to production.
    BTW, I'm getting the following errors in the Log file:
    "The list "$Resources:core,webpageassetList;" in web "..." was not created"
    "Failed to create list "... etc."
    (I would copy the entire error messages but its not pasting - I'll try on a reply post)
    Thanks,
    Paul.

    The list "$Resources:core,webpageassetList;" in web "http://myteam13test" was not created. hr = 0x81020012.
    Failed to create list "$Resources:core,webpageassetList;" in web "http://myteam13test", HRESULT=0x27a2abc0. List XML: "<List xmlns:ows="Microsoft SharePoint" Title="$Resources:core,shareddocuments_Title_15;" Direction="$Resources:core,Direction;" Url="Shared Documents" BaseType="1"/>"
    Failed to instantiate list 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\Template\Features\DocumentLibrary\doclib'
    A list, survey, discussion board, or document library with the specified title already exists in this Web site. Please choose another title.

  • How to disable the selection of "Title and logo URL of a SharePoint 2013 site" from browser

    how to disable the selection of "Title and logo URL of a SharePoint 2013 site" from browser or How can we able to set our custom default log to the sp2013 site using code.So that users are not allowed to change from browser again.
    Thanks &amp; Regards, Krishna

    Hi  Krishna,
    For your issue, you need to deploy a farm solution using HideCustomAction to hide site settings link. For example to hide “Title, description, and logo” link you can use below code:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <HideCustomAction
    GroupId="Customization"
    HideActionId = "ProjectSettings"
    Location = "Microsoft.SharePoint.SiteSettings">
    </HideCustomAction>
    </Elements>
    Reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/92f002b7-0e9c-424e-836a-de40c4e5d81f/hide-option-from-site-settings-page-in-sharepoint-2010?forum=sharepointdevelopmentprevious
    http://blog.milanchauhan.com/2013/06/add-custom-section-in-site-settings.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Horizontal Vertical and logo is not printed in dot matrix printer

    Hi All
    i am printing a smartform in dot matrix printer
    the form has horizontal vertical line
    table lines , and logo
    but when i print in Dot matrix printer
    the line and logo is not display
    Please say me how i design for it
    wheather It is printer or smartform design problem?
    Regard
    Riten

    Hi riten,
    The Printer settings is not supporting the horizontal and vertical line ..check with the basis team for the printer settings.
    Regards,
    Sravanthi

  • Can DME, EDI be used to build a form(with pictures and logos)?

    Hi All
    I have a question on DME,Electronic transmission and forms(sapscripts,smartforms etc).
    There is a program rfumsv00(advance tax return). Surprisingly this program doesnot give the option to output the data into a "form"(government specified format with logos, pictures etc).
    (The program gives this facility to output to a form only for Germany and Belgium.)
    Now i want to get the output of this program into a "format as prescribed by the government of India". How do i do this?
    The program has facility for "electronic transmission" and DME". Can we use this to get a output similar to a "form"?If yes...how?
    Message was edited by:
            kumar kumar

    Hi Anji
    Thank you(I am on the verge of awaring you points).
    But one last clarification. You have mentioned that i can design a FORM and then make the program call the form. But this would involve making a Z program.
    I want to know if instead of the form, I can use the option "electronic return" or "DME"?Maybe the  "electronic return" or "DME" already has pre defined forms (with pictures and logos) and if not will SAP allow me to define the form in DME  or electronic return and make the standard program to use that? This way i dont have to do a Z development. Can you help me?
    Message was edited by:
            kumar kumar

  • PPT on My Cockpit and dashboards

    Hi Expert,
    Can anyone of you send me the ppt/documentation on My cockpit and Dashboards. have tried to search it but no where found it.
    Thanks & Regards-
    Mona

    Hi Mona,
    https://websmp104.sap-ag.de/smb/sbo/innovations
    Please find above link for the same. You have to use  S-User Id.
    Ashish Gupte

  • Search for texts and logos in smart forms

    Hi there,
    Does anyone know if there is a function module that can search for specific texts and logos in smart forms?
    Any response would be really appreciated.
    Thanks
    HW

    Hi
    I really doubt if there is any FM like that. But, you can always search the existing logos in the Appln Server, the tcode is SE78.
    Regards,
    Vishwa.

  • SapScript and Logo

    after uploading the logo in scripts, if i release the script then logo will logo along with scripts or we have to do any processes for logo
    Title was edited by:
            Alvaro Tejada Galindo

    Hi
    Logo's should be transported/created first in the Target client first
    then only if you send the script that logo will be printed
    see the steps to upload the logo
                   SAP SCRIPT
    To create a logo in SAP printouts just do the following
    1. Save a Logo using Imaging, Paint shop Pro or Corel Draw as Tiff file.
    2. Run  program RSTXLDMC and enter the following parameters
       Enter file name                     C:\COMPLOGO.TIF
       UOM                           CM
        Line width for text                132
        Text name                     ZHEX-MACRO-COMPLOGO
        Text ID                          ST
        Text language = E
        Number of Tiff gray levels (2,4,9) 2
    3.  Then Create a new window 'COMP' with attributes;
    Window COMP description Company Logo
    Left margin 7.00 CH window width 10.00 CH
    Upper margin LN window height 8.00 LN
    Finally in the text element, mention
            /: INCLUDE 'ZHEX-MACRO-COMPLOGO' OBJECT TEXT ID ST LANGUAGE 'E'.
    Please note that if object name is not indicated as 'ZHEX...’ the logo may not be printed!
    You will not be able to see the logo in a test print. The same will be printed in actual printout.
                          SMARTFORM
    1)     In Smart Forms Editor, In left pane, right Click any Page (say Page1) and select Create -> Window, Give it a name and Description (Say Window1)
    2) Right Click on Window (Window 1) and select Create -> Graphics, Give it a name and description
    3) In general Attributes, Select Name, get search help (F4) , you will find a list of pictures
    4) Select any picture and set its Resolution in DPI
    5) Press F9 to open Smart Forms Builder, Select window (Window1) and In Output options window set, size and   position of the Logo
    6) Set any other parameters if required, save and activate.
    7) If there is only 1 Window in the forms, set it as Main Window in general attributes.
    8) Use  TCode SE78 to upload new pictures and logos.
    look at Thread Dynamic Graph in smartforms
    Refer the links also -
    Re: Dinamic Graph in smartforms
    How to get file perperties in Unix server
    Regards
    Anji

  • I mac -- how do I transfer template date and logo to the other 9 template cards. I am new to this and need step by step.  I have the first template completed. Thanks

    I mac -- how do I transfer template date and logo to the other 9 template cards.
    I am new to this and need step by step.  I have the first template completed.
    Thanks

    Apps and media are forever tied to the AppleID used to download them.
    You cannot transfer from downloads from one AppleID to another, nor
    can you merge AppleIDs. If you wish to start using your own AppleID,
    you will have to redownload all the items you wish - paying again under your
    AppleIDfor anything requiring payment.
    Logout of iTunes under your old ID and login using the new ID.

  • Form hangs and logo didn't display -through outlook express

    Hi,
    I have created a logo and added into the forms (10.1.3) using the look and feel option.
    when i tried to run the application through the link to the hp-ux box through the Internet explorer(6.0.2900.5912) in the favorites folder, it works, i'm able to open multiple sessions and logo displayed al the time.
    But, when i tried to click on the link i have it in the outlook express (2007) , it works first time without logo and second time it hangs.
    Any body knows that what it cause............Thanks.

    The sendmail functionality uses an api called mapi. As this api is not controlled by Acrobat it can be influenced by outside sources. This api can be expoited by viruses etc for DOS attacks. for this reason many of the virus scan software vendors have provisions in their software that will affect when mapi calles can be made.
    As far as webmail is concerned there is no api for that program (there is no automation) so it is expected that the user will save the pdf and attach it to an email by hand. You will notice a dialog when the sendmail is executed indicating this (1st dialog that pops up).
    Hope that helps
    Paul

  • LO Cockpit and LIS

    hi
    i am looking for the information on LO cockpit and LIS including V1, V2, V3 update.
    i will be highly thankful if someone can forword me soft copy of BW350 course material at [email protected]
    i will be highly thankful.
    thanks in anticipation to all, kindly forword the related material.

    Hi dear,
    look at my weblogs to have some more info...
    Bye,
    Roberto
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/sap.user72/blog/2005/04/19/logistic-cockpit-a-new-deal-overshadowed-by-the-old-fashioned-lis
    Kindly remove from this post a request of copyrighted material before this will be done by the administrators !

  • Sap script address and logo change

    Dear gurus,
    I have requirment to change address and logo in existing form(z110_prenum-chck) and i don't know what you need to do to change address and logo. Please let me know what i need to know before changing any thing. Do i need to go in driver program and change something for address change.
    Thanks in advance.
    Regards
    Dave

    Hi,
    1.Please upload the new logo using tcode : SE78
    2. Go to the form, go to corresponding page--> go to pc editior --> Delete old image and insert new image which is uploaded by SE78.
    3)you can mainatain the address dynamically by calling the subroutine pool.
    the syntax is..
    /: PERFORM <form> IN PROGRAM zprog
    /: USING &FIELD1&
    /: USING &FIELD2&
    /: CHANGING &FIELD3&
    /: ENDPERFORM
    Regards
    Kiran Sure

  • Displays only menu border and logo

    I have two Apple TVs in my home. One is in a living room and the other in a bedroom. Both are syncing to a G5 tower. Both are 160 GB ATVs.
    The living room drive has never had any issues. The bedroom ATV is an AppleCare replacement due to an issue that I had and continue to have (with the new ATV). The issue is that sometimes the Apple TV only displays the menu border (frame) without any text menus. The AppleTV header and Logo are displayed in the bordered frame but menus like Movies, Music, Photo, etc. do not display. If I leave the box alone and come back to it hours later it sometimes comes back when I return.
    If any of you can shed light on what is gong on I would greatly appreciate it.
    Thanks,
    Brent

    Thanks so much for offering your feedback and suggestions regarding my issue. Let me answer both suggestions. First, the AppleTV does not have any additional software enhancements. It is stock build.
    I like the idea of an HDMI cable issue. I will replace with component cables and see if that makes a difference. Thank you both again for your suggestions.

  • Need the navigation bar and logo to remain still

    Hello everyone,
    I am creating a prototype for an app and my problem is when i scroll down in the program the items such as the navigation bar and logo move also but i need them to stay still where they are, can you please help?   also the contact bar at the bottom need it to stay at the bottom.  I am not so familiar with programming codes so if you can provide simple answers i'd really appreciate it, thank a lot!

    Yes, disabling hardware acceleration fixed this for me too.
    I hope that this bug gets fixed and that I can use hardware acceleration when the final phase comes out.

Maybe you are looking for

  • DVD drive issue on T61

    My dvd-drive (HL-DT-ST DVDRAM GSA-U10N) have worked properly on my T61 since I bought it for a month ago, but now Windows XPP refuse to recognize it, refering to an error 39 ("This items driver could not be found or the driver is damaged" translated

  • Sql server reporting & analysis

    I have some tables that collect records on a daily basis amounting to 20+million for each table. The tables are very similar and consist of a few string fields. I run a nightly job that gets counts and creates reports for these tables. I am looking i

  • EDITING PROBLEM

    After converting a PDF document to word i cannot edit the word document.

  • USB 3.0 Network Adapter Problem (StartTech​)

    Hello- I periodically use a USB 3.0 Network adaptor for my Carbon X1 (It is the Startech USB31000S).  Our network policy is to disable WIFI when the adaptor is connected.  Frequently, when I disconnect the USB from the computer to move to a different

  • How to delete "other" files on hard drive

    Our 500 hard drive is almost full,  256 of it is labled as other,  how do access these files to deleate them?