How to change the theme of discussion application dynamically?

We have a requirement such that we should be able to change the theme of owc_discussion application based on user locale. e.g. if the locale is arabic I want to display the forum UI rendered right to left.
We will have separate categories or communities to cater to people from different locales. Which means that as soon as user clicks on the category url the theme should be dynamically changed. How can we do this?
-Pratap

Hi
You can create and use your custom themes but I am not sure exactly about your requirement, please check OWC Discussions admin guide for custom theme.
Regards
Sumit

Similar Messages

  • How to change the direction of my application ?

    apex 4.0 , db11gxe , firefox 24 ,
    hi all,
    how to change the direction of my application from left to right to right to left of vice versa ?

    newbi_egy wrote:
    sure i did , i found nothing ,
    provide me with a link if you have one
    thanks
    Hi,
    That's strange.
    Search works just fine for me
    https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=rtl&rankBy=relevance&contentType=all&con…
    Regards,
    Jari

  • How to change the theme in the default profile so new users get a different theme

    How can I change the theme (background picture, etc) for the default profile, so that when new users log in and get a new profile created, they get a different theme than the one they currently receive?

    Hi,
    If you want to get a different theme for new users, based on my understanding, it’s not easy, we can load the specific theme for all user because we can control OS to load this specific theme file.
    The default location of theme file is:
    C:\Windows\Resources\Themes
    To configure OS load different theme for different user, I think this cannot be controlled by a registry key. It’s complicated to make OS choose different theme pack for different user, even more, the theme pack files are limited.
    Here is some different but similar discussion about changing theme programmatically:
    How do I change the current Windows theme programatically?
    http://stackoverflow.com/questions/546818/how-do-i-change-the-current-windows-theme-programatically
    Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • How to change the text of a button dynamically in module pool

    hi gurus,
    how to change the text of button dynamically

    Hi ,
    Declare a variable in TOP Include with your button name.
    Example : P_BUTTON(20) TYPE C.
    Place button with name P_BUTTON on you screen. Do not forget to mark it as "Output Field". [ Double click on button, Attributes --> Program tab --> tick "Output Field".
    In you PBO / PAI , whereever you want to change your text -
    Assign value to P_BUTTON.
    Example -
    iF COND1..
    P_BUTTON = 'EDIT'.
    ELSEIF COND2.
    P_BUTTON = 'DISPLAY'.
    ENDIF.
    Regards,
    Mohaiyuddin

  • How to change the attributes of screen fields dynamically

    <b></b>
    well i have created a table by name empmaster_data with following fields.
    *emp_id.
    *emp_fname.
    *emp_lname
    *dob.
    *doj.
    *dept.
    *desig.
    now using a single screen i want to create,change and display the information.even i am using save and exit button.
    now i want to change the attributes of screen fields dynamically like active,input,output,invisible.

    Hi,
    Have Different Radio Buttons for the purposes what you have and use AT Selection Screen Output, Under the event Use loop at screen and with continue with your requirement.
    Hope This Info Helps YOU.
    <i>Reward Points If It Helps YOU.</i>
    Regards,
    Raghav

  • How to change the font of java application?

    Hie... I have created a simple java application. Now , i need to change the font to my native language (Nepali Unicode), ie, i want to change the font of the buttons and message box to Nepali? Can anyone help?

    Component.setFont(...)

  • How to change the display limits of a dynamic table?

    Hi folks,
    I'm using DW CS4 and PHP. I've got a php page with a dynamic table and repeating region that I built for my client. This table lists our entire active member list. Initially I built the dynamic table to show only 50 records at a time because 300+ records made an overly long page. Now my client wants all the records on a single page, because he doesn't like clicking through the recordset paging of First - Next - Previous - Last list to find who he is looking for. I tried changing the Repeating Region behavior to All Records (rather than 50) but it still displays only 50. I'm sure this is because initially when I set up the dynamic table, I limited it to 50 there. Is there an easy way to change the dynamic table from 50 to All Records, without rebuilding the entire page? I've looked in several places and can't find a way to edit this. Thanks for your help,
    Gail

    Gunter,
    Thanks for your continued help on this forum. You have made people's
    work a lot easier and stuck with them through some thorny issues.
    If I may redirect you to an issue I had a few months back - the initial
    posting was here at:
    http://forums.adobe.com/thread/767154?tstart=300
    I couldn't turn the answers I received into a workable solution. Would
    you be willing to take a look at this?
    Thanks again for your help,
    Gail

  • How to change the height of a folder dynamically?

    Hello everyone!
    I have a detail, I want to make when selecting a tab of a folder, this change in height, then select another tab to return to its original height.
    I'm trying so:
    Private Sub Folder5_ClickAfter(sboObject As Object, pVal As SAPbouiCOM.SBOItemEventArg) Handles Folder5.ClickAfter
                oForm = Application.SBO_Application.Forms.Item(pVal.FormUID)
                oForm.Freeze(True)
                Me.Folder5.Item.Height = 298
                Me.Folder3.Item.Height = 298
                Me.Matrix1.Item.Height = 263
                Me.Matrix0.Item.Height = 113
                Me.Matrix0.Item.Top = 345
                oForm.Freeze(False)
    End Sub
    But I would not change the height of the folder (it does with the other elements).
    Before:
    After:
    Any suggestions?

    Already achieve that works to change the height of a tab, do not change the folder specified, change the height of the GROUPER containing folders.
    It worked like this:
    Private Sub Folder5_ClickAfter(sboObject As Object, pVal As SAPbouiCOM.SBOItemEventArg) Handles Folder5.ClickAfter
                oForm = Application.SBO_Application.Forms.Item(pVal.FormUID)
                oForm.Freeze(True)
                oItem = oForm.Items.Item("Item_32") 'This is the ITEM_ID the GROUPER containing folders
                oItem.Height = 298
                oFolder = oItem.Specific
                Me.Matrix1.Item.Height = 263
                Me.Matrix0.Item.Height = 113
                Me.Matrix0.Item.Top = 345
                oForm.Freeze(False)      
    End Sub

  • How to change the position of a rectangle dynamically

    Hi,
    I am designing a form, where the position of a rectangle has to be changed dynamically. I'm trying with Set_Item_Property(Position property). But I'm unable to change the position. I need some information regarding this graphics object. Normally, we attach block name with the items. Then for these graphics object, what will be attached. I'm using Forms 6i version.
    Regards,
    Alok Dubey

    you can use a stacked canvas with the rectangle in it. Then you can change the position of the canvas at runtime. Problem is, that the canvas overlaps objects...

  • How to change the select options selection text dynamically in webdynpro abap ?

    I am using standard interface WDR_SELECT_OPTIONS.... i want to change the Selection text dynamically in my select options.I.E. if the select option is for VBELN field than i want to change its description SALES ORDER Number through Code to some other text.
    If anyone can please help me in this.

    Hi,
    You can achieve your requirement as below
    Get the range table of your selection field as below
              data lt_range_table type ref to data.
              wd_this->m_handler->GET_RANGE_TABLE_OF_SEL_FIELD(
                        exporting
                        i_id = 'VBELN'
                        receiving
                        rt_range_table = lt_range_table ).
    Update the selection field with new description - 'Your New Text'
              wd_this->m_handler->UPD_SELECTION_FIELD(
                        exporting
                             I_ID = 'VBELN'
                             I_DESCRIPTION = 'Your New text'
                             I_IS_AUTO_DESCRIPTION = abap_false
                             IT_RESULT = lt_range_table ).
    You can also pass the other parameters as per your requirement
    Hope this helps you.
    Regards,
    Rama

  • How to change the location of "Mobile Applications" in iTunes Library?

    Hi,
    Arch: PC i686
    OS: WinXP-Pro
    iTunes: 8.0.2.20
    I'm trying to move my "Mobile Applications" folder away to another drive to save some space because there's a quota problem on my C drive. However after searching I only found how to move 'Music Folder' away instead of the entire iTunes library.
    My understanding is iTunes needs (maybe hard-coded?) its library at "My Documements\My Music" to store the db and xml files. For potentially large music files, the "iTunes Music" can be moved away (pointed to another location).
    My question is can this also be done on "Mobile Applications" folder?
    The most desirable solution for me is to be able to create a single library folder on my external drive, and I can choose which library to connect/sync to in iTunes on different computers. Could you please advice how?
    Many thanks,
    Alex

    Move the itunes Library.itl file to your exHD.
    Then to get itunes to start using it from that new location, press *and hold* the shift key while starting itunes. Choose "use existing library" and browse out to the ITL file that is now on the exHD.
    Future app downloads will go to the Mobile Applications folder created there. It will also start downloading the itunes store artwork to the exHD.
    You can try downloading a free app to test it.

  • How to change  the title of a screen dynamically

    hi,
    i have a screen , which will be called repetedly for different set of groups.
    i want to display the group name as title .
    how can i handle this
    Regards,
    Sarath P

    Hi,
    When creating Gui title use placeholders(&1, &2 etc) in it.
    *For example : * Change PO &1 by &2
    And while setting title bar use WITH addition as;
    lv_po = '40000023'.
    lv_user = 'SAPABAP'.
    SET TITLEBAR 'TIT1' WITH lv_po lv_user
    Now in the title bar it will display as;
    Change PO 40000023 by SAPABAP
    Regards
    Karthik D

  • How to change the attribute names of viewobj dynamically?

    I have a table with columns eg.:
    productlineID, month1, month2, month3....
    Then I have a view object created for this table, and I would like the column names month1, month2,... to be changed dynamically from another query to get the current month (eg. 200011), such that month1 becomes 200011, month2 becomes 200012, month3 becomes 200101 etc... to make the jsp page for browsing and editing the records display the column name correctly, and also the element tag of the XML output by XMLData bean. I'm using JDev 3.1.1.2. Thank you in advance.

    five years after nobody has solution to this and I am posting same question.... interesting...

  • How to change the mode of a file dynamically?

    i want to delete a .class file which has been created dynamically...
    when i tried to delete it .. its prompt access denied message..

    guys i want to clear my question once again..
    i have created one java file dynamically..and after that i m compiling that new create java file..
    suppose i have created temp.java file and after compilation temp.class has been created ..
    after doing some operation i want to delete that temp.class file .. it has some access denied prob.
    again i m modifing temp.java file and once again i want to compile it.. but at second time no temp.class has created..
    ie. its not compiled.. as like earlier..
    here is my problem either i have to delete temp.class after some operation .. or once i will modified temp.java file it should compile..
    but second time its compiling..
    i have used Runtime.getruntime.exec("javac temp.java");

  • How to change the Oracle Server Hostname

    Good Day every one,
    Am working on Oracle Application 12.1.3
    And Database 11.2.0.3
    And OS RedHat linux 6.1
    I want to change the Server host name how can I do this in simple steps ?
    Is there is any pad impact on my server or application ?
    Regards

    Please also see:
    How to change the hostname and/or port of the Database Tier using AutoConfig (Doc ID 338003.1)
    How to change the hostname of an Applications Tier using AutoConfig (Doc ID 341322.1)
    Or, use Rapid Clone.
    Rapid Clone Documentation Resources For Release 11i and 12 (Doc ID 799735.1)
    Cloning Oracle Applications Release 12 with Rapid Clone (Doc ID 406982.1)
    Thanks,
    Hussein

Maybe you are looking for