To create a custom page template in webcentre portal

I am trying to create my own page template in web centre portal .. may i know how can it be achieved ? is it the same way as we do in adf or we have to follow the same thing which we get  pre-built template of webcentre application (myTemplate_globe.jspx)  when we create a webcentre application.
regards
Mrudul

please check http://www.oracle.com/technetwork/middleware/webcenter/portal/learnmore/pagetemplates-1438595.pdf
WebCenter 11g PS3 Tutorial: Building a WebCenter Template | Yannick Ongena's WebCenter And Enterprise 2.0 Blog
Mastering WebCenter Portal Templates – Part 1 | Peter Moskovits' Oracle WebCenter Blog: 2008-2011

Similar Messages

  • Create a custom web template using VS 2012 with web features,site features sections applied

    hi,
     Want to create a  custom web template using VS 2012  in my SP 2013 environment.  i know "Vesku" has posted a great artice on this [  based on prev. version of SP].
    here -
    http://blogs.msdn.com/b/vesku/archive/2010/10/14/sharepoint-2010-and-web-templates.aspx
    i am  looking for a code based article  which has step by step process which provides how to add the site features, web features and attach the eventreceivers etc etc on sitecollection creation when i apply this template from central admin. 
    can anyone provide me any links / any source how to create a custom web template with one / two  custom features -  site features element and web features element , / master page etc ....
    I am stuck with this. as part of my reqmnt, i need to create a webtemplate with all the customlistinstances, custompagelayouts, custom masterpages, custom appln pages, custom web parts.
    help is appreciated !
    Das

    The problem is that Web Templates are deployed to a gallery in a site collection and aren't available in Central Admin when creating a new site collection.  YOu have to create the site collection without choosing a template and then choose your web
    template when you first access the root site in the site collection.  Here's an article that discusses that process here:
    http://sharepointchick.com/archive/2011/02/10/using-web-templates-to-create-site-collections.aspx
    Other than that Vesa's article is still the best one and works essentially the same in 2013 as it does in 2010.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Custom Page Template

    Hi,
    I am using a custom page template accessed via the Shared Components area on the Applications tab. IT seems that when i assign this template to my page the header disappear. But in the Main tag and i quote "Template can display pages with or without banners"
    Plz advice how can I use a user-defined template without losing the default oracle banner.
    Best Regards
    null

    It is possible to create templates there are a couple of tutorials out there but, they require getting under the hood with some coding.
    Here is one tutorial:
    http://11mystics.com/tools/iweb/create-iweb-templates/
    What I typically do is create a page with navigation and duplicate it "right click on the page" then rename the page.
    example of my site:
    http://jeffnitschke.com

  • How can you create a customized page to change user password?

    Hello to all,
    I would like to create a customized page for a user to change their password. We are using Portal version 3.0.9 on Windows NT/2000. Currently there is a page in portal where a user can change their password.
    I tried linking to that page by copying the shortcut url and adding it as an html portlet. The problem is that we want to direct the users to a
    page of our choosing when they click on the "cancel" and "ok" buttons. I read in the forums that there is a selfreg.cmd script.
    I also read that there is some code that has been available.
    Has anyone implemented a customized user password change page? Do you know of any links that might have steps to follow or
    more informatioin?
    Thanks in advance,
    Lindsay

    Hi,
    I was able to customize the change password screen through a procedure. This is what I did:
    * Created a procedure under the Portal30_sso schema:
    CREATE OR REPLACE procedure reports_chage_password
    site2pstoretoken in varchar2 default null
    ,p_username in varchar2 default null
    ,p_error_code in varchar2 default null
    ,p_submit_url in varchar2 default null
    ,p_done_url in varchar2 default null
    ,p_pwd_is_exp in varchar2 default null
    ,p_password in varchar2 default null
    is
    begin
    htp.htmlopen;
    htp.headopen;
    htp.title ('<TITLE of Page>');
    htp.headclose;
    htp.bodyopen;
    htp.p('<table width="100%"><tr><td colspan=2 align=center><IMG SRC=<directory of image if you want>"><br><hr><br></td></tr>');
    htp.p('<tr><td colspan=2 align=center>');
    htp.p('<font COLOR="#000080" face="Times New Roman" size=+2><b>');
    htp.header(nsize => 1 ,cheader => 'Change Password');
    htp.p('</b></font>');
    htp.p('</td></tr><tr><td align=right>');
    htp.formopen(curl => p_submit_url );
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Username:');
    htp.p('</td><td alight=left><font color="#000080" face="Times New Roman" size=+1>');
    htp.p(p_username);
    htp.p('</font>');
    htp.p('</td></tr>');
    htp.formHidden(cname => 'p_username',cvalue => p_username);
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Old Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_old_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Confirm New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password_confirm',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.p('<tr><td rowsapn=2>');
    htp.formHidden(cname => 'p_done_url',cvalue => '<the url that you want users to go to when they are done>');
    htp.formHidden(cname => 'p_pwd_is_exp',cvalue => p_pwd_is_exp);
    htp.formHidden(cname => 'p_password',cvalue => p_password);
    htp.formHidden(cname => 'site2pstoretoken',cvalue => site2pstoretoken);
    htp.p('</td></tr>');
    htp.p('<tr><td align=right>');
    htp.formSubmit(cname => 'p_action',cvalue => 'OK');
    htp.p('</td><td align=left>');
    htp.formSubmit(cname => 'p_action',cvalue => 'CANCEL');
    htp.p('</td></tr></table>');
    if p_error_code is not null then
    htp.br;
    htp.fontOpen(ccolor=> 'red', csize=> 4);
    if p_error_code = 'auth_fail_err' then
    htp.p('Old password is incorrect');
    elsif p_error_code = 'pwd_rule_err' then
    htp.p('The new password does not follow '||
    'the password policies.');
    htp.br;
    htp.p('Verify with your System Administrator '||
    'about the Password Policies');
    elsif p_error_code = 'confirm_pwd_fail_txt' then
    htp.p('Confirmation for new passord is not '||
    'the same as the New Passowrd');
    elsif p_error_code = 'null_new_pwd_err' then
    htp.p('New password cannot be null');
    elsif p_error_code = 'null_old_pwd_err' then
    htp.p('Old password cannot be null');
    else
    htp.p ('Error: ' || p_error_code );
    end if;
    htp.fontClose;
    end if;
    end;
    * Grant this procedure to PUBLIC
    * Update the portal30_sso.wwsso_ls_configuration_info_$:
    UPDATE portal30_sso.wwsso_ls_configuration_info_$
    SET LOGIN URL = '<YOUR CUSTOM LOGIN URL OR THE WORD UNUSED IF YOU DON'T HAVE ONE> http://<MACHINE_NAME>.<DOMAIN>/pls/portal30_sso/portal30_sso.<NAME OF PROCEDURE>';
    * After you update the table, go to your account information link, and click on the change password link.
    * Then copy the url that you see in your address line
    * And if you want a change password link at the top of your portal page, just go to EDIT on your page, then edit the banner defaults. Then in the links add the Lable and the URL. The URL would be the URL you copied from the previous step.
    Hope this helps.
    I've customized the login page too if you would like some sample code for that. Let me know.
    Martin

  • How to create a Custom form Template..

    Hi Eperts,
    I would like to seek a help from you regarding creating a custom form template on custom BO. could you guide me where i have gone wrong in successfully creating a Print form. I am in dead need of this particular solution for a client. It is hampering my entire scenario......
    1. I had created a Custom BO and I am trying to preview the created form on the OIF screen.
    2. I had created a form on above of the custom BO. This created form and form group is activated and configured as of needed by opening it through ALD (Adobe Life Cycle Designer).
    3. I had created a BAC element with some scoping questions and activated it. After activating it i had deployed the Business configuration.
    4. my solution got updated with the created and deployed BAC elements and i had done scoping for those elements to make my created form available.
    5. I can see my form template in Form Template maitaince under Application user managment WOC. I had made it to be available for all users and published.
    6. All the above steps are done success fully with no errors.
    7. When i accessed my custom BO and tried to preview the created form i am unable to view it and i am seeing the following window.
    Could you help me out in solving this or send me across any detailed document regarding this what you had done previously.
    Thanks in advance for your valuable help...
    Regards...
    Hanu K

    It looks like system didn't identify the form template. So please check if the required configuration for "Preview" modal dialog is done properly. In the SDK documentation, refer to section "8.4.3.4 Create a Preview Button for a Print Form"
    If you have already done the steps mentioned in the section 8.4.3.4, but still facing the issue then let me know.
    Best regards,
    Hari

  • How do I create a custom page set up

    How do I create a custom page set up

    Seb,
    You can use the dropdown list in the File>Document Setup>Artboard; Custom is at the top (hidden at first view).

  • Creating a custome page

    Hi All,
    I am very new to OAFramework development. I an trying to create a custome page which will display "Hello" message. I have done everything as mentioned in Hello World expample of developer guide. I created page and region.
    When I tried to run the page.
    I got URL as below
    http://dgsc-amsingh.drte.com:8988/OA_HTML/runregion.jsp And browser has thrown an error
    ERROR
    The requested URL could not be retrieved
    While trying to retrieve the URL: [no URL]
    The following error was encountered:
    Read Timeout
    The system returned:
    [No Error]A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.
    Your cache administrator is root
    I am looking forward for help.
    Thanks in advance
    Amit

    How did you fix this? I have the same problem. I can ping the machine, but not run the hello world page...
    Any suggestions?
    Thanks,
    Andras Eliassen

  • In CF 9 can I create a custom page URLs, similar to Wordpress?

    I would like to create a function for my clients to create a custom page URL similar tot what Wordpress can can do. So my client's can customize the page URL info for example http:/www.novospa.ca/guinot-skin-care-products/
      Is this doable and how would I do it?

    From your description you need a Content Management System based on Coldfusion. Two popular examples are Mura and FarCry.

  • Create a custom Request Template

    Hello,
    i need to create a custom request template.
    Custom Template = Create user + disable user.
    The request should be creating a user and disabling them automatically.
    1. What is the correct way to realize this scenario?
    2. Do i need bpel processes for that?
    3. Where are the default request templates stored in oim? Is it possible to modify the 'create user' template and add the 'disable user' functionality?
    Many thanks in advance!

    1) Use these templates. Create and Disable User.
    3)__Default Request Template in OIM:__
    1-Assign Roles:Default template for assigning roles to users
    2-Create User:Default template for creating users
    3-De-Provision Resource:Default template for deprovisioning resources
    4-Delete User:Default template for deleting users
    5-Disable Provisioned Resource:Default template for disabling provisioned resources
    6-Disable User:Default template for disabling users
    7-Enable Provisioned Resource:Default template for enabling provisioned resources
    8-Enable User:Default template for enabling users
    9-Modify Provisioned Resource:Default template for modifying provisioned resources
    10-Modify Self Profile:Default template for modifying self profile
    11-Modify User Profile:Default template for modifying user profiles
    12-Provision Resource:Default template for provisioning resources
    13-Remove from Roles:Default template for removing users from roles
    14-Self-Register User:Default template for self registering users
    15-Self-Request Resource: Default template for requesting resources for self
    Default template are:
    Go to Advanced Administration-->left pane of the Request Templates -->Advanced Search
    To modify:
    Select a template name in the search results table.--> Actions menu, select Open.
    Template Details section-->the details of the template are displayed in the fields
    I hope this helps,
    Thiago Leoncio

  • Create a custom User Template in Mac OS X Lion

    We are setting up a Mac lab where the computers will be on domain.  Is there a way to create a custom User Template for all users that log into the computer.  For example, the same desktop wallpaper, dock apps, desktop icons, etc.

    It's invisible now.  Hold option while clicking the Go menu in the Finder to see the Library item in the menu, or paste the following command into the Terminal to make it become visible again:
    chflags nohidden ~/Library

  • Creating a custom page size not working

    Hi,
    I have Pages 3.0.2 and I wanted to create an PDF for an ad that our playgroup wants to submit in a local paper. The ad needs to be 10cm x 6.2cm so I went to the Inspector dialog and the Document tab and then selected Page Setup. In the new dialog I selected Manage Custom Sizes under the Paper Size drop down and then created a new size by clicking on the + icon. This allowed me to specify a Page size of 10cm width and 6.2cm height. I selected user defined printer margins and entered 0.25 for all margins. I set a name for the page size as 100by62Ad.
    All good so far, but now when I select this new custom size in the Page Size drop down I can see the page size and underneath the drop down it says 10 by 6.2cm and click on OK the Document Inspector flashes then shows the A4 sizes again.
    Nothing I do seems to allow me to select the new custom size. I can select the other page sizes such as DL fine and see the new page size in the window, but my new custom size refuses to display. I have tried closing down Pages and coming back in but get the same thing. I then tried downloading another program, in this case one called "Stone Create", and selected the custom page size in that program and it worked fine. I got a small 10cm x 6.2cm document to work with.
    This seems to be a bit of a bug. Has anyone else managed to work with custom page sizes?
    Thanks for any assistance.
    Graham

    Thanks Peggy,
    I tried deleting the preference file and restarting Pages but I still have the same problem with the custom page size. When I start Pages I am presented with a bunch of templates so I choose Blank then I go through my procedure to select the custom page size that I created and always end up back at an A4 document.
    I have used the demo version of Stone Create to do what I needed to do with the small page size (ie. create a small ad) but it is a pain that I paid for Pages and now will need to buy something like Stone Create to do what I need. Although, that said, having used Stone Create for this little ad I must say that for the price it seems like a pretty decent program that will do a whole lot of the desktop publishing type of functions without the rather steep prices of the Adobe products. I kind of wish I had bought this program instead of Pages now.
    Cheers,
    Graham

  • Creating a custom page size in Access 2014

    In an previous version of Access 2003 I created a report with a custom page size of 5"x4".  Now I am using Access 2013 and I no longer can run that report because of the custom page size.  How do I add the custom page size to the
    new version of Access?

    Hi,
    Your required could be done via VBA coding. We cannot custom page size directly in Access 2013.
    Please see the sample code with following links:
    http://msdn.microsoft.com/en-us/library/ff836635.aspx
    http://msdn.microsoft.com/en-us/library/ff845524.aspx
    Regards,
    George Zhao
    TechNet Community Support

  • Creating a Custom Page

    Is there a way in apex is there way when you create a page you can add a custom page type.
    David

    David,
    You mean you want to specify the type that is displayed on the application home page? If so, no. We calculate that type based upon a formula of sorts that looks at the types of regions you have on a given page.
    -- Sharon

  • Delete custom pages templates Mountain Lion

    I am having a problem deleting custom templates in Pages. Could someone please help me?

    Go to:
    Library > Application Support > iWork > Pages > Templates > My Templates. Trash the templates you don't want.
    To get to the Library folder, hold down the Option key and click the Go menu in Finder.

  • Customizing Page Template Body

    Hi Apex gurus,
    I have a page inside which I display 3 different reports.
    The three reports have a Display Point set to "Page Template Body (2)".
    Report1 has sequence 10 and is placed in Column 1 of Page Template Body (2).
    Report2 has sequence 20 and is placed in Column 2 of Page Template Body (2).
    Report3 has sequence 30 and is placed in Column 3 of Page Template Body (2).
    All three reports are using a report template such that they are displayed as a Name-Value pair and not as a table with columns as headings.
    The layout is something like this:
    Report 1 Report 2 Report 3
    ============ ============ ============
    Name - Value Name - Value Name - Value
    Name - Value Name - Value Name - Value
    Name - Value Name - Value Name - Value
    The problem I am facing is that the Values in Report 1 are quite large text values, and hence report 1 uses most of the space in the layout. Report 2 and Report 3 utilize the remaining space. I want all three reports to share the page proportionately.
    Is there any place in Apex where I can set the size of Page Template columns?
    Thanks,
    AB

    Frank,
    I think you should refer to "How to Control Form Layout" article here:
    http://download.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28839/frm_layout.htm
    Hope it helps.
    Regards,
    Naveed.

Maybe you are looking for