I can't see my buttons in my ALV report...

Hello experts,
I created a PF-status for my ALV report(with checkbox) so I can test if my checkbox is working or not. I created 2 buttons namely button and button1 in SE41. Now, I declared the program name and status name. But when I execute my report the buttons didn't appear.
Again, thank you guys and have a nice day!

Hi no problem,
Goto se41.
Give the program Name : 'SAPLKKBL'
GUI status : 'STANDARD'.
Click the "USER INTERFACE" button(It is for copy the GUI status)
Give me your program name.
now the GUI Status 'STANDARD' is available in your program.
then go to ur program.
Give the following code:
FORM SET_PF_STATUS USING EXTAB TYPE SLIS_T_EXTAB.
Set the GUI status
  SET PF-STATUS 'STANDARD' EXCLUDING EXTAB.
ENDFORM.                    "set_pf_status
then double click the STATNDARD GUI status.
it will go the Menu painter.
In that u create ur own Buttons. than activate it.
In the FM:
EXPORTING
<b>I_CALLBACK_PF_STATUS = 'SET_PF_STATUS'</b>
now u get better idea I believe.

Similar Messages

  • Can't see template button assets in menu editor

    I'm unable to see the graphic assets of the buttons when pulling up a template in DVDSP. In the menu editor I can see the buttons but it has a gray background and I can't see the buttons graphic assets.
    When I simulate it looks fine. Shouldn't I be able to see the graphics?

    Hi Colin
    Did you restart Captivate after you installed the new skin??
    I seem to recall from another post that this was the problem as
    Captivate needs to restart to accept the new skins.
    Cheers
    Andrew

  • HT4437 i want to play contents from macbook pro to B&W zeppelin air wirelessly,set up is done but can't see airplay button in iTunes,do i need airport express?why?please help.

    i want to play contents from macbook pro to B&W zeppelin air wirelessly,set up is done but can't see airplay button in iTunes,do i need airport express?why?please help.

    There are at least 3 versions:
    http://www.bowers-wilkins.co.uk/Support/Support/iPod_and_Computer_Speakers/Overv iew.html
    Original Zeppelin - I've had this for several years.
    http://bowersandwilkins.custhelp.com/app/home/p/6,26
    Zeppelin Mini.
    http://www.bowers-wilkins.co.uk/iPod_and_Computer_Speakers/iPod_and_Computer_Spe akers/Zeppelin_Mini/Overview.html
    Zeppelin with Airplay.
    http://www.bowers-wilkins.co.uk/iPod_and_Computer_Speakers/iPod_and_Computer_Spe akers/Zeppelin_Air/
    (I wouldn't regard the MM-1 as a Zeppelin but not sure if B&W call it that).
    I can't do much more to convince you!
    You could always update that wiki
    AC

  • Why I can't see the button fuse, when I drag and drop a folder into same name folder

    Why I can't see the button fuse, when I drag and drop a folder into same name folder
    I saw the option only one time, and i reseach in the internet and I find fuse option, but now never saw again.
    And Yes, I drag folders with the same name.

    Ok, Gracias por su pronta respuesta, yo necesito arrastar una carpeta a otra ubicacion con una carpeta del mismo nombre, entiendo que lion te advierte si desea reemplazar el contenido o fusionar (mexclar el contenido)
    como lo dice aqui :
    http://www.cioal.com/2011/06/29/las-cinco-novedades-mas-importantes-de-mac-os-x- lion/
    3. Podrás combinar tus archivos y carpetas. Seguro que alguna vez has perdido algún archivo al combinar carpetas o archivos del mismo nombre pero distinto contenido. Ahora, cuando intentes mover una carpeta a un lugar con otra de idéntico nombre, tu equipo te preguntará si prefieres combinar ambas o cambiar una por otra. Los archivos serán tratados de una manera similar: Cuando coincidan archivos con el mismo nombre, el sistema te preguntará también si quieres mantener ambas copias.
    y en muchas otras paginas que tratan el tema.
    mi problema es que esa opcion no me aparece. solo la opcion de reemplazar (o no reemplazar o detener)
    Lo increible es que alguna vez el mismo dia de hoy si me aperecio la opcion.

  • I can't see any button to purchase movies, music on Itunes Store on my PC (Windows XP SP3). Latest version of Itunes is installed.

    I can't see any button to purchase movies, music on Itunes Store

    Do you mean that you don't get purchase buttons against items or that those categories don't show on the store homepage ? If the latter then not all content types are available in all countries - a full list of what is available where is shown on this page : http://support.apple.com/kb/TS3599

  • I cannot turn voiceover off in Ipad2. Also can not see accessibility button on seetings / general. Last button i can scroll is "RESTRICTION" button.

    I cannot turn voiceover off in Ipad2. Also can not see accessibility button on seetings / general. Last button i can scroll is "RESTRICTION" button. I also tried triple clicking home button, still can not get over. Please help.

    Are you not able to scroll down the righ-hand side of Settings > General using three fingers on the screen ?
    The manual (http://support.apple.com/manuals/#ipad) also says that you should be able to switch voice-over off by connecting to your computer's iTunes :
    Turn VoiceOver on or off in iTunes:Connect iPad to your computer and select iPad in the iTunes device list. Click Summary, then click Configure Universal Access at the bottom of the Summary screen.
    So select Configure Universal Access at the bottom of the Summary tab and set 'Seeing' to 'Neither'

  • Hide sort(ascending and descending) buttons in an alv report.

    Hi,
    I want to hide the  sort(ascending and descending) buttons in an alv report.
    can any one help me with the code?
    I am not able to use the parameter IT_TOOLBAR_EXCLUDING
    of SET_TABLE_FOR_FIRST_DISPLAY of class  CL_GUI_ALV_GRID.
    Regards,
    Himanshu.

    Hi,
    data it_exclude type ui_functions.
    Exclude Standard Functions
        PERFORM f_excludetoolbar USING obj_cust_grid
                              CHANGING it_exclude.
    FORM f_excludetoolbar  USING  u_obj_cust_grid  TYPE REF TO cl_gui_alv_grid
                        CHANGING  c_it_exclude     TYPE ui_functions.
    Exclude Standard Functions
      CLEAR: c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_check              TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_refresh            TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_loc_copy           TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_loc_copy_row       TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_loc_cut            TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_loc_delete_row     TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_loc_append_row     TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_loc_insert_row     TO  c_it_exclude.
      APPEND u_obj_cust_grid->mc_fc_loc_move_row       TO  c_it_exclude.
    APPEND u_obj_cust_grid->MC_FC_SORT_DSC          TO  c_it_exclude.
      APPEND u_obj_cust_grid->MC_FC_SORT_ASC  TO  c_it_exclude.
      APPEND u_obj_cust_grid->MC_FC_SORT           TO  c_it_exclude.*
    ENDFORM.                    " f_excludetoolbar
    Hope it will helpful for you.
    Reward if found helpful.
    Regards,
    SB

  • How we can   drill-down, sorting, traffic lights,  in ALV report

    hi gurus ,
    how we can   drill-down, sorting, traffic lights,  in ALV report .
    please any one suggest that...
    regards,
    praveen

    Check the sample code for drill-down, sorting, traffic lights,  in ALV report.
    REPORT YMS_COLOURALV NO STANDARD PAGE HEADING.
    TYPE-POOLS: SLIS, ICON.
    DATA: FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: BEGIN OF IMARA OCCURS 0,
    LIGHT(4) TYPE C,
    MATNR TYPE MARA-MATNR,
    MTART TYPE MARA-MTART,
    MAKTX TYPE MAKT-MAKTX,
    COLOR_LINE(4) TYPE C,
    TCOLOR TYPE SLIS_T_SPECIALCOL_ALV, "cell
    END OF IMARA.
    DATA: XCOLOR TYPE SLIS_SPECIALCOL_ALV.
    START-OF-SELECTION.
    PERFORM GET_DATA.
    PERFORM WRITE_REPORT.
    FORM GET_DATA.
    WRITE ICON_GREEN_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'ABC'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for ABC'.
    APPEND IMARA.
    WRITE ICON_YELLOW_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'DEF'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for DEF'.
    APPEND IMARA.
    WRITE ICON_RED_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'GHI'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for GHI'.
    APPEND IMARA.
    LOOP AT IMARA.
    IF SY-TABIX = 1.
    IMARA-COLOR_LINE = 'C410'. " color line
    ENDIF.
    IF SY-TABIX = 2. " color CELL
    CLEAR XCOLOR.
    XCOLOR-FIELDNAME = 'MTART'.
    XCOLOR-COLOR-COL = '3'.
    XCOLOR-COLOR-INT = '1'. " Intensified on/off
    XCOLOR-COLOR-INV = '0'.
    APPEND XCOLOR TO IMARA-TCOLOR.
    ENDIF.
    MODIFY IMARA.
    ENDLOOP.
    ENDFORM. "get_data
    FORM WRITE_REPORT.
    DATA: LAYOUT TYPE SLIS_LAYOUT_ALV.
    LAYOUT-COLTAB_FIELDNAME = 'TCOLOR'.
    LAYOUT-INFO_FIELDNAME = 'COLOR_LINE'.
    PERFORM BUILD_FIELD_CATALOG.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FIELDCAT
    TABLES
    T_OUTTAB = IMARA.
    ENDFORM. "write_report
    FORM BUILD_FIELD_CATALOG.
    DATA: FC_TMP TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    CLEAR: FIELDCAT. REFRESH: FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Status'.
    FC_TMP-FIELDNAME = 'LIGHT'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '4'.
    FC_TMP-ICON = 'X'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Number'.
    FC_TMP-FIELDNAME = 'MATNR'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '18'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Type'.
    FC_TMP-FIELDNAME = 'MTART'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '10'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material'.
    FC_TMP-FIELDNAME = 'MAKTX'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '40'.
    APPEND FC_TMP TO FIELDCAT.
    ENDFORM. "build_field_catalog

  • Can't see Install button in App store

    I have iphone 4 black. Although everything is working fine, I can't see the install button In the App store and unable to download any application. Ofcourse I have an apple id which I'm using. I have tried everything, but unable to find solution. Please suggest

    See: https://discussions.apple.com/message/23471396

  • PQAH- can't see SAVE button

    Hi friends,
    I have a test user into 2 environments, Prod and QA. Into prod, using PQAH t-code test user can see SAVE, NEW and OPEN button to use query. But into QA environment, user can't see any of these buttons.
    User has same roles into both environment, as well as S_QUERY objects with 02 and 23 values for activity field.
    Anyone knows how I can solve this issue ? Thanks..

    Hi,
       This all depends on your USER GROUP and the USER
       in which the program is run.
       U can have a look at the program RHADHOC0.
      check, if user is assigned to this usergroup
        READ TABLE dbbn TRANSPORTING NO FIELDS
                        WITH KEY num = dbbs_wa-num
                                 bname = user.
        here sy-subrc must be 0 then only U'll get
        the save,new,open buttons.
        check for this in both your environments.
      Hope this helps.
    Regards,
    GSR.

  • QuickTime X - can't see recording button anywhere

    I'm trying to do a new screen recording but can't see the record button anywhere on my screen, how do I get it to show?  I'm on 10.6.8 and everything is up to date.

    There is no such option since the disappearance of Leopard. Reinstalling OS X will not bring back iMovie since it isn't part of OS X and never has been. It's part of iLife which should be available to you through the App Store.
    To erase and install properly you need to do the following:
    Install OS X Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Erase the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Erase tab in the DU main window.
    Set the format type to Mac OS Extended (Journaled.) Click on the Erase button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer.

  • Time Machine: restoring mailbox, can't see restore button

    Apologies if this is an incredibly stupid question. I'm trying to restore my inbox in Mail. I navigate to the inbox in the Mail app, click on Time Machine in the dock. It all appears to work and says 'click restore to recover your inbox'. However, I can't for the life of me see the restore button. In fact, apart from the Mail window, I can't see any evidence of TM at all.
    Could someone post a screenshot to show me what it's meant to look like?
    Thanks.

    Hi, and welcome to the forums.
    You need to navigate to an actual backup (either via the "cascade" of Mail windows, or the timeline on the right.) Then the Restore button at the lower right of the screen should do what you want.
    See the blue box in #15 of Time Machine - Frequently Asked Questions (or use the link in *User Tips* at the top of this forum).

  • How can i see the details of outstanding Vendor Report

    Hello,
    Can any one tell me how can we see the outstanding Vendor Balance..... Any Tcode for the same ?
    Regards,
    SAN2008

    Hi,
    T code - FBL1N, and choose open items radio button for the period which you want to view the outstanding balance for a vendor
    Hope this resolves your query,
    J

  • How can we add a button on our ALV Grid

    Hello,
    I need to add a button on the ALV Grid and write a code on that button to download a file on the desktop of the user's machine.
    How can we write a code for the same and what would be the syntax of that code.

    Hi,
    you should copy the 'STANDARD' GUI status from program SAPLKKBL using transaction SE90 >Programming SubObjects> Gui Status.
    ENTER SAPLKKBL PROGRAM
    STATUS STANDARD.
    exexute.
    select standard  check box. copy to your zprogram and your gui status.
    Enter your Z program name and the name you what for this status - you can keep it as 'STANDARD' to be simple.
    then go to se 38 double click on pf status .it goes to me41 screen .
    there you can add your button along with predefined buttons on application toolbar.
    then write code for button using user command event.
    Code:
    Form Set_pf_status
    Notes: Called by FM REUSE_ALV_GRID_DISPLAY
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'ZSTANDARD'.
    ENDFORM. "Set_pf_status
    In the above case the GUI status copied was named ZSTANDARD and adjusted accordingly, adding and removing the desired buttons. A button was added called '%DELETE'.
    3). Create the following report:
    Code:
    Form User_command
    Notes: Called by FM REUSE_ALV_GRID_DISPLAY
           Detects whether the icon/button for
           'Return Tag Deletion' has been pressed. If it has then
           detect whether any rows have been highlighted and then
           set the delete flag.
    FORM user_command USING r_ucomm     LIKE sy-ucomm
                            rs_selfield TYPE slis_selfield.
    DATA: li_count TYPE I.
    IF r_ucomm EQ '%DELETE'.
      LOOP AT %g00 WHERE mark EQ 'X'.
        ADD 1 TO li_count.
      ENDLOOP.
      IF li_count GT 0.
        gc_delete_flag = 'X'.
        r_ucomm = '&F03'. "Back arraow
      ELSE.
        MESSAGE W000 WITH 'Please highlight the rows to be deleted!'.
      ENDIF.
    ENDIF.
    ENDFORM.  "User_command
    *reward points if usefull

  • How can I see all files used in a Report or Transaction

    I need an expert advice. I am not an Abap  programmer but probably this is the the correct forum to post my question.
    I need to create a Query using same files that are used in report S_ALR_87012103 and some other additional files.
    Is there any transaction or functionallity that I can use to see the files used by this report ?
    << Removed - please do not offer rewards >>
    Thx. in advance for your help
    Edited by: Rob Burbank on Jun 19, 2009 1:33 PM

    Thanks for your message. I just reviewed the files in SE36.
    So I guess, next time I will have to check the name of the program in the status bar or the system status screen.
    Then, I will have to use SE38 in DEV to see the "Dictionary Structures" in the source code.
    However, on this case, I can not find the "KDF" in the source code or "Dictionary Structures".
    Other than you technical expertise ... How did you know that this program is using the KDF Logical Database.
    On my case, since I am not an Abap programmer, I would have to review all files described in the "Dictionary Structures" which by the way they are a bunch of files.
    I prefer the logical view. I liked the way the files are displayed using the SE36 and "KDF"
    Regards,
    Marco

Maybe you are looking for