Can't create a page group

Hi:
i'm having troubles with a portlet wich is supossed to have a "create page group" functionality, but it really doesn't have it. i've seen documentation on Oracle about a portlet called "page groups" which gives the possiblity to build page groups, pages, styles,... but i only have a portlet called "pages" which gives the same functionality, but not the "create page groups" function. what should i do? how can i create a page group?
thx.

Hey, it seems that content areas are similar to page groups. Can I use content areas instead of page groups? Is it possible that my version of Portal (3.0) doesn't contaion page groups? Can anybody explain to me this confusing thing?
Thanks a lot.
Petra :)

Similar Messages

  • RE: How can I create a page break in a file?

    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How can I create a page break in a file?

    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the following
    two methods, but neither of them works. Specifically, it seems a special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);
    -----------------------------------

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • Can/How can I create a page with all my blog pages RSS??

    Hello all.
    I have a website containing many seperate Blog pages according to their topics like News, Tech and Scifi.
    Is it possible to create a new page, that will contain the latest entries of all these blog pages a one "consolidated" page, maybe perhaps of RSS feed?
    Thanks and cheers

    Apple states
    How can I create a page that aggregates my podcasts?
    If you have multiple podcasts listed in the iTunes Store, the iTunes staff can create a single page that lists all of them in one place. We call this page an “artist page.” Note that a podcast can only appear on one artist page.
    To request an artist page, navigate to one of your podcasts, click on Report a Concern, and select Remove a Podcast. In the dialog box, explain that you would like an artist page, give us the exact name of the artist (please don’t include “Inc,” “LLC,” etc.), and list the exact feed URLs or links to your podcasts.
    at the bottom of this page
    http://www.apple.com/itunes/podcasts/creatorfaq.html
    I hope two is enough and if not that someone contacts me and maybe even changes the info on the above link.
    Thank you for your input!

  • Can't create a "simple" group/course - and no upload

    Hi all,
    I'm quite new to this task of managing iTunesU for my institution (ICTP, www.ictp.it), and we just got admitted to the iTunesU platform since few days, so please bear with my poor experience (but I'm carefully reading the guides provided by Apple).
    Now... I've had no problem in creating/editing a few test pages/groups/courses, but I'm not able at all to create a "simple" group course, the edit menu only lead me to the two options: "smart" and "feed". And I cannot find the tool menu item to do the "Upload and Manage Files" (I guess it doesn't appear because there are no simple groups, the only ones that can accept manual uploads, am I right?).
    Just to explain better: of course I'll eventually implement a transfer script to upload our videos (I'm working on re-encoding some thousands hours of lectures...), but for now I would like to make some preliminary tests, and upload manually a few videos. What am I doing wrong?
    Is it possible that maybe our approval is still pending, and I'm not allowed to upload anything? But I can edit the site (but not publish it).
    I tried both interfaces, the iTunes.app native and the web one (the "iTunesU Public Site Management" on phobos.apple.com):
    the former is more complete but is missing upload option and "simple" group course creation, while the latter gives me only tools to edit the graphic appearance of the main page (banner, styles, etc...).
    thank you for any help, it will be appreciated very much!
    Carlo,
    Trieste (Italy)

    I think I've found the answer by myself in this thread:
    https://discussions.apple.com/thread/2018158?threadID=2018158&tstart=0
    Unfortunately, it's not the answer I was hoping for... apparently the option to store contents in Apple's servers isn't available anymore for newcomers to iTunesU.
    Now I have to manage a way to do local storage and RSS feeds, new challenge!
    Hope this may help others,
    Carlo.

  • How can I create a page item at a certain LEVEL within a layer?

    I mean, if I have one frame that I brought to the front, and one that I sent to the back, can I create an item that is between the two? Right now everything I create is automatically on top, and I have to do some scripting to figure out where the other items are at, and then step the new item back, back, back, etc. until I get to where I want, testing at every step to see if it's gone too far.
    I can't find a property I can set to move a page item directly to the place in the front-to-back order that I want.
    Am I missing something?

    Z-ordering is not maintained in scripting properties, but you can use methods. Let's assume topframe and newframe. You can then use newframe.sendToBack(topframe);. Note that this is distinct from newframe.sendToBack(), which sends it all the way back. Check the docs, there are also some requirements for co-parantage between topframe and newframe.

  • Can not create a page in iWeb.

    Hi there,
    I suddenly can not create a new page with my site on iWeb. I can also not import photos by dragging them over, nor can I create a new site with iWeb!
    Last time this happened I quite iWeb then it woudn't open again. I have managed to get my website back but now face the same problem with not being able to create a new page etc!
    Any ideas?
    Sarah

    Try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete the contents of the User/Home/Library/Caches/iWeb folder 
    3 - launch iWeb and try again.
    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    If you're running Mavericks, 10.9,  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:
    If that doesn't help continue with:
    move the domain file from your Home/Library/Application Support/iWeb folder to the Desktop.
    launch iWeb, create a new test site, save the new domain file and close iWeb.
    go to the your Home/Library/Application Support/iWeb folder and delete the new domain file.
    move your original domain file from the Desktop to the iWeb folder.
    launch iWeb and try again.
    OT

  • Can I create a page border using Adobe Acrobat Pro 9?

    I'm making a certificate of completion and would like to create a page border.  Is there any way to do this is Adobe Acrobat Pro 9?

    If what you want to do is scale a page down to a smaller size, Acrobat doesn't do that, not directly anyway. I think there are plugins for Acrobat that can do this.
    if you're desperate and/or don't want to go to that expense, there is a hack available in Acrobat that can get you there. If you've added other interactive elements (links, bookmarks, etc.), you'd have to recreate them. Post again, preferably in a new topic (since it doesn't apply to this one), for more info.

  • No "samples" in evaluation download, can't create model or group

    Hi forum, I'm trying to learn BPA Suite.
    Downloaded the evaluation version from the main site. It installed ok, but I can't find any "samples" directory anywhere like the Quick Start PDF says should exist. Are these downloadable separately? Couldn't find them on the site if they are.
    Also can't create a new model, since I have no groups. I click on "LOCAL" in the new model wizard but the "New group" button is greyed out. No instructions in the doc on how to get this running.
    Please help!
    Thanx
    M

    Hi,
    have you start your server?
    On linux you have to run y-serverlauncher.sh
    in .../BPASuite/JavaClient.xxx/localserver/
    Then you can use the sample and create new projects.

  • Can I create scrapbooking pages in cc and can I print them out on my printer at home?

    Can I create a scrapbooking page (layering) in cc and print it out on my own personal printer?

    There are many programs in the Cloud... which exact program are you using?

  • Can we create Criteria based groups of computers?

    Hi Team,
    We have imported the computer objects to FIM portal and it has few attributes which can help creating the criteria based group of computers.
    But when we tried creating the criteria based security group, we were not able to select any custom object other than Users,Groups in the filter builder.
    We have added the computer objects in the Filter permission as well, but no luck.
    Any suggestions?
    Thanks and Regards, Siva Kumar Balaguru

    Hi Siva
    you definitely can do so.
    You have to modify the RCDC for Group creation. Look for "GroupingCalculatedMembers". within this section you will find a "FilterBuilder" section and here you Change "PermittedObjectTypes" to the list of your object types you
    want to be able to include in your Groups.
    Henry

  • Can I create multi page TIFF files in PSE?

    I wish to use a Canon TWAIN driver running a single page scanner to create multiple page TIFF files. Can anyone tell me whether this is possible in PSE please?

    No. That is not possible with PSE.

  • Can not create new page from template

    I have been working on a new site for the last couple of
    weeks and have created several pages using a basic template.
    All of the child pages of this template still update when
    changes are made to it, however I can no long create new children
    from this template.
    Any ideas as to what the problem might be.
    THanks
    Clint

    > It is basically just creating a copy of my template, and
    not linking to it in
    > any way.
    > This allows me to change any section of the html.
    my guess is that you are opening the .dwt template file and
    doing a "Save
    As". That page is not a "child" page of the template.
    >
    > I want to be able to create new pages off this template
    and have it work like
    > all of the first pages I created.
    dw menu-->File-->New
    in the new files dialog box, click the Templates tab
    from list in left, click This Site Name
    from list in right, pick This Template
    make sure x is in box to Update if template changes
    click okay
    save file with filename you want to within this local site
    folder.
    add content to within the editable areas
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Can't create new user group

    I am logged in as authenticated user,in workgroup manager, and am trying to create a new group so I can restrict VPN access to the users I would add to this group.
    Can't see a 'new group' button. There are already 3 groups, staff, admin and 1 other.
    (very new to MAC)
    Mat

    Hi,
    Did the issue happen only for you or for multiple users?
    Please login on other well worked Lync client from other computer with your Lync account to test the issue.
    Please also use another well worked Lync account login your Lync client and test the issue.
    You can disable your Lync account from Lync Server Control Panel and clear all SIP related information from AD, then re-enable your Lync account from Lync Server Control Panel to have a try.
    Here is a similar case may help you:
    http://social.technet.microsoft.com/Forums/lync/en-US/09032674-3927-4898-8f93-f3e6f3eab540/lync-2013-cannot-add-remove-or-move-contacts-or-groups-at-this-time?forum=lyncprofile
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Can i create subgroups in grouped objects?

    Hi
    In CP 7 is it possible to create subgroups from grouped objects?
    regards
    donal.

    No, one of my feature requests, but not realized in CP7.
    Lilybiri

Maybe you are looking for

  • Owb error while edit a mapping:the minimum length of this field is 1

    after creating a mapping,an error always occur when i attemp to edit it just as add a mapping table,the error description is: the minimum length of this field is 1 and its maximum length is 15,You have 19 characters. can some one help me?thanks

  • Printing adobe reader 9.5 form IE11

    how can i fix this? it all for pdf I open in EI11. i am using Adobe Reader 9.5. yes I most use 9.5 because of another program.

  • How to skip secondary window if main window goes to next page

    hi gurus,               i m having a table in main window which lists items and its rate n quantity. the total price,discount and discount is calculated in secondary window. now if the list of item get more than window size it goes to next page but w

  • Disable airport controls

    I am setting up a computer image for my school and next year we want all the macs to switch over to use a secured wireless network instead of the current unsecured one. Unfortunately if you switch the airport to use another wifi signal and back to us

  • Instaling os 9 with X

    Hi, I already have OSX (on mac mini) if I install OS 9 with the disk that came with it, will that replace OSX? If not, what happens after it has been installed? I just want to make sure I don't lose any files by accidentlaly replacing the OS. Thanks