Activity search page in BAM portal

Hi All,
How we can change the back ground color of the report in activity search page in BAM portal?
For example :
If i select ALL in Business Data drop down list  or
items to show list box in activity search page of BAM portal (Like Started ,in progress,Completed and Exception of the messages in biz talk)
Each message information in report should generate with different colors .

Hi Vittalaranga,
You can do that by customizing the .css file associated with the portal, for more information have a look  at Customizing the BAM Portal Configuration
Maheshkumar S. Tiwari| http://tech-findings.blogspot.in/

Similar Messages

  • I do not view NPD BU under Category Tab in Activity search page

    Hi there,
    I'm using Agile PLM 6.1.1.0_Release_12
    I'm not able to view NPD BU under Category Tab in Activity search page.
    1) I created 2 NPD BU
    - Italy
    - International
    2) I created some Activity template with Italy and International as BU.
    The issue is that when I search Activity Template by Category system does not display any results.
    Moreover I'm not able to add an activity template in a project template.
    Could you kindly explain me why? I hope my question is clear.
    Thank you very much.
    Best regards,
    Stefano

    I tried this on my local 6.1.1 build and it appears to work.   Go ahead and submit an SR so support can investigate. 

  • HREIC Enhancement: Addition of SLA column to activity search result page

    Hi Experts,
    I am currently assigned in enhancing the activity search of transaction code HREIC_VP by adding SLA column in the output table. I debugged this BSP application and haven't found any class where the selection of data happens.
    Does anybody know what class is responsible of selecting the data to be displayed in activity search and how this is being transferred to the output table.
    Many thanks in advance,
    Larissa

    1) Enhance the component BT126S_APPT
    2) Enhance the view BT126S_APPT/ApptSR
    3) Add the attribute to the context node BTQRACT via the following method
    Simply add the object_id field from the BTQRact node by right clicking on the BTQRACT atttributes folder and choosing create
    attribute.
    In the wizard choose add model attribute.
    Attribute Name OBJECT_ID
    BOL Entity:  BTQRAct
    BOL Attribute:  OBJECT_ID
    Hit continue and you are done.  Now the field should be available for view configuration and you would perform that step as normal.
    No need for the complicated coding suggested above as it already exists in the BTQRAct genil/bol entity structure and just needed to be exposed.  I have done this before and is working fine in my production system with no errors on CRM 2007 SPS01.
    Take care,
    Stephen

  • Suspended messages to be display in BAM Portal

    There is a requirement  to display failure messages/suspended messages in BAM portal.Please help me how to provide this solution.

    Hi BizQ,
    You can follow : How to Track Failed Messages in BAM   same method can be applied to
    suspended message as well.
    Maheshkumar S Tiwari|User
    Page | http://tech-findings.blogspot.com/

  • Search page displaying all records after create

    Hi,
    I have created the search and the create page using the help of tutorial example. I have run into a 2 problems.
    1. After I create the a transaction and click on apply button it directs me to the search page and diaplays all the records in the table. Instead I was looking to display only the record that I created in the create page.
    I tried to change the parameter of the "pageContext.forwardImmediately" to "false" for retainAM, it is working fine, but at the same time it is not displaying the confirmation message that it ised to display.
    2. Is there a spellchecker that I could add to my page for 3 columns that are of "CLOB" type. Any advise.
    Thanks,
    Ali

    Hi Shiv,
    I have added this in the processformrequest method. I do not know how and where to add it in the processrequest methos. Can you please guide me through it. I am pasting my CO file.
    Thanks in advance for all your help.
    Ali
    package saf.oracle.apps.saf.jobperf.server.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import oracle.apps.fnd.framework.webui.TransactionUnitHelper;
    import oracle.jbo.domain.Number;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    import com.sun.java.util.collections.HashMap;
    import oracle.bali.share.util.IntegerUtils;
    * Controller for ...
    public class ReviewCreateCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    // Always call this first
    super.processRequest(pageContext, webBean);
    // If isBackNavigationFired = false, we are here after a valid navigation
    // (the user selected the Create Review button) and we should proceed
    // normally and initialize a new Review.
    if (!pageContext.isBackNavigationFired(false))
    // We indicate that we are starting the create transaction(this
    // is used to ensure correct Back button behavior).
    TransactionUnitHelper.startTransactionUnit(pageContext,"jobperfCreateTxn");
    // This test ensures that we don't try to create a new review if we
    // had a JVM failover, or if a recycled application module is activated
    // after passivation. If this things happen, BC4J will be able to find
    // the row you created so the user can resume work.
    if (!pageContext.isFormSubmission())
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.invokeMethod("createReview",null);
    // Initialize the ApplicationpropertiesVO for PPR.
    // am.invokeMethod("init");
    else
    if (!TransactionUnitHelper.isTransactionUnitInProgress(pageContext,"jobperfCreateTxn", true))
    // We got here through some use of the browser "Back" button, so we
    // want to display a stale data error and disallow access to the page.
    // if this were a real application, we would propably display a more
    // context-specific message telling the user she can't use the browser
    //"Back" button and the "Create" page. Instead, we wanted to illustrate
    // how to display the Applications standard NAVIGATION ERROR message.
    OADialogPage dialogPage = new OADialogPage(NAVIGATION_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    } // end processRequest()
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    {    //super.processFormRequest(pageContext, webBean);
    // Always call this first.
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    // Pressing the "Apply" button means the transaction should be validated
    // and committed.
    if (pageContext.getParameter("Apply") != null)
    // Generally in the tutorial application and the labs, we've illustrated
    // all BC4J interaction on the server (except for the AMs, of course). Here,
    // we're dealing with the VO directly so the comments about the reasons
    // why we're obtaining values from the VO and not the request make sense
    // in context.
    OAViewObject vo = (OAViewObject)am.findViewObject("jobperfVO1");
    // Note that we have to get this value from the VO because the EO will
    // assemble it during its validation cycle.
    // For performance reasons, we should generally be calling getEmployeeName()
    // on the EmployeeFullVORowImpl object, but we don't want to do this
    // on the client so we're illustrating the interface-appropriate call. If
    // we implemented this code in the AM where it belongs, we would use the
    // other approach.
    String employeeName = (String)vo.getCurrentRow().getAttribute("FullName");
    // We need to get a String so we can pass it to the MessageToken array below. Note
    // that we are getting this value from the VO (we could also get it from.
    // the Bean as shown in the Drilldwon to Details lab) because the item style is messageStyledText,
    // so the value isn't put on the request like a messaqeTextInput value is.
    String employeeNumber = (String)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    //ma Number employeeNumber = (Number)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    // Simply telling the transaction to commit will cause all the Entity Object validation
    // to fire.
    // Note: there's no reason for a developer to perform a rollback. This is handled by
    // the framework if errors are encountered.
    am.invokeMethod("apply");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    // Assuming the "commit" succeeds, navigate back to the "Search" page with
    // the user's search criteria intact and display a "Confirmation" message
    // at the top of the page.
    MessageToken[] tokens = { new MessageToken("EMP_NAME", employeeName),
    new MessageToken("EMP_NUMBER", employeeNumber) };
    OAException confirmMessage = new OAException("PER", "LAC_FWK_TBX_T_EMP_CREATE_CONF", tokens,
    OAException.CONFIRMATION, null);
    // Per the UI guidelines, we want to add the confirmation message at the
    // top of the search/results page and we want the old search criteria and
    // results to display.
    pageContext.putDialogMessage(confirmMessage);
    HashMap params = new HashMap(1);
    // Replace the current employeeNumber request parameter value with "X"
    params.put("employeeNumber", "employeeNumber");
    // IntegerUtils is a handy utility
    params.put("employeeNumber",IntegerUtils.getInteger(5));
    pageContext.forwardImmediately(
    "OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params, //null,
    true, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
    else if (pageContext.getParameter("Cancel") != null)
    am.invokeMethod("rollbackReview");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    pageContext.forwardImmediately("OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    false, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    } // end processFormRequest()
    }

  • BAM Portal is only displaying one day of aggregations

    Has anyone else seen this behaviour and better still how did you resolve
    it? See
    http://connectedpawns.wordpress.com/2014/09/25/bam-is-displaying-only-one-day-of-aggregations/
    We implemented a BAM solution using BizTalk Server 2013 and Standard SQL
    server 2012 that contained an aggregation.  We set up a scheduled aggregation as
    described
    here.
    In production if we open the BAM portal and expand the Aggregations we always
    only see the most recent days data.
    In contrast the UAT environment if we look at the aggregations in the BAM portal
    we see several months of data.
    Currently can not find any difference between the database objects
    between UAT and Production i.e. the BAM_AN_All_GCTM and the SQL agent job that
    runs the package regularly. We have confirmed that all the data is present in
    the BAMPrimaryImport tables but the portal is not displaying all the data.
    Please let me know why we a seeing this difference of behaviour between our
    UAT and Production environment.

    Have you tried the BM commands -activitywindow across the two systems to verify if the aggregation durations are the same across the systems?
    Refer http://msdn.microsoft.com/en-us/library/aa560205.aspx for details on how to Get/Set the time windows on Activity/RTA Aggregations.
    Regards.

  • How to control a reference type of BAM Relation to see Related Activites on BAM Portal?

    Hi.
    There is
    description of predefined reference types of BAM relations.
    I have created relation between two activities by adding Relationship node to one of them (to an activity that is tracking detailed orchestration). Both activity are declared in one definition file. I put InterchangeId field to Relationship
    node and  it is working. (InterchangeId also is used as ActivityId in "master" activity), I see in CompletedRelationships table the record
    ActivityID
    ReferenceName
    ReferenceData
    ReferenceType
    LongReferenceData
    ReferenceDataExtend
    cbc05eca-a8ae-4f68-869f-38c8fa55864c
    [MasterActivityName]
    29c0310f-bb12-4f85-8362-26995b8c1544
    Activity
    NULL
    And I can see it in Related Activities section on BAM Portal.
    But when I create Relationship in "master" activity and put MessageId to this node (and this MessageId is ActivityId in "detailed" orchestration) then in ActiveRelationships table I see
    ActivityID
    ReferenceName
    ReferenceData
    ReferenceType
    LongReferenceData
    ReferenceDataExtend
    8a2aba6a-4ddb-4932-87d2-f55e33464dcd
    [servername];BizTalkMgmtDb;[DetailActivityName]
    29c0310fcf89ad21-94cd-40e3-b90a-3bdd40e9edad
    MessageId
    NULL
    As you can see there is difference in ReferenceName and ReferenceType columns. And it doesn't appear in Related Activities section.
    How can I use MessageId as key for relation but have type "Activity" instead of "MessageId"?
    I found by experiment If I update this two columns (cut off [servername];BizTalkMgmtDb; from the first one and replace MessageID by Activity for second) then it appear in Related Activities section.
    Thank you in advance for reply!

    But when I create Relationship in "master" activity and put MessageId to this node (and this MessageId is ActivityId in "detailed" orchestration) then in ActiveRelationships table I see......
    I found by experiment If I update this two columns (cut off [servername];BizTalkMgmtDb; from the first one and replace MessageID by Activity for second) then it appear in Related Activities section.
    You can use BizTalk 360 to monitor why this happens, let me know if you have any difficulties.

  • Can Search help in Web Portal be made so that it is NOT case sensitive?

    We have a number of reports that users access via the web portal.  Most of these reports have a variable selection screen that appears so that users can pre-filter the report before executing it.  When the user selects search help on any of the variables and attempts to search the text values, the search is case-sensitive. But we have some data stored all caps and some data stored mixed case, so this isn't very convenient for the user.  I would like to be able to set up the search window so that the searches are not case sensitive.  Is there a global setting that can accomplish this, or can the search page be customized?  Any guidance would be appreciated.
    Thanks.

    I have the same issue. There was a fix in 3.5 using function module RSA_CHA_BUILD_QUERY however this doesn't exist in 7.
    Any thoughts would be much appreciated.

  • Any iView to add WPC page in NW Portal 7.3?

    Hi All,
    Recently we have upgraded our portal from 7.0 to 7.3.
    In 7.0 i used to create an iView from com.sap.nw.wpc.runtime portal component,in the iView i use the RID of Compound Document to give the path of the WPC page in KM.Since i am adding WPC page to the iView i could able to use the  edit Page option.
    But in 7.3 there is an iview template WPC Web Content iView,with this i could able to add only the WPC content not the page because of that i am not getting the edit page option in 7.3.
    Anyother way to add the WPC page to the portal page.??Any body faced this issue??,Kindly help me to solve the issue.
    Naga

    Hi,
    since NW 7.3 SP9 it is possible to connect to a page not only to the area. The page itself has an id which you can use to connect to within a role. see here:
    http://scn.sap.com/community/netweaver-portal/blog/2013/04/10/wpc-pages-and-navigation-properties
    if you don't have SP9, you can achieve this as follows:
    1. create new iView from gpar:/com.sap.nw.pcc.mgr/default (this iview has ability to run wpc page via rid = path to runtime page), the old iview wpc.runtime.... will not work anymore.
    2. to find the rid of your wpc page you have to go to pcd inspector, path
       pcd: com.sap.portal.pcc/StagingAreaId/<yourarea>/ and click on "all properties" on the page you want to display. search for property com.sap.portal.pcc.rtObjectId
    copy this value to rid in the new iview and the page will be displayed with the new iview.
    if you have SP9, you don't need pcd inspector as the page id displayed in area management is the same as com.sap.portal.pcc.rtObjectId
    best regards,
    Lars

  • How to display active directory users through weblogic portal Application?

    Hi,
    Does anyone has faced this situation?
    I configured the activedirectory and able to see the users and group in the weblogic console at Security->Realms->Myrealm->users. when I run my portal application,I am able to see only the users that are configured in embedded weblogic LDAP ie, I can see only the users weblogic,portaladmin and yahooadmin that are of defaultauthenticator provider.I need to display the active directory users also in our portal.
    I have two doubts on this?
    1)Is it I need to write custom code to view the active directory users in our portal?
    2)Does I need to use any jars that supports active directory authenticator?
    I would appreciate if any one can reply on this with helpfull docs/information.
    We are using BEA 8.1 SP4.
    Windows 2000.
    Surendra

    Hi,
    I too have a similar kind of requirement, i use a jsp to do this activity, but i get an exception, i have shown the entire jsp code below,
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%@ page import="java.util.Set" %>
    <%@ page import="javax.naming.Context" %>
    <%@ page import="weblogic.jndi.Environment" %>
    <%@ page import="weblogic.management.MBeanHome" %>
    <%@ page import="weblogic.management.configuration.DomainMBean" %>
    <%@ page import="weblogic.management.configuration.SecurityConfigurationMBean" %>
    <%@ page import="weblogic.management.security.RealmMBean" %>
    <%@ page import="weblogic.management.security.authentication.AuthenticationProviderMBean" %>
    <%@ page import="weblogic.management.security.authentication.UserPasswordEditorMBean" %>
    <%@ page import="weblogic.security.providers.authentication.LDAPAuthenticatorMBean" %>
    <%@ page import="weblogic.management.configuration.EmbeddedLDAPMBean" %>
    <%@ page import="weblogic.management.security.authentication.UserEditorMBean" %>
    <%@ page import="weblogic.management.security.authentication.UserReaderMBean" %>
    <%@ page import="weblogic.management.security.authentication.GroupReaderMBean" %>
    <%@ page import="weblogic.management.utils.ListerMBean" %>
    <%@ page import="javax.management.MBeanException" %>
    <%@ page import="javax.management.modelmbean.RequiredModelMBean" %>
    <%@ page import="examples.security.providers.authentication.manageable.*" %>
    <%@ page import="weblogic.security.providers.authentication.ActiveDirectoryAuthenticatorMBean" %>
    <%@ page import="weblogic.management.utils.InvalidParameterException" %>
    <%@ page import="weblogic.management.utils.NotFoundException" %>
    <%@ page import="weblogic.security.SimpleCallbackHandler" %>
    <%@ page import="weblogic.servlet.security.ServletAuthentication"%>
    <%!
    private String makeErrorURL(HttpServletResponse response,
    String message)
    return response.encodeRedirectURL("welcome.jsp?errormsg=" + message);
    %>
    <html>
    <head>
    <title>Password Changed</title>
    </head>
    <body>
    <h1>Password Changed</h1>
    <%
    // Note that even though we are running as a privileged user,
    // response.getRemoteUser() still returns the user who authenticated.
    // weblogic.security.Security.getCurrentUser() will return the
    // run-as user.
    System.out.println("------------------------------------------------------------------");
    String username = request.getRemoteUser();
    System.out.println("User name -->"+username);
    // Get the arguments
    String currentpassword = request.getParameter("currentpassword");
    System.out.println("Current password -->"+currentpassword);
    String newpassword = request.getParameter("newpassword");
    System.out.println("New password -->"+newpassword);
    String confirmpassword = request.getParameter("confirmpassword");
    System.out.println("Confirm password -->"+confirmpassword);
    // Validate the arguments
    if (currentpassword == null || currentpassword.length() == 0 ||
    newpassword == null || newpassword.length() == 0 ||
    confirmpassword == null || confirmpassword.length() == 0) { 
    response.sendRedirect(makeErrorURL(response, "Password must not be null."));
    return;
    if (!newpassword.equals(confirmpassword)) {
    response.sendRedirect(makeErrorURL(response, "New passwords did not match."));
    return;
    if (username == null || username.length() == 0) {
    response.sendRedirect(makeErrorURL(response, "Username must not be null."));
    return;
    // First get the MBeanHome
    String url = request.getScheme() + "://" +
    request.getServerName() + ":" +
    request.getServerPort();
    System.out.println("URL -->"+url);
    Environment env = new Environment();
    env.setProviderUrl(url);
    Context ctx = env.getInitialContext();
    MBeanHome mbeanHome = (MBeanHome) ctx.lookup(MBeanHome.LOCAL_JNDI_NAME);
    System.out.println("MBean home obtained....");
    DomainMBean domain = mbeanHome.getActiveDomain();
    SecurityConfigurationMBean secConf = domain.getSecurityConfiguration();
    // Sar
    EmbeddedLDAPMBean eldapBean = domain.getEmbeddedLDAP();
    System.out.println("Embedded LDAP Bean obtained...."+eldapBean );
    RealmMBean realm = secConf.findDefaultRealm();
    System.out.println("RealmMBean obtained....");
    AuthenticationProviderMBean authenticators[] = realm.getAuthenticationProviders();
    System.out.println("AuthProvMBean obtained....");
    // Now get the UserPasswordEditorMBean
    // This code will work with any configuration that has a
    // UserPasswordEditorMBean.
    // The default authenticator implements these interfaces
    // but other providers could work as well.
    // We try each one looking for the provider that knows about
    // this user.
    boolean changed=false;
    UserPasswordEditorMBean passwordEditorMBean = null;
    System.out.println("UserPwdEdtMBean obtained....");
    //System.out.println("Creating MSAI....");
    //ManageableSampleAuthenticatorImpl msai =
    // new ManageableSampleAuthenticatorImpl(new RequiredModelMBean());
    //System.out.println("Done....");
    for (int i=0; i<authenticators.length; i++) {
    System.out.println("### Authenticator --->"+authenticators);
    if (authenticators[i] instanceof ActiveDirectoryAuthenticatorMBean)
    ActiveDirectoryAuthenticatorMBean adamb =
    (ActiveDirectoryAuthenticatorMBean)authenticators[i];
    System.out.println("### ActiveDirectoryAuthenticatorMBean .....");
    String listers = adamb.listUsers("*",0);
    while(adamb.haveCurrent(listers))
    System.out.println("### ActiveDirectoryAuthenticatorMBean user advancement.....");
    adamb.advance(listers);
    if (authenticators[i] instanceof UserPasswordEditorMBean) {
    passwordEditorMBean = (UserPasswordEditorMBean) authenticators[i];
    System.out.println("Auth match ...."+passwordEditorMBean);
    try {
    // Now we change the password
    // Sar comment
    System.out.println("Password changed....");
    //passwordEditorMBean.changeUserPassword(username,
    // currentpassword, newpassword);
    changed=true;
    // Sar Comment
    catch (InvalidParameterException e) {
    response.sendRedirect(makeErrorURL(response, "Caught exception " + e));
    return;
    catch (NotFoundException e) {
    catch (Exception e) {
    response.sendRedirect(makeErrorURL(response, "Caught exception " + e));
    return;
    // Sar code
    LDAPAuthenticatorMBean ldapBean = null;
    UserReaderMBean urMBean = null;
    UserEditorMBean ueMBean = null;
    GroupReaderMBean gMBean = null;
    //ListerMBean lBean = null;
    try
    if (authenticators[i] instanceof LDAPAuthenticatorMBean)
    ldapBean = (LDAPAuthenticatorMBean) authenticators[i];
    String userFilter = ldapBean.getAllUsersFilter();
    System.out.println("userFilter ="+userFilter);
    if (authenticators[i] instanceof UserEditorMBean)
    try
    System.out.println("UserEditorMBean...");
    ueMBean = (UserEditorMBean) authenticators[i];
    System.out.println("List users..."+ueMBean);
    boolean b = ueMBean.userExists("webuser");
    System.out.println("User Exists->>>"+b);
    String cursor = ueMBean.listUsers("webuser", 2);
    System.out.println("List User ----->"+cursor);
    catch(InvalidParameterException e)
    response.sendRedirect(makeErrorURL(response, "ERROR InvalidParameterException:" + e));
    catch(java.lang.reflect.UndeclaredThrowableException e)
    response.sendRedirect(makeErrorURL(response, "ERROR UndeclaredThrowableException :" + e));
    e.printStackTrace();
    catch(Exception e)
    response.sendRedirect(makeErrorURL(response, "ERROR LBean:" + e));
    catch(Exception ex)
    ex.printStackTrace();
    response.sendRedirect(makeErrorURL(response, "ERROR:" + ex));
    return;
    if (passwordEditorMBean == null) {
    response.sendRedirect(makeErrorURL(response, "Internal error: Can't get UserPasswordEditorMBean."));
    return;
    System.out.println("pwd changed ->"+changed);
    if (!changed) {
    // This happens when the current user is not known to any providers
    // that implement UserPasswordEditorMBean
    response.sendRedirect(makeErrorURL(response,
    "No password editors know about user " + username + "."));
    return;
    %>
    User <%= username %>'s password has been changed!
    <br>
    <br>
    </body>
    </html>
    Here is the console log
    User name -->webuser
    Current password -->i
    New password -->u
    Confirm password -->u
    URL -->http://localhost:7011
    MBean home obtained....
    Embedded LDAP Bean obtained....[Caching Stub]Proxy for mydomain:Name=mydomain,Type=EmbeddedLDAP
    RealmMBean obtained....
    AuthProvMBean obtained....
    UserPwdEdtMBean obtained....
    ### Authenticator --->Security:Name=myrealmDefaultAuthenticator
    Auth match ....Security:Name=myrealmDefaultAuthenticator
    Password changed....
    UserEditorMBean...
    List users...Security:Name=myrealmDefaultAuthenticator
    User Exists->>>true
    java.lang.reflect.UndeclaredThrowableException
    at $Proxy1.listUsers(Unknown Source)
    at jsp_servlet.__updatepassword._jspService(__updatepassword.java:411)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.jav
    a:1006)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:463)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletC
    ontext.java:6718)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:37
    64)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: javax.management.MBeanException
    at weblogic.management.commo.CommoModelMBean.invoke(CommoModelMBean.java:551)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1560)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
    at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.j
    ava:988)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
    at weblogic.management.commo.CommoProxy.invoke(CommoProxy.java:365)
    ... 14 more
    ### Authenticator --->Security:Name=myrealmDefaultIdentityAsserter
    pwd changed ->true
    Can u pls let me know how to get all the entries from LDAP.
    Thanx
    Sar

  • Page titles in Portal

    Hi folks,
    The configuration of our Oracle Portal dictates that our page titles don't actually tell you what the page is called.
    For example, the news story on http://www.southlanarkshire.gov.uk/portal/page/portal/EXTERNAL_WEBSITE_DEVELOPMENT/SLC_ONLINE_HOME/HOME_NEWS_FULL_STORY?content_id=17230
    rather than give you the news headline as the title, we get the title rendered as News full story.
    The content is pulled by the record in PSCM.
    My question is this, how can I use the content from PSCM as a title tag?
    It's an accessibility and usability issue, especially when running a Google Search.

    Which version of portal are you working with, 10.1.4 or any previous 10g version (10.1.2 or 9.0.4, etc)? or even an older one?
    The page addressing systems were different for these versions.
    Also what is PSCM?

  • BT126S_APPT- Addition ObjecID field in Activity Search Result View

    Hello,
    In Activity Search result page, I want to show Object ID of the transaction as well. Below are the component details.
    Component : BT126S_APPT
    View: ApptSR
    In the available fields of the this view, Object ID is not available.
    Appreciate if some one can let me know step by step procedure for achieving the same
    Regards
    Yashodhan

    1) Enhance the component BT126S_APPT
    2) Enhance the view BT126S_APPT/ApptSR
    3) Add the attribute to the context node BTQRACT via the following method
    Simply add the object_id field from the BTQRact node by right clicking on the BTQRACT atttributes folder and choosing create
    attribute.
    In the wizard choose add model attribute.
    Attribute Name OBJECT_ID
    BOL Entity:  BTQRAct
    BOL Attribute:  OBJECT_ID
    Hit continue and you are done.  Now the field should be available for view configuration and you would perform that step as normal.
    No need for the complicated coding suggested above as it already exists in the BTQRAct genil/bol entity structure and just needed to be exposed.  I have done this before and is working fine in my production system with no errors on CRM 2007 SPS01.
    Take care,
    Stephen

  • Additional field on activity search view

    Hi,
    I need to add territory id on activity search view. is there any badi which i can use for this purpose to filter the result and additing the search parameter?
    Regards,
    Kamesh Bathla

    Hi,
    You can add fields to Product master using Set types morever to make this fields available to webui you have to do some more configuration. please use following tcode in seqence to achieve your requirment.
    1) COMM_ATTRSET - Maintain Set Types and Attributes
    2) CRMM_UIU_PROD_GEN - Assign Set Types to Overview Pages
    3) CRMM_UIU_PROD_CONFIG - Create UI Configuration for Set Type
    Regards,
    Dipesh.

  • BAM Portal Source Code

    Hi,
    Can I get complete source code of out of the box BizTalk BAM Portal?
    Thanks and Regards, Sagar.

    Hi sagar,
    <<BIZTALK INSTALLTION DIRECTORY>>\Microsoft BizTalk Server 2010\BAMPortal
    contains the image and stylesheet for your BAM portal. If you want to add your company’s image in the BAM portal, you can do so along with the Microsoft logo or play with these files, but the soruce
    code is not available. I don’t think the soruce code is avilable from BizTalk 2006 onwards.
    If you want to develop a custom BAM like porta lyou have some options:
    Use BAM Web Services,  Management and Query to create custom BAM portal.
    accessing data from BAMPrimaryImport  database’s
    bam_<Activity      Name>_AllInstances views
    Or useBAMManagementService
    API
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful.

  • Search Page with navigation

    Hello,
    I have a custom Portal Application that displays UCM-content using a Content Presenter Template.
    What type of approach should I use to create a keyword search page that will display links to the Content Presenter Template?
    Thank you!
    Mitch

    Alright, finished MovieLibrary V2 :)
    http://www.yonaweb.be/MovieLibrary_v2.zip
    This project is the same as the first MovieLibrary but i added a search page.
    Like you suggested, i used UCM for the data control of a table. I also bound an inputText to the keyword parameter of the search. This however is not working properly... I will look into this a bit further and see if i can make this to work.
    The result table shows the result. The last column contains a link which will link to the item.jspx page. item.jspx Contains the content presenter.
    First of all, i had to add an additional attribute to the data control because i needed the dDocName to pass it to my presenter. dDocName is not included in the DC by default so you need to add it. Just right click the UCM DC and press edit definition. Add an additional attribute so it points to the dDocName. I already done that in the project so when you edit the definition of the UCM DC, you will see the docname attribute added to the list.
    This is the goLink in the search.jspx that will provide the link to the item.jspx:
    <af:goLink destination="/faces/oracle/webcenter/portalapp/pages/item.jspx?dID=#{row.docname}" text="#{row.ID}"/>As you can see i just add the docname attribute to the URL so we can retreive this later.
    Because we are passing the dDocName to the URL, we need to use a managed bean to retreive it and pass it to the content presenter workflow.
    When you look at the parameters of the content presenter taskflow in item.jspx you will notice that the datasource is set to the managed bean itemBean.
    In itemBean I have following code to return the correct value:
    public String getDataSource(){
          FacesContext ctx = FacesContext.getCurrentInstance();
          String did = (String)ctx.getExternalContext().getRequestParameterMap().get("dID");
          System.out.println("dID: " + did);
          return "UCM#dDocName:" + did;
        }The format of the datasource field in the content presenter taskflow is
    <connectionName>#<filter>:<value>
    so in my case i use the connection with the name UCM and i want the content with the dDocName provided in the URL.
    This will result in something like
    UCM#dDocName:myName
    This is also the value you will see in the table with the link.
    I hope my explenation is a bit clear :)
    If not, just ask.
    Edited by: Yannick Ongena on Apr 14, 2011 10:19 AM

Maybe you are looking for

  • How to know the service name of oracle server

    write a query to get the servcie name of oracle from oracle tables

  • Airport express connect to existing network problems

    Hello everyone, my thanks in advance for any help you can provide. I know this issue has been raised in various forms both on this forum and elsewhere on the net, however no solution so far has worked for me. I have been trying to add my airport expr

  • Integrating Systinet Registry with the XI/PI

    Does anyone have experience integrating Systinet Registry with the XI/PI Integration Repository? For example, is it possible to push XI design objects from the Integration Repository to Systinet and maintain synchronization?

  • Need Help in Scripting Turning Off JPEG Processing in ACR

    Back in 2005 (Win PS CS) I wrote a javascript script which allows me to batch add captions, headlines, author, etc to JPEG image files.  When CS3 came along I found I needed to turn off ACRs JPEG processing before I ran the script and on again after

  • Colours look different in Elements compared with Photoshop Album

    Hello All, I have a bit of a problem with Elements 5.0. When I import a RAW file and save to jpeg (at the maximum image quality selection) I have the image exactly as I want it. However if I then double click the image from the folder where it is sto