How To Create A Portlet showing granted Items

Hello,
we recently installed ias 9.0.2 + Portal.
Now I want to create a personalized portlet showing all items listed in a Portal DB Provider granted to the user (or group) actually logged in. But I don't know how to find this information or what tables to use . Perhaps I can find some help here.
Thanks a lot,
Frank G.

Hi Wei
You can create a portlet using either the Content Server (or something else) that contains links to open the content_item.jsp provided by content server. I have included a description of the JSP below and the examples outline how it would be used from a presenation template. Alternatively, if you are not using the Content Server to create your portlet you can replace the pcs tags with static values.
content_item.jsp
Can be used to open the content item editor. You can use a combination of the parameters below to use the content_item.jsp to create a new content item or edit an existing item.
Parameters
fid = the id of the folder to create a new content item
dfid = the id of the folder that contains the det specified by the det parameter
det = the name of the DET to use to create a new content item. The DET must be located in either the folder specified by dfid or fid.
ctid = the id of the DET to use to create a new content item.
ciid = the id of the content item to open in the content item editor
checkout = set to true to checkout the content item specified by ciid.
Examples
To create a new content item in the articles folder using the news article DET (also located in the articles folder
<pcs:value expr='pcs_location'></pcs:value>/published_tools/content_item.jsp?fid=<pcs:value expr="folderByPath('Articles').pcs_id"></pcs:value>&det=News%20Article"
To edit an existing content item
<pcs:value expr='pcs_location'></pcs:value>/published_tools/content_item.jsp?ciid=<pcs:value expr='pcs_id'></pcs:value>

Similar Messages

  • How to create a cursor in menu item???

    Hi,
    How to create a cursor in menu item??? and process data inside the SQL Editor of Menu Item>????
    Regards,

    ok, you mean: When the form is starting you want to disable some menues.
    create a WHEN-NEW-FORM-INSTANCE-trigger in your form and then do the loop over the menu-item
    what is ENTITIES? The name of a table ?

  • How can create and change PCA line items.

    How can create and change PCA line items.
    Please tell me the process and t.codes.

    If you are in version < 4.7 ee then use 9KE0 tcode for passing profict center entries or trasnafer of balances from one profit center to another.
    If you are in new GL regular FI entry like FB50 will hold good for account types "S"

  • How do  create a slide show with both video and photos in elements 12

    how do  create a slide show with both video and photos in elements 12

    Hi Brian
    You can batch process a set of prepared slides from Full Edit (see image) using:
    File >> Process Multiple Files
    In the PMF dialog you can choose filename, date, or description (caption)
    Make sure you choose a separate destination folder to your source folder so as tot to permanently overwrite your originals.
    Click image to view

  • How to create snapshot portlet and snapshot query using server API

    How to create snapshot portlet and snapshot query using server API
    Regards
    Dheeraj

    Hi Sebastian,
    I have used the query and it is working fine. but, How could i include the headers of the query also in to the Excel Sheet.
    RehaanKhan. M
    see the method discussed here
    http://sqlblogcasts.com/blogs/madhivanan/archive/2008/10/10/export-to-excel-with-column-names.aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to create JSF Portlet in Currrent JDeveloper Version

    Hello,
    Now there is no options to plugin Portlet in Current Jdeveloper Version.Anyone have any idea when Oracle Is going to Release the Portlets extension in Production Version???
    Is there any good documents for how to Create JSF Portlet in Oracle JDeveloper current new Version. IF So Please send me the link.
    Thanks
    Sona

    The OracleAS Portal is also required to deploy JSF Portlets. To Develop and deploy a JSF Portlet:
    1. Install the OracleAS application server.
    2. Install the portlet container.
    3. Install the OracleAS Portal Extension.
    4. Generate Portlet with Portal Extension in JDeveloper
    5. Connect to application server.
    6. Deploy Portlet to Application Server.
    7. Install OracleAS Portal
    8. Register Portlet with OracleAS Portal.
    9. View Portlet in OracleAS Portal.
    10. Add Portlet to a page.

  • How To create Library Functions for Validate Items

    Hi all,
    My form Consists data block blk_user with two items
    username and password
    Both user name and Password are required Fields.
    When user left these items Empty To show Alert
    I Created Below Procedure and Called in Form_Level ON-ERROR Trigger.
    PROCEDURE pcd_io_alert IS
         itm_name VARCHAR2(20);
    BEGIN
         IF Error_type ='FRM' AND Error_code = 40202 THEN
         Message(get_item_property(NAME_IN('SYSTEM.CURSOR_item'), PROMPT_TEXT )||' Should
    Not Be Empty');
         SET_ALERT_PROPERTY('ALT_IO',ALERT_MESSAGE_TEXT,
              (get_item_property(NAME_IN('SYSTEM.CURSOR_item'), PROMPT_TEXT ))||' Should Not
    Be Empty');
         itm_name := Show_alert('ALT_IO');               
    RAISE FORM_TRIGGER_FAILURE;
         END IF;
    END;
    It working fine.
    Could You Tell how to call or create this procedure as Library functions and call the created library in form To SHow Alert. Actually I want to create library functions to Validate and Show Alert Mesages.
    Regards
    R.MaheshBabu.

    Hello,
    Could you give Some examples or links related to how To create and call library functions For validate Items..For creation you already created one procedure and you called on error. So for creation and call it is clear. Now you are talking about validation for items. It depends on your requirement. As you check validation in items's triggers you can also check validation in function/procedure of library. You can use parameter to pass values and check the validations. And you can create the procedure/function in library like this...
    PROCEDURE My_Proc(Parameter_Name IN DATATYPE) IS
      Variables Declarations...
    BEGIN
      -- Here check the validation on the passed value.
    EXCEPTION
      -- Exception Handling part...
    END;
    FUNCTION My_Proc(Parameter_Name IN DATATYPE) RETURN DATATYPE IS
      Variables Declarations...
    BEGIN
      -- Here check the validation on the passed value.
      RETURN <ANY VALUE>;
    EXCEPTION
      -- Exception Handling part...
    END;
    Is it Possible to use system variable ':system.cursor_value' while creating PL/sql library functions?Yes, because it is clear as you used for CURRENT_ITEM like NAME_IN('SYSTEM.CURSOR_item') so you can use SYSTEM VARIABLES.
    -Ammad

  • How to create one portlet with more apps

    Hi,
    How to create 10 application with one portlet on OC4J? Anybody has experience? Care to share with me.
    Thank you.

    Hi
    If you are writing application logic using JPDK or PDK, you can implement the logic/code for 1 application or 100 applications/functionality in one portlet.
    Where as if you have per application you have 1 portlet you can have modularity, can be added to Portal page's portlet region where ever you want to.portlet provider(Web provider or Pl/sql provider) can contain multiple portlets.
    If you go with 100 applications rendering in one portlet you need to implement 100 applications logic/code in 1 portlet, you can parameterize the portelt to show which applications can be shown at run time, for this you need to implement parameterization logic in portlet code. I can say this approach is cumbersome
    Thanks
    Seshagiri.Rayala
    http://soabpel.wordpress.com/

  • How to create a portlet for a new web page?

    I create a web page "A" in the remote server and have another page "B" which have a button in it. And when push the button in page "B", I want to use PRC to add a new portlet object linking to page "A" to portal. How should I do this?
    I know it's possible to add a new portlet template using IRemoteSession.GetPortletTemplateManager().CreatePortletTemplate(intparentFolderID, intwebServiceID), but how should I get the webServiceID while it haven't been created for the page "A". Must I create the web service in the portal server by hand? Is there any programmatic method to create a new web service by PRC? Or if there are some other methods to create a portlet for a new page without creating webservice, that would be a prefer.

    Hi Prateek,
    I Did the Things Which is Presented By Michal in This Blog.
    But When I Executed RZ70 With My Gateway Service as "sapgw01" And the Gateway Host As "Server Host Name".
    I Got the Error When I Click on "<b>start Data Collection"</b> After Execution of the Program As Follows
    <b>"Used RFC destination :SLD_NUC"</b>
    <b>"RFC call failed : Error opening an RFC connection"</b>
    <b>"Batch job not scheduled"</b>
    All Other Are Success Like Data Collection ......
    Please let me Know What to Do Now...
    Regards
    Khanna

  • Newbie Here - How to Create a Slide Show in CS5?

    I am using Windows 7 and I am familiar with PSElements 8 where creating a slide show is easy.  I just want to create a slide show in CS5 (in Bridge??  View>Slideshow Options?) using vacation photos from several folders, and I want to order them manually.
    First, I can't figure out how to display more than one folder in the Content panel in Bridge.  Second, I can't figure out how to create and intersperse "blank" slides with text.   Third (and I haven't even gotten this far yet), how do I save the slide show and burn a VCD?  This was all so easy and intuitive in PSE8, I can't believe it seems nearly impossible in CS5! 
    As an alternative, should I simply re-save the photos as JPEGs (they are PSDs now), export them to a Desktop folder, open them in PSE8 and create the slide show there instead?   Thanks for any help and suggestions!

    I am using Windows 7 and I am
    familiar with PSElements 8 where creating a slide show is easy.  I just
    want to create a slide show in CS5 (in Bridge??  View>Slideshow
    Options?) using vacation photos from several folders, and I want to
    order them manually.
    First, I can't figure out how to
    display more than one folder in the Content panel in Bridge.  Second, I
    can't figure out how to create and intersperse "blank" slides with
    text.   Third (and I haven't even gotten this far yet), how do I save
    the slide show and burn a VCD?  This was all so easy and intuitive in
    PSE8, I can't believe it seems nearly impossible in CS5! 
    As
    an alternative, should I simply re-save the photos as JPEGs (they are
    PSDs now), export them to a Desktop folder, open them in PSE8 and create
    the slide show there instead?   Thanks for any help and suggestions!
    1) Bridge has a new feature (can't think of the term at the moment) but it works like instancing or virtual copies. Select all of the photo's that you want and place them in the "collection" (Ah I knew I would think of it) Move to another folder and move them into the same collection and so on. These are virtual copies in that they don't really exist, but are a link to the original images. You then can use the collection for the slide show.
    2) Just create a page same size as your photo's in photoshop with what ever color background and put your text on it.
    3A)The slide show can be exported as a pdf or swf. Windows can then copy the file to a cd. If you choose swf, you may need to alter the html file (I assume it generates one, if not it isn't har to create one) The html file would help the web browser determine the correct size to display at. If you have flash, it can be used to create a html file as well.
    3B)If you would like the slide show to be displayed on a tv screen, then your cd/dvd will need to use a format that your dvd player can play, mp2 is the standard, but some can display jpg's, some are blue ray, etc. For exporting into the correct video format, then one of the following can be used. After Effects, Premeire pro, Encore, Photoshop (If you have quicktime installed and you are using one of the formats that quicktime supports like mp4)
    If you have quicktime installed, paying the 20 bucks may be worth it as it will allow you to take your jpg images and generate an animation file as avi or mov. But can save as mp4 as well.
    4) In Bridge you can select all of the images and run image processor on them. This plug in is part of photoshop there fore it will be in the menu's under photoshop. It will let you specify the files size, format and any actions, etc. It will then place them all into a folder that you specify.

  • How to create a portlet in Jdeveloper and consume it in webcenter spaces

    Hello all,
    I need to create a portlet in which i will be passing the parameterized url and it will go on hit the third party application.After doing that i have to consume it in webcenter spaces where user can directly add that porlet and can do all his work of third party from webcenter spaces itself.
    Can anyone tell me how to make portlets and what all we need in Jdeveloper for creating the portlet.As well as i need some reference guide which let me help to create the portlets as well as consuming in webcenter spaces.
    Please Help !!!
    Thanks...

    Are you trying to expose an existing system inside of WCS?
    If this is the case, you should investigate "External Applications":
    http://download.oracle.com/docs/cd/E17904_01/webcenter.1111/e10149/config_svcs_prod_extapp.htm#WCSUG6698
    This is an out of the box way of embedding external systems, with seperate login pages etc. I think this will achieve what you are trying to do yourself. It even allows for parameterised URLs

  • How to create production order for multiple items having common raw materia

    Dear all,
    We are running a sheet metal fabrication company at Vadodara Gujrat.
    Please guide us how to create single production order for multiple items using single raw material??
    For example, We want to produce baby shirt(item code AAA001), shirt with full sleeve(item code AAA002), shirt with half sleeve(item code AAA003),shirt slim fit (item code AAA004),shirt loose fit(item code AAA005) from single raw material say(item code XXX001).
    Right now we have to create 5 production order to produce above 5 items of single sales order  in SAP B1 though it is made from single raw material which is foolishness and time consuming too. (Please also note that to produce any finfish good item, raw material required for that item may vary every time in our process.)
    Kindly guide us how to solve the problem.
    Thanks.
    RUPESH  +91-9227744273
    WEB : www.gorasia.co.in

    Hi Rupesh Gorashiya,
    This is possible through MRP for that you have to put Sales Order first and Run MRP Wizard
    MRP Wizard Put Multi Production Order as per Item Taking in Sales Order just click it on and execute.
    Thanks,
    Srujal Patel

  • How to create ZPS Report showing specific Project details?

    Hi,
    How do I create a custom  ZPS report which shows Project details and progress The requirements are to see 20 fields in one single report . The fields which  to be seen in the report are Labor Cost, Material Cost,Labor hrs,finish dates, billing plan, Milestones, NWA,Responsible person,Work Center,Warranty information all in one report.
    Please advise how to create such a report.
    Thanks much!

    you can use
    ABAP
    Query
    Report Painter / Writer
    to create your won reports
    The choice will depend on what exactly you want

  • How to create price list in all item..?

    Hi all,
    I want to modify the price list in all items because changing the price. If I have more 100 items, I have got difficult change on SBO one by one, there is not an efficient and need a long time. I used SBO 2005A PL 43.
    How to create it fast on SBO? How to create add on module to modify the price list in all items so I modify the price list is faster? I don't know relationship the tables to change the price list on SBO. Please let me know...
    Thanks in advance for your help....
    Agung

    Dear Mr Adrianto,
    In the stock module under price list there are different options. It could be possible to change the prices of Parent items according to thier children's prices.
    Also, you can use the option: Special prices for BP, if you need to change the prices for on BP.
    There is also the discount group if you want to reduce the price of items for the whole group. Please note that you can also increase prices when you use a percentage > 100%.
    Kind Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • How to create a portlet through the hosted portal service?

    Hi!
    I'm currently working with Release 2, Portal Version 9.0.2.2.14.
    I read that it is possible to create a portlet (eg. survey portlet) through the hosted portal serviced (portal.oracle.com). How can I do this?

    The easiest way to provide search on just pages (not content areas) would be to crawl portal pages just like static pages. We have search partners on http://portalcatalog.oracle.com/ that can help you w/ this.

Maybe you are looking for

  • Two production  orders at the header level one for one single requirement

    Hi Gurus, Please provide me your valuable suggestion on the issue. *Client wants to have a only two production  orders at the header level one for one single requirement .* 1) Manufacturing Order u2013 In this order for Finsihed prodcut system should

  • AA 2.1 file saving problem

    I have AA 2.1 on Vista Home ( 32bit). I have used this for 2 years, no problems (besides my computer just being naturally slow), but all of a sudden I'm have issues saving my mixdowns and sessions. I open up the "Save As.." dialog box, and go to type

  • Why is my entire CS3 crashing??

    Hello, For the past week I've tried to use Photoshop, InDesign and Illustrator but almost immediately after launching them, they crash.  I followed everything on the discussion boards including deleting TWAIN files but nothing seems to be fixing the

  • System Sounds Disappeared

    Hello all, This is probably a pretty basic question to most but for the recent Window's switcher it is baffling to me! Anyways, earlier this week a lot of the sounds that my mac made have disappeared. The speakers still work because I can play music

  • Performing Top-N Analysis

    An Oracle University Material in Sql Says The high-level structure of a Top-N analysis query is: SELECT [column_list], ROWNUM FROM (SELECT [column_list] FROM table ORDER BY Top-N_column) WHERE ROWNUM <= N; For example to display the top three earner