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

Similar Messages

  • Change text for radio button

    Hi all,
    Can we change text of radio button in selection screen after pressing push button?
    On screen, I will have push button for user to select one of two conditions, after selecting, I want radio button text be changed, for example : text > 'upload' will be changed to become 'upload sales'.
    can we?
    thanks
    Alia

    Hi alia,
    1. Very simple.
    2. The Important thing is
        NAME of the RADIO BUTTON.
    eg. name is XYZ.
         then we can access it in program like this :
        %_XYZ_%_app_%-text = 'Hello Sir'.
      (Please note the FORMAT - Its important)
    3. try this code (just copy paste in new program)
      IT WILL CHANGE TEXT OF RADIO BUTTONS
      WHEN PUSHBUTTON IS CLICKED.
    REPORT abc.
    PARAMETERS : abc  RADIOBUTTON GROUP g1,
                 xyz  RADIOBUTTON GROUP g1.
    SELECTION-SCREEN : PUSHBUTTON /15(25) pb USER-COMMAND pp .
    ABC, XYZ
    AT SELECTION-SCREEN .
      IF sy-ucomm = 'PP'.
        %_abc_%_app_%-text = 'Hello Sir'.
        %_xyz_%_app_%-text = 'How are u ?'.
      ENDIF.
    regards,
    amit m.

  • How can I change text for paginate button?

    I use Table (not DataTable) in the web application (NetBeans IDE 6.0.1). There are so called pagination controls buttons in the table. I?d like to change text in the buttons. How can I do it? For example ?Go? button text I like to change to another language. How can I change the text of ?Go? button via the language file. I like to also change the tooltips text of table via language file.

    You need a NetBeans forum. This one's for Java.
    db

  • 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.

  • 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.

  • IDOC trigger using Z change pointers for standard SAP table

    For IDOC trigger, is using custom change pointers on standard SAP master data tables, a good idea? A seasoned abaper told me "it will mess with the standard" and further told to go with scheduled job.
    So, for example, say that my data for table T001K is updated via transports in PRD and I need to transfer this updated data via IDOC to an external system. Since there is no standard message type for this data, I will create a new one. Further, I will create a new change pointer for table T001K (it already has six fields with their data elements activated for Change Documents). Then I link the message type and the new change pointer. And so on an so forth. I have followed the procedure given here:SAP Tips: A to Z of Custom Change Pointer
    Now, the question is, will this be a good idea to capture data and trigger IDOC? Or a batch program with calls to standard FM to read CDHRD/CDPOS be a more suitable option.
    I need to know if a near instantaneous data transfer (and an effecient one as far as the system performance and reliability is concerned) can be acheived. If there is any other way of doing this, I am not aware of it!
    Any one has any input/experience on this?

    Hi Viktor,
    I think the batch program approach would be a good solution as the by this way you are taking matter into your own hands rather giving control to the SAP framework because you may have to test out the other approach as to how the standard SAP framework is behaving for custom change pointers.
    Thanks,
    Ravi

  • Mass Change Function for Standard Templates

    Hi All,
    I am trying to use Mass Change Function to change one field value in my Standard project Definitions as well as Standard WBS Elements but its not doing.Is it that Mass change Function is only aplicable for Operative projects and not for Standard Templates?
    Expecting your response on this.
    Thanks and Regards,
      Harsh Shekhar.

    your observations are correct - mass change functions are only for oprative pojects and not for standard templates
    you can try LSMW

  • Activating change documents for standard tables

    Hi all,
    Can someone please tell me how I can activate change documents for a standard table.
    I created a change document object in SCDO and included the standard table I am working with. This table does not have "LOG DATA CHANGES' enabled in its technical settings. I checked the data element of the field I am interested in and it has "Change Document" enabled.
    Is there any way to activate change documents for a std table without writing code to create change documents? 
    Thanks.

    Hi,
    Check this transaction SCU3, this is to activate the change logs for the tables.
    Regards,
    Satish

  • Changing password for standard service users

    Hi,
    Is it advisable to change the password for standard service users (i.e. SAPCPIC, WF-BATCH, SAPJSF, TMSADM) created during SAP Installation?
    Rgds,
    Hapizorr

    Hi,
    As long as you remember and document the changed passwords it should be no issue.
    Regards.
    Ruchit.

  • How to text for Submit button in different languages.

    Hi All
    We have a requirement to add 'Submit Button' in iSupplier Portal's Standard Pages.
    We have substituted the controller to add the Submit button and it works fine also .
    Our Application has 7 different languages, so the requirement is to show the button Text w.r.t the
    language only .
    We have written the following code
    OASubmitButtonBean oasb= (OASubmitButtonBean)oapagecontext.getWebBeanFactory().createWebBean(oapagecontext,"BUTTON_SUBMIT");
    oasb.setID("IPOPrintReportButton");
    oasb.setUINodeName("IPOPrintReportButton");
    oasb.setEvent("IPOPrintReportButton");
    oasb.setText("IPO Print Report Button");
    //oasb.setTranslatableText("XXIPO","XXIPO_PRINT_REPORT_TXT");
    pageButtonBarBean2.addIndexedChild(oasb);
    when we have used setText method , we are getting the same name in every language. so we tried using setTranslatableText Method and gave it the Messages to set the Button Text. But Now button text is empty .
    Pls tell us how to achieve this requirement of having text in different languages on the button ..w.r.t the environment language. we have also defined same Message 'XXIPO_PRINT_REPORT_TXT' for other languages.
    naveen

    Hi Kumar
    Can u pls brief this a little more .
    Lets say I get the language as German in the Controller . Now how do i set the test for the submit button .
    Do u mean to say I should check like this:
    If (langaue is german )
    button.setText("German Submit")
    else if (langauge is netherland)
    button.setText("Netherland Submit")
    harcoding the vaues in the contorller??

  • Changing Language for Default Buttons

    Hi,
    I have been searching Google and this forum for info on how to change two very specific settings in Captivate 7. We are creating a quiz in French.  At the end of it, a window pops up and says a few things in English, like "You have left some questions unanswered," "Submit all," etc.  We have figured out how to change most of these, but there are two buttons, Yes and No, which we cannot figure out how to change.  Does anyone know where this might be done?

    Hi Lilybiri, they appear at the very end of the quiz, after hitting the Submit button on the last slide but before calculating the final score.  I am attaching a screenshot.  I can change the text to French--just haven't done it yet--but not these Yes and No buttons.  I can't find those settings anywhere.  Changing the system language and reinstalling is not an option.

  • Change text size in Button

    How do I change the size of the text that is on a button?
    I can make the button size bigger or smaller with xysize but the text remains the same. Id like to make
    the text "SEND" bigger.
    Button sendButton = new Button(" SEND ");
    sendButton.addActionListener(this);
    GridBagLayout gridbag = new GridBagLayout();
    GridBagConstraints c = new GridBagConstraints();
    setLayout(gridbag);
    c.fill = c.BOTH;
    xysize = 3;
    c.gridx = 1;
    c.gridy = 5;
    c.weightx = xysize*2;
    c.weighty = xysize;
    gridbag.setConstraints(sendButton,c);
    add(sendButton);

    Developer Forums
    Forum: Abstract Window Toolkit (AWT)
    I guess, should be a better place to be asking AWT questions ;-)
    Rasmeet.

  • Changing Text for Add to Favorites Link

    Does anyone know how we can change the label for the Add to Favorites link that is displayed on the page details icon?
    We've searched all over assuming it is in a properties file somewhere but we have not been able to find it.
    Thanks.
    EP6 SP2

    Hi Robert,
    Thanx for this. I was also looking for the same. I will check this out and see if it is working for me.
    I have few queries:
    1) Changing this will update all the iView/page toolbars of portal..right?
    2) Can we include some more property in the Options of the iView toolbar such as a "mailto" link or something as "Feedback" which wil open up the Mail Client.
    Or something else, basically any new link with some functionality associated?
    3)I did the same kind of modification of changing the properties files on the appintegrator PAR file where it shows the message of "No Usermapping done.." if you havent done the UserMapping for a System and then trying to access the iView based on appintegrator...uptill here.its OK..i can modify the text to display my custom Text. But my req. is that can i display formatted Text here?
    Such as a messge in 2 lines or some bold word etc. If i press enter in the message,it still appears in a single line and with \n\t...\n\t also gets displayed
    Regards
    Gaurav Gandhi

  • Translation of tooltip text for push button in status bar

    hi experts,
    I need to translate tooltip text of status bar push button from english language to  German . I am trying it using transaction SE41  Goto-> Translation . But it is not working . Please tell me the exact procedure to translate it , elaborately.
    Points will be rewarded.
    Thanks,
    Sushant

    Dear Shusant,
                             Create the text element for tooltip text, and translate the text element into German Language from GOTO menu.
    If helpfull give reward point.
    Thanks

  • Header Text for Standard Field

    I have a standard text field in RQEVA structure and field is SGTXT04 ,I want to fetch data from this field using READ_TEXT but for this I m not able to get the Header text information like ID,Name ,Object.
    Please suggest how to get these information for this feld which is in QA11  used for Rejection Reason.

    Its still not working, need ur help
    I just want to tell you one more thing is that the field SGTXT04 is standard text field
    I have written this following code :-
    DATA : begin of IT_QALS OCCURS 0,
    PRUEFLOS like QALS-PRUEFLOS,
    end of IT_QALS.
    data : begin of IT_QAVE OCCURS 0,
    kzart like qave-kzart,
    end of IT_QAVE.
    PARAMETERS: S_PRUE LIKE QALS-PRUEFLOS,
                S_KZART LIKE QAVE-KZART.
    SELECT PRUEFLOS FROM QALS INTO corresponding fields of IT_QALS where PRUEFLOS = S_PRUE .
    ENDSELECT.
    SELECT KZART FROM QAVE INTO corresponding fields of IT_QAVE where KZART = S_KZART .
    ENDSELECT.
    data:
            BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TNAME1 LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
            concatenate sy-mandt IT_qals-prueflos IT_qave-kzart into TNAME1.
            ID = 'QAVE'.
            TNAME = TNAME1.
            TDOBJECT = 'QPRUEFLOS'.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          id       = ID
          language = sy-langu
          name     =  TNAME
          object   = TDOBJECT
        TABLES
          lines    = li_lines.
      READ TABLE li_lines INDEX 1.
      IF sy-subrc = 0.
        header-ld_txt1 = li_lines-tdline.
      ENDIF.
      READ TABLE li_lines INDEX 2.
      IF sy-subrc = 0.
        header-ld_txt2 = li_lines-tdline.
      ENDIF.
      READ TABLE li_lines INDEX 3.
      IF sy-subrc = 0.
        header-ld_txt3 = li_lines-tdline.
      ENDIF.
      WRITE:/ header-ld_txt1.
      WRITE:/ header-ld_txt2.
      WRITE:/ header-ld_txt3.
    Edited by: Nishantbhargava on Aug 1, 2011 9:30 AM

Maybe you are looking for

  • Bind Pivot SelectedIndex causes app random crash in WP 8.1 universal app [MVVM Light]

    I have an universal app for WP 8.1 with a page and a Pivot in it. The "SelectedIndex" property of the pivot is bind to a property in the VM like this (code in MainViewModel.cs): public object SelectedPivotIndex get { return this.selectedPivotIndex; }

  • Cisco Catalyst 2955 Causes Some Devices to "Die" During Boot

    I posted this question in the LAN section of the forums, but I realize this is probably the proper forum for my question. I have recently purchased a Cisco Catalyst model WS-2955C-12 switch. During POST (boot), the console reports that the switch und

  • BEX Exception with NetStream

    Hi, We have a flex component, which need to simultaneously stream upto 16 CCTV camera streams. We are using  a Media Server(Wowza) to convert the RTSP stream to RTMP and display in flex. Initially we tried the video display component, available with

  • WLC MOBILITY GROUP SINGLE WEB AUTHENTICATION

    Hi. I have installed two AIR-WLC2112 with mobility group configured and authentication web. I want to know if you can create user / password web authentication only in one  WLC. Now, when I create a new user / password , I have to create in two WLC.

  • Maxl Start up problem

    Hi All, I am using system 9.3.1. essbase ( Windows 2003 server). When I tried to open maxl in command prompt (essmsh) I am just getting a pop-up which dissappears in seconds. I started essbase server, adminserver. I am able to write commands in Maxl