Oracle Portal in other Languages

We are running Oracle Portal 9.0.4.1, we are trying to explore Oracle Portal in other languages, Can you please share which all languages can Portal be implemented? Documentation if any and other useful information.
Regards
Murali

Hi,
To achive text in like italian language you need to click on globe icon in application and there you have to put particular italian version of english taxt and then that particular line will show in italian.
Hope this might help you.
Thanks,
Vishal Joshi

Similar Messages

  • Adding languages to Oracle Portal

    Hi,
    I would like to use languages that are not directly supported by Oracle Portal (Croatian in this case). Is it possible? Could someone direct me to the relevant documentation.
    Thanks,
    Ivica

    Hi,
    I'm using Oracle Application Server 10g Release 2 (10.1.4) and want support for URDU language in Oracle portal.
    Here is a post that describes how to install an unsupported language translation into the Portal
    Re: 11 steps to install an unsupported language translation into the Portal
    Please advise how I should proceed to install Urdu language support for Oracle Portal.

  • Oracle portal 9 and oracle webcenter and SSO

    dear team.
    we have oracle portal 9 and oracle webcetner in my orgnization. both have different usernames/passwords. is there a way to have only one single username/password (webcenter ones) how can i do that. or even can we implement SSO thrugh windows login.
    is there a way to intergrate both in a way to have only one username/password for both.
    any hint will help as this topic new to me.
    fadi

    They are separate products.
    Oracle Weblogic Portal and Oracle Portal 11g

  • How to incorporate a Language that is not supported in Oracle Portal

    Hi,
    I want to know the preferred way to add support for a new language in Oracle Portal.
    If a language is not supported in Oracle Portal, how I can add the content for that language in the Portal?
    Please advise.
    Best Wishes.

    I've seen this in a statement of direction presentation as an enhancement for R11. So this should be a R11 feature. In the meantime you might investigate the NLS views and tables and try to find a way to extend this. BUT just in an emergency case and you have to know that is not supported (also you may lose support in general for this installation when hacking the repository). So I cannot recommend this with a clear conscience. You have to know exactly what you're doing.
    You can also open a SR to get an official statement from support. Maybe there's a note for this.

  • Oracle Portal - charts language problem

    I'm using Polish Oracle Portal 3.0 with database 8.1.7. OS is w2k Professional (Polish version). I can't force it to display Polish letters in charts (as subscribes), but !! anywhere else I can write anything I want using Polish language and its O.K. Now I don't know if it's a bug or my fault...

    Type mistake in above response - Please read it as follows -
    1.What kind of text you are displaying as subscribes ( data fetched as result of SQL query or some other text)?
    2.Where are you displaying this text as subscribes in the chart?
    null

  • How to analyze the navigation flow in Oracle Portal, Number of unique users, downloads and other estastisticas of use of the Portal and Documents

    Dear
    Experts, I have a very exciting demand, the board of a customer.
    I need to create an analytical application on Oracle Portal, UCM, Spaces, WebCenter, to inform me which quantitatively pages, url and documents are accessed.
    How to analyze the navigation flow in Oracle Portal, Number of unique users, downloads and other estastisticas of use of the Portal and Documents?
    I thought I'd create a ods with the data of Content Tracker and Google Analytics, and model the analysis through the BIEE.
    I ask, what is the standard solution that is used in these cases?
    Thank you
    Miki

    Dear
    Experts, I have a very exciting demand, the board of a customer.
    I need to create an analytical application on Oracle Portal, UCM, Spaces, WebCenter, to inform me which quantitatively pages, url and documents are accessed.
    How to analyze the navigation flow in Oracle Portal, Number of unique users, downloads and other estastisticas of use of the Portal and Documents?
    I thought I'd create a ods with the data of Content Tracker and Google Analytics, and model the analysis through the BIEE.
    I ask, what is the standard solution that is used in these cases?
    Thank you
    Miki

  • Oracle Portal Supported Frameworks? (struts,jsf,ajax or any others)

    Hi All,
    Which frameworks does oracle portal support exactly?.
    Message was edited by:
    user458538

    Hi All,
    Which frameworks does oracle portal support exactly?.
    Message was edited by:
    user458538

  • Page link error when other user connect to the oracle portal

    Hi,
    I have a problem which I just realized today. I have created a page group, named community, and this page group contains few pages that are created using templates.
    My problem is, when my colleagues logged to the oracle portal using their account, they cannot see the pages that I created, instead, when clicked on the pages within the page group, they only see the page templates (only the skeleton). They should be able to view the actual page that I created using the template, not the template I used to create the page.
    Anybody with this problem can help? or maybe others can help me solve this problem.
    Thanks in advance

    Hi,
    Did you try granting the page to PUBLIC or the users whom you want to show the page to ..
    Thanks,
    Anu

  • Can any other web components integrated with Oracle Portal

    Can we include any third party web component (Shockwave, Flash) into the web page created by Oracle Portal?

    Received this help from Oracle, Rhoderick Butial :
    Flash images could be included using html portlets into the a content area.
    1. Into the content area choose the link "Edit Properties"
    2. Click in the tab "page" and choose the edit button.
    3. Add the HTML portlet.
    4. In the html portlet, click on 'Edit Defaults" link, and the code:
    <H1>Test </H1>
    <EMBED SRC="/image.swf" swLiveConnect=FALSE WIDTH=600 HEIGHT=250
    LOOP=false QUALITY=high BGCOLOR=#000000 TYPE="application/x-shockwave-flash"
    PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?
    P1_Prod_Version=ShockwaveFlash">
    </EMBED>
    <H1> End</H1>
    null

  • Sample  PL/SQL Portlet Source Code for Oracle Portal 9ias

    Hi, I'm a newbie of Oracle Portal technology, and I have a problem:
    I would create a PL/SQL portlet that realizes the following functions:
    1) Retrieve the username of the portal user logged from WWCTX_API.GET_USER function.
    2) Insert into an oracle db table two values about two hidden fields in the HTML FORM of the portlet.
    3) Realize the insert commit through the click on the submit button on the Html form of the portlet. I would redirect by the same button to an other page url also.
    I've never developed in Portal, and may be useful if someone could post me the source code of the SHOW MODE SECTION in the PROCEDURE SHOW of a SAMPLE PL/SQL PORTLET that realizes the upper functions.
    Thanks a lot....

    Hi
    Here's the code from Helloworld_Portlet example:
    procedure show
    p_portlet_record wwpro_api_provider.portlet_runtime_record
    is
    l_portlet wwpro_api_provider.portlet_record;
    begin
    if (not is_runnable(
    p_provider_id => p_portlet_record.provider_id
    ,p_reference_path => p_portlet_record.reference_path)
    ) then
    raise wwpro_api_provider.PORTLET_SECURITY_EXCEPTION;
    end if;
    Retrieve the portlet information.
    l_portlet := get_portlet_info(
    p_provider_id => p_portlet_record.provider_id
    ,p_language => p_portlet_record.language
    if (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW) then
    if (p_portlet_record.has_title_region) then
    Draw the portlet header and specify what links are available
    from that header (i.e. details, customize, help, and about).
    The has_title property is set at the page region level.
    wwui_api_portlet.draw_portlet_header
    p_provider_id => p_portlet_record.provider_id
    ,p_portlet_id => p_portlet_record.portlet_id
    ,p_title => l_portlet.title
    ,p_has_details => true
    ,p_has_edit => true
    ,p_has_help => true
    ,p_has_about => true
    ,p_referencepath => p_portlet_record.reference_path
    ,p_back_url => p_portlet_record.page_url
    end if;
    Draw the portlet borders.
    The has_border property is set at the page region level.
    wwui_api_portlet.open_portlet(p_portlet_record.has_border);
    Display the content of the portlet in the show mode.
    Use the wwui_api_portlet.portlet_text() API when
    generating the content of the portlet so that the
    output uses the portlet CSS.
    htp.p(wwui_api_portlet.portlet_text(
    p_string => 'Hello World - Mode Show'
    ,p_level => 1
    if (p_portlet_record.has_border) then
    wwui_api_portlet.close_portlet;
    end if;
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_ABOUT) then
    Display the about page for the portlet.
    htp.p('Hello World - Mode Show About');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_EDIT) then
    Display the edit page for the portlet.
    htp.p('Hello World - Mode Show Edit');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_HELP) then
    Display the help page for the portlet.
    htp.p('Hello World - Mode Show Help');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_EDIT_DEFAULTS) then
    Display the edit defaults page for the portlet.
    htp.p('Hello World - Mode Edit Defaults');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_SHOW_DETAILS) then
    Display the details page for the portlet.
    htp.p('Hello World - Mode Show Details');
    elsif (p_portlet_record.exec_mode = wwpro_api_provider.MODE_PREVIEW) then
    Display the preview page for the portlet.
    htp.p('Hello World - Mode Show Preview');
    end if;
    end show;
    I think you need to add this:
    You can get the values of your html-form with this command:
    v_hidden_1 varchar2(256);
    v_hidden_2 varchar2(256);
    v_hidden_1 := wwpro_api_parameters.get_value('name_of_hidden_1_in_html_form','p');
    v_hidden_2 := wwpro_api_parameters.get_value('name_of_hidden_2_in_html_form','p');
    You can get the actual URL with this command:
    v_url := p_portlet_record.page_url;
    Hope that helps.
    Regards,
    Mark

  • Newbie in Oracle portal

    Hello,
    I have already worked with oracle developer tools (forms ans report) and I have a good exeprience with SQL and PL/SQL languages.
    My boss asked me to see what can we do with Oracle PORTAL...
    I need orientation on : with what can I start and what documentation I will start to read, I have to see all what Oracle portal can offer me to develop for my client.
    Any help ?
    Phil.

    Hello Candace and others,
    I have strat to read poryal by examples, but the first thing to do is to install Oracle application server 10g infrastructur and OracleAS 10g Portal and Wireless
    the he following link point to the installation on linux :
    http://www.oracle.com/technology/obe/obe_as_10g/portal/bld_portal/buildingportalsite.htm.
    My question :
    I don't have linux, I have windows2000 on my personal computer and I don't want install oracle10g,
    what is the possibilities that are offer to me to use portal on a personal computer with windows 2000, and wgat are the versions of Oracle I can use ?
    Thanks.
    Phil.

  • Oracle portal vs php

    could you give me about comparation web development using oracle portal and php.
    how about speed, security, flexibility ?
    where i can find, site with oracle portal ?

    I think that this kind of comparison is pretty much useless. It's a completely different environment. PHP is only a scripting language. Altough PHP is powerful, the Oracle 9iAS Portal is a completely different product. It features an RDBMS, Java language, an HTTP Server and various extensions.
    null

  • Integrating apex form with oracle portal

    Afternoon friends,
    I have got a senario like integrating apex form with oracle portal.I dont have any idea on oracle portals.so please let me know the basic steps on how to go ahead to integrate apex forms with oracle portal and for that what i need to have apart with my database and apex.

    Hello
    Couldn't see my previous post... so here it is again
    We have integrated Apex into Oracle Portal
    Here's how we did it.
    In the portal page, we have created an Element region with the following code:
    <script language="Javascript">
       <!--
       function changeIframeHeight(){
          var ifrmObj = document.getElementById('apexIframe');
          if(ifrmObj) {
             if(navigator.appName=='Microsoft Internet Explorer') { //IE
                ifrmObj.height = ifrmObj.contentWindow.document.body.scrollHeight+20;
             else {
                ifrmObj.style.height = ifrmObj.contentWindow.document.body.offsetHeight+50;
       //-->
    </script>
    <p><iframe width="100%" height="500" frameborder="0" onload="javascript: changeIframeHeight();" src="/pls/apex/f?p=115:10" marginheight="0" marginwidth="0" name="apexIframe" id="apexIframe"></iframe></p>You just have to make sure that the name and id of the iFrame and the elementId in the javascript are the same.
    And change the SRC so that it point you application.
    Hope that helped you.
    Max

  • SQUID Proxy cache issue in front of Oracle webcache & Oracle Portal 10g

    We are having issue with our site designed on oracle portal front ended by webcache and squid proxy. Current our squid proxy is configure to cache site data which is causing the problem.
    The problem is, we have website in multiple language (china english and china chinese), when you navigate the site in both the languages and once the navigation pages are cached in our squid proxy cache, the users see the cached data from the proxy cache(ie. they will see china chinese when navigating china english site and vice versa). Following are my questions?
    1. I was wondering anyone of you had similar issues and what did you do to resolve it?
    2. What proxy were you using, name, version etc would be helpful?
    3. Did you have similar issues with Other proxys out there? besides squid? what was the fix?
    Your response is appreciated.
    Thanks,
    N

    Hi user623118
    Did you manage to find a solution to this problem. I'm having the same issue and can't find a solution.
    Thanks

  • Error while altering a table in Oracle Portal

    i have a table with primary key. i realize that the primary is not required and when i get rid of primary key thru Oracle Portal and say OK ... i am encountered with the following error -
    Error:
    ORA-25150: ALTERING of extent parameters not
    permitted (WWV-11230)
    Failed to parse as PORTAL30 - alter table
    BPSITEST.JEN_TEST_PRIMARY_KEYS
    drop PRIMARY KEY
    modify(
    EMP_ID NUMBER(10),
    LAST_NAME VARCHAR2(10),
    FIRST_NAME VARCHAR2(10))
    PCTFREE 10
    PCTUSED 40
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    NEXT 256K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    ENABLE CONSTRAINT SYS_C003038 ENABLE CONSTRAINT
    SYS_C003039 ENABLE CONSTRAINT SYS_C003040
    (WWV-08300)
    Any Ideas .... anyone ... ??
    thanx
    null

    ORA-00054: resource busy and acquire with NOWAIT specified The table is currently in use by something else.
    Werner

Maybe you are looking for