BAM and Portal/Portlets?

All,
"Portal Compatible" is listed as a key product in the BAM data sheet, but I cannot find anything more on it.
Can someone give me a hint on where to look?
Thanks,
Mathias

Hi Mathias,
This is very simple. Any BAM report / dashboard can be hosted as an iframe in a web page or portal using the Report URL available via the Copy Shortcut command. The report will be fully functional including Active Data.
See "Copying Report URLs" in the Active Studio User's Guide for more details:
http://www.oracle.com/technology/products/integration/bam/10.1.3/documentation/bamactivestudiog101310.pdf
Regards, Stephen

Similar Messages

  • Oracle BAM and Portal

    Has anyone out there integrated Oracle BAM into Portal 10.1.2? I'm trying to do that now and I'd like to know if anyone has had success. I'm new to Portal so if you could provide some details it would be appreciated. Thanks!

    How do you want the integration to function? Do you just need a form to run on a page or do you need the form to interact with Portal functionality?
    The former is easy to accomplish with a frame portlet. The latter not so easy but doable. Using the database as the common denominator its possible to have Forms interact with Portal thru PLSQL and data tables acting as state repositories.

  • Failure messages to be displayed in BAM and ESB Portal

    Hi,
    As per requirement, I need to display all resumable/Non-resumable messages in both BAM and ESB Portals.for resumable messages,admin will resubmit the messages from ESB Portal.Please let me know how to achieve this requirement.

    I have a project requirement, where I have to show all failure messages(resumable\non-resumable) in BAM and ESB portal.
    Order Creation Process:
    1. Developed Main Orchestration and exposed as a webservice for front end client. There are sub -process orchestration involved
    2.Front end client will consume Main Orchestration Service and submit the data
    3.There are multiple sub -process orchestration are involved after receving the data from Main Orchestration
    4.while executing Order Process, if any error occurs in any of the orchestration then those failure's to be displayed in BAM and ESB Management Portal
    5. Based on the Order ID  End User will need to search failure message details  from BAM
    6. The failure message will be resubmit from ESB Management Portal for further process.
    Please let me know your thoughts on how to provide the solution for above approach

  • Passing parameter spage id and portal language to a report portlet

    Hi,
    how can I pass the page id and portal language to a report portlet so I can filter my query according to that page id and language. See the report query below:
    select <information required> from ana_statistics
    where portal_page = :page_parameter
    and language = :portal_language
    Thanks

    Yes, you can.
    Here is an example.
    Form: on scott.emp table.
    Define the On successful submission of a form as
    go('http://<server>:<port>/servlet/page?_pageid=<page id>&_dad=<dad>&_schema=<schema>&dept='||p_session.get_value_as_NUMBER(
    p_block_name => p_block_name,
    p_attribute_name => 'A_DEPTNO',
    p_index => 1));
    Report: alos on scott.emp table:
    select * from SCOTT.EMP where DEPTNO = :dept
    and define the "before displaying the page" as
    <portal schema>.wwv_name_value.replace_value(
    l_arg_names,
    l_arg_values,
    p_reference_path||'.dept',
    <portal schema>.wwv_standard_util.string_to_table2(nvl(get_value('dept'),10)));
    Put those two portlets on a page, after you submit the form (after Insert, Update, Delete),
    the page will be refreshed and the deptno will be passed to the report.
    Hope this helps.
    This example was built on portal 309.

  • SSO and portal timeout  -- other bug?

    ...this is very probably related to the other post talking about SSO and portal timeout...
    I am having another weird issue with dotnet portlets that uses inline refresh (done automatically by dotnet accelerator) and SSO.
    When you let the portal session expire, and then click on a button/link within a portlet (hence generate an inline refresh gatewayed request), the full portal window (header/footer etc...) appears within the portlet, instead of the portlet content alone.
    I did some http traces (see below) and it seems the problem is due to the windows SSOLogin.aspx (we are using windows auth SSO) not taking the requested portlet gatewayed request url as a post login redirect info... but taking instead the current page url (which is wrong)
    Thus, after the gatewayed portlet request is successfully authenticated by the SSOLogin.aspx component, it is automatically redirected to the wrong urll...making the full portal page refresh into the portlet.
    So my question is: have anyone already seen such behavior? And has anything been done to fix this?
    It really seems like a bug with the SSO servlet...but maybe i am doing something wrong...Just want to have your thoughts on this.
    Thanks,
    Fabien
    ============================================================================================
    HTTP Trace:
    POST     302     Redirect to /portal/sso/SSOLogin.aspx?in_hi_userid=15046&space=CommunityPage&parentid=1&cached=false&control=SetCommunity&PageID=0&CommunityID=205&parentname=Login     http://your.portal.com/portal/server.pt/gateway/PTARGS_0_15046_362_205_0_43/http%3B/your.portletserver.com/yourapp/youraspx.aspx
    GET     401     text/html     http://your.portal.com/portal/sso/SSOLogin.aspx?in_hi_userid=15046&space=CommunityPage&parentid=1&cached=false&control=SetCommunity&PageID=0&CommunityID=205&parentname=Login
    GET     401     text/html     http://your.portal.com/portal/sso/SSOLogin.aspx?in_hi_userid=15046&space=CommunityPage&parentid=1&cached=false&control=SetCommunity&PageID=0&CommunityID=205&parentname=Login
    GET     302     Redirect to http://your.portal.com/portal/server.pt?in_hi_userid=15046&space=CommunityPage&parentid=1&cached=false&control=SetCommunity&PageID=0&CommunityID=205&parentname=Login     http://your.portal.com/portal/sso/SSOLogin.aspx?in_hi_userid=15046&space=CommunityPage&parentid=1&cached=false&control=SetCommunity&PageID=0&CommunityID=205&parentname=Login
    GET     200     text/html; charset=utf-8     http://your.portal.com/portal/server.pt?in_hi_userid=15046&space=CommunityPage&parentid=1&cached=false&control=SetCommunity&PageID=0&CommunityID=205&parentname=Login

    I have this happen in v6.0 sp1. We have worked around the problem with a bit of work and synchronization of settings. Below, I've outlined how we've worked around the problem (which is indeed a problem that should be fixed). Also, if you have a load balancer, you'll need to set your session timeout on the load balancer to a bit more than the refresh rate that you set for your communities and My Pages.
    Resolving the Portlet Timeout / Refresh Problem in ALUI Portal_
    Problem: Users occasionally receive the portal page within a portlet error
    Cause: The root cause has not been determined; however it appears that the primary event that exhibits the behavior is when a teammember’s session has expired on the portal server and they then utilize a .NET form-based portlet which refreshes in place. Because we are using WIA SSO to enable automatic logins to the portal, it makes the error seem to occur randomly.
    Resolution:
    The workaround solution is to – 1) increase the portal session timeout on the portal web servers from the default 20min to 4 hours, and 2) set the MyPage refresh interval setting for all portal users to 3 hours. The setting name is a bit of a misnomer, as it will actually refresh the entire portal page automatically if the user is idle on either a My Page or a Community Page, as these are the only two places that portlets reside.
    Increasing the portal session timeout:
    The portal session timeout is controlled in two places, and both settings should match. On the portal virtual directory in IIS, edit the configuration and increase the timeout setting to 240 (minutes). Then, edit the portal application’s web.config file (d:\portal\ptportal\6.0\webapp\portal\web\) and increase the sessionState Timeout variable to 240. Editting the config file will require you to restart the services before you see the change.
    Initial setting of the MyPage refresh interval:
    The initial setting will need to be done by a SQL script in order to apply it to all existing users. The Default Profile should also be updated so that all new user synched from AD will have this setting applied automatically.
    /* Delete refresh interval settings for all users first so that there are no conflicts on the inserts */
    DELETE FROM portaldbuser.ptprefs WHERE prefname = 'intMyPageRefreshRate'
    /* Insert desired page refresh setting for all users */
    INSERT INTO portaldbuser.ptprefs (userid,gadgetid,prefclassid,prefobjectid,prefname,prefvaluetype,prefvalue,pagenumber) SELECT objectid,0,0,0,'intMyPageRefreshRate',3,180,0 FROM portaldbuser.ptusers
    From Administration, access the Default Profiles utility. Check the Default Profile entry and click on the Edit Profile Layout link. Click on the My Account link in the Portal Settings portlet and then on the Display Options link on the next page. In the Page and Portlet Settings, update the Your My Page will be updated: setting to 4 hours. Click Finish twice to return to Administration.
    Updating the MyPage refresh interval:
    To update the setting just modify the insert portion of the SQL script. Change the prefvalue number (180) to the desired timeout in minutes and rerun both statements of the script.
    The Default Profile should be also be modified per the instructions above.
    I hope this helps...
    -tom

  • Crystal Reports and Portal..... PLEASE HELP !!!!!

    I am trying to create a URL link to http://{ipaddress}/Recrystallize/Oracle/volvotest.rpt?init=java&user0=myusername&password0=mypassword
    When I put the above link into the browser...ON THE PORTAL SERVER....it executes as expected....
    when placed in a portal url component....i get:
    Error:
    Either the URL is malformed or the target server could be down (WWV-13054)
    The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1757670568 (WWC-51000)
    The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1757670568 (WWC-51000)
    I need to get this resolved ASAP any help would or ideas would be greatly appreciated.
    Also, if anyone has implemented Crystal Reports into an Oracle Portal portlet....would be extremely interested in talking to you. Thanks.

    Edit the url component created, and uncheck the option of showing the customization parameters in the porlet.
    Meaning that, the url component should be created with the maximum customization allowed is
    "Display name of the component" and not the url.

  • "In the Data Palette window, drag the Login to Portal portlet ..."?

    Hi;
    In http://e-docs.bea.com/workshop/docs81/doc/en/portal/samples/login.html?skipReload=true it says "In the Data Palette window, drag the Login to Portal portlet onto a placeholder on the page. "What does this mean and how do I do it?
    And the following line is "In the Property Editor window, set any relevant properties." - where is the property window and what properties do I want to set and to what value?
    thanks - dave

    Help please
    thanks - dave

  • 9ias 10222 and Portal 30985

    I'm running 9ias r1 and Portal. I'm trying to tweak it so that when a user changes their password, the user cannot use the previously used password. So when a user changes their password, they have to use a password that is different than the one they used previous to the current. Does anybody have any ideas for me?

    I'm not aware of a publicly available portlet for Oracle9iAS email as of yet.

  • Running an Oracle form within a Oracle 10g 10.1.2 Portal Portlet

    Anyone figure out how to register and run an 10g form fmx within an Oracle 10 10.1.4 portal portlet?

    I don't think you can register Forms as a portlet. We don't have support for that. You should be able to incorporate it into a frame of some sort or another. I am not so familiar with Portal but if there is a portlet type that takes a URL you should be able to supply a normal Forms URL and have it run in the frame.

  • Can I use JavaScript HTML Portlet and PDK Portlets

    Can I use JavaScript HTML Portlet and PDK Portlets?
    My Script works fine with the an HTML portlet but it always gives a an Error Message in the status bar is that normal...
    Other then that I have JavaScript in my PDK portlet page it does not work.. it is the the same javascript I use for in my HTML portlet which works in HTML portlets..

    You'll have to place your JavaScript in the header section of your Portal page. To do so, use HTML/UI templates. For more information, refer to the How to Design and Build Compelling Portal Interfaces whitepaper.
    Good luck,
    Peter

  • Hide and show portlets

    Hello all,
    I have created two forms and two reports and added them in a page as 4 portlets like this...
    FORM1                    REPORT1             
    FORM2(Hidden)        REPORT2(Hidden) 
    ---------------------------------------------------------By default Form2 and Report2 are hidden..
    If I click the link on Report1...
    Form2 and Report2 should be visible....
    How can i acheive this..
    I hope someone suggest me a good solution..
    Thanks a lot in advance..
    Regards,
    Paappu.

    I do not think it is advisable to use page properties to hide and show portlets on them on user interaction. This assumes that we can do it by changing the display properties of those portlets on Page.
    The reason is this: If I am a user of your portal and visited one such page, I would see Form1 and Report1 on the page.
    Let us say, I clicked on some link you are planning, and then I started seeing Form2 and Report2 on that same page.
    However at the same time, you also visited on the same page right after I had clicked on that link. Then you will also see Form2 and Report2. And so the state of the page will be changed for all users after the first user's action.
    Is it actually what you would intend to do? that different users will see different pages based on who has visited the page before them?
    that is why I would not recommend it. Hope that helps.
    AMN

  • Registering Discoverer Reports to a Portal/Portlet?

    Can anybudy give me an idea how to register discoverer reports (workbok/worksheet) to Portal/Portlet?

    Hi
    Try to save to file with disco desktop and open it in the production environment.
    Ott Karesz
    http://www.trendo-kft.hu

  • How to set role to a resource (portal, portlet..)

    Hi everybody,
    I have a resource's name and I want to set an role entitlement to a resource (portal, portlet, book...) but I don't know how to do this by programming.
    Please help me. Thanks

    I can get all the roles entitled to a resource by programming as follows:
    String delimiter = EntitlementConstants.RESOURCE_ID_DELIMITER;
    String resourceID = "com_bea_p13n"+ delimiter +
                        "Portlet"+ delimiter
                        +"showProfile";          
    String[] roles = RolePolicyManager.listRolesForResource(ApplicationHelper.getNonVersionedAppName(),                    ApplicationHelper.getWebAppName(getRequest()), resourceID);     
    This code will return all the roles entitled to the portlet 'showProfile'.
    So I think, it is possible to set a role to a resource by programming, but I don't know how to do this.
    Anyone have an answer?
    Edited by: user11732508 on Jul 27, 2009 12:11 AM

  • Google API and portal

    Hi,
    I'm newbie to the portal technology and more worked on the EJB side.
    My requirement is like this:
    I've to display a world map and support the various events like mouse click, mouse hover etc.+
    Google API can be used for this.
    I've to fetch the data according to the events on the map. The next layer in the application has tight interface with Portal.
    <ol><li>     How can I display and handle world map events using portal?</li>
    <li>     If I use GoogleAPI, how should be both GoogleAPI and portal fit together?</li>
    </ol>
    Thanks in Advance,
    Anagha

    should be the same as any other mashup. Peter Laird has some entries regarding this
    http://www.oracle.com/technology/pub/articles/dev2arch/2007/05/google-mashups2.html (here you'd use bea for your rest service)
    and you can also visit
    http://wlp.bea.com and click web 2.0
    You'd use google api's just as you would in any other HTML page (in this case generated partly by the portlet hosting your code)
    regards
    deepak

  • Forums and Chats portlets

    Hi
    Are there any forums and chat portlets that I can use with
    Oracle9iAS Portal?.

    Arnaud,
    3 options
    1. Buy the Partner's portlets
    2. Download the Collaborative Components from OTN
    http://otn.oracle.com/software/tech/java/servlets/content.html
    and integrate them with Portal
    3. portalstudio.oracle.com -> Knowledge Exchange. Not sure about polls, but there is a discussion forum portlet (among others)
    Hi
    Before buying Portal, i tried Portal Online, and i could see Forums and Polls. I can't find them in portal r2. Where have they gone ? Are they commercial partner's portlets I'll have to buy ???
    regards
    A.

Maybe you are looking for