How do I add an portal page automatically?

I have never with Oracle Portal. I am an Ajax Developer.
I want to be able to make ajax calls to:
1. create a page
2. get the layout id
3. get the region ids for a layout
Is this possible via PL/SQL built-in? I don't want to start writing server code.
Sorry we don't have a server-side developer on the team.
-P

It depends on which type of document you started with. There are two types, word processing and page layout document's. You can the them on the left when you open File > New from Template chooser
Word processing documents will add pages automatically as you write along or add objects that are inline. You can also add by clicking on the Section icon in the tool bar. This will also add a section break in the document.
Page layout documents pages has to be added manually by either using Insert > Pages > choose from the options. Or use the Page icon in the tool bar.
To learn more about Pages 09 download the Pages User Guide from your Pages Help menu.

Similar Messages

  • How do i add a second page to a document in Pages 5.2.2

    How do I add a second page to a document in Pages 5.2?

    Hello jeddi17,
    You can insert a page break with the Insert (menu) > Page Break.
    Note if your typing overflows the first page, then a new page is automatically created.
    Pages for Mac 5.0: Change the flow of text
    http://support.apple.com/kb/PH15334
    Force text to the next line or page
    A line break, also called a soft return, starts a new line without starting a new paragraph. A page break moves the next line of text to the top of the next page.
    Click where you want the break to occur.
    Do one of the following:
    For a line break: Press Shift-Return. 
    For a page break: Click Insert in the toolbar, then choose Page Break.                                
    Take care,
    Nubz

  • How do I add and delete pages to a pdf document?

    How do I add and delete pages to a pdf document?

    Hi Paul,
    Adobe Acrobat has the features to add/delete/extract/crop/insert pages to your PDF files and are much more features.
    Adobe Reader has  a very limited features for editing to PDF files.
    Now you can subscribe to Acrobat Plus and see more information at https://www.acrobat.com/acrobatplus/en/home.html
    Or you can download Acrobat XI Pro for trial version from www.adobe.com.
    thank you.
    Hisami

  • How do I add or delete pages from a scanned document

    how do I add or delete pages from a scanned document

    There are a few ways but mostly, select the pages go to the tools panel>Pages and choose delete page.

  • How do I add citations to Pages? The EndNote plugin is not available.

    How do I add citations to Pages? I tried downloading the suggested EndNote Plugin but it says the webpage is not available anymore.

    To add citations you have to buy EndNotes from http://endnote.com/. The endnote plugin you get from http://support.apple.com/kb/DL1334   but it is only for those who bought Pages from the MacAppStore
    Read this http://support.apple.com/kb/TS3587

  • How do I add a web page to top sites in Yosemite?

    How do I add and lock in a web page to top sites in Yosemite?

    Took me some time to figure it out, but here's how to add.
    Go to the page you want to add.
    when you hover the mouse curso over the address bar, a circle with a "sign" will appear ...
    Click on it and keep the mouse button pressed.
    A list should appear, just select "Top Sites" ...
    That's it !

  • How do you add fonts in pages?

    How do you add fonts and clip art in pages? I seem to have few fonts in pages. New to Mac. Thanks! Also seems that there is no clipart in pages? If there is, where can I find it?

    On the Mac you add fonts to the System by double clicking on them, they then get opened in Font Book where you can open/close and organise them.
    Most ClipArt offered with other applications is rubbish. Apple has left it to you to source your own, better material. This may help:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=12&mforum=iworktipsn trick
    Peter

  • How to adjust size of Portal Page Panels for WDA Applications

    Hi,
    I am designing a Portal Page using Page Layout "3 Colums (Narrow:Wide:Narrow" for WDA application.  The problem is that the width of the web dynpro contents on the Left and Right panels ("Narrow" parts of the Page Layout) is not very wide, leaving lot of empty space between those panels and the Center ("Wide") panel.  Is there a way that I can adjust the width of each panel in the mentioned Portal Page Layout?
    I went through SAP library which mentions using method lr_port_manager->navigate_absolute but I am not clear how to pass the width value in the method.  If that method is relevant, can someone give a code example (no copy/paste from SAP Library pls.) of how to put the width value (e.g., 300  in the method?  Also, in which method (e.g., WDDOINIT) I should execute the code.
    Will greatly appreciate the help!
    Thanks,
    Tony

    You can easily create a custom page layout with your desired widths.
    Take a look at this blog:
    The specified item was not found.
    Thanks,
    Shanti

  • How do I add fonts to pages for ipad?

    I would like to add fonts to use in pages on my iPad.
    How do I add fonts?

    You are limited to the fonts included in the apps, there is no way to add outside fonts. Pages comes with some nice ones, however. See the product's included help how to make use of them.

  • How can i add a template page on my document ? Pages 5.0

    Hi to everyone.
    I have a problem after i updated Pages to the new one (5.0 (1465)). I'm not able to add a template page (for exemple chapter page or photo page or so on), while i'm writing my document. How can i do it ?
    (For example with Keynote i have only to click on "+" in the left bottom corner, and i can choose wich slide i want).
    Can someone help me please ? I need that for my thesis.
    Thank you so much

    If you use the Help menu in Pages 5.0 you will be linked to http://help.apple.com/pages/mac/5.0
    Here is soem of the text you get from the search add custom template.
    Save a document as a template
    Choose File > Save as Template (the File menu is at the top of your computer screen).
    Click one of the options:
    Add to Template Chooser: Type a name for the template, then press Return. Your template appears in the My Templates category in the template chooser.
    Save As: Type a name for the template, then choose where you want to save it.

  • How do I add a XAML page to a Universal App?

    I created a new Blank App. Everything works as it should. Now I want to add a new page. This is the wrong way I'm doing it:
    First, I add a new Blank Page to the Windows Project
    foo.xml.cs
    namespace testapp
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class foo : Page
    public foo()
    this.InitializeComponent();
    Then I add the same class name to the Shared project
    foo.cs
    namespace ZUMOAPPNAME
    class foo
    I modify foo.cs to
    namespace testapp
    public sealed partial class foo
    public void shared()
    win();
    And then add a method to foo.xaml.cs to make it
    namespace testapp
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class foo : Page
    public foo()
    this.InitializeComponent();
    public void win()
    shared();
    The win method can call the shared method.
    However, for the shared method, the compiler gives me this error:
    The name 'win' does not exist in the current context
    What's the proper way to add a new page?

    Hi Greg,
    Take a look at my blog entry
    Strategies for sharing code in XAML-based Universal apps
    As Magnus notes, all parts of a partial class need to be in the same namespace to be part of the same class. ZUMOAPPNAME.foo and testapp.foo are unrelated classes.
    It's not clear exactly what you're trying to do here, but a common pattern is to have different Xaml for the Windows and WindowsPhone projects but to share data. A good way to do that is to create the new page with the same name (for example: "foo")
    in both the Windows and WindowsPhone projects. This will add a foo.xaml and foo.xaml.cs file in each and will define the foo class in both foo.xaml.cs files.
    You can then add a foo.cs file in the shared project with your shared functions:
    Shared/Foo.cs:
    namespace testapp
    public sealed partial class foo
    public void shared()
    do_shared_stuff();
    do_plat_specific_stuff();
    And call it from the platform specific functions:
    Windows\foo.xaml.cs:
    namespace testapp
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class foo : Page
    public foo()
    this.InitializeComponent();
    shared();
    public void do_platform_specific_stuff()
    // do windows stuff
    You can use this to mix and match as much as you'd like. If you have very straigtforward UI you may be able to copy the entire .Xaml and .Xaml.cs into the shared directory or you may have platform specific Xaml but share the Xaml.cs file. In most cases you'll
    have a mix of platform specific xaml and code and shared code.

  • How to edit a standard Portal page in NWDS

    I'm looking for a guide explaining how to pull a standard Portal Web Dynpro in to Netweaver Developer Studio, make changes to it, and deploy the changed copy to the Portal.
    I have experience with the Portal and with adding ABAP Web Dynpros to it, but I'm new to NWDS and Java Web Dynpros.
    I've searched online extensively but haven't  been able to find a guide explaining how to access the standard Portal Java content.

    Hope you mean to edit WebDynpro java application in NWDS. In this case, You need NWDS (on your desktop) and NWDI (to be configured on java server) to modify any standard WebDynpro java application.
    Read the below help to understand better:
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/68d64260752a78e10000000a155106/frameset.htm

  • How do I add passwords from pages that don't automatically save them.

    These days lots of web pages don't respond to Firefox's automatic password saving feature. Even when I use the little "Remember passwords" script that removes autocomplete=off from websites there are still a lot of them where it won't save passwords.
    It would be great if there was a way I could add these sites manually to the Saved Passwords list in Firefox. Is there a way to do this in Firefox? Or an extension that does it? Or ANY way to do it?
    Thanks,
    Ted

    See also:
    http://kb.mozillazine.org/User_name_and_password_not_remembered (bookmarklet)
    http://kb.mozillazine.org/Password_Manager

  • Script add/delete master page automatically

    I've searched and haven't managed to find one so apologise if this has been asked before.
    Adobe Indesign CS2
    Does anyone have a script to automatically insert, or delete my master page with an automatic text link between the frames on my pages, as I am loosing too much time adding and deleting manually. The page is my 'A-Master'
    I have never installed a script before, nor know how to but I must invest time in this as it will save me lots of time in the future with the programming behaving like a word processor (microsoft word) with the beauty of the design elements with indesign.
    Regards

    Are you looking for some sort of feature that adds pages and link the text automatically as you type and reach the end of a page? That isn't going to happen in CS2, even with a script, as far as I know. There might be a plugin available, but it won't be free.
    You'd be better off upgading while you still can get upgrade pricing. Smart Text Reflow was introduced in CS4 and does exactly what I think you want.

  • How do I add Multiple Home pages to open when I open FireFox?

    I am trying to switch over from Internet explorer to Fire Fox. I would like to open several pages when I open Fire fox. I can do it in Internet Explorer but so far not in Fire Fox . Can I do this and if so how do I do this.
    Thanks

    You can also add the URLs to the target line of the Firefox desktop shortcut.
    *https://developer.mozilla.org/Command_Line_Options

Maybe you are looking for

  • All my files appear gone, but I didn't delete anything and the capacity is still accounted for

    I'm looking to update my old 2007 Macbook from Mac OS 10.5 to 10.6, but I've run into a problem.. Before I've even got to copying the .iso file I have (file in on my Macbook Pro at the moment) onto the computer I've gone to delete all of my music and

  • InDesign CS6 interactive doc (pdf): how to force DATE to be entered?

    In the past I have made a few interactive pdf's which was a chore and horrible to do because you had to do a lot of work in Acrobat. With CS6 things are a LOT better! Really great! I have ONE problem though... With Acrobat I could FORCE a user to ent

  • Where Can I find content for Final Cut Studio!

    Hello, I had final cut studio on my program but I didn't know that it came with content. I threw the box away. Is there a way where I can get those content for the programs? Thanks

  • Numerator in Unit of Measure

    Hi All, We are updating the Unit of meaure using Function Module CRMXIF_PRODUCT_MATERIAL_SAVE. It is creation material successfullly & changing all attributes of products except the Numerator or Denominator of alternative Unit of Measure.. How to cha

  • Get currently opened file in code editor

    Hi, I am writing an extension for Oracle Jdeveloper. I have created a view and now I need to access the currently opened file in the code editor. However, all I get is the context of my own view: Context.newIdeContext(this); But how can I get the Cod