Change text of 'Overall Result' to Custom text in BEx

All,
Is it possible to change the text 'Overall Result' to custom text (say, Total) in the BEx analyzer.
Pls let me know if you need more detail on this.
Regards,
Anand

Hi,
Check Link:
Cannot find SAPBEx module
Note:
If you are using BEx Analyzer (i.e., queries are implemented in Excel workbooks), then you can change this using Visual Basic code written in the SAPBEX module.
Anything put in this module will be executed just after query is refreshed and just before the user sees the results.
Here is code you might use:
Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
On Error GoTo EndMacro
Application.ScreenUpdating = False
Application.GoTo reference:="SAPBEXqueries!" & queryID
Selection.Replace What:="Overall Result", Replacement:="Whatever You Want" _
, LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False
EndMacro:
Application.ScreenUpdating = True
End Sub
Hope it Helps.
Thanks and Regards,
MuraliManohar.

Similar Messages

  • Using javascript to change the "Overall Result" cell in WAD

    Hi experts,
    I am trying to use javascript to change the text of the "Overall Result" cell in my web template using BI 7.0. I am not familiar with javascript, but I this is what I have done so far.
    I dragged the web item "Script" into my web template and I inserted the following code:
    function change_overall_result_to_average() {
    var cell = document.getElementsByTagName("TD");
    var cellText;
    for (i = 0; i < cell.length; i++)
          cellText = cell<i>.innerText;
               if (cellText == "Overall Result")
                     cell<i>.innerText = "Average";               
    In the XHTML view I am using added the onload function to start the javascript every time the web template is loaded. The code works fine when the web template is first loaded and the cell text is changed to "Average". However, if I navigate in my web template, the javascript function is not triggered, and the cell is therefore changed back to "Overall Result". For example, this happens when I pick another selection from one of my dropdown boxes, such as changing the selection from year 2008 to year 2007.
    I don't really know how to solve this problem in an easy way, and the current solution is not good enough. I hope one of you guys can suggest an easy way of fixing this:-)
    Best Regards,
    Morten

    Woodstock apparently renders some Javascript/DOM with some homegrown widget framework which on its turn renders the HTML DOM tree instead of plain vanilla HTML. Correct me if I'm wrong, to confirm this, just view the generated HTML source of the page.
    After some Googling I found out that you need getProps() and setProps() to get and set element attributes respectively.
    [http://google.com/search?q=webuijsf+domnode+site:sun.com].
    If you stucks with this, I recommend you to post this question at a forum or mailinglist devoted to Woodstock, e.g at their own homepage at dev.java.net or the Netbeans forum at nabble.com. You're here at a Sun JSF forum, not at a Woodstock forum.

  • Modifying the text "Result" and "Overall Result" in a BEx query output

    Hi,
    1) Is it possible to modify the text "Result", "Overall Result" which appears in the sub-total and grand total lines of BEx query output? I do not see any related setting the properties area of the object in BEx Query designer. Do I have to write some VB code or can I do something in Customer Exits?
    Also my client wants that this text need to be made dynamic such as "Sub-Total for the month of Jan 2006".
    I can use work book option and change the texts manually.But this is not meeting my clients requirement.
    2)Is it possible to have dynamic title text for a BEx query?
    We are on BW 3.5 & if any of you could provide / guidance to the above issue.
    Thanks,
    Venkatram

    You will have to use VB Macros to change the text "Result" and "Overall Result", there is not settings in the query designer for the same.
    You can have dynamic descriptions for queries using text variables like Expense Query for month of Jan 2006, if user selected Jan 2006.
    Thanks.

  • Is it possible to change the OVERALL RESULTS to TOTAL?

    Hi Guys,
    When we select a field and in the properties of that field select the option Always Display Results row the query displays the total for that field but the text for the total is shown as OVERALL RESULTS. Is it possible to change that to TOTAL instead of overall results?
    Thanks

    Hi,
    There is one SAP note available to change text of Result and Over all result to some other text. You can search that note in service.sap I dont have it with me.
    But the yeast is if you change that it will be applicable to all the reports and it will change the text for all the reports. In order to change it at report level you may wanna use work-book. Not sure what is the solution if you are using web-templates.
    Regards,
    Akshay

  • How do I change text within a paragraph in VB-script?

    I am having some problems with changing the text inside a paragraph without affecting the styling of other paragraphs. It may be that I am using a wrong approach to changing existing text, I don't really know.
    As an example, I have the following two paragraphs inside a table cell:
    12
    35
    These two paragraphs have different paragraph styles applied to them.
    If I now change the contents of the first paragraph to a 1 digit number, the style of the second paragraph changes to the same style as the first one.
    Paragraph1.Contents = "4" & Chr(13)
    The text is correct after the change, but the styling on the second paragraph is wrong:
    4
    35
    I have also tried using Paragraph.Lines(1).Contents and Paragraph.Texts(1).Contents, but the result is the same.
    Is there any way of changing text inside a paragraph, which ensures that noting other than that text is affected?

    Hi Frank,
    The problem is occurring because you're effectively removing the paragraph end by replacing the entire contents of the paragreaph. You want to use the Characters collection and the ItemByRange method so that you can leave the paragraph end untouched.
    I'm pretty sure it would look something like this though I haven't tested this:
    Set SChar = Paragraph1.Characters(1)
    Set EChar = Paragraph1.Characters(-2)     'giving you the 2nd to last character.
    Set TxtToDel = Paragraph1.Characters.ItemByRange(SChar, EChar).
    TxtToDel.Delete
    Then you can set Paragraph1.InsertionPoints(1).Contents to the new text.
    If the ItemByRange doesn't work you can always loop through the character collectoin and delete all but the last characters in the paragraph.
    Good luck!

  • Changing text within frames without adding space at bottom

    Anyone know if there's a method for changing text within frames so that the successive text automatically flows into position without creating blank space at bottom of that current or a subsequent frame?

    Peter,
    You can combine the discussions if you want.  I actually deleted a sentence beginning the second discussion explaining that it was related to the first.  I thought it might impede the discussion.
    Let me describe my problem more completely.  I'm adjusting a book that was carefully crafted using frames for each page so that the text extended to the bottom of each page (frame).  This often splits text within a paragraph between two pages.  This was done so that the customer doesn't feel they are purchasing any blank space and for the aesthetic purpose of filling each page with text.  The only exception is the beginning of new chapters or sections.
    The problem is that I want to change a word here and there in preexisting paragraphs.  When I do, space often one-third the page length is generated at the bottom of a page (frame).  To fill that space and extend text to the bottom of the page again requires -given my current understanding of options- selecting the paragraph (beginning on one page and completed on the second) that has become interrupted by the blank space and performing a "keep lines together" option.  Unfortunately, this usually generates new blank space on a subsequent page, requiring a new "keep lines together"; in a seemingly unending regress of this procedure.
    What I require is a method enabling me to add text within a paragraph that will avoid the generation of the blank space by flowing the subsequent text (composing one or more paragraphs and splitting a paragraph between pages if required) to the end of the page; completely filling the page without requiring any use of "keep options" or whatever.
    Richard

  • Can't change text once I've finalized it!

    I've been using Photoshop for years, so I know all the basics.  And I've never run into this before.  I created a document with text boxes and images.  Everything was fine to that point.  But when I went back to re-word the text boxes and change text color, I could not do it.  I tried everything:  be sure that layer is selected, be sure I have the type tool enabled, and click somewhere in the existing text.
    Nothing doing.  No matter what I did, it insisted on starting a new text layer.  I could not access the text itself to change it.
    I could transform it or move it but it will not let me change the text itself or the text color.
    I'm using the PS cloud version and running Windows 7.
    I ran into this a few weeks ago, and rebooting my computer solved the problem -- or so I thought.  Apparently it didn't solve it permanently.
    Help, please!  This was due yesterday and my client is understandably not amused.
    Thanks.

    Now I can change text in any text box except the one titled "spinetext", which is highlighted in the layers panel.  Obviously I'm doing something wrong, but I've designed a lot of these covers, and never had trouble changing the spine text before.
    I finally had to recreate that layer in a new document and import it into this one -- but the text remains unchangeable in this layer.
    (For what it's worth, "Layer 1" is the template, which I turn off when I have inserted all the elements, so it has nothing to do with this layer.)
    Thanks for your help!

  • Why am I unable to change text color from black in LR5 book module?

    Why am I unable to change text color from black in LR5 Book Module?

    I'm assuming you clicked on the color patch besides the word <Character> to open the color picker window.
    At the right side of this window there is a vertical bar that has 2 horizontal black lines at the bottom.
    This is actually a slider. Pull it upwards with the color picker and color will appear in the window.

  • How to change text in PDF doc. which is a musical score

    Hello,
    I'm new here, so please excuse me if I do or say something I shouldn't.
    I need to change the words in a musical score because the font is too small. OCR recognition doesn"t work because there are illustrations that are different from images or text... Is there a way to get in there and make the changes I need to do?
    Any help greatly appreciated.

    Thanks for the reply, but I have Adobe Reader 9 Pro. Will it still not 
    work ?
    Le 29 sept. 2011 à 29 sept. 11 - 16:09, Claudio González a écrit :
    Re: How to change text in PDF doc. which is a musical score
    created by Claudio González in Adobe Reader - View the full discussion
    Unfortunately, not with the free Reader.
    Replies to this message go to everyone subscribed to this thread, 
    not directly to the person who posted the message. To post a reply, 
    either reply to this email or visit the message page: [http://forums.adobe.com/message/3944833#3944833
    To unsubscribe from this thread, please visit the message page at [http://forums.adobe.com/message/3944833#3944833
    ]. In the Actions box on the right, click the Stop Email 
    Notifications link.
    Start a new discussion in Adobe Reader by email or at Adobe Forums
    For more information about maintaining your forum email 
    notifications please go to http://forums.adobe.com/message/2936746#2936746

  • How to change TEXT EDITOR in SMARTFORMS

    Dear All,
    How to change TEXT EDITOR in SMARTFORMS i am getting editor like Microsoft Word but i want the regular editor.
    I am using ECC 6.0 GUI 710
    thanks,
    RP

    Solution By Mr. Eitan Rosenberg is correct.
    Program Name: RSCPSETEDITOR
    Thanks a lot.
    Regards..........

  • I used to have a +.- displayed in upper left corner to click and change text size. My sister used my computer and now I can no longer find this feature.

    I used to have a +.- displayed in upper left corner to click and change text size. My sister used my computer and now I can no longer find this feature

    Do you still have all toolbars visible (View > Toolbars)?
    Did you use an extension or the standard zoom buttons that you can find in the toolbar palette in the View > Toolbars > Customize window ?
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily.

  • How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Simple question whcih i cannot find the simple answer to:  How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Hi Lecia,
    You have several choices.
    Use the first set of controls in the Format Bar. One of these is a Color well (red in the image). Select the cell(s) in which you want the text coloured, then click the well to open its Color palette, and choose your colour.
    Use the Text Inspector. Open the inspector, click the Text button (T), and use the tools there (similar to the set in the Format Bar).
    Press command-T to open the Fonts Window. This offers a few more options than are available in the Inspector or the Format bar.
    Regarding "Help": I'd recommend using the Numbers '09 User Guide, which you can download via the Help menu. Easier to search, and easier reading than the individual Help articles. search 'text color' to quickly get to instructions on applying colour to text.
    Regards,
    Barry

  • How do I change text size in a check box in CS3

    How do I change text size in a check box in CS3?

    While I've never done it myself for a checkbox, components
    have a textField property which is essentially the texfield inside
    the component. You probably need to apply a TextFormat to it to
    change the size.
    But if this involves the same problem you had yesterday,
    where you couldn't change the width of the checkbox, I doubt you'll
    have much luck changing the text size

  • How to Change text of link in SRM

    Hi All,
    How to Change text of link in SRM . The Link is in leftside of the screen in webportal.
    I needs to change the text of link ' Shop' , 'Check Status'  and 'Confirm Goods / Services.
    Kindly helpout me.

    Hi Rob,
    Thanks a lot for reply.
    You are right i am suppose to change in BBPGLOBAL.
    But i am not getting where should i change.I am unable to find the parameter in BPGLOBAL.
    Kindly advise me.
    Regards,
    Vasu

  • How to change text in banners

    How to change text in banners

    drag the template in a new project
    then …
    … click on the tiny grey triangle aside 'Banner01', and 'Banner Group'
    this 'unfolds' grouped content
    select/double click 'text here' ...
    type your text

Maybe you are looking for

  • March's TechNet Wiki SSIS Guru Winners announced!!

    The results for March'sTechNet Guru competition have been posted! http://blogs.technet.com/b/wikininjas/archive/2014/04/17/the-microsoft-technet-guru-awards-march-2014.aspx <- results page! Congratulations to all our new Gurus for March! We will be i

  • Sharing by Photo Mail - no longer works and programme closes.

    I have used Elements 10 for some time, on Windows 7 Home and with Microsoft Outlook for e mail. Have had no problems in the past sending photo's using the Share / Photo Mail option. But problem has arisen "out of the blue", and I can no longer do thi

  • How to save the audio bytes in a file

    I am capturing the audio from microphone.I write the audio data as bytes to other clients.How can i save the bytes in a wav file and it can be played in future?Please help.I want to write the audio bytes in a wav file

  • Migrating Users & Data from a Powerbook G4 to a MBP

    OK, I'm getting a refurb. MBP and I'm going to need to transfer over my stuff from the Powerbook G4 to the MBP. The thing is...both my 400 and 800 FW ports in the Powerbook have ceased to function, so Target Disk Mode will not work for me. I could us

  • Firefox wont load at all due to ATL error message

    When I hit the Firefox Icon and error message comes on say Uniode Error AtL80.DLL and it even try to load because I can't get the error message to close. I have to shut my computer down and when it comes back up and try again.,, the error message is