Keywords for standard buttons

Hello Experts,
       In Table Maintenance Generator, I want to add event 'Before delete data' . When user wants to delete data using Table Maintenance Generator, it should pop up for confirmation. If user clicks on 'yes' button then it should delete the record and if user clicks on 'No' button it should come back to TMG without deleting record.
       How to give events for standard delete button ? Is their any keyword which represents standard delete button? If their is keywords for all standard buttons then it is appreciable if someone share link from where I can get keywords for all standard buttons.
Thank you in advance

I am afraid, the new release does not include changes where you can replace buttons with images.

Similar Messages

  • Providing image for Standard Buttons on Application Forms

    I've seen some postings on changing the standard buttons used in forms. Does anyone know if this has changed at all in Release 2? I want to put my own image for a button instead of the standard gray button and before doing the workarounds recommended, I want to know if this has been addressed in the new release.
    Thanks.

    I am afraid, the new release does not include changes where you can replace buttons with images.

  • Change text for standard button

    Hi,
    Anyone has an idea of how to change the text of a standard button, e.g. the Go button of the advanced search header.
    TIA
    Shane

    In your first post you asked about ALV and now about non-ALV...
    So about ALV you have the Excel download by default and you are able to change the text.
    About non-ALV download I think you have to use the method: cl_wd_runtime_services=>attach_file_to_response.
    Look at the last post in:
    File download WD4A
    Sergio

  • Translations for Standard Menu items/Buttons

    Hi,
    I am trying to change the translations for standard menu items/buttons. I tried to do it from SE41. However it is asking for access key.
    I wanted to know, is there any other way of doing translations, without this access key.
    Can you pelase give some inputs?
    Thanks,
    Sandeep

    Hello,
    Standard menu item, buttons will automatically translated. Why you want to translate?
    If it is Z Transaction then Go to SE51 give the program name & screen no . Translate it.
    Thanks,
    Abhijit

  • Menu Button in ALV toolbar (multiple choices for a button)

    Hi abapers,
    I would like to have a button with multiple choices in the toolbar;
    at the moment I have created a menu button with just one function.
    Here is my code:
    CLASS lcl_event_receiver (Definition)
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver (Implementation)
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
        DATA: ls_toolbar  TYPE stb_button.
    *Separator
        CLEAR ls_toolbar.
        MOVE 3 TO ls_toolbar-butn_type.
        APPEND ls_toolbar TO e_object->mt_toolbar.
    *Button
        CLEAR ls_toolbar.
        MOVE 1 TO ls_toolbar-butn_type.
        MOVE 'EDIT' TO ls_toolbar-function.
        MOVE icon_change TO ls_toolbar-icon.
        MOVE ' Modifica'(l02) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        MOVE 'Modifica' TO ls_toolbar-quickinfo.
        APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.                    "handle_toolbar
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION

    hi,
    check this code and reward me if it helps you..
    TYPE-POOLS : slis,icon.
    *Structure declaration for tcodes
    TYPES : BEGIN OF ty_table,
            tcode TYPE tcode,
            pgmna TYPE progname,
            END OF ty_table.
    *Structure for tocde text
    TYPES : BEGIN OF ty_itext,
            tcode TYPE tcode,
            ttext TYPE ttext_stct,
            sprsl TYPE sprsl,
            END OF ty_itext.
    *Structure for output display
    TYPES : BEGIN OF ty_output,
            tcode TYPE tcode,
            pgmna TYPE progname,
            ttext TYPE ttext_stct,
           END OF ty_output.
    *internal table and work area declarations
    DATA : it_table TYPE STANDARD TABLE OF ty_table INITIAL SIZE 0,
           it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_ittext TYPE STANDARD TABLE OF ty_itext INITIAL SIZE 0,
           wa_table TYPE ty_table,
           wa_output TYPE ty_output,
           wa_ittext TYPE ty_itext.
    *Class definition for ALV toolbar
    CLASS:      lcl_alv_toolbar   DEFINITION DEFERRED.
    *Declaration for toolbar buttons
    DATA : ty_toolbar TYPE stb_button.
    Data declarations for ALV
    DATA: c_ccont TYPE REF TO cl_gui_custom_container,   "Custom container object
          c_alvgd         TYPE REF TO cl_gui_alv_grid,   "ALV grid object
          it_fcat            TYPE lvc_t_fcat,            "Field catalogue
          it_layout          TYPE lvc_s_layo,            "Layout
          c_alv_toolbar    TYPE REF TO lcl_alv_toolbar,           "Alv toolbar
          c_alv_toolbarmanager TYPE REF TO cl_alv_grid_toolbar_manager.  "Toolbar manager
    *Initialization event
    INITIALIZATION.
    *Start of selection event
    START-OF-SELECTION.
    *Subroutine to get values from tstc table
      PERFORM fetch_data.
    *subroutine for alv display
      PERFORM alv_output.
          CLASS lcl_alv_toolbar DEFINITION
          ALV event handler
    CLASS lcl_alv_toolbar DEFINITION.
      PUBLIC SECTION.
    *Constructor
        METHODS: constructor
                   IMPORTING
                     io_alv_grid TYPE REF TO cl_gui_alv_grid,
    *Event for toolbar
        on_toolbar
           FOR EVENT toolbar
           OF  cl_gui_alv_grid
           IMPORTING
             e_object.
    ENDCLASS.                    "lcl_alv_toolbar DEFINITION
          CLASS lcl_alv_toolbar IMPLEMENTATION
          ALV event handler
    CLASS lcl_alv_toolbar IMPLEMENTATION.
      METHOD constructor.
      Create ALV toolbar manager instance
        CREATE OBJECT c_alv_toolbarmanager
          EXPORTING
            io_alv_grid      = io_alv_grid.
       ENDMETHOD.                    "constructor
      METHOD on_toolbar.
      Add customized toolbar buttons.
      variable for Toolbar Button
          ty_toolbar-icon      =  icon_generate.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button1'.
          APPEND ty_toolbar TO e_object->mt_toolbar.
          ty_toolbar-icon      =  icon_voice_output.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button2'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_phone.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button3'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_mail.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button4'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
       ty_toolbar-icon      =  icon_voice_input.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button5'.
         APPEND ty_toolbar TO e_object->mt_toolbar.
      Call reorganize method of toolbar manager to
      display the toolbar
         CALL METHOD c_alv_toolbarmanager->reorganize
          EXPORTING
            io_alv_toolbar = e_object.
       ENDMETHOD.                    "on_toolbar
    ENDCLASS.                    "lcl_alv_toolbar IMPLEMENTATION
    *&      Form  fetch_data
          text
    -->  p1        text
    <--  p2        text
    FORM fetch_data .
    Select the tcodes upto 200 rows from TSTC
       SELECT   tcode
               pgmna
               FROM tstc
               INTO CORRESPONDING FIELDS OF TABLE it_table
               UP TO 200 ROWS
               WHERE dypno NE '0000'.
    *Select the tcode textx
       IF it_table[] IS NOT INITIAL.
         SELECT ttext
               tcode
               sprsl
               FROM tstct
               INTO CORRESPONDING FIELDS OF TABLE it_ittext
               FOR ALL ENTRIES IN it_table
               WHERE tcode = it_table-tcode
               AND sprsl = 'E'.
       ENDIF.
    Apppending the data to the internal table of ALV output
       LOOP AT it_table INTO wa_table.
        wa_output-tcode = wa_table-tcode.
        wa_output-pgmna = wa_table-pgmna.
       For texts
        READ TABLE it_ittext INTO wa_ittext WITH KEY tcode = wa_table-tcode.
        wa_output-ttext = wa_ittext-ttext.
         APPEND wa_output TO it_output.
        CLEAR wa_output.
       ENDLOOP.
       ENDFORM.                    " fetch_data
    *&      Form  alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM alv_output .
    *Calling the ALV
      CALL SCREEN 0600.
      ENDFORM.                    " alv_output
    Calling the ALV screen with custom container
    On this statement double click  it takes you to the screen painter SE51.Enter the attributes
    *Create a Custom container and name it CC_CONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    Now a normal screen with number 600 is created which holds the ALV grid. PBO of the actual screen , Here we can give a title and *customized menus
    *&      Module  STATUS_0600  OUTPUT
          text
    MODULE status_0600 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0600  OUTPUT
    calling the PBO module ALV_GRID.
    *&      Module  ALV_GRID  OUTPUT
          text
    MODULE alv_grid OUTPUT.
    *create object for custom container
      CREATE OBJECT c_ccont
           EXPORTING
              container_name = 'CC_CONT'.
    *create object of alv grid
      CREATE OBJECT c_alvgd
          EXPORTING
              i_parent = c_ccont.
    create ALV event handler
      CREATE OBJECT c_alv_toolbar
        EXPORTING
          io_alv_grid = c_alvgd.
    Register event handler
      SET HANDLER c_alv_toolbar->on_toolbar FOR c_alvgd.
    Fieldcatalogue for ALV
       PERFORM alv_build_fieldcat.
    ALV attributes FOR LAYOUT
      PERFORM alv_report_layout.
       CHECK NOT c_alvgd IS INITIAL.
    Call ALV GRID
       CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = it_layout
        CHANGING
          it_outtab                     = it_output
          it_fieldcatalog               = it_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " ALV_GRID  OUTPUT
    *&      Form  alv_build_fieldcat
          text
         <--P_IT_FCAT  text
    FORM alv_build_fieldcat.
       DATA lv_fldcat TYPE lvc_s_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '1'.
      lv_fldcat-fieldname = 'TCODE'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 8.
      lv_fldcat-scrtext_m = 'TCODE'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
       lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '2'.
      lv_fldcat-fieldname = 'PGMNA'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'PROGNAME'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '3'.
      lv_fldcat-fieldname = 'TTEXT'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 60.
      lv_fldcat-scrtext_m = 'Description'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
    ENDFORM.                    " alv_build_fieldcat
    *&      Form  alv_report_layout
          text
         <--P_IT_LAYOUT  text
    FORM alv_report_layout.
       it_layout-cwidth_opt = 'X'.
       it_layout-zebra = 'X'.
    ENDFORM.                    " alv_report_layout
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes
    *and based on the user command we can do the coding.
    *&      Module  USER_COMMAND_0600  INPUT
          text
    MODULE user_command_0600 INPUT.
    ENDMODULE.                 " USER_COMMAND_0600  INPUT
    thanks,
    gupta

  • [Feature Request] Better support for new buttons in JUNavigationBar

    In my project I use a home made sub-class of JUNavigationBar, which contains some new functionality apart from a new button as well. This button allows me to refresh the currently selected row.
    However, since I added this button though a simple this.add(), some of the functionality in JUNavigationBar may get confused.
    For example, when I have removed some of the standard buttons but left my own button in place (setHasXXX()), the component index (calculated in JToolBar) and the array index for the buttons in JUNavigationBar may not match. This occasionally causes an ArrayIndexOutOfBoundsException.
    In short, what I'm asking for, is a better way to manage buttons on JUNavigationBar. Even making the array of buttons and related methods and such protected in stead of private (so that my sub-class could handle it) would be a good start.

    Hi Arno,
    I had a similar issue with trying to create a Nav bar with dynamic content. My solution was to leave all the standard buttons in place and to use setVisible(x) to make them appear or not as required.
    BTW have you noticed that rollover behaviour isn't consistant ie works for FIRST/LAST etc but not for FIND/QUERY.
    Regards
    Andy

  • Services for object button in change purchase order-ME22n

    Dear experts,
    In ECC6.0, me22n transaction in the change me22n screen, top left side "services for object" button is provided.
    It is provided to the left of the standard material po 480000009878 text line.
    I think it is useful for attaching the Files.
    I want to know in what way it is useful. Can we send the document to vendor , can it be possible to print along with purchase document.How it is useful.
    Advance thanks,
    Regards,
    Dayanand

    Hi Cheruku
    This button is used to attach any doument with the PO, or to check idoc status if PO is created via a Idoc or it has triggered any idoc extra.
    would like to know what is your exact query?
    regards
    Yogesh

  • How to use mp3 files on a form standard button, instead of wav-files. Need to save space.

    I would like to use mp3 files instead of Wav-files on the standard button, in the forms edit menu. I know it is possible in the interactive menu to add buttons with mp3 sound. But those buttons has not the same options and appearance as the forms buttons. We create learning books with lots of sound files in each PDF, so with wav-files the PDF gets quite heavy in Gb.

    Smokerz – Thanks for the feedback. I managed to get iTunes to find the movie files on my TC by simply dragging the icons of the files on the TC into the Movies folder in iTunes. This immediately made them available for streaming on my Apple TV. Also, I learned with great relief that, despite their large size, dragging icons of my movie files into iTunes did not copy them to the C: drive on my desktop computer. Thus, it looks as if the job is pretty much done. Thanks again for your advice.

  • ABAP/4 Keywords for all SAP R/3 Versions with Delta Documentation for abap

    Hello Experts,
          Do please provide me with the way to find out the Delta Documentations for ABAP for all version of SAP R/3 starting from 3.0 to 6.0
    points will be awarded if helpful.
    Thanks in Advance

    Log on to SAP.  Use transaction ABAP_DOCU.  Click on Keyword Help.  Don't enter an ABAP keyword, press cont. button.
    In the window that opens, in the tree on the left handside, you'll see ABAP Changes By Release.
    This contains all the information you need.
    matt

  • Appraisal template standard buttons not working via ESS/MSS

    Hi experts,
    The error which I am facing in appraisal template is as follows
    When I click on any button on appraisal template no action takes place.
    Kindly let me know how can I resolve this error.
    we are using BSP application HAP_DOCUMENT.
    according to me page fragment 'document_buttons.htm' (Method CONVERT_BUTTON_TO_UI) contains the code for button creation and button handling
    the page fragment 'document_buttons.htm' is getting triggered when page is initialized but it is not triggering when button is clicked.
    Additional info that might be useful to resolve the issue:
    1) While viewing appraisal template's web layout in t-code PHAP_CATALOG_PA.
         I am facing following script error.
         This error reappears when I click on any standard button For eg SAVE
    2)  We are currently using IE 8
    3)  We recently upgraded ECC system from ECC 6.0 to ECC 6.0 / EHP 6 (ECC 6.6)
    4) I checked SICF and corresponding services are active
    Thanks in advance

    Hi Adrian,
    Design2008 service is inactive in my system.when activated temporarily I was not able to see previous page (Blank page was displayed) in my appraisal application.
    For BSP application HAP_document, i checked SICF->default host->SAP->BC->BSP->SAP->HAP_document.This service is active.
    The image which I have attached with my question is appraisal template's web layout in t-code PHAP_CATALOG_PA.
    regards
    Ninad

  • I want to know keyword for report my file

    i want to know the keywords for the reporting my file... that is for example for newline printing keywords is <newline> and tab is <tab>..
    same way  i want to know about the keywords...
    Regards,
    N. Srinivasan

    It's actually in the LabVIEW Help and at this link.
    Search for Using Tokens in Reports in LabVIEW Help.
    Cut/Paste below:
     The following list describes the tokens available in LabVIEW.
    Token
    Description
    <tab>
    (Windows) For standard reports,
    LabVIEW indents the text to the next tab location. For HTML reports, LabVIEW
    interprets this token as <br>.
    <page>
    Current page number. LabVIEW ignores this token for HTML
    reports.
    <pages>
    Total number of pages. LabVIEW ignores this token for HTML
    reports.
    <pagenofm>
    Current page number with the total number of pages in the
    report. LabVIEW ignores this token for HTML reports.
    Example: 7 of 30
    <shortdate>
    Current date in the form xx/xx/xx.
    Example: 10/5/98
    <longdate>
    Current date in the form Day, Month and
    Date, Year.
    The month,
    date, and year order defaults to the date settings of your operating
    system.
    Example: Monday, October 05,
    1998
    <time>
    Current time in the form Hour:Minute:Second
    AM/PM.
    Defaults to the clock settings of your
    computer.
    Example: 1:58:22 PM
    <newline>
    Inserts a line break in the report.
    Hope that's what you're looking for.
    Matt
    Message Edited by MattWhitlock on 10-16-2009 12:10 AM

  • How to create transport request for standard text created using SO10.

    Hi,
    How to create transport request for standard text created using SO10?
    Regards
    Ramakrishna L

    Hi,
    For the Standard text created in SO10,
    please go to transaction SE78 -> FORM GRAPHICS->STORED AS TEXT->STANDARD TEXTS->
    Double click on ADRS or ST or what ever your type of text->
    Enter your standard text name
    Click on transport button->SHIFT+f6-> It will ask you for a transport request.
    Best regards,
    Siva

  • Driver program for  standard forms

    hai freinds can any one where to find the driver programs for standard forms
    like medruck rvrorder01 and all
    regards
    afzal

    hi mohamad,
    follow this procedure :
    1) got t-code <b>SPRO</b>
    2) click on the <b>SAP Refernce IMG</b> push button
    3) choose <b>MATERIAL MANAGEMENT</b> in the list
    4) in sub division chosse <b> PURCHASING</b>
    5) in those sub division now choose <b>MESSAGES</b>
    6) now again choose <b>FORMS (LAYOUT SET) FOR MESAAGES</b>
    7)now choose <b>Assign Form and Output Program for Purchase Order</b>
    8) now execute where u can find the <b>DRIVER Program</b> name for <b>MEDRUCK</b> as <b>    SAPFM06P</b>
    i hope this is useful to u...
    reward points if useful
    Thanks,
    Ginni

  • Non-Standard Buttons in FLVPlayback skin

    I posted this before but I don't think I explained it very
    well. I'm trying to add a non-standard button to my FLVPlayback
    skin, but it's not showing up. Can you add new buttons (with new
    functionality) to FLVPlayback skins or can you only edit the
    existing ones? This should be similar to adding a logo, does anyone
    have a tutorial or anything on adding a logo to an FLVPlayback
    skin?

    Look
    Here Edit the bar at the bottom of the Skin FLA, and add what
    you want to that... unlock all layers, select all, then resize, add
    a layer and put what you want. Then when selecting a skin for your
    FLVPlayback component, select Custom Skin, and target it.

  • Drag and drop interactivity- do it for me button not working when published to HTML5

    I've made a drag & drop interactivity, I am adding a button where the user can get the correct answers for that interactivity.
    using advance actions / Standard action / and apply custom effect (right to left ease) in captivate 7.
    The problem I'm experiencing is that the button works fine when reviewing as SWF but when I publish as HTML5, it is not running.
    I am attaching screen shots for it.
    Thanks,

    Sorry advance actions screen as below:
    The idea when user click on "do it for me" button, drag source move to drop target automatically.
    Thanks

Maybe you are looking for

  • How many apple TVs can you have on one network 5, 10, 15, infinite?

    I have an application where there are many rooms and I would like to be able to use Airplay in each room, can I buy 10 or more Apple TV units and put them all over my house on my wireless network and be able to airplay to any one of them? What is the

  • Proxy Maximum Payload size

    Hi , What is the maximum size of payload a proxy ( ABAP server/client) can handle in XI?  Also send me docs on Proxy Sizing ? Regards, Praveen Kumar

  • Need help buying products!

    O.K. I found this really great site(s) with some really cheapish products. Are these sites legit? I figured some of you guys may know. 1. Hard Core Mac, http://store.yahoo.com/hardcoremac/macosxcd.html (IS THIS DISK FULL INSTALL. I HAVE 8.6. WILL THI

  • How can I downsize the itunes window if the bottom is outside the screen?

    I have imported the files from my old 17in. Mac Book Pro into a new 15in. one. In the old one the window occupied the whole screen, in the new one it still shows up as a 17 incher and the bottom part of the itunes window actually falls off the screen

  • Error "EPCF Undefined" in URL Iview after upgrading portal from 7.0 to 7.3

    Hi All, We have upgraded our portal from 7.0 to 7.3 recently. After upgrade when we are trying to open URL iviews(which will open a page in a sesparate window) it is giving some error in left bottom corner of browser. The error is as follows Message: