How to find a hierarchy of all Itmes Pages inside a Page

Hi,
I am using Oracle Portal 10.1.2. Need some information:
I have a page with Items or it can have both items, sub-pages and further each subpage can have items and/or sub-pages. How can I find all the objects in a hierarchical order. How can I construct my SQL to query the back-end tables that I can query to build a hierarchy for the whatever Page's pageid I provide.
If given a Page ID need to return all the items, sub-pages and so forth. I am trying to build a Tree structure Menu.
I have one Top page with tabs and in each tab I am adding one Portlet i.e. a page that is published as Portlet. Now this page which is published as a portlet can only have Items added or can have n number of sub-pages underneath which in-turn can have items and/or sub-pages and so forth, just like a Folder Structure in Windows. As soon as the user clicks a tab want to show all the items/pages in a tree like format.
Any idea on how can I proceed any help is really appreciated.
Thanks

Hi,
I am using Oracle Portal 10.1.2. Need some information:
I have a page with Items or it can have both items, sub-pages and further each subpage can have items and/or sub-pages. How can I find all the objects in a hierarchical order. How can I construct my SQL to query the back-end tables that I can query to build a hierarchy for the whatever Page's pageid I provide.
If given a Page ID need to return all the items, sub-pages and so forth. I am trying to build a Tree structure Menu.
I have one Top page with tabs and in each tab I am adding one Portlet i.e. a page that is published as Portlet. Now this page which is published as a portlet can only have Items added or can have n number of sub-pages underneath which in-turn can have items and/or sub-pages and so forth, just like a Folder Structure in Windows. As soon as the user clicks a tab want to show all the items/pages in a tree like format.
Any idea on how can I proceed any help is really appreciated.
Thanks

Similar Messages

  • How to find the list of all user exits modified by the users

    How to find the list of all user exits using by in R3

    Hi Mohamed
    You use Solution Manager to do the comparison for you.  There are some nice features that will highlight all your customised coding.  Have a look at the SolMan resources on the Support Portal e.g. using SolMan for upgrade comparisons.
    Rgards
    Carl.

  • How to find out what are all the change pointers assoicated for an idoc ??

    Hi ,
    How to find out what are all the change pointers activated for an idoc ??
    Thanks,
    Varma

    Verma,
    You can check what are the active Change Pointers for the message type in tcode <b>BD50</b>
    Use tcode <b>BD61</b> to check whether change pointers are active or not??
    Hope this helps..

  • How to find the list of all tables populated

    How to find the list of tables populated in the implentation of a particular company. DD02L contains all the tables SAP having. But i want only which are configured for a particular company.
    Also how to find the list of reports used by all users in a particular company. TSTC contains all transactions. But i require only reports used by a particular company.

    Hi Mohamed
    You use Solution Manager to do the comparison for you.  There are some nice features that will highlight all your customised coding.  Have a look at the SolMan resources on the Support Portal e.g. using SolMan for upgrade comparisons.
    Rgards
    Carl.

  • How to find a string in all directories/folders

    Good Day,
    I need to search for a word through out all the directories .Is there any command that which I can type to search for a string in all the directories,folders and sub folders at one time.
    Thanks in advance.
    Regards,
    Gopi.CH
    Edited by: 915796 on 10-Jun-2012 19:18

    Use the find command if you are looking for a specific file or directory name. The following example will find only filenames (type f) that contain the word "sample", but exclude the results found in /usr and /u01:
    # find / -type f -name "*sample*" | egrep -v "/u01|/usr"
    /home/oracle/snippets/parse2.sample
    /home/oracle/snippets/parse3.sample
    /root/sample.bin.dc
    /root/sample2.bin
    /root/sample.bin
    /root/sample.des
    /root/sample.out
    /etc/gdm/PostLogin/Default.sample
    /proc/sys/kernel/perf_event_max_sample_rateUse the grep command to search for content. For example:
    # grep -r "Dude" /home
    /home/oracle/snippets/sched_stop_dist.sh:# Author   : Dude
    /home/oracle/snippets/healthcheck.sh:# Author:     Dude

  • How to find your "List of all the Registered Apple Products" using your Apple id

    Guys......
    Previously was not able to find my list of registered apple products...  After a bit of dwelling into Apple websites found the right link.
    I saw another post dated back in 2010 which is now archived, but with out the right location to see all ur registered apple products.
    Here is the link...  "https://supportprofile.apple.com/MySupportProfile.do "
    Cheers.

    FINALLY! Thank you!

  • How to find out names of all stored procedures?

    Hi All,
    I need to find out the names of all stored procedures with parameters and return types. I can use DBA_SOURCE, but in this case I must parse TEXT to find out what I need. Is there any dictionary where the names, parameters and return types of stored procedures saved separately?
    Thanks,
    Andrej.

    Not much fair to bring this old post up, sorry!
    I am still looking for an answer to my post
    where are stored functions like ORA_HASH or GROUPING_ID

  • SharePoint Calc Column - How to Find and Replace ANY & ALL Values with Something Else

    Haven't found a solution on this even though it seems like it should be cut and dry.
    I have a column containing characters "-" (e.g., XXX123-123-fjhrh-sdafsdfsd). I want to find every "-" and replace it with "@". Seems easy but so far haven't found a solution. My calc column always seems to stop at the first
    occurence of "-" and only replace that one. Seems every forumula wants you to tell SharePoint where to start (position). You can't simply tell SharePoint, Find this "-" ALL OCCURENCES and replace with this "@" ALL OCCURENCES.
    I don't have the option of saying start at this position because my data is not the same in every cell/field (e.g., number of characters).
    Closest I've gotten is this:
    =REPLACE([IN THIS COLUMN],FIND("-",[IN THIS COLUMN]),LEN("-","@")
    RESULTS:
    XXX@123-XXX-123

    Hi JJSHAREP,
    The formula only works when there are only three "-" in the column value, and the formula will fail if there are more than or less than three "-" in the column value.
    I recommend to use Jquery code to replace the characters in the column called IN THIS COLUMN in the UI:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function () {
    var Index=0;
    $(".ms-listviewtable tr th").each(function(i){
    if($(this).find("div").attr("name")=="IN_x0020_THIS_x0020_COLUMN"){
    Index=i;
    $(".ms-listviewtable tr").each(function(i){
    if(i>0){
    var value=$(this).find("td").eq(Index).text();
    var value1=value.replace(/\-/g, '@');
    $(this).find("td").eq(titleIndex).text(value1);
    </script>
    Best regards.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Duplicates question: how to find and eliminate both/all

    I've looked through this forum for an answer to this...sorry if it's already been answered, but I didn't see it.
    I need to be able to 1) find duplicates or multiples in a column and 2) delete both/all, not just one of those duplicates. So, for example, if I start with a column that has:
    A
    A
    B
    C
    C
    C
    D
    E
    E
    I want to be left with:
    B
    D
    I do NOT want to be left with:
    A
    B
    C
    D
    E
    Is there a way to do that? Again, sorry if it's been answered, but I couldn't find it, if so.

    Really easy.
    Assuming that the row 1 is an header one,
    in B1, enter:
    =IF(COUNTIF(A,A)=1,A,"")
    you will get what is shown by "Before"
    Select every cell
    activate Sort > using Column B > ascending
    you will get what is shown by "After"
    delete rows 2 thru 9.
    That's all folks
    Yvan KOENIG (from FRANCE dimanche 23 novembre 2008 16:52:44)

  • How to find Routing list for all material ?

    Dear all,
    E.g. -- There is routing for 1000 material codes.
    I can see routing for one material routing by CA03 Tcode.
    But if I want to see for all 1000 material routing with all operation stages/activity , How to see ?
    Is there any TC , tables , ...... ?
    I want to transfer it in EXCEL format.
    Pl' reply.

    Hi
    You can use Print task list transaction code CA51.
    or if you want to develop a program to download using tables, use following tables
    MAPL,PLKO, PLAS,PLPO
    Regards,
    Krishna Mohan

  • How to find the names of all current caches?

    How can i find out what the names of the current caches are in a cluster in code?
    Right now i'm looking at CacheFactory.getCluster(), but not sure where to go from there.
    Thx.

    Hmm, it's not working. The only service i get back from the cluster is one called "Cluster".
    Note that this is in a member that is NOT a storage node, would that make a difference?
    I can get the caches via CacheFactory.getCache(), and issue commands against them no problem. And even after using the caches i still just get the one "Cluster" service, nothing that's a "CacheService".
    Edited by: user9222505 on Aug 24, 2012 5:18 PM

  • How to find the list of all the schedules on SAP BW server ?

    Hi.
    I am not familiar with BW  and request some advise.
    We would like to have some information with regard to list of all the jobs / schedules which are running on our BW server.
    With date / time./ daily /weekly/ whatever,
    With start time and end time ... of the schedule.
    Which transaction - will help me to get this information.
    Because we would like to see the entire schedules list and then schedule some jobs on the BW server.
    Can anyone help me on this.
    Thanks in advance.
    Kind regards
    Indu

    Goto t-code SM37
    1)Give job name and user name as *
    2) Select the job status: Scheduled/Released/ready/Active/Finished/Cancelled
    3)Job start condition :Input from Date and To Date (From when you would like to see the jobs)
    4)Now execute, system will display all the jobs accordingly.

  • How to find the list of all queries on each and every cube in the system???

    Hi All,
    I need some method to get all the reports(queries)(technical name and description),run on all the infocubes in the system. The number is very huge...roughly...on each cube there are near about 40-50 reports and the number of cubes is also too high.
    Is there any table or function moudle which can make this job easy and less time consuming.
    Freinds I need this solution urgetly. Please rush back...
    regards,
    minal

    Hi Minal,
    RSZCOMPIC table lists queries built on the cubes.
    COMPUID is an ID of the query.
    RSZELTDIR table contains description of the reporting elements. DEFTP field equals “REP” designates queries.
    Search for  RSZELTDIR-ELTUID = RSZCOMPIC- COMPUID. Field MAPNAME will contain a tech name of the query and TXTLG field – its description.
    Best regards,
    Eugene

  • How to find called programs for all zprograms?

    Hello dear colleagues,
    I need kind of a report tree that answer the following question:
    Wich transactions and external programs are called from every Ztransaction?, considering that such called program/transactions also call others.
    Besides i need to know about authority check related to each call.
    Is there a standard report or useful code?
    Any suggestion is appreciated.
    Thanks!

    Hi Lidya,
    Check the below thread,
    https://forums.sdn.sap.com/click.jspa?searchID=14358915&messageID=5386905
    Kindly Reward Points If You Found The Reply Helpfull
    Cheers,
    Chaitanya.

  • How to find out list of procedures and functions inside a package

    How I can find out the list of Procedures and Functions inside a Package.

    Look at ALL_PROCEDURES and ALL_ARGUMENTS.

Maybe you are looking for