Dynamically build URLS  for dynamic navigation

hello all, I am trying to develop dynamic navigation for pl/sql portlets in oracle portal 10g. When admins place the portlets i develop on pages or tabs, etc, i would like to be able to query the database for there location(what page or tab its assigned to) dynamically so i can build links that would allow linking from portlet to portlet no matter where the admin placed them in the Portal. So my question is, what table or tables list the page_id or tab_id for portlets when they are added to a region on page or tab???

The Content Area Views describe the information that you can access from PL/SQL.
Peter

Similar Messages

  • What is the Behavior.Navigation URL for creating navigation bar links for search scopes for security group and distribution groups?

    ...the search scope is used to subset the SGs and DGs. The search scope itself shows expected results. The search scope filter used is: /Group[Type='Security' or Type='MailEnabledSecurity'][(Domain = 'DomainX') or (Domain = 'DomainY')]
    Tried the following, with the GUID being the resource ID from the search scope for security groups:
    ~/identitymanagement/aspx/customized/CustomizedObjects.aspx?type=Group&searchtype=e8ed98b6-e299-4b8d-bfe5-e4b2adf1cd60
    ~/IdentityManagement/aspx/groups/Groups.aspx?type=Group&searchtype=e8ed98b6-e299-4b8d-bfe5-e4b2adf1cd60
    Thanks

    are you talking about redirect URL in search scope ? FIM will automatically add the searchtype querystring
    for custom groups search scope you can use :
    ~/IdentityManagement/aspx/groups/AllGroups.aspx
    and configure you search scope to use the same UsageKeywords as for the security groups
    and restart your IIS server using the command "IISRESET"
    in your case if you want to create navigation bar link to your group-type search scope use may use this format:
    http://{your fim server}/IdentityManagement/aspx/groups/AllGroups.aspx?searchtype={your searchscope guid}&content=%2a
    ex : http://fimserver/IdentityManagement/aspx/groups/AllGroups.aspx?searchtype=47e0a973-0ab4-46f5-815f-f5028c1af58e&content=%2a

  • Web URL application in Dynamic Navigation

    Hello all,
    in the dynamic navigation window I run an URL iview with HTML application with javascript.
    I receive in the dynamic navigation window an EPCF event with EPCMPROXY calls.
    After I receive the event I would like to navigate within the dynamic navigation iview to another page of the HTML application. When I use web URLs and form.submit of course the EPCF framework is not loaded with the HTML page and I cannot react to events anymore. Is there at all any solution to this problem?
    Thanks in advance
    Peter Balaz

    Yes, there is a problem with ur MDS.
    The command window for MDS should stay.
    I had jdk compatibility issue, so thats why I suggested to check on jdk.
    I'm not sure what version will be compatibile with MDS 4.1.4.
    check the prereuisites.
    You can try the following links:
    http://supportforums.blackberry.com/rim/board/message?board.id=browser_dev&message.id=264&query.id=368188#M264
    http://supportforums.blackberry.com/rim/board/message?board.id=browser_dev&message.id=257&query.id=368428#M257
    http://supportforums.blackberry.com/rim/search?category_id=BlackBerryDevelopment&submitted=true&q=MDSSimulatorclosing
    http://supportforums.blackberry.com/rim/search?submitted=true&q=MDS+4.1.4
    http://supportforums.blackberry.com/rim/board?board.id=MDS_dev
    http://supportforums.blackberry.com/rim/?category.id=BlackBerryDevelopment

  • Error while dynamic Navigation for BP Account Overview

    Hi,
      I have created a custom search, result component which is working fine. On the Partner number I have provide the hyperlink to navigate with Dynamic navigation, but I am getting the below error when I clcik on partner number.
    Selection and result
    Now when I clcik on BP
    Code which I have written in event handler
       method EH_ONPARTNER_CLICKED.
    "navigate to Account overview
       DATA: lr_entity        TYPE REF TO cl_crm_bol_entity,
             lv_index        TYPE i,
             lv_guid         TYPE crmt_object_guid,
             lv_objectid     TYPE crmt_object_id,
             lr_core         TYPE REF TO cl_crm_bol_core,
             lr_entity_bt    TYPE REF TO cl_crm_bol_entity,
             lr_nav_descr    TYPE REF TO if_bol_bo_property_access,
             lr_navigation   TYPE REF TO if_crm_ui_navigation_service,
             lr_col          TYPE REF TO cl_crm_bol_bo_col,
             lv_partner_guid type crmt_genil_object_guid.
    * Let's get current row info
      CALL METHOD cl_thtmlb_util=>get_event_info
        EXPORTING
          iv_event = htmlb_event_ex
        IMPORTING
          ev_index = lv_index.
      CHECK lv_index IS NOT INITIAL.
    * Get entity for the current row
      CLEAR: lv_guid.
      lr_entity ?= typed_context->SEARCHRESULTNODE->collection_wrapper->find( iv_index = lv_index ).
      IF lr_entity IS BOUND.
        lv_objectid = lr_entity->get_property_as_string( iv_attr_name = 'PARTNER' ).
      ENDIF.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = lv_objectid
        IMPORTING
          output = lv_objectid.
       CHECK LV_OBJECTID IS NOT INITIAL.
      select single partner_guid from but000 into lv_partner_guid where partner = LV_OBJECTID.
    *     Get the BOL Core Instance
      lr_core ?= cl_crm_bol_core=>get_instance( ).
    * get the BuilHeader object
      lr_entity_bt = lr_core->GET_ROOT_ENTITY( iv_object_name = 'BuilHeader' iv_object_guid = lv_partner_guid ).
    * add the Builheader to the collection
      create object lr_col.
      lr_col->if_bol_bo_col~add( iv_entity = lr_entity_bt
                                 iv_set_focus = abap_true ).
    cl_crm_ui_descriptor_obj_srv=>create_ui_object_based(
               exporting
                         iv_ui_object_type   = 'BP_ACCOUNT'
                         iv_ui_object_action = 'B'
               receiving rr_result           = lr_nav_descr ).
      lr_navigation = cl_crm_ui_navigation_service=>get_instance( ).
    * check if navigation is possible
      if lr_navigation->is_dynamic_nav_supported( ir_descriptor_object = lr_nav_descr ) = abap_true.
        lr_col->if_bol_bo_col~insert( iv_bo    = lr_nav_descr
                                    iv_index = 1 ).
    *   start the navigation
        lr_navigation->navigate_dynamically( iv_data_collection = lr_col ).
      endif.
    endmethod.

    Hi ,
    Try this.
    Root entity you no need to take for this.
    cl_crm_ui_descriptor_obj_srv=>create_ui_object_based(
               exporting
                         iv_ui_object_type   = 'BP_ACCOUNT'
                         iv_ui_object_action = 'B'
                         iv_entity_key_name = 'BP_GUID'
                         iv_entity_key_value = lv_bp_guid
               receiving rr_result           = lr_nav_descr ),
      lr_navigation = cl_crm_ui_navigation_service=>get_instance( ).
    * check if navigation is possible
      if lr_navigation->is_dynamic_nav_supported( ir_descriptor_object = lr_nav_descr ) = abap_true.
        lr_col->if_bol_bo_col~insert( iv_bo    = lr_nav_descr
                                    iv_index = 1 ).
    *   start the navigation
        lr_navigation->navigate_dynamically( iv_data_collection = lr_col ).
      endif.
    Regards,
    Deepika

  • Dynamic URL for HTTP receiver adapter

    Hi all,
    when the XI send the http request to the target system, the format maybe like this:
    header + body the body is including: Prolog, payload and Epilog
    here is about the target system have a 'input' parameter(maybe string type)
    is it possible to pass the 'head + body' these value(or maybe the whole http request message) into input
    i mean is it possible to set the dynamic URL for http receiver adapter like this:
    http://host:port/path?input=<the header and body>
    i have searched the blog Dynamic Configuration of Some Communication Channel Parameters using Message Mapping
    Link:[/people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping]
    and the similar threads in the forum
    please give me some advice
    thanks in advance

    When a HTTP server requests the whole message as URL parameters, then I assume that the server also requests an HTTP GET, which is not supported by XI.
    Could you check this?
    Regards
    Stefan

  • Dynamic URL for Recv HTTP (Adapter spec attribute enabled)

    Hi,
    I need to have a dynamic URL for one of my cases been worked. the URL is
    httlp://:<host>/perform/XTA?serv=*&action=start
    the event "action" can accept either start/stop or restart. i wanna to control this dynamically and went for recv http enabled with adapter specific message attributes. here i had enabled the check box "URL" and in parameter 1 i had given the name as "action".
    in my message payload the "action" will be start/stop or restart which is handled by UDF for which the code is below:l
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey trig = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/HTTP", "UrlParamOne");
    conf.put(trig,action);
    return "";
    this udf is mapped to the root node of the target...but when execute the case i get the following error
    "Dynamic Header - Missing Message Attributes: URL/HTTP Destination"
    when i execute the url
    httlp://:<host>/perform/XTA?serv=*&action=start
    in browser it works fine and also with fully qualified name in http recv works fine but not with dynamic settings.
    any help on it pls?

    Hi Prabhu,
    Enable Adapter-Specific Message Attributes(ASMA) in receiver HTTP channel.
    Dont enable checkboxes for "URL or HTTP Destination".
    Enable checkbox "Apply URL Parameters"
    for parameter1 textbox give value action
    Regards,
    Praveen Gujjeti

  • Dynamic URL for Exploration View

    Hi Experts,
    We know that we could create Dynamic URL for InfoSpace to get its facet value and chart type
    Would you kindly let me know whether it is possible to get dyanmic URL for Exploration View
    I know it's hard to set chart type but we just want to fitler value on facet
    Best regards
    Alex yang

    Hi Mallik,
    Thanks for your help
    But it looks like this kind of thing does not even for InfoSpace.
    According to the document from SAP, http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_exp_admin_en.pdf
    The strucutre will be as below for InfoSpace if you want to pass parameter value
    http://Test.com:8080/explorer/index.jsp?isna=Dynamic URL Test&fans=Year_:_2013
    We need to use isna to get infospace name or document id and using Fans to get facet value
    But we do not know what's the key word to get exploration view name
    Would you kindly let me know whether there is some document to use?
    Best regards
    Alex yang

  • Open portal page via HTML URL out of the "Dynamic Navigation"

    Hi everybody,
    In our portal environment we have a page (page1) in which user can enter date. On another page (page2) in a different navigation node there is a report that shows the data. We want to provide a possibility to navigate directly from page1 to page2.
    Our idea was to have a KM-document iView  in the "dynamic navigation" of page1 with a link to page2.
    that works fine. but page2 is not opened in the whole window but in the dynamic-navigation-frame.
    the link looks the following:
    <A HREF="http://xxxxxxxx.xxx:1235/irj/portal/index.htm?navigationtarget=roles://portal_content/folder/role/workset/page/">
    Its obvious that the link is opened in the same frame because no target property is added to the href.
    I thought about adding a the "target" property to the  href, but I don't know how the Frame is named.
    I have tried this:
    <A HREF="http://xxxxxxxx.xxx:1235/irj/portal/index.htm?navigationtarget=roles://portal_content/folder/role/workset/page/" target="MainFrame">
    but it didn't work.
    Does anybody know how the MainFrame in the portal is named or has any other solution to my problem.
    Regards, Alex
    Edited by: Alexander Paulus on Nov 20, 2008 4:09 PM

    kind of simple
    user target="_top" to have the page displayed in the whole window.
    Regards, Alex

  • EP6: Dynamic Navigation - Eventing

    Hi everybody,
    I want to navigate to the same page/iView from my dynamic navigation nodes (which implement INavigationConnectorNode). The dynamic navigation shows a list of customers. Clicking on one of them should show the same page/iView, obviously for different customer ids.
    Trying the simple approach to append the parameters ("....?customerid=4711") to the launchURL does not work.
    I assume the whole concept works differently: do I have to implement getPRTEvent() (or maybe getJScript() or ..) to parameterize my navigation event ?
    I cannot find any info on that subject, so I'd be really grateful for ideas and hints.
    Cheers,
    Heiko

    Hi Altafin,
    thanks for your reply, unfortunately this does not work: you assume that I build an iView and thus can control the HTML output. What I do, though, is to dynamically build a navigation structure (not in an iView but in a Navigation Connector). There I only have a couple of fields I can set, most notably the "launchURL". The standard Portal Navigation Service takes my data structure, merges it and forwards it to the (standard) detail navigation iView.
    In the meantime I have been able to solve it (actually thanks to Sven Kannengiesser): I put the following into my launchURL:
    "/irj/servlet/prt/portal/prtroot/<escaped pcd url>?myparam=4711"
    where the escaped pcd url looks something like
    "pcd!3aportal_content!2fmyfolder!2f .... !2fmypage"
    That works fine.
    Cheers,
    Heiko

  • WD Java iView & Dynamic Navigation Problem

    Hi,
    I'm trying to use a WebDynpro Java iView in Dynamic Navigation but have the following display problem:
    When I navigate to the page for which I've added the iView to the dynamic navigation, only the WebDynpro iView (from the navigation) is shown. You can see the page in its correct form being loaded but as soon as the navigation iView seems to be loaded/ing it replaces the full lower part of the screen (navigation and content panel).
    If I use a plain URL iView in the dynamic navigation the behaviour is as expected.
    But if I add a WebDynpro iView or even a page containing that iView I get the strange behaviour again.
    I'm running NW04s SP7.
    Any ideas?
    Do I have to set some properties on the WebDynpro iView?
    I've tried a couple of things but none did work so far.
    Thanks & Regards
    Markus

    Hi Henrik,
    Sorry for the late reply but I'm just back from vacation.
    No, I have not found a solution. I decided to go for an integrated application instead (Main WD application that bundles navigation with other applications). That works but of course is not as "nice".
    Have you come across some solution yet?
    Kind Regards
    Markus

  • Dynamic Navigation and Teamviewer

    We programed our own iviews in WebDynpro for using in manager selfservice.
    For changing between different employees, we assigned the standard SAP teamviewer as a dynamic navigation to the pages which include our WebDynpro iviews.
    This proceeding works well. For each iview we can change the employee we like to work on. But if we go to another WebDynpro application in the navigation path, the teamviewer is open in a new way. So the teamviewer lose the indicated employee by stepping from the first to the next application.
    But by using the standard manager role, the teamviewer hold the selected employee.
    How can I get this effect? Where can I find same information about this problem?

    Hi,
    Maybe it has to do with the isolation of the iView. By default (i guess) it is configured to be "embedded" on page, this will result in refreshing. Set the iViews to "URL" (and also set the highttype to "automatic").
    Otherwise it has to do with the navigation. Are u using the Light Portal Framework?
    If so it could be the case that the navigation is triggering a complete page refresh instead of only refreshing the content area..
    regards,
    Benjamin

  • Dynamic Navigation (treeView)

    Hello,
    knows somebody a good tutorial how to build a own Navigation Tree and fit it in the dynamic Navigation area? Or give me some hints?
    I need to generate a TreeView ivew with links to a other iView
    thx for beginners help

    Hi Amit,
             I need to create an iView that displays menu in TreeView  dynamically and when i select any node in a tree, it should navigate to that particular link.
    How i can do this ?
    Yours help will be appreciated.
    Regards,
    Eben
    Message was edited by:
            Eben Metilda

  • Eventing & dynamic navigation & VC

    Hi all
    i have a  page wth  a custom  webdynpro iview in the dynamic navigation  section of the page.the webdynpro app contains a tree & depending on which element in tree is clicked i want  differnt iviews to appear on the right side
    the  right side iviews are developed in VisualComposer Flash & are independent of the tree webdynpro application.
    Client side eventing is essentially working . i can populate the  fields in the target iviews through   clent side eventing
    currntly i have ALL the target iviews on the right side of the page
    what i need is to hide & show these  iviews  depending on  which branch of tree is clicked
    1 option was to use VC webdynpro compile option  on the target  apps &  use  Webdynpro component iviews & page service. & do a pageService.setDynamicIView(...) & pageService.showDynamicIView(...)
    and not have all the iviews  on the page at design time but have  each of them called dynamically at run time & then  fire the client side event to populate the fields
    all i want to know is has any one done something similar  & did it work successfully
    another option  was to have individual pages with the tree iview in Dynamic navigation & one target iview on the right & do a WDPortalNavigation. & workprotect mode(so that the tree maintains the state). but this causes  major screen flashing as the whole page gets refreshed. so this is my last option
    Any help is appreciated
    thanks
    Prasad badal

    Hi Prasad badal,
    I had a similar requirement some time ago. I did not figure out a useful way to dynamically display several iViews on one page. (Except for building a HTMLB page, which I didn't, as I have never worked with that before).
    You could deploy all iViews in one single VC-Model.
    Then display all iViews above each other. Depending on what tree element is selected, you display one iView and hide all others.
    Best Regards, Benni

  • Portal Runtime Error in Dynamic Navigation Area

    Hello gurus,
    In our production portal all of sudden we are getting a portal runtime error in Dynamic Navigation Area.  Earlier there was a problem with one of the clustered nodes and it was resolved.  I was wondering if this error is in connection with that.  Has anybody faced such problem?  Following is the error we are facing in the dynamic navigation area.
    <b>Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/fenderfolder/defaultDesktop/frameworkPages/frameworkpage/com.sap.portal.innerpage/com.sap.portal.dynamicNavigationArea
    Component Name : com.sap.portal.navigation.dynnavarea.DynamicNavigationArea</b>
    Please advice on how to resolve the issue. 
    Thanks in advance.
    VR.

    Hello all again,
    We are not getting this Dynamic Navigation Error on ONE of the clustered nodes and all other clustered nodes are working fine. 
    Any idea how to resolve the issue?
    Thanks in advance.
    VR.

  • How to define the dynamic navigation between two component in web ui

    Hi All,
    I have a requirement to create a new assignment block in accounts overview screen .
    1.Created new view(Table view) in the BP_HEAD component.
    2.Created new button on the table view toolbar .
    3.If the user clicks the new button it should navigate to interaction log component(BT126H_CALL).
    Please hekp me step 3 how to do .
    I have checked planned activity assignment block in the account but is dynamic navigation.
    Please explain me how to define the dynamic navigation between two components.
    What is window delegate .
    Thanks,
    Venkyy

    Hi ,
    Kindly follow the link , this will be helpful for your issue :
    http://wiki.sdn.sap.com/wiki/display/CRM/CRM-NavigatingtoyourcustomBSP+component

Maybe you are looking for

  • Who is living with their gradient?

    I just decided to take the plunge and pick up a new 24" imac after I returned my old back in November one due to the unevenness of the colors. Well, I picked up a new one from best buy and sure enough, there's a little bit of gradient and a very slig

  • Tax code and price list not appear automatic

    Hi My Dear, i work in R12.1.1 (solution beacon) -I assigned tax out classification code to an item from the master item,when navigate to sales order and enter the item,the tax code dose not joined with item ,it should be selected from the LOV - also

  • Create JCO destination option not available

    Dear All, I am trying to make a JCO connection in CE. However the buttons for "Create JCo Destination","Maintain JCo Destinations" are disabled. The status for built-in JCO destinations  WD_MODELDATA_DEST WD_RFC_METADATA_DEST is shown as unknown. The

  • OSX 10.5.6, LR2.1, PS4...Printing

    Just downloaded 10.5.6! PS4 printing is tack on with Epson R2880 (i.e. R2400 dark print issue). LR2.1 is not (tack on). I'm "assuming" that the impending 2.2 release will include an update to its printing that will encompass whatever Apple may have i

  • Best video camera to use with Apple TV?

    I have Apple TV and love it so far. I want to buy a video camera, and need to know what is the best choice for a camcorder in the $200-$300 range, that will record quality video which can be easily downloaded into iTunes and played on Apple TV. I kno