How display the page where the portlet PLSQL is executed

I have build a simple PLSQL portlet in 9ias 9.0.2.
This portlet display the name of the user connected. I would have too the name of the page where this portlet is displayed. Because i put this portlet in different page of my portal.
I think information is in portlet_runtime_record (like page_url), but i don't know how call this value into PLSQL Portlet (portlet_runtime_record.page_url ????)
Thanks in advanced
<HTML>
<HEAD>
</HEAD>
<BODY>
<ORACLE>
declare
rt:=portal.wwsec_api.person_info(portal.wwctx_api.get_user());
htp.p(rt.first_name||' '||rt.last_name);
htp.p('Liste des Urls');
htp.br;
htp.p('IP:'||portal.wwctx_api.get_ip_address);
htp.p('NAME:'||portal.wwctx_api.get_user);
end;
</ORACLE>
</BODY>
</HTML>

Fabrice,
the Dynamic Page is a special form of portlet that is supported by Oracle9iAS Portal internally, which means that it is not recommended to tweak the generated PL/SQL package even though you have access to it. By doing this you won't be able to make any changes using Portal UI because every time you do the changes your code will be regenerated. Unfortunately, I don't see an easy way to extract the information you are looking for in the Dynamic Page portlet. My recommendation is to programmatically create a PL/SQL portlet that implements the same business logic as your Dynamic Page portlet. This way you will gain full control on your code and will have all advantages of PDK-PL/SQL.
Hope this helps.

Similar Messages

  • I keep getting internet explorer cannot display web page when trying to download itunes. This only shows on half the page where the download link would be. My internet connection is fine.

    I keep getting internet explorer cannot display web page when trying to download itunes. This only shows on half the page where the download link would be. My internet connection is fine.  Any idea what the problem may be?

    You won't see anything obviously related to iCloud, Jimmy. But if you go to the home iTunes Store page while logged into your iTunes Store account, you should see a Purchases link now under the Quick Links header. That's the only part of iCloud active at this time.
    Regards.

  • How do I get rid of the new "status bar" at the bottom of the page where the web address pops up?

    On the left hand side of the page in the bottom corner, the web address pops up every time a new page is loading. What if I don't want that? How do I disable it?

    miss.bev.brown, Right-click on a toolbar, then click on teh "Add-on bar" entry to de-select it.
    If the add-on bar keeps coming back, you will have an add-on that is causing this. One that does this is the McAfee Site Advisor, disabling or uninstalling it stops that from happening.

  • I lost the top of the page where the "tools" icon would be, how do I get it back?

    The top of the page is missing where you would have "file" bookmarks" "tools" so I don't know how to reset my page back to the default settings.
    == This happened ==
    Just once or twice
    == today

    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(~~red:Linux & OSX see~~: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M then release the key
    <u>''Windows'' Method 2.</u> Tap the F10 key, while the Menu bar is visible, choose "View > Toolbars", click "Menu Bar" so that a check mark is placed next to Menu Bar
    <u>''Windows'' Method 3.</u> Tap and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar so that a check mark is placed next to Menu Bar
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See:
    http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    http://kb.mozillazine.org/Toolbar_customization#Restoring_missing_menu_or_other_toolbars
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    '''[http://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar How to customize the toolbar]'''

  • How do you know all the pages where a portlet has been included??

    Hello everybody, please ...
    I'd like to know the way to find out all the portal pages in which a particular portlet has been published/inlcuded
    I'm deploying on OAS (10g, I think).
    I have access to the portal builder and the portal data base too.
    I hope someone can answer!. Thanks very much.
    - Pablo -

    Hi, thank you for having responded to me so quickly. Excuse me instead for the delay with which you answer.
    I tried "lifetime" or a similar word in my preferences panel but I could not find. I have the software in Italian.
    I attach screens. You see something that might look like the "lifetime"? Thank you very much!

  • How can I get the page where a page item is localized?

    Hi<br /><br />I move some page items to the next spread using kMoveToSpreadCmdBoss. This works fine. But when I want to get the page uid where the page item is localized now (I use Utils<ILayoutUtils>()->GetOwnerPageUID to do that) I get the uid of the spread and not the uid of the page where the page item is localized.<br /><br />- What is wrong?<br />- What can I do to get the page uid?<br /><br />Thanks<br />Hans

    Hans,<br /><br />I recently had to do the same, so I'll show you what I have done.  I start by getting the spline item UIDRef and the value that Utils<ILayoutUtils>()->GetOwnerPageUID gives you.  Then I figure out which side of the spread the item falls on:<br /><br />InterfacePtr<IGeometry> splineGeo(ItemRef, IID_IGEOMETRY);<br /><br />PMRect itemRect = splineGeo->GetStrokeBoundingBox();<br /><br />PMPoint currPoint = itemRect.LeftTop();<br /><br />InnerToPasteboard(splineGeo, &currPoint);<br />     <br />if(currPoint.X() < 0){<br />     //it's a left-hand page<br />     left = true;<br />}<br /><br />Once I know which side the item is on, I can calculate which page the item falls on(where OwnerUID is the UID that the call to GetOwnerPageUID returns):<br /><br />UID GetOwningPageUID(IDocument *docPtr, UID OwnerUID, bool left)<br />{<br />        UID rc;<br />     int32 index;<br />     <br />     //get the database <br />     IDataBase *db = ::GetDataBase(docPtr);<br /><br />     //Get the list of pages<br />     InterfacePtr<IPageList> pgList(docPtr, IID_IPAGELIST);<br /><br />     index = pgList->GetPageIndex(OwnerUID);<br /><br />     if(index >= 0){<br />          //the passed in UID refers to a page<br />                rc = OwnerUID;<br />     }else{<br />                //dealing with a spread UID<br />          UIDRef pageSpreadUIDRef(db, OwnerUID);<br /><br />          InterfacePtr<ISpread> pgSpread(pageSpreadUIDRef, UseDefaultIID());<br /><br />          int32 pageCount = pgSpread->GetNumPages();<br /><br />          if(pageCount == 1){<br />               rc = pgSpread->GetNthPageUID(0);<br />          }else if(pageCount <= 2){<br />               if(left){<br />                    rc = pgSpread->GetNthPageUID(0);<br />               }else{<br />                    rc = pgSpread->GetNthPageUID(1);<br />               }<br />          }else{<br />                     rc = nil;<br />          }<br />     }<br /><br />     return rc;<br />}<br /><br />I hope this helps.<br /><br />Dan

  • Before the recent updates to Firefox, clicking on the back button always brought me back to the same place on the page where I had been, but now it brings me to the top of the page. How do I restore the previous feature?

    Before the recent updates to Firefox, when I would go to another page in the same window and then clickon the back button, Firefox used to bring me back to the same place on the page where I had been, but now it brings me to the top of the page, meaning that I have to laboriously scroll down to the old place. How do I restore the previous feature?

    That change was made in Firefox 4, 6 months ago.
    Click-hold the unified Back / Forward button <br />
    or <br />
    right-click it to get the Back / Forward history for that tab.
    Or install this extension to get the old "drop-marker" button restored. <br />
    https://addons.mozilla.org/en-US/firefox/addon/backforedrop/

  • How to Create a "FAQ" page where the top of page has all the Hyperlinks

    Hi,
    On iWeb, how do I Create a "FAQ" page where the top of page has all the Questions as Hyperlinks.
    The hyperlinks would not actually link to a separate page, but would automatically scroll the page to the spot where the question is answered.
    An good example is below:
    http://www.cardrunners.com/members/index.php?option=com_content&task=view&id=102 &Itemid=2
    Thanks for your help!

    Sarah,
    As is pointed out what you would like to do is old fashioned Anchors, real easy on a conventional site but not so easy in iWeb.
    I made an FAQ by just making questions followed by answers and increasing font size and using bold to make the questions stand out so it is easy to use.
    Much more work for you but will approximate what you are trying to achieve is this: On the FAQ page make your list of questions each of which you will make into a hyperlink to go to another page. For every question add a blank page to write the answer on. Uncheck the relevant box so that that page does not appear in the navigation bar. Write your answer on that page then under it make a hyperlink back to the FAQ page. The page would also by default have the normal navigation menu at the top, but adding a "Close Window" or "Back To FAQ" link that is actually just a hyperlink to the FAQ page is helpful for site visitors.
    While a lot of work to make the extra pages it should work well and solve your problem.
    The simplicity of iWeb soon provides problems as soon as you want to do more than the basics offered.

  • Here's your prototypical Dumb Question: Web Pages are displayed as centered on 4.0- how do I have the page fill the window?

    Here's your prototypical Dumb Question: Web Pages are displayed as centered on 4.0- how do I have the page fill the window?

    Do the following:
    1 - launch iPhoto with the Command+Option keys held down to open the First Aid window.
    2 - Run Option #4, Rebuild Database.

  • How can I insert a button in my form that add a copy of the page where I'm in? It is possible?

    Hi! I'm doing a cv template for my company so that Human Resourses can send to candidates. I made the form and I have  a page for the "professional experience" area. This page is enough for a recent graduated student but not for a senior candidate (that has more experience). Can I insert a "ADD" button on this page where it creates a reset copy of the "professional experience" page where the candidate could add more professional experience? Thanks

    Yes, by using JavaScript to create a new page by spawning a template page. The downside is that is will only work with Reader 11 (and Acrobat) and not previous versions of Reader. It also won't work if you need to Reader-enable the document so that pre-11 versions of Reader can save the filled-in form. If these limitations are not a problem and you need more help, post again.

  • I created a book at the Ibooks author. But there are pages where the number of the page does not appear. How I can solve this problem? I thank you very much for any tip.

    I created a book at the Ibooks author. But there are some pages which the number of page is not visible. What can I do to see the number of the page?

    Have you changed the template?
    Some pages may not have numbers in place as default.  If you have changed the page or the template page, you may have added a object which as pushed the number out of view, or an image may be in a layer on top of the text.
    If you select one object on the page...then go to Edit, select all, you should see the outlines of any content no matter that content may not be seen. Look at the bottom for a page width rectangle outline.. IF its there, you need to shuffle the content until you find that box, and use Arrange > bring to front.

  • WHEN I LOGIN AS DIFFERENT USER, IT TAKES ME TO THE SAME PAGE WHERE THE PREV

    Hu Gurus,
    I log in to portal as user1 and go to a page and then log out of the portal. Then I try to login as user2, it takes me to the same page where the previous user was. It looks like it caches the page information. How can I avoid this. Please post a reply if you have some suggestions.
    Thanks
    Raj
    ----------

    Thanks for checking it, Jason. Yes, the cache settings are for 'Every visit to page'. That was the first thing I thought of. I have a feeling the problem has to do with a cache setting somewhere in our installation. For example, I'm still plagued with a few user accounts returning errors when I try to log in. The users aren't logged in, but when I click "Login" from the Portal Builder page, I see the same error...it's not even letting me get to a login screen. Thanks for all the help. It's great to get some feedback. In the meantime, we'll continue to track it down here.
    Mary

  • SharePoint Foundation 2010 - Display Site Pages on the Quick Launch

    how do you display site pages on the quick launch?
    sukai

    Try below:
    http://sharepoint.stackexchange.com/questions/28056/how-to-display-subsites-and-their-sitepages-via-the-quick-launch-navigation-menu
    http://office.microsoft.com/en-in/sharepoint-server-help/configure-the-quick-launch-for-site-navigation-HA102130960.aspx
    http://stackoverflow.com/questions/3636366/display-quicklaunch-on-webpartpage-in-sharepoint-2010

  • I'm trying to find the plugin for camera raw, but all I can find is the page with the cameras that are supported. But I don't find how to find and install the actual plugin. The end name is ARW

    I'm trying to find the plugin for camera raw, but all I can find is the page with the cameras that are supported. But I don't find how to find and install the actual plugin. The end name is ARW, and all I need is to find WHERE I can download it. Thanks.

    cr is installed by updating your app.  use help>update, or update manually
    pre cc updates:  http://www.adobe.com/downloads/updates/
    cc updates:  http://prodesigntools.com/adobe-cc-updates-direct-links-windows.html
    cc 2104 updates:  http://prodesigntools.com/adobe-cc-2014-updates-links-windows.html

  • Why won't time machine open up to the page where it gives me the option to back up my mac onto my external passport? It just brings me to this page where it gives me the option to scroll through my tabs.

    My time machine application was working fine earlier, but when I clicked it again it just led me to this. How do I open up the page where it gives me the option to back up my mac? and how do I choose certain files to back up? Because I don't want to back up my whole mac, just certain files.

    You are clicking on the wrong TM icon. Or not clicking it correctly.
    Use the TM icon in the top menu area. You can always open TM preferences from System Preferences.
    You can also right click OR Control Click on the TM icon in the dock.. and go to the same place.
    Ie open TM preferences.
    But it is not so easy as you seem to think to setup TM to backup this and not back up that.
    See pondini for info on how to use TM.
    http://pondini.org/TM/FAQ.html
    See Q10 for excluding items.
    And info on how to do backups manually.. just turn off auto backups.. you can start them manually when you like.

Maybe you are looking for

  • How do i switch itunes accounts on my iphone?

    Is it possible to change itunes accounts from my iphone 4S??? The account i have now is known by my computer, but my phone acts like it has no idea that i got rid of the old one!!!! Now i can't upgrade or get new apps because my iphone is still using

  • Windows Vista 64bit Trouble

    does anyone know if they've solved the problem with itunes crashing computers that run on windows vista 64bit?

  • Creating multiple invoices

    Hi, I would like to create multiple invoices for a sales order which has multiple line items, for eg: if the sales order is havig 10 items, i want the system to create 10invoices, and this is for a Order related billing. I have an idea of doing this

  • Layout of some websites aren't working

    When ever I go onto BBC iplayer and sometimes other websites, the layout of the pages is wrong. I've checked for virus' and also looked on safari, chrome and firefox and they are all the same. I don't really know whats going on

  • Dynamic Button Creation in list toolbar

    Hi all, I have a requirement to add dynamic button in list guibb. I have a ovp floorplan in which I used tabbed uibb. In tabbed uibb I used list uibb. Now I want dynamic button in list toolbar. Please give some suggestion which help me in achieving t