OBIEE Promts Customization and Color,Size (Just one file)

By default, prompt button name will appear as follows:
Now Button Name Go has to change to desired Name
•     Navigate to {OracleBIDir}:\oraclebi\web\msgdb\l_en\messages
•     Open globalfiltermessages.xml file (before opening this file, you better take backup of this file)
•     Locate the following text
<WebMessage name="kmsgGFPGo"><TEXT>Go</TEXT></WebMessage>
•     Edit the text ‘Go’ to your desired text. ---Here I am editing it to ‘Search’
<WebMessage name="kmsgGFPGo"><TEXT>Search</TEXT></WebMessage>
For Color and Size for all promts
•     Navigate to {OracleBIDir}:\oraclebi\web\msgdb\l_en\messages
•     Open globalfiltermessages.xml file (before opening this file, you better take backup of this file) --Locate the following text
<WebMessage name="kmsgGFPGo">
- <text>
FONT COLOR="blue" size="25" bgcolor="#003300">Search</FONT>
</text>"
</WebMessage>
•     Save the changes to file
•     Restart Presentation service
Edited by: user9198108 on Feb 21, 2010 11:50 PM

First of all use the CustomMessages folder when editing the MSGDB:
http://obiee101.blogspot.com/2008/09/obiee-setting-up-custommessages-folders.html
Secondly: Why edit the MSGDB when you are doing CSS Work?
http://obiee101.blogspot.com/search/label/CSS
Thirdly: And you question is?
regards
John
http://obiee101.blogspot.com

Similar Messages

  • How do i open just one file at a time

    i just got lightroom 4.  how do i open just ONE FILE??  i don't want to open catalongs, backup files, create smart collections auto import or any of that.  i just want to open one file at a time

    jared54 wrote:
    i just want to open one file at a time
    You want Photoshop or Elements and use the ACR plugin. Lightroom is the wrong application for you; square peg in a round hole and all that.

  • Suddenly I cannot select just one file in a folder, all of them get selected at the same time.  Happens in Lightroom also when scrolling through the filmstrip. what did I do?

    My Mac Pro is acting wonky all of a sudden. This all began after someone in my family spilled water on the keyboard and tried to clean it up while still turned on. I bought a new keyboard but now I cannot select just one file in a folder, all get selected. Same thing happens in Lightroom 3 when editing in the filmstrip mode, I cannot just select one photo, they all get selected. Plus, after awhile I cannot type in small letters either, just capitals. If I restart it is ok for about 15 minutes then the problems start. I did a reinstall of the OS but it is still happening. I zapped the pram, fixed permissions, etc but no luck. I am on a 2x2.4 GHz Quad-Core Intel Xeon machine with 900 gigs unused. Any suggestions? 

    Try also resetting smc.
    Also check your keyboard preferences.  And just to possibly reset some keyboard related caches and prefs you might go through the "Change Keyboard Type..." (Keyboard tab in the Keyboard preferences).

  • HT4623 I have updated my iphone 5 with IOS7. Now there is an update 7.0.2 on my cell and the size of update file is showing around 21.0 MB. I tried to update it ITunes but it seems it is downloading the entire IOS. Is there any separate update for the sam

    I have updated my iphone 5 with IOS7. Now there is an update 7.0.2 on my cell and the size of update file is showing around 21.0 MB. I tried to update it ITunes but it seems it is downloading the entire IOS. Is there any separate update for the same or I have to download the entire IOS again?

    Well when you download the update with iTunes it will always download the whole new version (in your case 7.0.2) even if its just an bug fix. If you already have 7.0 download the update over-the-air.
    You already wrote that the update is only 21 MB, so its not the whole firmware package of 7.0.2 you get with iTunes.

  • How to include several PDF documents into just one file?

    I have a Word document with 6 pages that I saved in PDF.
    I wanted to transform the entire document in JPEG (JPG) immage, so that I could use it in other tools, such as Facebook for example.
    The problem is that using Adobe Photoshop it opens and saves page by page.
    Can you give me s solution or hint?
    Flavio
    [email protected]

    Thank you!
    I already saved all pages as .pdf w/ Acrobat and have all 6 pages saved in
    .jpg, using Photoshop.
    Problem is that I want to post the whole text in my Facebook page, and to
    have it in six pieces is not quite readable...
    Thanks anyway and have a joyful Xmas!
    2011/12/24 try67 <[email protected]>
       Re: How to include several PDF documents into just one file?  created
    by try67 <http://forums.adobe.com/people/try67> in Adobe Reader - View
    the full discussion <http://forums.adobe.com/message/4102594#4102594>

  • How do I put a DVD in and transfer it as one file to my external?

    How do I put a DVD in and transfer it as one file to my external?

    What you are referring to is called "ripping".  You can use something like HandBrake which is free to do this.  HandBrake will not allow you to do this with commercial / encrypted content (e.g. most movies which you might purchase on DVD). 
    http://handbrake.fr/

  • I have a question about the new version of itunes. in the old version at the bottom of the sceen it display the total number of media and the size of the files. how can i get the new version to diplay this?

    in the old version at the bottom of the sceen it displayed the total number of media and the size of the files. how can i get the new version to diplay this?

    You're welcome. It was frustrating for me as well until I stumbled across "the fix"

  • Can anyone help me write a code about coping data from many files and paste them to one file !?

    Hello ! 
    As I said in title , I have alot files (e.g. 60 files) and I want to write a code to copy 5 columns (for examples) of special sheet of files and paste them in one file respectively. For perceive it I explained it more below .
    Suppose one of my files is simplified as this : http://s000.tinyupload.com/?file_id=00699705919876414523
    The name of  this file is 2006Oct and assume my excel files are like "2006Oct, 2006Nov,2006Dec,2007Jan ... 2010Dec". At first I should go to "my files" sheet of 2006Oct file and copy columns " A,B,C,D,E,F " that has "PerturbationNumber=1"
    respectively and then paste these to a file that is output file and repeat this process for the other files ( 2006Nov and etc ) and paste data in output file sequentially. 
    I appreciate and look foreward for any help in this issue.
    Majid

    Try code below
    Sub CombineBooks()
    Dim wb As Workbook
    Dim sourceSht As Worksheet
    Dim destSht As Worksheet
    Set destSht = ThisWorkbook.Sheets(1)
    destSht.Cells.Clear
    FolderName = "C:\temp\test\"
    file = Dir(FolderName & "*.xlsx")
    firstSht = True
    Do While file <> ""
    Set wb = Workbooks.Open(Filename:=FolderName & file, ReadOnly:=True)
    Set sourceSht = wb.Sheets(1)
    With sourceSht
    sourceLastRow = .Range("A" & Rows.Count).End(xlUp).Row
    If .Cells.AutoFilter Then
    .Cells.AutoFilter 'turn off autofilter
    End If
    .Cells.AutoFilter Field:=6, Criteria1:="1"
    If firstSht = True Then
    Set copyRange = .Range("A1", .Range("E" & sourceLastRow)).SpecialCells(xlCellTypeVisible)
    destSht.Range("F1") = "FileName"
    firstSht = False
    destNewRow = 1
    Else
    Set copyRange = .Range("A2", .Range("E" & sourceLastRow)).SpecialCells(xlCellTypeVisible)
    destNewRow = destSht.Range("A" & Rows.Count).End(xlUp).Row + 1
    End If
    copyRange.Copy Destination:=destSht.Range("A" & destNewRow)
    LastRow = destSht.Range("A" & Rows.Count).End(xlUp).Row
    If destNewRow = 1 Then
    destSht.Range("F2:F" & LastRow) = file
    Else
    destSht.Range("F" & destNewRow & ":F" & LastRow) = file
    End If
    End With
    wb.Close savechanges:=False
    file = Dir()
    Loop
    End Sub
    jdweng

  • Writing LabVIEW measurements of two loops (Charge cycle and discharge cycle) in one file

    Hey,
    I was wondering if it is possible to write Labview measurements from two loops (Stacked Sequence Structure) into one file. Currently, it is writing the charging data in one file and discharging data in one file. I have to combine the data everytime to graph the charge and discharge cycles and sometimes there's about 50 cycles and copying and pasting does take up lot of time. 
     I'll try to upload my vi in a bit
    Solved!
    Go to Solution.

    Hey Mike,
    I'm very new to Labview, could you please show an example.
    btw, I attached my vi and I didn't build it
    Message Edited by Support on 07-15-2009 11:27 AM

  • HT204053 I have 2 Apple ID's one billing account. I wanted to keep just one Apple ID and transfer my music and account into just ONE. How can I do that?

    This device is old. No color...really. iPod 20GB HP Click wheel. Need to have just 1 account instead of 2 apple id's with just one billing account. 

    Welcome to the Apple Community.
    Unfortunately, you cannot transfer data from one account to another or merge accounts.

  • I have 2 or 3 account and I want just one, help me...

    I have 2 or 3 account of skype with one email, I don't know exactly how much because I test many time, why is not possible to delete all and have just one, if exist a method for that, please contact me, thanks

    Click here for information.
    (104507)

  • Evevy song i have is duplicated, i try to delete the old one, but if i do, the new one dissapears also, i saw at the explorer window and every song is just one file

    My library is duplicated, i did what the support suggest but if i delete the old song the new one also dissapears, i reviewed the windows file and only appears one file, i try to find an answer but do not have yet any.

    I've written a script called DeDuper which can help remove unwanted duplicates. See this  thread for background.
    tt2

  • How do I bring back just one file?

    I have been using Time Machine for years. Now, I want to find just one or two photos. I think the photos are in one of the past iPhoto librarys but when I try to access the library I get a message that I cannot because it's not the current iPhoto library or something like that? Should I just restore that entire time machine set and go from there. I am only trying to bring back one or two photos.
    How do I do this?

    See the pink box in #15 of [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of this forum).

  • IO - Read two image files and put them into one file

    Hi,
    i have 3 files in all. The two image files and one text file. I need to place the image in the first image file, followed by text in the text file and then the image in the second image file, into one file.
    Can anyone tell me how do i go about doing this ?
    i tried using fileinputstream and fileoutputstream, which works fine if all the 3 files have text but when the first and the third file have image, the code doesn't give any error but the result file displays only the image from the first file and nothing else.
    i am running short of time and need to do this really soon.
    if anyone has done anything like this. please let me know,
    thanx,
    poonam

    One approach would be to programmatcally create a single zip/jar file from the three input files. You can use the java.util.zip and java.util.jar packages for this purpose.
    The other apprach would be to create a single image by drawing images and text strings on a BufferedImage object.
    I think the first approach is preferable because you can easily extract the individual files from the zip/jar file

  • Can i pull just one file off time capsule?

    I have successfully used my airport time capsule to transfer all information from my old Mac to my new Mac but somehow in the new iTunes update, I lost a video located in home movies. Is there a way to go into time capsule to retrieve only one file? Fortunately I had another external hard drive back up and was able to get this one, but wondering if I should keep using another external hard drive as a second back up.

    Files that are held in libraries cannot be recovered without recovering the whole library.. that is not the fault of Time Machine or the TC.. it is the way apple structure its files now.
    See the info from pondini on restoring files.
    Q15 here.
    http://pondini.org/TM/FAQ.html
    I think in our present state of affairs with TM becoming less than reliable.. I would encourage everyone to use a bootable clone.. eg Carbon Copy Cloner which will hold the files in the identical manner to your hard disk.. if a file is lost from your hard disk boot from the clone and you can then extract it from the library.. but it works differently and so changes will be made to the backup as they happen on the computer.. therefore it is important to also keep libraries in separate backups.

Maybe you are looking for

  • Creative ALchemy Guide and FAQ

    Hi everyone,? I have decided to include this for the benefit of those who are new. Creative ALchemy al-che-my [al-kuh-mee] ~ any magical power or process of transmuting a common substance, usually of little value, into a substance of great value. - D

  • No video in quicktime with windows vista

    so, im trying to add video to my ipod so im told i have to buy quicktime pro, so i do. now it won't even play anything to convert it to anything to play on.. well anything. some files will play sound but no video, others will play nothing at all. its

  • Report of Period Closure

    Hello, We normally close the posting period in different dates like Materail - last working day of the month, Vendor -6th etc. I would like to know, is there any report to know when the period is closed  for last one year Regards Anilkumar

  • Two fields, two scripts. User can enter data into field 1 or 2

    Hi all, New here, and to acrobat forms, so please bear with me! What I'm trying to achieve is a form that calculates total invoice value, based on a total number of hours worked, and a rate. The user fills in the total hours, but then the problem is

  • Ibooks author developer

    Is there any iBooks Author developer out there for hire? I am planning to develop a children picture book ibooks-author ibook and I need someone to help create it. Please let me know if interested.....