How Edit text push button screen standard

Hello Experts,
    In SAPMV56A program when I see the display screen 1025 in screen painter there are some buttons with the
name of structures, for example :
RV56A-ICON_STDIS
RV56A-ICON_STREG
RV56A-ICON_STLBG
RV56A-ICON_STLAD
RV56A-ICON_STABF
RV56A-ICON_STTBG
RV56A-ICON_STTEN
the problem is that when I run this program, transaction "VT01N" the text that appears on these buttons is different
the text that is screen painter, there is a transaction where I can define what should be the text that I want
appear for these buttons?
thanks for your help.

Okay this is an old thread, but as it`s not answered...
I found a way to change the labels of the pushbuttons, as follow:
On SE80:
Program SAPMV56A
Screen 1025
Go to -> Translate
Insert your destination language
Expand the <SRT4> and double click the
SAPMV56A                                1025      / VTR
There you can translate the buttons that are used on the screen. this modification is applied to VT01n/VT02n/VT03n.
Some labels on the left part of the screen (not the buttons) get the text from DDIC, for those you`ll have to translate the data element on CMOD.

Similar Messages

  • How to add push buttons in out put screen of ALV

    Hai,
    How to add push buttons in out put screen of ALV (tool bar) with out using classes or methods .I want to know using normal ALV .
    Thanks in advance .
    kiran

    Hi Kiran,
    Here is the sample code.If you are using reuse_alv_grid_display, no need to write code in PBO.
    Just double click the 'TEST' which is written in code.Then create a GUI Status.In Application toolbar,type the name of the button you want(say BUTTON).Then double click that name.Then enter the ICON name and function text.Activate it.This itself will work.If you want all the functionalities,then try to do as Vinod told.
    TYPE-POOLS: slis.
    DATA: i_qmel LIKE qmel OCCURS 0.
    data v_repid type repid.
    SELECT * FROM qmel INTO TABLE i_qmel.
    v_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = v_repid
       I_CALLBACK_PF_STATUS_SET          = 'SET_PF_STATUS'
       I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
       i_structure_name                  = 'QMEL'
      TABLES
        t_outtab                          = i_qmel
      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.
    form set_pf_status using rt_extab type slis_t_extab.
    set pf-status '<b>TEST</b>'.
    endform.
    FORM user_command USING ucomm LIKE sy-ucomm
                             selfield TYPE slis_selfield.
    data lv_ucomm type sy-ucomm.
    lv_ucomm
    = sy-ucomm.                                        
      CASE lv_ucomm.
        WHEN 'BUTTON'.                              "Double Click line Item
          call transaction 'MM01'.
      endcase.
    endform.

  • How to Add Push Button On Selection Screen

    Hi Experts,
    How to add Push button on Selection Screen.
    Points will b rewarded for useful help.
    Bohra.

    Hi,
    To create a pushbutton on the selection screen, you use:
    SELECTION SCREEN PUSHBUTTON [/]<pos(len)> <push>
    USER-COMMAND <ucom> [MODIF ID <key>].
    The [/]<pos(len)> parameters and the MODIF IF addition have the same function as for the formatting options for underlines and comments.
    <push> determines the pushbutton text. For <push>, you can specify a text symbol or a field name with a maximum length of eight characters. This character field must not be declared with the DATA statement, but is generated automatically with length <len>. The field must be filled before the selection screen is called.
    For <ucom>, you must specify a code of up to four characters. When the user clicks the pushbutton on the selection screen, <ucom> is entered in the UCOMM of the SSCRFIELDS interface work area. You must use the TABLES statement to declare the SSCRFIELDS structure. The contents of the SSCRFIELDS-UCOMM field can be processed during the AT SELECTION-SCREENevent.
    Ex.
    REPORT DEMO.
    TABLES SSCRFIELDS.
    DATA FLAG.
    SELECTION-SCREEN:
    BEGIN OF SCREEN 500 AS WINDOW TITLE TIT,
    BEGIN OF LINE,
    PUSHBUTTON 2(10) BUT1 USER-COMMAND CLI1,
    PUSHBUTTON 12(10) TEXT-020 USER-COMMAND CLI2,
    END OF LINE,
    BEGIN OF LINE,
    PUSHBUTTON 2(10) BUT3 USER-COMMAND CLI3,
    PUSHBUTTON 12(10) TEXT-040 USER-COMMAND CLI4,
    END OF LINE,
    END OF SCREEN 500.
    AT SELECTION-SCREEN.
    CASE SSCRFIELDS.
    WHEN 'CLI1'.
    FLAG = '1'.
    WHEN 'CLI2'.
    FLAG = '2'.
    WHEN 'CLI3'.
    FLAG = '3'.
    WHEN 'CLI4'.
    FLAG = '4'.
    ENDCASE.
    START-OF-SELECTION.
    TIT = 'Four Buttons'.
    BUT1 = 'Button 1'.
    BUT3 = 'Button 3'.
    CALL SELECTION-SCREEN 500 STARTING AT 10 10.
    CASE FLAG.
    WHEN '1'.
    WRITE / 'Button 1 was clicked'.
    WHEN '2'.
    WRITE / 'Button 2 was clicked'.
    WHEN '3'.
    WRITE / 'Button 3 was clicked'.
    WHEN '4'.
    WRITE / 'Button 4 was clicked'.
    WHEN OTHERS.
    WRITE / 'No Button was clicked'.
    ENDCASE.
    This example defines four pushbuttons on a selection screen that is displayed as a
    dialog box. The selection screen is defined in a statement chain for keyword
    SELECTION-SCREEN.
    If the text symbols TEXT-020 and TEXT-040 are defined as 'Button 2' and 'Button 4',
    the four pushbuttons appear as follows on the selection screen displayed as a dialog box.
    Regards,
    Bhaskar

  • How to ijntroduce PUSH Button in KD_GET_FILENAME_ON_F4

    Dear Experts,
    I am new to ABAP.
    I know how to use push button in Sel-Screen. But my requirement is:
    1)How can I use a push button in "KD_GET_FILENAME_ON_F4" so that on hitting the push button a PopUp screen appears.
    2) This Pop up screen should be a file directory screen from which I can select a file.
    3) This file on one click should get considered as "file_name" of the call function "KD_GET_FILENAME_ON_F4."
    Looking forward for advise from experts.
    Regards
    Chandan Kumar

    Dear Mr Klaus,
    Thanks for your reply. The method suggested by you will definitely help the user to directly open a file dialogue box. But I want the code to make it more simpler for the user. After I execute the code The use should get a Push Button. On hitting this push button a POP UP screen should appear. This pop up screen should lear us to the target folder.
    In your suggestion it was possible to open a folder path pop up screen. just I want to intriduce a PUSH button there. Also I want multi selection to be possible. In your suggestion above when I wrote the code as:
    DATA: file_str1 type string.
    data: it_tab TYPE STANDARD TABLE OF file_table,
          lw_file LIKE LINE OF it_tab,
          gd_subrc TYPE i.
    SELECTION-SCREEN begin of block blk with frame title text-100.
    SELECTION-SCREEN SKIP 2.
    parameters : p_file like rlgrap-filename .
    SELECTION-SCREEN end of block blk.
    *F4 input file
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
    EXPORTING
    window_title = 'Select only Text File'
    default_filename = '.azt'
    multiselection = 'X'
    CHANGING
    file_table = it_tab
    rc = gd_subrc.
    READ TABLE it_tab INTO lw_file INDEX 1.
    p_file = lw_file-FILENAME.
    Start-of-Selection.
      file_str1 = P_file.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = file_str1
    *    filename                      = '\\10.10.1.92\Volume_1\_projekte\Zeiterfassung-SAP\test.azt'
      tables
        data_tab                      = it_string
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    In the above code when I use Multiselection = 'X' then in the folder pop up multiselection is possible but the multiselection deosn't
    gets selected for upload.
    Looking forward for your suggestions.
    That is my requirement.
    Regards,
    Chandan

  • How to add push button in alv display with out class or method

    Hai,
    How to add push buttons in out put screen of ALV (tool bar) with out using classes or methods .I want to know using normal ALV .
    Thanks in advance .
    kiran

    You should post your question in the ABAP forum.
    ABAP Development

  • How to add push button in application tool bar in SAP transaction VA01

    How to add push button in application tool bar in SAP standard transaction VA01 and how to implement the code for that function code.

    There is no scope to create a push button in application tool bar. Instead of that we can add in a menu bar.

  • Adding push buttons in standard ALV

    Hi ,
    Is there any possiblity to add custom push buttons to standard ALV in Webdynpro for ABAP.
    If so, please provide me the solution.
    Thanks in Advance.
    cheers,
    sravan.

    I got the answer .

  • How to place push button on right corner of a screen

    Hi,
    I am creating push button on application tool bar of a  screen using set pf-status,usually the push button is created on left hand side of the screen. But I want to put this push button on right hand side of the screen.Is it possibe.....?
    Regards
    Sudha Mettu

    Hi sudha,
    1. I dont think its possible.
    2. Either u have to put empty
       buttonS on the left,
      so that your required button,
      comes at the right.
    regards,
    amit m.

  • How to add push button in report.

    Hi,
    how to add a push button in the standard list report and on clicking which the line-size of the screen should reduce from 300 to 100.
    how to proceed.
    Can anyone help me.
    Regards
    Guhapriyan

    Hii Guhapriyam,
    You can ceate PUSHBUTTON in selection-screen like Below
    SELECTION-SCREEN PUSHBUTTON 2(10) text-004 USER-COMMAND CL1.
    Create a variable to hold the processed PUSHBUTTON value like
    DATA v_flag TYPE flag.
    The PUSHBUTTON will be processed at the event AT SELECTION-SCREEN. So write your code like below
    AT SELECTION-SCREEN.
       IF sy-ucomm EQ 'CL1'.
         v_flag = 1.          "Buttob clicked
       ENDIF.
    START-OF-SELECTION.
    IF v_flag EQ 1.
         NEW-PAGE LINE-SIZE 100.
    ENDIF.
    OR
    The best way of doing this by setting PF-STATUS like
    START-OF-SELCTION.
    SET PF-STATUS 'ZSTATUS'.  "Double click on this and set the pushButton in standard toolbar option and in function key specify the BACK, EXIT and CANCEL button .
    Then write your logic at the event AT USER-COMMAND.
    AT USER-COMMAND.
       CASE sy-ucomm.
         WHEN 'RED'.
           NEW-PAGE LINE-SIZE 100.
         WHEN 'BACK' OR 'CANCEL' OR 'EXIT'.
           LEAVE SCREEN.
         WHEN OTHERS.
       ENDCASE.
    regards
    Syed

  • How to add push button on UI?

    Hi,
    I would like to add a push button 'PROCESS' on one assignment block. When user selects the pushbutton I would like to execute some custom functionality. How do I achieve this?
    Regards,
    Akash

    Hi,
      Please add the below code in the htm page of your view
    <thtmlb: button id = Search
    on Click = Search
    text = Search
    tooltip = Search />
    Regards,
    Lakshmi.Y
    Edited by: Lakshmi Soujanya on Jun 7, 2011 11:09 AM
    Edited by: Lakshmi Soujanya on Jun 7, 2011 11:11 AM

  • How to give  push button in alv report  output

    hi,
    my requirement is that , i have to give push button in alv report output(item level) not in application toolbar, i am using reuse_alv_grid_display FM, can any body provide me sample code
    regards,
    siva kumar

    have a look at this thread, also has a sample report at the end from Uwe Schieferstein.
    [button on alv list|How to add and program a pushbutton on ALV grid line;
    seems not to work try this:
    How to add and program a pushbutton on ALV grid line
    Edited by: Micky Oestreich on May 15, 2008 10:20 PM

  • Edit Text from one screen to another screen

    Hi Experts,
           Here I am having two doubts in doing functionality on SMP 2.3,The below mentioned are the doubts,
                       1. In SMP 2.3 Version,When i am doing Hybrid App Designer in that  Edit Text functionality to pass the values from one screen to another screen,we want to type any text or digits in edit text keypad options is not opening in that field.If any one knows to handle that issue please let me know experts.
                       2.  In SMP 2.3 Version,When i am doing Hybrid App Designer we are taking some labels or buttons or edit box etc....,first time i am generating the hybrid app it is displaying in the mobile device what ever i give in that screen.Afterwards when i am updating second time in that screen with extra functionality labels or buttons or edit box etc...,and generating hybrid app,these time it is not displaying in mobile device which i gave not updating.If any one knows to handle that issue please let me know experts.
         For these both isssues if anybody gets solutions to handle these data please let me know and if links are there please provide it .
    Thanks & Regards,
      Lokesh Reddy G,
      9700414490.

    Hi Lokesh,
    Regarding your queries:
    1. What kind of device/simulator and OS you are testing your app? What is its version?
    Can you share the snapshots as well?
    2. What extra functionality you have added 2nd time? When you generating hybrid app 2nd time is it uploading in HWC container successfully?
    Meanwhile you can check this blog
    A workflow Application to Release A Purchase Order...
    Rgrds,
    Jitendra

  • How to add push button in function module

    I want to add Push button( yes/no) in same screen. I used POPUP_TO_CONFIRM,
    but this popup is coming on next screen when I click on cancel button.

    There is no scope to create a push button in application tool bar. Instead of that we can add in a menu bar.

  • How edit text from a MS Power Point thats now in keynote?

    how to edit text in Keynote from a file that came from MS Power Point 2010?

    A Powerpoint file imported into Keynote is converted to a Keynote file.
    All text functions are therefore  available:
    single click to insert the cursor
    double click on a word to select a word
    treble click to select a line
    typing on a selected word will change the text

  • How to Unhide Import button in Standard Extension collection?

    Hi Experts,
    I have a requirement to unhide Import button in standard extension collection "PROJECT SAVINGS" in project.
    I have tried with script but it is not working.
    colln=doc.getExtensionCollection("PROJECT_SAVINGS");
    objectref = doc.getObjectReference();
    bean = colln.find(objectref);
    IapiDocumentLockManager.unlockAll(session,bean);
    If anyone have achieved this requirement please share.
    Thanks for your support.
    Regards,
    Lava.

    Hi Lava,
    The method which you are using is for extension collection, but project savings is a standard collection.
    For the class Project in IAPI there is a method named getProjectSavings()
    Your problem would be solved if you use the above mentioned method.
    Please let me know if you need any assistance.
    Thanks,
    Raj.

Maybe you are looking for

  • Hi, please help if anybody know joins involving ap_checks_stocks_all and ap_check_formats with ap_invoice_selection_criteria

    I am supposed to do a R12 upgrade/implementation in 2 days for a report which has a query as below, though it looks simple, it seems complicated or maybe I think it is  : SELECT DECODE(aisc.status,                   'BUILT','N',                   'FO

  • How do i set up a second ipad with the same apple id

    I bought two new iPad 2 's for my office.  They are for patient self check-in and I would like to set them both up with the same apple ID.  How do I go about setting the second iPad up once I finished setting up the first one? Thanks!

  • Newbie: Apex & EM how to after stop and start?

    Hi I got an Amazon AMI and once I start and stop the instance or rebundle my AMI The IP changes and Apex and EM does not work. Is there a documentation on hnow to reconfigure them?

  • Hiding value the second page

    Hi, Is it possible to hide a value in the the second page if the value is in a repeating header?? example FIRST PAGE value1 value2 value3 SECOND PAGE value2 value3 THIRD PAGE value2 value3 hope you get my point thank you :)

  • HTML Jump Causes Error

    Hi, I have my HTML jump set up in a Word Document. I've double checked the http: location, and it is correct. When I click on the jump in the finished product I get the following error: "An error exists in this help file. Contact your application ven