Insert logo in view

hi
in my WD application , i want to insert the company logo in  main view .
Can any one tell me , how to do it , I mean which UI elemnt to use and how to upload the logo ,
so that , when I test my WD application , the company logo appears .
thanks in advance
amit

Hi,
Follow these steps;
1. Right click on you webdynpro component, create MIME Object->import.
    Import the image for with a name for eg: LOGO.JPEG
2. Goto the view where you want to place your logo. Right click on ROOTUIELEMENTCONTAINER and
    insert element->Image.
3.Bind the source property of the Image i.e set LOGO.JPEG as the source.
Now when you run the application the Logo would be visible.
Regards,
Radhika.

Similar Messages

  • Oracle BI Office Add-In for Excel (Failed to insert Oracle BI view due to )

    Dear all,
    I receive the following error message when I change the Prompts in Oracle BI Excel Add-In:
    Failed to insert Oracle BI view due to processing query error.
    I think it has something to do with the performance of the development database.
    Is there a configuration file and a parameter the eliminate this error message?
    Regards,
    Stefan

    I've seen this error occur when the Flash ActiveX control is not installed on the machine that is viewing the Excel content because the charts views use Flash. You can fix this by downloading the Shockwave Flash control from www.adobe.com

  • ORA-01776: I can't insert on a view comprised by two tables

    Good morning:
    I'm trying to do an insertion on a view comprised by the join of two tables (departments and employees) and it failed.
    The view is this one:
    CREATE OR REPLACE FORCE VIEW "EMPDPTO" ("EMPLOYEE_ID", "LAST_NAME", "EMAIL", "HIRE_DATE", "JOB_ID", "DEPARTMENT_ID", "DEPARTMENT_NAME") AS
    SELECT employee_id, last_name, email, hire_date, job_id, d.department_id, department_name
    FROM employees e, departments d
    WHERE e.department_id = d.department_id
    My insertion command
    INSERT INTO empdpto
    VALUES(743, 'Bermejo', '[email protected]', '12/12/09', 'IT_PROG', 10, 'Administration');
    throws a ORA-01776: it's not possible to modify more than one base table through a join union.
    On the other side I've seen in documentation that in certain circunstances is possible to do an insertion on a complex view.
    Is it possible to do an insertion on a view comprised by two tables?. Under what circunstances?.
    Thanks

    From SQL Reference CREATE VIEW section Notes on Updatable Views http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_8004.htm#i2065510
    >
    If you want a join view to be updatable, then all of the following conditions must be true:
    The DML statement must affect only one table underlying the join.
    For an INSERT statement, the view must not be created WITH CHECK OPTION, and all columns into which values are inserted must come from a key-preserved table. A key-preserved table is one for which every primary key or unique key value in the base table is also unique in the join view.
    For an UPDATE statement, the view must not be created WITH CHECK OPTION, and all columns updated must be extracted from a key-preserved table.
    >
    The first condition is not true for the view you have created.
    Edited by: P. Forstmann on 26 janv. 2010 20:17

  • Inserting a new view  in place of already existed once

    Hai folks,
    In Ic Webclient on crm 5.0 system i got an issue
    In <b>identify customer</b> View set
    i have removed the view of <b>regestered product</b>
    and want to insert a  view <b>bupaLongTexts</b> there(in that deleted area)
    I am able to remove the view by removing the view name in the navigation links
    in <b>BuPaViewsets</b> in a customized design time repository zcrm_ic_dt_rep
    of a   customized   Run.Time. repository zcrm_ic_rt_rep.
    but For inserting a new view..
    I am getting fault .
    I inserted the view in the navigation link flow in Product (view area content id)..
    and copied customized view <b>BuPaIdentifycustomer</b>  and adjusted the code for a new viewset vision.
    I took care of  profile settings too.
    Is there any thing to  take care.. and what is this <b>view area content id.</b>
    Please reply this..Its my urgent requirement.
    Useful answers are rewarded..
    Bye..
    satish

    Hi Sathish,
    Instead of doing so much thing why dont u just go to spro->crm-icwc->customerspecificmodifications and just replace the existing view with the new view of ur application.
    thanks,
    ashish.

  • How to insert logo in smart forms

    how to insert logo in smart forms

    Hi Ram,
    Go through this hope u can understand.
    How to Upload graphics (IMAGE) to your Sapscript?
    Command in your Sapscript
    /: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E
    These are the steps to be followed for uploading graphics in R/3 system 
    1.   First save the file as BMP 
    2.   Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and 
          make it Zoom as 100% and save as *.TIFF 
    3.   Open SE38 and execute program RSTXLDMC
    4.   Give your TIFF file path name 
    5.   Select Bcol (for Color) 
    6.   TEXT ID will be ZHEX-MACRO-*. 
    7.   Inplace of * write your own logo name (ZCOMPANYLOGO) 
    8.   Execute the program 
    9.   Now Goto SE71 create your ZFORM 
    10. Create logo window 
    11. Goto text element of logo window 
    or
    In 4.6x :-
    1.  Goto SE71 Change the mode to GRAPHICAL 
    2.  Choose the Graph Tabstrips
    3.  Now type in some name for the LOGO WINDOW 
    4.  Press the IMPORT BUTTON (third button from left) and then IMPORT the BMP file from your DESKTOP 
    5.  The code will be written automatically. You just need to drag and drop wherever you want
         the graphics to be. 
    /:   INCLUDE Z_COMPANY_LOGO OBJECT GRAPHICS ID BMON LANGUAGE EN
    Reward points if help ful.
    http://www.sap-img.com/ts001.htm
    Sorry i think for Scripts ..
    better to go for above post . it definetly works
    Thanks
    Naveen khan
    Message was edited by:
            Pattan Naveen

  • Execute Immediate. Insert from materialized view.

    Hi,
    I'm using Execute Immediate in a function to insert rows into a table. (Oracle 10G) The function in tern is used in a materialized view. So, effectively the view does an insert.
    When I just had a regular insert statment the view would not compile. When I changed the insert statment into the execute immediate it started working.
    Here are my questions:
    1. Do I need a commit or execute immediate does it automatically? When I create my view that calls the function it looks like the rows do get inserted as expected. But I couldn't find documentation that explains whether execute immediate does the commit.
    2. Is there a drawback to using execute immediate in a function that is used in a materialized view? Is there other way to insert rows from a materialized view? Can I call a stored procedure instead of a function in a materialized view?
    Your help is greatly appreciated.
    Thanks
    NK

    there are things that I'm not able to question yet :)It's a lot easier to write decent programs if we understand the why of the requirement as well as the what. I think you will create a better impression in your new job if you demonstrate some liveliness of thought and personality - by asking questions - rather than merely following orders.
    The question I proposed is not necessarily a hostile one (I can think of at least one good reason for doing what you've been asked to do). Broadening your knowledge of your new system is a good thing in its own right. But you never know, asking the right question may prevent you doing unnecessary work.
    Cheers, APC

  • Insert logo in alv

    hello experts....
    In alv reports how i insert logo into alv grid ?tell me procedure, in the same report how insert background logo?

    Hi,
    At first you have to upload the logo in the application server using transaction 'OAER'.
       1. Go to Transaction OAER,
       2. Give Class Name as PICTURES
       3. Class type as OT
       4. Object Key as the name of the Object u want to specify
       5. Upon execution you would be prompted to give the file path details. Just upload which ever logo u want to display
       6. Now you can use the same name in your ALV FM
    In your ALV program, you need to have event for TOP_OF_PAGE, and also this works only in case of Grid not in ALV LIST.
    Look at the sample code to display LOGO.
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      i_callback_program = i_repid
      it_fieldcat = header
      is_layout = gt_layout
      i_callback_top_of_page = 'TOP-OF-PAGE1'
      i_grid_title = xyz
      it_sort = gt_sort[]
      i_default = 'X'
      i_save = 'U'
      is_variant = gt_variant
      it_events = gt_events
    tables
      t_outtab = t_output.
    Form TOP-OF-PAGE1
    form top-of-page1.
    data: header type slis_t_listheader,
          wa     type slis_listheader.
    TITLE AREA
    wa-typ = 'S'.
    wa-info = text-h04.
    append wa to header.
    wa-typ = 'S'.
    write sy-datum to wa-info mm/dd/yyyy.
    concatenate text-h03 wa-info into wa-info separated by space.
    append wa to header.
    wa-typ = 'S'.
    concatenate text-h02 sy-uname into wa-info separated by space.
    append wa to header.
    wa-typ = 'S'.
    concatenate text-h01 sy-repid into wa-info separated by space.
    append wa to header.
    ********" LOGO
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = header
    i_logo = 'ENJOYSAP_LOGO'.
    *********" LOGO
    endform.
    Here in TOP-OF-PAGE form it will show you the Prog name,Date, User Name.

  • Insert LOGO in ALV Table Cell

    Hi Gurus,
    How to insert logo in ALV Cell Level.
    thanks in advance.
    regards,
    kiran.ch

    Hi,
    I saw a sample code in Wiki:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/inserting%2520a%2520logo%2520in%2520alv%2520program
    Edited by: Renjith Michael on Jun 26, 2009 1:12 PM
    Edited by: Renjith Michael on Jun 26, 2009 1:12 PM

  • Insert Logo into Query

    Hi All,
    I have searched the SDN forum and seen only a few posts for inserting a logo into a query, but still not 100% sure.
    Basically, how to insert a logo into a query that will be there everytime the query is ran?  Not a workbook, but a query.  Also, how to get it into a specific cell?
    Cheers,  Mike

    Yes, everyone runs queries.
    I put the select from list option and I can see the "workbook" that has formatting.  Meaning...
    1. I ran a query and inserted logo, formatted font
    2. Saved as a workbook
    3. In Analyzer I selected Settings -> New Workbook on Embed
    4. Now open query
    5. I get the popup to select my query...I select it
    6. I now get an option to select the workbook to embed my query in...I select it and all the formatting and logo is there.
    So...
    Is this how it works?  If so, When selecting the workbook to embed my query in it still has all the data/result from last query run.  Is there anyway not to have this "old" data show up?  In other words, is there a way to create several default workbooks (to embed different queries in from different divisions), so when different divisions run different queries, they can select their "formatting workbook".
    Example:
    Shoes would have their "Shoe Workbook"
    Pants would have their "Pant Workbook"
    Thanks,
    Mike

  • INSERTING LOGO IN ALV GRID

    hi experts,
    how can i insert logo in alv grid..can u send me some examples of alv that includes all the functionalities like user-command,commentary write n also logo insertion etc..
    regards,
    raman

    hi ,
        chk out this .....and  try this ..
    for getting the events ....
    FORM ZVRPSALV_EVENT_CAT  CHANGING RT_EVENT TYPE slis_t_event .
        DATA : s_event TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = RT_EVENT
       EXCEPTIONS
         list_type_wrong = 1
         OTHERS          = 2.
    CASE sy-subrc.
       WHEN 1.
         MESSAGE s000 WITH 'List type does not exist'(058).
         LEAVE LIST-PROCESSING.
       WHEN 2.
         MESSAGE s000 WITH 'Error with List Type'(059).
         LEAVE LIST-PROCESSING.
    ENDCASE.
      READ TABLE RT_EVENT WITH KEY NAME = slis_ev_top_of_page INTO s_event .
      IF sy-subrc = 0.
        MOVE 'TOP_OF_PAGE'(056) TO s_event-form.
        APPEND s_event TO rt_event.
        CLEAR s_event.
      ENDIF.
    ENDFORM.                    " EVENT_CAT
    *&      Form  ZVRPSALV_GRIDDISPLAY1
          text
    -->  p1        text
    <--  p2        text
    FORM ZVRPSALV_GRIDDISPLAY1 .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
       I_CALLBACK_USER_COMMAND           = 'DISPLAY_DOCUMENT '
       I_CALLBACK_TOP_OF_PAGE            = ' TOP-OF-PAGE '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      = 'BASIC LIST'
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       IT_FIELDCAT                       = T_FCAT
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         = RT_EVENT
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        T_OUTTAB                          = T_ITAB
    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.                    " ZVRPSALV_GRIDDISPLAY1
    SUBROTINE FOR DISPLAYING THE SECONDRY ALV GRID.
    FORM DISPLAY_DOCUMENT USING R_UCOMM  LIKE SY-UCOMM
                                RS_SELFIELD TYPE SLIS_SELFIELD.
    IF RS_SELFIELD-FIELDNAME = 'VBELN'.
      READ TABLE T_ITAB INDEX  RS_SELFIELD-TABINDEX .
    V_VBELN = T_ITAB-VBELN.
    LOOP AT T_ITAB WHERE VBELN = V_VBELN.
       Move: T_ITAB-POSNR to T_ITAB1-POSNR  ,
             T_ITAB-MATNR to T_ITAB1-MATNR ,
             T_ITAB-MATKL to T_ITAB1-MATKL,
             T_ITAB-ARKTX to T_ITAB1-ARKTX  ,
             T_ITAB-PSTYV to T_ITAB1-PSTYV  ,
             T_ITAB-SPART to T_ITAB1-SPART ,
             T_ITAB-GSBER to T_ITAB1-GSBER ,
             T_ITAB-KWMENG to T_ITAB1-KWMENG .
       Append T_ITAB1.
    ENDLOOP.
       ENDIF.
    *&      Form  ZVRPSALV_COMMENT
          text
         -->P_T_HEADER  text
    FORM ZVRPSALV_COMMENT  USING  P_T_HEADER type slis_t_listheader .
    DATA : LS_LINE TYPE SLIS_LISTHEADER.
    CLEAR LS_LINE .
    LS_LINE-TYP = 'H'.
    LS_LINE-INFO =  'HEADING LIST'.
    APPEND LS_LINE TO P_T_HEADER.
      CLEAR LS_LINE.
      LS_LINE-typ = 'S'.
      write sy-datum to LS_LINE-info MM/DD/YYYY.
      CONCATENATE text-041 LS_LINE-info INTO LS_LINE-info separated by space .
      APPEND LS_LINE TO P_T_HEADER.
    ENDFORM.                    " ZVRPSALV_COMMENT
    SUBROUINE FOR TOP OF PAGE.
    FORM TOP_OF_PAGE.
    clear t_header.
    DATA: LV_HEADER TYPE SLIS_LISTHEADER.
      LV_HEADER-TYP = 'S'.
      WRITE SY-DATUM TO LV_HEADER-INFO MM/DD/YYYY.
      CONCATENATE TEXT-041 LV_HEADER-INFO INTO LV_HEADER-INFO SEPARATED BY SPACE.
      APPEND LV_HEADER TO T_HEADER.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         IT_LIST_COMMENTARY       = T_HEADER
        I_LOGO                   = ' ENJOYSAP_LOGO '
       I_END_OF_LIST_GRID       =
       I_ALV_FORM               =
    ENDFORM.
    *&      Form  ZVRPSALV_EVENTTAB
          text
         <--P_T_EVENT  text
    FORM ZVRPSALV_EVENTTAB  CHANGING P_T_EVENT TYPE SLIS_T_EVENT.
      DATA : LS_EVENT TYPE SLIS_ALV_EVENT.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = P_T_EVENT.
    SEARCH THE TOP OF PAGE EVENT.
      READ TABLE P_T_EVENT WITH KEY NAME = SLIS_EV_TOP_OF_PAGE INTO LS_EVENT .
      IF SY-SUBRC = 0 .
      MOVE 'TOP_OF_PAGE' TO LS_EVENT-FORM.
      APPEND LS_EVENT TO P_T_EVENT.
      ENDIF.
    ENDFORM.                    " ZVRPSALV_EVENTTAB
    thanks and regards
    Priyank Dixit

  • To insert logo in pe51

    Hi Friends,
    i would like to insert logo on the hr form created using PE51 . can any one give me guidance to develop it.
    thanks and regards,
    kani,.

    Hi,
    go Tcode PE51 you will get the below options
    Attributes: If you select this you can change the attribues you ever your specific once
    Backgroud:If you select this option, pay slip backgorud you can change though this
    Single field: If you slect this option, Here you can change the fileds. For example name, empployee id ext.
    window: If you select this option, Here you can edit and add the wage types for earning and deductions
    Line layout: Here you can change the line lay out.
    Cumulation IDS: Here you can give ur payslip wage types in the RT table for earning and deductions
    Text modules: Here display texts in the payslip
    Rules: If you want to write any rules you can select this one.
    Regards,
    Rajesh S

  • HOW TO INSERT LOGO??

    MAY I KNOW HOW TO INSERT LOGO TO THE APPLET?

    I saw your question and I could not help telling you how incomplete and meaningless it was to read. Please when next you ask a question in a forum like this, always make sure that your questions are very complete and easy to understand. I guess that is why no one bothered to respond to you.
    Ask again mate...

  • XSU insert into join view

    I've looked through a lot of the discussions here, and seen the
    same question I have:
    How do you use XSU to insert XML into master-detail structure?
    And the answer seems to be, "insert into a view".
    Could you give me example SQL for the type of view you mean?
    And how the XML might look?
    (is it like...
    <ROWSET>
    <ROW>
    <MASTER_KEY>KEYVALUE</MASTER_KEY>
    <MASTER_ATTR>SOME MASTER ATTRIBUTE</MASTER_ATTR>
    <MASTER_ATTR2>ANOTHER ATTRIBUTE</MASTER_ATTR2>
    </ROW>
    <ROW>
    <DETAIL_FK>KEYVALUE</DETAIL_FK>
    <DETAIL_ATTR>DETAIL ROW ATTRIBUTE</DETAIL_ATTR>
    </ROW>
    <ROW>
    <DETAIL_FK>KEYVALUE</DETAIL_FK>
    <DETAIL_ATTR>ANOTHER DETAIL ROW</DETAIL_ATTR>
    </ROW>
    </ROWSET>
    null

    I do not have TOAD, but I tried your posted example from PL/SQL Developer and it seems to work as expected. Can you post some more detail as to how you are doing it from TOAD and what the issue is, with errors, if any:
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    Connected as kkishore
    SQL>
    Table created
    View created
    Trigger created
    1 row inserted
            F1
             1
             1
    OWNER                          TABLE_NAME                     COLUMN_NAME                    UPDATABLE INSERTABLE DELETABLE
    KKISHORE                       DUMMY_V                        F1                             NO        NO         NO
    SQL>

  • Menu selection: Insert / Media / Image Viewer does not exists

    Hi,
    I cannot see menu Insert / Media / Image Viewer
    What am I missing?
    My version is from
    "Adobe Creative Suite 6 Design & Web Premium"
    --BRH

    It doesn't exist in CS6.  Adobe discontinued this feature because DW is not an image gallery creation tool.   It's web authoring software.
    If you can work with jQuery, there are dozens of image gallery & slideshow plugins you could use that are much nicer. 
    Wow Slider
    jQuery Cycle 2
    Nivo Slider
    Nancy O.

  • Where is give good performace Insert ot greate view?

    Hi All,
    I want to know where is faster and good performance.
    when i insert data into Global temporary table then used it or
    create view and used it.
    I have to used maybe 100,000 rows from different tables already est.
    Note: during insert to create view i have calculations.
    regards
    Ayham

    Ayham wrote:
    the requirements for i want to used th data based this view or temporary table.
    the story i have maybe 9 tables , i want to query some attribues in this tables. then i want to used that results for another query.
    so , must be to create view ot global temp table.
    but i don't know which one will be faster in retriving data.You never would and so do I, unless I test both the approaches. Compare the execution time, the execution plan.
    My guess would be to do neither of them. Since, you just have to use the data for another "Query" and not multiple queries, I would suggest to use the query into a subfactoring clause or as an Inner view and use it in the Query you intend to.

Maybe you are looking for

  • Issue with report RBDMIDOC

    Hi Gurus, I have an issue with the report RBDMIDOC. When I run it to the message type MATMAS, it takes 8 or 9 seconds to send the IDoc. With the message type CLFMAS takes 3 seconds. The duration of the execution of this report depends only of the acc

  • How can I find the latest update for Firefox 5 without upgrading to Firefox 6.0?

    I had the latest version of Firefox 5 getting automatically upgraded to Firefox 6.0, which disabled my Java 6.022 and 6.023 plugin. Since updating my Java is not an option, because then I can't access my bank account, I uninstalled Firefox 6.0 and in

  • SCOM DFS Backlog count is giving FALSE alert

    Hi  ; I've created a backlog count monitor using a 2 state monitor ( which I got from http://arbappy.blogspot.hk/2012/04/create-scom-2007-r2-monitor-to-alert-on.html ) It is used to monitor 70 of our DFS servers. The monitor should be working under t

  • Unable to locate photos since iLife 08 updgrade

    Greetings. Ever since upgrading to iLife '08 a couple of weeks ago, I have been unable to locate my pictures in the "Pictures" folder. Now there are no folders that are accessible (grayed out or missing). Did this have something to do with moving my

  • Second window loses funtionality in 4.01. Very frustrating.

    When I first open Firefox 4.01, everything is fine. Since I have two monitors, I like to keep two windows open. When I open the second window, URLs do not show up in the location field, I can't refresh a page, there's an orange Firefox menu in the up