Icon printed instead of @V5 in ALV

Hi Friends,
    I have strange problem,
Iam fetching  field  j_3atltyp  from table j_3avast    (  AFS ).
One of the outputs is @V5
When I am displayin it in ALV, It is showing a stop icon  ( default icon) instead of @V5
The strange thing is it is showing correct in some computers and icon in some computers
eg. I am getting correct o/p but my collegue is getting icon
please help
Vamshi

Hi,
now I am thinking about it and maybe the problem is in your GUI 6.40. How do you create a field catalog for that field? Do you use some standard FM or you fill field catalog by yourself? The icon @V5@ is a new icon so maybe it is just missing in your older version of GUI. Hence it does not display ICON but only text. Are you sure that is should display text instead of icon?

Similar Messages

  • Strange behavior - icon thumbnail instead of image - CC@OSX10.10

    Hi,
    my CC (@OS X 10.10.3) showing a strange behavior using vanishing point filter.
    After defining grid and try to paste the image OS X paste the icon thumbnail instead of the image,
    Many thanks in advance!!
    br
    Joachim

    It is probably related to the fact that you are setting the tables row height in the renderer this will fire a render message when the height changes. One height is applied to all rows of a table. This means that is you have images of different heights you are continually changing the tables row height and therefore continually rendereing.
    My approach would be to have all the images fit into a set size ( say 64*64 ( with scaling if neccesary ) you could then have a popup show the full size image if required.

  • Maximum number of character we can print in a column uing ALV grid display

    Hi frnds,
    My requirment is to print 500 charcter data in a column using ALV grid display.
    Could any body tell me is it possible and the maximum character it can i print in a column using ALV grid dispaly.
    Regards,
    Sandipan

    Hi Sandipan,
    refer notes 857823, 910300 and 959775. All these say there is a limitation of 128 characters.
    857823 - ALV grid: Strings with a maximum of 128 characters
    Symptom
    Entries in cells of the type CHAR or string are truncated after 128
    characters in the SAP GUI.
    also refer,
    ALV Grid Control (cl_gui_alv_grid), function module (Full-screen) Grid
    (Reuse_alv_grid_display, SAPLSLVC_FULLSCREEN), SAPGUI, back end, front end
    Cause and Prerequisites
    The data table that is sent to the front end only allows character values
    with the length 128.
    Solution
    This is the standard system behavior and cannot be changed.

  • Camera icon displays instead of Trash-Can upon selecting a message in the conversation

    iPhone 5
    iOS 8
    Camera icon displays instead of Trash-Can upon selecting a message in the conversation and clicking on 'Copy/Speak/More...'
    After restart, now it shows Trash-Can again.

    Many were saying that you just needed to turn your phone off and turn it back on after upgrading to ios8.1, so that you could then delete single messages.
    It worked when I did it the first time, but today while sending text messages the trash can disappeared while I was trying to delete some messages.
    Any help would be greatly appreciated.

  • Word document prints instead of saving as PDF

    I am trying to save a long Word document as a PDF; it's in separate sections so I'm having to save each section separately. Some of them save to PDF fine, but others just keep printing instead, even if I do exactly the same thing. Can anyone help?
    I am using OS 10.7.4, Word 14.2.2, and a Brother HL-2030 printer (not that I want to use that!)

    Yes. But I just realised that it's making me do this twice, sometimes. If I only do it once, it just prints it. But it doesn't always ask for it twice! Sometimes it will save the first time I click Save as PDF.
    Anyway, it's a bit long winded but I can at least save it now.

  • Print in foreground for 4 alv using splitter

    hi All,
    I have created a program which displays 4 different alvs on a single screen .
    I have used one container and 4 splitters to display the alv.
    after the program is executed ,there is a button (print) through which all 4 alvs
    should be sent to a spool.
    and that spool needs to be printed.
    i am unable to implement the above requirement.
    i tried passing print parameter in all the 4 alvs but then also
    one the 1st alv prints .
    i need to print all the 4 alvs

    Hi Pallavi,
    Rather splitting the single screen into 4 , create 4 custom containers and then fron one print you can get all the data of the four ALV data.
    For reference you can go through the example.
    Hi,
    first place three CUSTOM CONTROLLERS in one screen layout.
    try this code.
    DATA: O_CONT1 TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           O_CONT2 TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           O_CONT3 TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    DATA: O_GRID1 TYPE REF TO CL_GUI_ALV_GRID,
           O_GRID2 TYPE REF TO CL_GUI_ALV_GRID,
           O_GRID3 TYPE REF TO CL_GUI_ALV_GRID.
    DATA: IT_VBRK LIKE VBRK OCCURS 1 WITH HEADER LINE,
           IT_VBRP LIKE VBRP OCCURS 1 WITH HEADER LINE.
    PARAMETERS: P_VBELN LIKE VBRK-VBELN.
    START-OF-SELECTION.
       PERFORM GET_DATA.
       SET SCREEN 100.
    *&      Form  GET_DATA
    *       text
    FORM GET_DATA .
          SELECT *
                FROM VBRK
                INTO TABLE IT_VBRK
                WHERE VBELN = P_VBELN.
       SELECT *
         FROM VBRP
         INTO TABLE IT_VBRP
         WHERE VBELN = P_VBELN.
    ENDFORM.                    " GET_DATA
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE STATUS_0100 OUTPUT.
       SET PF-STATUS 'MENU'.
       PERFORM SHOW_GRIDS.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE USER_COMMAND_0100 INPUT.
       CASE SY-UCOMM.
         WHEN 'BACK'.
           LEAVE PROGRAM.
       ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  SHOW_GRIDS
    *       text
    FORM SHOW_GRIDS .
       IF O_CONT1 IS INITIAL.
         CREATE OBJECT O_CONT1
           EXPORTING
             CONTAINER_NAME              = 'HEAD_CONT'.
         CREATE OBJECT O_CONT2
           EXPORTING
             CONTAINER_NAME              = 'ITEM_CONT'.
         CREATE OBJECT O_CONT3
            EXPORTING
              CONTAINER_NAME              = 'CUS'.
         CREATE OBJECT O_GRID1
           EXPORTING
             I_PARENT          = O_CONT1.
         CREATE OBJECT O_GRID2
           EXPORTING
             I_PARENT          = O_CONT2.
         CREATE OBJECT O_GRID3
           EXPORTING
             I_PARENT          = O_CONT3.
    *--SHOW GRIDS
         CALL METHOD O_GRID1->SET_TABLE_FOR_FIRST_DISPLAY
           EXPORTING
             I_STRUCTURE_NAME = 'VBRK'
           CHANGING
             IT_OUTTAB        = IT_VBRK[].
         CALL METHOD O_GRID2->SET_TABLE_FOR_FIRST_DISPLAY
           EXPORTING
             I_STRUCTURE_NAME = 'VBRP'
           CHANGING
             IT_OUTTAB        = IT_VBRP[].
         CALL METHOD O_GRID3->SET_TABLE_FOR_FIRST_DISPLAY
           EXPORTING
             I_STRUCTURE_NAME = 'VBRP'
           CHANGING
             IT_OUTTAB        = IT_VBRP[].
       ENDIF.
    ENDFORM.    
    Thanks,
    Seshadri.

  • How to print sub total text in ALV

    Hi All,
       I have a prblem in printing sub total text in ALV. I am passing the text for sub total in ALV layout to the field SUBTOTALS_TEXT. Even then the text is not displayed where as this is working for TOTAL with the field TOTALS_TEXT.
       Could any one provide me the solution please?
    Thanks & Regards,
    S.Lakshmi

    Hi Lakshmi,
    Please refer to the following code :
    report zalv10.
    type-pools: slis.
    data: g_repid like sy-repid,
    gs_print type slis_print_alv,
    gt_list_top_of_page type slis_t_listheader,
    gt_events type slis_t_event,
    gt_sort type slis_t_sortinfo_alv,
    gs_layout type slis_layout_alv,
    gt_fieldcat type slis_t_fieldcat_alv,
    fieldcat_ln like line of gt_fieldcat,
    col_pos type i.
    data: begin of itab,
    field1(5) type c,
    field2(5) type c,
    field3(5) type p decimals 2,
    end of itab.
    data: begin of itab1 occurs 0.
    include structure itab.
    data: end of itab1.
    data: begin of itab_fieldcat occurs 0.
    include structure itab.
    data: end of itab_fieldcat.
    Print Parameters
    parameters:
    p_print as checkbox default ' ', "PRINT IMMEDIATE
    p_nosinf as checkbox default 'X', "NO SELECTION INFO
    p_nocove as checkbox default ' ', "NO COVER PAGE
    p_nonewp as checkbox default ' ', "NO NEW PAGE
    p_nolinf as checkbox default 'X', "NO PRINT LIST INFO
    p_reserv type i. "NO OF FOOTER LINE
    initialization.
    g_repid = sy-repid.
    perform print_build using gs_print. "Print PARAMETERS
    start-of-selection.
    TEST DATA
    move 'TEST1' to itab1-field1.
    move 'TEST1' to itab1-field2.
    move '10.00' to itab1-field3.
    append itab1.
    move 'TEST2' to itab1-field1.
    move 'TEST2' to itab1-field2.
    move '20.00' to itab1-field3.
    append itab1.
    do 50 times.
    append itab1.
    enddo.
    end-of-selection.
    perform build.
    perform eventtab_build changing gt_events.
    perform comment_build changing gt_list_top_of_page.
    perform call_alv.
    form build.
    DATA FIELD CATALOG
    Explain Field Description to ALV
    data: fieldcat_in type slis_fieldcat_alv.
    clear fieldcat_in.
    fieldcat_ln-fieldname = 'FIELD1'.
    fieldcat_ln-tabname = 'ITAB1'.
    *FIELDCAT_LN-NO_OUT = 'X'. "FIELD NOT DISPLAY, CHOOSE FROM LAYOUT
    fieldcat_ln-key = ' '. "SUBTOTAL KEY
    fieldcat_ln-no_out = ' '.
    fieldcat_ln-seltext_l = 'HEAD1'.
    append fieldcat_ln to gt_fieldcat.
    clear fieldcat_in.
    fieldcat_ln-fieldname = 'FIELD2'.
    fieldcat_ln-tabname = 'ITAB1'.
    fieldcat_ln-no_out = 'X'.
    fieldcat_ln-seltext_l = 'HEAD2'.
    append fieldcat_ln to gt_fieldcat.
    clear fieldcat_in.
    fieldcat_ln-fieldname = 'FIELD3'.
    fieldcat_ln-tabname = 'ITAB1'.
    fieldcat_ln-ref_fieldname = 'MENGE'. "<- REF FIELD IN THE DICTIONNARY
    fieldcat_ln-ref_tabname = 'MSEG'. "<- REF TABLE IN THE DICTIONNARY
    fieldcat_ln-no_out = ' '.
    fieldcat_ln-do_sum = 'X'. "SUM UPON DISPLAY
    append fieldcat_ln to gt_fieldcat.
    DATA SORTING AND SUBTOTAL
    data: gs_sort type slis_sortinfo_alv.
    clear gs_sort.
    gs_sort-fieldname = 'FIELD1'.
    gs_sort-spos = 1.
    gs_sort-up = 'X'.
    gs_sort-subtot = 'X'. ***CRUCIAL STATEMENT****
    append gs_sort to gt_sort.
    clear gs_sort.
    gs_sort-fieldname = 'FIELD2'.
    gs_sort-spos = 2.
    gs_sort-up = 'X'.
    *GS_SORT-SUBTOT = 'X'. **THIS SHOULD NOT BE UNCOMENTED*
    append gs_sort to gt_sort.
    endform.
    form call_alv.
    ABAP List Viewer
    call function 'REUSE_ALV_LIST_DISPLAY'
    exporting
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    i_callback_program = g_repid
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = ' '
    i_structure_name = 'ITAB1'
    is_layout = gs_layout
    it_fieldcat = gt_fieldcat[]
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    it_sort = gt_sort[]
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    it_events = gt_events[]
    IT_EVENT_EXIT =
    is_print = gs_print
    IS_REPREP_ID =
    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 =
    tables
    t_outtab = itab1
    exceptions
    program_error = 1
    others = 2.
    endform.
    HEADER FORM
    form eventtab_build changing lt_events type slis_t_event.
    constants:
    gc_formname_top_of_page type slis_formname value 'TOP_OF_PAGE'.
    *GC_FORMNAME_END_OF_PAGE TYPE SLIS_FORMNAME VALUE 'END_OF_PAGE'.
    data: ls_event type slis_alv_event.
    call function 'REUSE_ALV_EVENTS_GET'
    exporting
    i_list_type = 0
    importing
    et_events = lt_events.
    read table lt_events with key name = slis_ev_top_of_page
    into ls_event.
    if sy-subrc = 0.
    move gc_formname_top_of_page to ls_event-form.
    append ls_event to lt_events.
    endif.
    define END_OF_PAGE event
    READ TABLE LT_EVENTS WITH KEY NAME = SLIS_EV_END_OF_PAGE
    INTO LS_EVENT.
    IF SY-SUBRC = 0.
    MOVE GC_FORMNAME_END_OF_PAGE TO LS_EVENT-FORM.
    APPEND LS_EVENT TO LT_EVENTS.
    ENDIF.
    endform.
    form comment_build changing gt_top_of_page type slis_t_listheader.
    data: gs_line type slis_listheader.
    clear gs_line.
    gs_line-typ = 'H'.
    gs_line-info = 'HEADER 1'.
    append gs_line to gt_top_of_page.
    clear gs_line.
    gs_line-typ = 'S'.
    gs_line-key = 'STATUS 1'.
    gs_line-info = 'INFO 1'.
    append gs_line to gt_top_of_page.
    gs_line-key = 'STATUS 2'.
    gs_line-info = 'INFO 2'.
    append gs_line to gt_top_of_page.
    CLEAR GS_LINE.
    GS_LINE-TYP = 'A'.
    GS_LINE-INFO = 'ACTION'.
    APPEND GS_LINE TO GT_TOP_OF_PAGE.
    endform.
    form top_of_page.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = gt_list_top_of_page.
    write: sy-datum, 'Page No', sy-pagno left-justified.
    endform.
    form end_of_page.
    write at (sy-linsz) sy-pagno centered.
    endform.
    PRINT SETTINGS
    form print_build using ls_print type slis_print_alv.
    ls_print-print = p_print. "PRINT IMMEDIATE
    ls_print-no_print_selinfos = p_nosinf. "NO SELECTION INFO
    ls_print-no_coverpage = p_nocove. "NO COVER PAGE
    ls_print-no_new_page = p_nonewp.
    ls_print-no_print_listinfos = p_nolinf. "NO PRINT LIST INFO
    ls_print-reserve_lines = p_reserv.
    endform.
    <b>Please reward points if helpful.</b>
    Regards,
    Amit Mishra

  • Dng icons appear instead of thumbnails

    Just recently, when I open up Bridge CS3, DNG icons appear instead of my thumbnails. I have not intentionally changed any settings, so don't know how to clean this up. Once I click on the icon, the photo opens up in Photoshop. Frustrating, since everything has been working fine up until recently. I am not a whiz with computer lingo, so will need real specific instructions!

    And if this all is still not working quit Bridge, go to user library - preferences folder and manual drag the "com.adobe.bridge2.plist" file to the trash, then as per post 1 but first prefs and then after restart purge cache using the tools menu.
    If still out of luck use the very hard way with manual delete the Bridge cache file. This will delete all your previous caching and that needs to be redone. Up to you to decide if this is worth it. I used it very frequently (once in 6 weeks) in CS3 but not anymore in CS4 :-)
    If you want this then go the user library caches folder / Adobe / Bridge CS3 / Cache. Drag this folder to the trash (First back it up if you want so you can replace it if it is not working for you) and restart Bridge (again with option to refresh preferences) this gives you a very fresh start with a new empty cache folder :-)

  • Move Print Version and Export of ALV to the right

    Hello online experts,
    Merry Christmas and Happy New Year!
    I am working on a webdynpro that displays data in ALV format.
    I now want to move Print Version and Export of ALV to the right side and hide View(Standard View).
    I am able to hide View(Standard View), but the Print Version and Export are automatically moved to the
    left.
    How can I have Print Version and Export on the left side when I hide View(Standard View)?
    Thanks,
    AS.

    Hi Anna,
    For the standard ALV Function ( Print version, Export, View, Filter ) you can only to display or hide them. And unfortunately you can not change their position or their order .
    Regards,
    $=====$
    Are you newbie? Check this out: [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]

  • Cannot print. get message to set up  printer instead of printer dialogue box. printer fine with other apps!

    Epson R300 and R1900 are both set up and work fine with all other apps including acrobat.
    After a restart and attempting to print, instead of the print dialogue box an error message appears saying set up a printer as not properly set up. Further attempts are frustrated by print option in menu greyed out. I have deleted drivers and reinstalled without benefit. If this cannot be sorted I will have to cancel and go back to photoshop 5.
    Doug

    You need to ask in the forum for the program you are using
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Why does Firefox select the last used printer instead of the system default printer on startup?

    In the course of using Firefox I selected my color printer to print in color then closed Firefox. When I reopened Firefox later on and sent something to the printer I had assumed it picked up the system default printer, a monochrome laserjet. It picked up the color printer instead. When I restart my other apps they automatically pick up the default printer. Why not Firefox?

    Some web pages will pop up the print dialog automatically. In particular, pages that websites have specially formatted for printing may do this.
    Are you restoring tabs that you previously opened, or starting up with your home page(s)? I suspect that one of them is generating the dialog. You could check by going to each one and reloading the page to see whether it is from that page.

  • ALV Grid and Icon : Printing Problem

    Hi, i develop some reports using ALV Grid and Icon and i'm facing printing problem, all report that using ALV grid with the option icon = 'X' cannot print properly, all the character field showing improper icon instead of the text. While all the ALV grid report with the option icon = ' ' can print normally.
    Thanks.

    Hi,
    Check the Demo Program <b>BCALV_DEMO_TOOLTIP</b>, Here i am able to see the Output Properly, and also able to Print them.
    Regards
    vijay

  • Calling standard printer driver program RVADOR01 from ALV report

    I have ALV report (Sales order documents) and one of columns in report is icon type with print preview link (hotspot). When user press icon, I would like to call standard print program RVADOR01 (actually we have custom Z_RVADOR01 and custom smartform which are working fine when using Document -> Output in VA03) to display print preview. I don't know how to call (trigger) print driver routine and pass needed parameters to it (ex. SO number).
    Marko

    Actually I did that. But then you are at least three clicks away from print preview screen. For testing purpose I've created custom smartform and run it from my report. It is working like I want. Now, instead of my procedure I want to run standard printer driver program with needed parameters. I believe that all it needs is document number (vbeln) and all the rest is already there, program, smatform... I just don't know how to use it (ex. pass parameters).
    I know I maybe complicating too much but I am ABAP beginner and want to learn as much as possible. Thank you anyway!

  • Why can't I print out a PDF file when I am on Firefox? It takes me to Preview to print instead of staying on Firefox.

    When I go to a website that has a PDF file and try to print it, it sends me to Preview and when I try to print, the computer freezes up. This does not happen on Safari. Why can't I print a PDF file when I am on Firefox?

    To print a PDF, you need to use the print command from the PDF reader plugin instead of firefox's one. If there is no icons bar in the plugin, try right-click on a page from the pdf -> Print.

  • Icon print problem

    Hi all,
    I'm using red light and green light icons in my report using following code
    include <list>.
        WRITE : icon_led_red AS ICON.
    I'm getting green and red lights in report output on screen.
    But in printout I'm getting '#'  instead of icon symbol..
    How can I get icon in printout as well???
    Any one could please help....

    Thank you for posting your list of installed Extensions. One of them might be intercepting the menu command. Since you have the Add-on Compatibility Reporter, it's possible that an older add-on that doesn't actually work well with Firefox 5 could be to blame. Could you try disabling the "HP Smart Web Printing" extension and see whether that makes any difference?
    Also, you can simulate a print button on a web site by pasting this to the location bar and pressing Enter. You also can save it as a bookmark for easier access (when scripts are saved as bookmarks, we call them bookmarklets). Hopefully you won't need it for long.
    <br>javascript:void(window.print());

Maybe you are looking for

  • Can you unlock a phone via iCloud

    my iphone was stolen almost 2 wks ago. I recieved a email notification regarding its location 2 days ago. But when I opened it to see the local, I couldn't see it. Looking closer at the email it only allows you to see the physical location up to 24 t

  • Parental Control Troubleshooting

    I tried to install the Guest Account and Parental control with few additions in the pre-selected software. As soon as I push the "lock icon" to close the "parental controls", the multicolor wheel do not stop rolling and I have to "force quit" from "p

  • WCCP Creates additional tunnel interfaces

    Hi, I'm having 2911 routers with Cisco WAAS module installed. While configuring the WCCP on the 2911 router, I see additional interface tunnels gets automatically created once I issue ip wccp 61 and ip wccp 62. It gives these tunnel ip address from 1

  • Getting an error when trying to check for update for my iPad

    On the iPad itself, there is no option such as 'update' in the general tab under settings. So I connected the iPad to my computer and on iTunes, whenever I click for 'Check for Update' I get an error message that says: The iPad software update server

  • After reformatting i do not see iphoto

    after reformatting i do not see iPhoto app