Use of Role Attributes

Can anyone explain the use of the role attributes found in PFCG change under Utilities/Info Objects/Display Attributes. 
I found 4 related tables:  AGR_ATTS, AGR_FLAGS, AGR_FLAGSB, and AGR_LSD.  How are these tables populated?  Can additional attributes be added?

Hi Kathy,
An answer from SAP: for your requirements "sensitivity of the roles, SOX approval identifier, etc." the role attributes are not a good way to start. Especially for your requirements SAP has created a new business unit <a href="http://www.sap.com/solutions/grc/index.epx">Governance, Risk, and Compliance</a>.
The SAP Compliance Calibrator is ment to manage risks and controls in SAP systems. The standard functionality does not provide in depth functionality for this.
Without any extra tools I would suggest using the free text description field of the roles for the type of documentation that you want to do currently.
Best regards,
Christian

Similar Messages

  • How to use 'roles' attribute in action-mapping ?

    Hi,
    Can anybody tell me what are the steps needed to use 'roles' attribute in <action> tag of struts-config.xml file?
    I want to provide Action level security.
    Also pls post an example if u r having.
    Regards
    Veeru

    Hi,
    The RfcAdapter trys to find a Sender Agreement for this RFC call but the lookup failes. The values used for this lookup are:
    Sender Party/Sender Service: The values from Party and Service belonging to the sender channel.
    Sender Interface: The name of the RFC function module.
    Sender Namespace: The fix RFC namespace urn:sap-com:document:sap:rfc:functions
    Receiver Party/Receiver Service: These fields are empty. This will match the wildcard
    Regards,
    Suryanarayana

  • Help with Role Attribute config in ERM in SAP GRC AC 5.3

    Hello, 
    I have a doubt.
    We are configuring the Role Attributes of the ERM in SAP GRC AC 5.3.
    Where can I get the Business Process & sub-process of a SAP ECC 5.0, in witch Tcode?
    An in the part of u201CProject/Releaseu201D where can I get this element from SAP ECC 5.0?
    Thank you in advance.
    Best regards.
    Pablo Mortera.

    Pablo,
       You won't be able to get BP, SBP and Project/Release information from any Tcode. Whenever security admin creates a role, they assign the role to a Business process, functional area etc. This information comes from Business.
    Project/Release field is used to identify the project name for which this role is being created/maintained.
    These are role attributes which help in role documenation so business needs to decide about the association.
    Regards,
    Alpesh

  • Using Dimension Role

    Hi Guys ,
    I've created one dimension that i want to use it multiple time in one cube , so i defined two role for it (delivery branch, order branch) .
    I used this dimension twice in sales cube with different role but when i want to deploy cube i got following error .
    XOQ-01486: Consistent solve has two aggregation steps over dimension "DIM_BRANCH".
    I Use Roalp with CubeMV storage option for my cube and dimension .
    I've read in owb help that when we use Dimension Role , Oralce make seperate Dimension for Role in Olap Catalog , but when i deploy my dimension with two role , i can see only one dimension in awm .
    I need your help.
    thanks
    Edited by: amir on Jul 14, 2012 12:01 AM

    We're going to need some more details about exactly what you did because it really sounds like you're making a mistake. This extra attribute should work.
    The only situation I can think of where it might not work as intended is if your new attribute is a property of the state attribute... when you slice by the state attribute, it will override the default member on the new attribute.
    What are your attribute relationships in that dimension? What do you get when you run the following MDX queries?
    with
    member test1 as [Geography].[State].DefaultMember.UniqueName
    member test2 as [Geography].[NewAttribute].DefaultMember.UniqueName
    select {test1,test2} on 0
    from YourCube
    select {} on 0,
    [Geography].[NewAttribute].[NewAttribute].Members
    *[Geography].[State].[State].Members on 1
    from YourCube
    As for the calculated member [Geography].[State].[All].[West], you can add to that to the MDX script (the Calculations tab in the cube designer) and it will be available to all sessions.http://artisconsulting.com/Blog/GregGalloway

  • Using the binding attribute within Tomahawk's t:dataList tag

    I am trying to create a .jsp page with a dynamic list of tables. Each table on the page has a dynamic number of columns. I read an excellent blog ([The BalusC Code - Using datatables|http://balusc.blogspot.com/2006/06/using-datatables.html#PopulateDynamicDatatable]) that taught me how to create dynamic tables using the binding attribute. I can now get the tables with dynamic columns working.
    What I would like to do next is nest the dynamic tables within a Tomahawk t:dataList tag:
    <t:dataList value="#{utilitiesTableSegBean.attributeTables}" var="attributeTable">
        <h:outputText value="#{attributeTable.title}"/>
        <h:panelGroup binding="#{attributeTable.dynamicTableGroup}/>
    </t:dataList>
    {code}
    When I run my app I get this error:
    javax.servlet.ServletException: javax.servlet.jsp.JspException: org.apache.jasper.el.JspPropertyNotFoundException: /s/UtilitiesTableSeg.jsp(57,56) '#{attributeTable.dynamicTableGroup}' Target Unreachable, identifier 'attributeTable' resolved to null
    Why do I get this error?
    If I remove the h:panelGroup tag then the h:outputText tag works just fine.  Why does 'attributeTable' resolve to null for the binding attribute of h:panelGroup, yet works for the value attribute of h:outputText?
    So then I thought that I might be able to make it work with an index into a bean property that returned the list of table objects.  So I tried to modify my panel group tag to:
    {code}<h:panelGroup binding="#{utilitiesTableSegBean.attributeTables[0].dynamicTableGroup}"/>{code}
    I was just doing a quick initial test and expected to see the first table repeated over and over because I had hard coded the value of '0' as the index.  But I was wrong.  It listed through all of the tables correctly.  Why?  This makes no sense to me!
    So I changed my jsp again so that it looked like this:
    {code}
    <t:dataList rowIndexVar="tableIndex" value="#{utilitiesTableSegBean.attributeTables}" var="attributeTable">
        <h:outputText value="#{attributeTable.title}"/>
        <h:panelGroup binding="#{utilitiesTableSegBean.attributeTables[tableIndex].dynamicTableGroup}"/>
    </t:dataList>
    {code}
    This is how I expected to code it so that the tables would all be shown correctly.  And it gives this error:
    org.apache.jasper.JasperException: An exception occurred processing JSP page /s/UtilitiesTableSeg.jsp at line 57
    (Line 57 is the line with the h:panelGroup tag.)
    Root cause:  javax.servlet.ServletException: javax.servlet.jsp.JspException: java.lang.IllegalArgumentException: null
    I would really like to get the original version working, but any feedback and/or suggestions would be greatly appreciated.  I have spent a lot of time trying to figure this out and I just don't know where else to look.
    Thank you very much!
    Dave                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Yes, sorry about that - I started off trying to prove a potential solution.
    Aim:
    A user logs onto a weblogic application and is authenticated against OID. The application is making SOAP service calls to a proxy endpoint monitored by another vendors software which authenticates the user against the ldap and checks their roles to see if the user can call the service.
    Solution so far:
    The initial application gets the username from the JAAS principal, but the password is not supplied. I can easily supply the SHA password digest to it (but putting a cleartext password in the header will probably not be given the go-ahead). This would enable the application to make the SOAP call with a username and digest.
    The software protecting the services can be configured in a variety of ways to authenticate the user to the ldap. One involves using the wsse username token in the header (cleartext password or digest).
    This authentication is failing and I don't yet have the diagnostic tools available to see which stage is in error. I was trying to prove that you could actually authenticate with an SHA password digest by doing a bind.
    Regards

  • Role Attribute Rule - with arguments?

    Hi all,
    Is there any way to specify arguments to role attribute rules?
    Seems like the xml-dtd it expects specifically discourages use of any arguments to the rule being called for any attribute.. Any feedback on this?
    Thanks,
    Adi.

    Never mind, I found out that:
    Each role-attribute-value could be determined by a rule, but no arguments can be specified. That means a separate rule must be created for each such role-attribute, but the good thing is all rules can be clubbed together in one file (easy to maintain) under the <Waveset> ... </Waveset> tag.
    Adi.

  • To run OHS at port 80 using solaris role based access control

    Hi.
    I already know & have done setuid root to ohs/bin/.apachectl to allow ohs to listen to port 80. Now on a new OFM 11.1.1.4 install, I want to use Solaris Role Based Access Control (RBAC) instead. Is it possible? RBAC does work as I can run a home built apache2 httpd at port 80 withOUT suid root.
    On Solaris 10, I enabled oracle uid to run process below port 1024 using RBAC
    /etc/user_attr:
    oracle::::type=normal;defaultpriv=basic,net_privaddr
    Change OHS httpd.conf Listen from port 8888 to port 80.
    However, opmnctl startproc process-type=OHS
    failed as below with nothing showing in the diag logs:
    opmnctl startproc: starting opmn managed processes...
    ================================================================================
    opmn id=truffle:6701
    0 of 1 processes started.
    ias-instance id=asinst_1
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    ohs1/OHS/OHS/
    Error
    --> Process (index=1,uid=187636255,pid=25563)
    failed to start a managed process after the maximum retry limit
    Thx,
    Ken

    Just to add my two cents here.
    The commando used on Solaris to assign the right privilege to bind TCP ports < 1024 is:
    # usermod -K defaultpriv=basic,*net_privaddr* <your_user_name>
    Restart the opmnctl daemond.
    After that OHS/Apache user can bind to lower TCP ports.
    Regards.
    Edited by: Tuelho on Oct 9, 2012 6:05 AM

  • Error occurred in deployment step 'Add Solution': A feature with ID '' has already been installed in this farm. Use the force attribute to explicitly re-install the feature.

    Hi I am getting the error
    Error occurred in deployment step 'Add Solution': A feature with ID 10495515-2482-41fd-98eb-3c87f739f54b has already been installed in this farm.  Use the force attribute to explicitly re-install the feature.
    when trying to deploy web parts
    question 1 - how do i use the force attribute when deploying from visual studio
    question 2 - am i deplying it to the right place, if i deply it to the
    url:port that points to my central admin tool it deploys but i cant seem to see it in any of my webs in my site collection, if i deploy it to the
    url:port that points to my site collection I get this error.
    im new to all this by the way :)
    thanks in advance

    If you are deploying from Visual Studio then please follow this post:
    http://sharepointfordeveloper.blogspot.com/2014/03/solved-visual-studio-issue-error.html
    Open the visual Studio and navigate to the feature XML file and add the bellow attribute.
    AlwaysForceInstall="TRUE"
    The <FeatureName>.Template.Xml output would be some think link this.
    <?xml
    version="1.0"
    encoding="utf-8"
    ?><Feature
    xmlns="http://schemas.microsoft.com/sharepoint/"
    AlwaysForceInstall="TRUE"></Feature>

  • How to get cm:search to use the max attribute when creating the SQL query?

    When we use the max attribute in the cm:search tag, it does not seem to honor the max attribute when creating the SQL query. However, the result returned from the tag is limited to the number specified by the max attribute. Then the tag seems to work as intended, but the performance will be sub optimal when the SQL query returns unnecessary rows to the application.
    We use the cm:search tag to list the latest news (ordered by date), and with the current implementation we have to expect a decrease in performance over time as more news is published. But we can’t live with that. We need to do the constraint in the SQL query, not in the application.
    The sortBy attribute of cm:search is translated to “order by” in the SQL query, as expected.
    Is it possible to get cm:search to generate the SQL query with an addition of “where rownum <= maxRows”?

    Hi Erik,
    The behavior of a repository in regards to the search tag's max results parameter is dependent on the underlying repository's implementation. That said, the OOTB repository in WLP does augment the generated SQL to limit the number of rows returned from the database. This is done in the parsing logic. This behavior may differ with other repository implementations.
    -Ryan

  • Using Adapter-specific attributes in Mail adapter

    Hi,
    I try to use adapter-specific attributes in my Mail adapter. I set the "Use Adapter-Specific Message Attributes" indicator, but I do not get a result in the mapping and also in the SXMB_MONI the attributes are not visible.
    The documentation also refers to Variable Transport Binding indicator:<a href="http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm</a>
    Could this be the problem? I cannot find this indiciator! Does anyone know where I can find this indicator?
    Regards,
    Torsten

    Hi,
    The values for the parameters, set using adapter specific message attributes are available at runtime in the path http://sap.com/xi/XI/System/Mail.
    We need to write UDF's that can extract the values from this path.
    For Ex:
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters() .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create(
        “http://sap.com/xi/XI/System/File”,
        “FileName”);
    String valueOld = conf.get(key);
    if (valueOld != null) {
        String valueNew = valueOld.replaceAll(“input”,”output”);
        conf.put(key, valueNew);
    If you check Dynamic configuration in sxmb_moni, you would be able to find the values for all the attributes that have been set in the adapter.
    Regards,
    Smitha.

  • Using entities for attributes in Excel

    How can I define attributes in an Excel sheet to match my entities?
    Say I have one entity namned the child.
    Creating the excel sheet I want some of the attributes to be on Global level and some other on the child entity - default is, using the Declarations-tab for defining the attributes but there I can´t add what entity they should reside in so all my attributes end up on Global....
    Seen an example where there is entites in the sheet (opening the .xgen file) but haven´t been able to figure out on how to accomplish it.
    Any tips?

    Hi Lena,
    Make sure that the attributes you are trying to declare for the child include the full string "the child" (i.e. exactly the same as the entity name) otherwise OPA will just assign them to the global entity (I still get caught out with this sometimes!).
    It's best to declare these in a property file rather than the Declarations Tab of the Excel document, so that should help too.
    It's worth noting that you won't be able to have a global conclusion if you are also using conditions with attributes which belong to "the child", but you will be able to have a child-level conclusion which uses global attributes in the conditions, since the child is contained by global. The reason you cannot have a global conclusion and use child conditions is that "global" will not know which child you are talking about, and you cannot use cross-entity reasoning like ForAllScope() and ExistsScope() in Excel.
    The OPM help includes some useful information, see the article "Define decision tables in Excel workbooks". You should never need to modify the .xgen file.
    I hope this helps, let me know if you need more information.
    Thanks,
    Ben

  • The use of id attribute in html tags

    Hi
    I use http://java.sun.com/jsf/html as follows:
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <h:form id="myid">
    <h:panelGrid id="mypanelgrid" columns="1">
    </h:panelGrid>
    </ht:form>When I don't use the id attribute with the UI components, the components are not displayed.
    I would like to confirm that id attribute is MUST in jsf.
    Your kind response is appreciated.
    Thanks
    Murthy

    Actually I see an exception thrown on Windows XP
    10:24:45,717 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception
    java.lang.IllegalArgumentException: setAttribute: Non-serializable attribute
            at org.apache.catalina.session.StandardSession.setAttribute(StandardSess
    ion.java:1233)
            at org.apache.catalina.session.StandardSessionFacade.setAttribute(Standa
    rdSessionFacade.java:129)
            at com.sun.faces.context.SessionMap.put(ExternalContextImpl.java:556)
            at com.sun.faces.application.StateManagerImpl.saveSerializedView(StateMa
    nagerImpl.java:88)
            at net.sourceforge.myfaces.taglib.core.ViewTag.doEndTag(ViewTag.java:138
            at org.apache.jsp.pages.template.TemplateRightPane_jsp._jspx_meth_f
    _view_0(org.apache.jsp.pages.template.TemplateRightPane_jsp:246)
            at org.apache.jsp.pages.template.TemplateRightPane_jsp._jspService(
    org.apache.jsp.pages.template.TemplateRightPane_jsp:121)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:322)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:3
    14)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:252)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
            at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDisp
    atcher.java:672)
            at org.apache.catalina.core.ApplicationDispatcher.processRequest(Applica
    tionDispatcher.java:463)
            at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationD
    ispatcher.java:398)
            at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDis
    patcher.java:301)
            at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImp
    l.java:322)
            at net.sourceforge.myfaces.application.jsp.JspTilesViewHandlerImpl.rende
    rView(JspTilesViewHandlerImpl.java:178)
            at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePha
    se.java:87)
            at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
            at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:252)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
            at com.xyz.framework.security.authorization.AuthorizationFilter.doFilter
    (Unknown Source)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:202)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
            at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
    lter.java:81)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:202)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:213)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:178)
            at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrinc
    ipalValve.java:39)
            at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
    yAssociationValve.java:153)
            at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
    e.java:59)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:126)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:105)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:107)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
    a:148)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :856)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:744)
            at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
    int.java:527)
            at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor
    kerThread.java:112)
            at java.lang.Thread.run(Unknown Source)
    10:24:45,748 INFO  [STDOUT] org.apache.jasper.JasperException: setAttribute: Non
    -serializable attribute
    10:24:45,748 INFO  [STDOUT]     at org.apache.jasper.servlet.JspServletWrapper.s
    ervice(JspServletWrapper.java:370)
    10:24:45,748 INFO  [STDOUT]     at org.apache.jasper.servlet.JspServlet.serviceJ
    spFile(JspServlet.java:314)
    10:24:45,748 INFO  [STDOUT]     at org.apache.jasper.servlet.JspServlet.service(
    JspServlet.java:264)
    10:24:45,748 INFO  [STDOUT]     at javax.servlet.http.HttpServlet.service(HttpSe
    rvlet.java:810)
    10:24:45,748 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.internalDoFilter(ApplicationFilterChain.java:252)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.doFilter(ApplicationFilterChain.java:173)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationDispatche
    r.invoke(ApplicationDispatcher.java:672)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationDispatche
    r.processRequest(ApplicationDispatcher.java:463)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationDispatche
    r.doForward(ApplicationDispatcher.java:398)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationDispatche
    r.forward(ApplicationDispatcher.java:301)
    10:24:45,764 INFO  [STDOUT]     at com.sun.faces.context.ExternalContextImpl.dis
    patch(ExternalContextImpl.java:322)
    10:24:45,764 INFO  [STDOUT]     at net.sourceforge.myfaces.application.jsp.JspTi
    lesViewHandlerImpl.renderView(JspTilesViewHandlerImpl.java:178)
    10:24:45,764 INFO  [STDOUT]     at com.sun.faces.lifecycle.RenderResponsePhase.e
    xecute(RenderResponsePhase.java:87)
    10:24:45,764 INFO  [STDOUT]     at com.sun.faces.lifecycle.LifecycleImpl.phase(L
    ifecycleImpl.java:200)
    10:24:45,764 INFO  [STDOUT]     at com.sun.faces.lifecycle.LifecycleImpl.render(
    LifecycleImpl.java:117)
    10:24:45,764 INFO  [STDOUT]     at javax.faces.webapp.FacesServlet.service(Faces
    Servlet.java:198)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.internalDoFilter(ApplicationFilterChain.java:252)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.doFilter(ApplicationFilterChain.java:173)
    10:24:45,764 INFO  [STDOUT]     at com.xyz.framework.security.authorization.Auth
    orizationFilter.doFilter(Unknown Source)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.internalDoFilter(ApplicationFilterChain.java:202)
    10:24:45,764 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.doFilter(ApplicationFilterChain.java:173)
    10:24:45,764 INFO  [STDOUT]     at org.jboss.web.tomcat.filters.ReplyHeaderFilte
    r.doFilter(ReplyHeaderFilter.java:81)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.internalDoFilter(ApplicationFilterChain.java:202)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.core.ApplicationFilterCha
    in.doFilter(ApplicationFilterChain.java:173)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.core.StandardWrapperValve
    .invoke(StandardWrapperValve.java:213)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.core.StandardContextValve
    .invoke(StandardContextValve.java:178)
    10:24:45,779 INFO  [STDOUT]     at org.jboss.web.tomcat.security.CustomPrincipal
    Valve.invoke(CustomPrincipalValve.java:39)
    10:24:45,779 INFO  [STDOUT]     at org.jboss.web.tomcat.security.SecurityAssocia
    tionValve.invoke(SecurityAssociationValve.java:153)
    10:24:45,779 INFO  [STDOUT]     at org.jboss.web.tomcat.security.JaccContextValv
    e.invoke(JaccContextValve.java:59)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.core.StandardHostValve.in
    voke(StandardHostValve.java:126)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.valves.ErrorReportValve.i
    nvoke(ErrorReportValve.java:105)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.core.StandardEngineValve.
    invoke(StandardEngineValve.java:107)
    10:24:45,779 INFO  [STDOUT]     at org.apache.catalina.connector.CoyoteAdapter.s
    ervice(CoyoteAdapter.java:148)
    10:24:45,779 INFO  [STDOUT]     at org.apache.coyote.http11.Http11Processor.proc
    ess(Http11Processor.java:856)
    10:24:45,779 INFO  [STDOUT]     at org.apache.coyote.http11.Http11Protocol$Http1
    1ConnectionHandler.processConnection(Http11Protocol.java:744)
    10:24:45,779 INFO  [STDOUT]     at org.apache.tomcat.util.net.PoolTcpEndpoint.pr
    ocessSocket(PoolTcpEndpoint.java:527)
    10:24:45,779 INFO  [STDOUT]     at org.apache.tomcat.util.net.MasterSlaveWorkerT
    hread.run(MasterSlaveWorkerThread.java:112)
    10:24:45,779 INFO  [STDOUT]     at java.lang.Thread.run(Unknown Source)
    10:24:45,779 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces Servlet
    threw exception
    java.lang.IllegalStateException
            at org.apache.catalina.connector.ResponseFacade.sendRedirect(ResponseFac
    ade.java:423)
            at com.xyz.framework.security.authorization.AuthorizationFilter.doFilter
    (Unknown Source)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:202)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
            at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
    lter.java:81)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:202)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:173)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:213)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:178)
            at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrinc
    ipalValve.java:39)
            at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
    yAssociationValve.java:153)
            at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
    e.java:59)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:126)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:105)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:107)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
    a:148)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :856)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:744)
            at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoI'd appreciate your kind help.
    Thanks
    Murthy

  • Feature with ID 15/.. has already been installed. Use the force attribute to explicitly re-install the feature

    Hi everyone,
    I really become desperate with this one. I know, it's mentioned hundred times in the web, and it really works when you use a force deployment, but my simple question is: Why?
    To explain my issue: We have several SharePoint 2010 solutions which we want to deploy to SharePoint 2013 with Visual Studio 2012 running on Windows Server 2012. Site solutions work. But farm solutions just don't. I get the error (you
    guessed it): A feature with ID 15/... has already been installed in this farm. Use the force attribute to explicitly re-install the feature.
    And it does really work with the force attribute, but why on earth do you have to use the force flag? Something has to be different, and if there is an already installed feature with this ID, then why can Visual Studio not uninstall or
    deactivate it by itself first? This error never occurred with SharePoint 2010 and VS2012, although features are already installed. 
    Thanks a lot for your effort.
    Best regards,
    Patrick

    Hi Check this
    1.Double click on the feature.... ( or right click and choose properties)
    2.then in the properties window make
    3. ALWAYS FORCE INSTALL = false... (this should be false)
    Manoj Gangwar | Sharepoint MCPD | Sharepoint MCTS |

  • Use of "Rel" Attribute in Links -- Good Idea?

    Hi --
    I was reading about various SEO methods recently and came
    across several
    pages which advocate the use of the "Rel" attribute on a
    hyperlink. The idea
    being that the "Rel" may influence how a search engine views
    a link and
    possibly help with ranking. For example: <a
    href="help.html" rel="Help">
    need help?</a>.
    Sounds like a good idea, but the more I read the confused I
    became. A Danny
    Sullivan article about use of the attribute "nofollow" used
    by major search
    engines made sense. It was the other article I read which
    used all
    different types of attributes that confused me such as
    rel="met colleague",
    rel="alternate". Is there someplace I can go to find a list
    of widely
    accepted attributes?
    Anyone have any experience with this?
    John

    Thanks, Joe. Yep, the source is the best place to start.
    Should have
    thought of that myself.
    I suspect you're assessment is correct...won't hurt, might
    help.
    Thanks again.
    John
    "Joe Makowiec" <[email protected]> wrote in
    message
    news:[email protected]..
    > On 02 Apr 2008 in macromedia.dreamweaver, Tarvardian
    wrote:
    >
    >> Is there someplace I can go to find a list of widely
    >> accepted attributes?
    >
    > How 'bout the source?
    >
    >
    http://www.w3.org/TR/html401/struct/links.html#adef-rel
    >
    > Note that it has a set of defined values:
    >
    >
    http://www.w3.org/TR/html401/types.html#type-links
    >
    > In looking over the documentation, and given my
    understanding of the way
    > things work in the here and now, I suspect that it's one
    of those "Won't
    > hurt, might help" kind of things.
    >
    > --
    > Joe Makowiec
    >
    http://makowiec.net/
    > Email:
    http://makowiec.net/contact.php

  • What is the use of version attribute in jnlp tag??

    Hello,
    I want to know what is the use of version attribute in jnlp tag.
    For ex:
    <jnlp spec="6.0+" codebase="$$codebase" href="$$name" version="1.1">
    </jnlp>
    In the spec it explains:
    In the Jnlp tag:
    version = The version of the application being launched, as well as the version of the JNLP file itself.
    1. Is this version attribute would work as version attribute in jar tag. Ex: <jar href="application.jar" version="1.1"/> ?
    i.e. can we specify different jnlp's with the same name as we do for jar's with the help of version.xml.
    Any help is greatly appreciated.
    //Anjali

    Hi Reddy,
    If one Info Object depends on another info object we will make that dependent info object as a compounding attribute of main Info object.
    Eg: Storage Location – Plant
    In above eg there is no meaning of Storage Location without Plant. So, we will make storage location as compounding attribute of Plant.
    Regards,
    Sreehari.

Maybe you are looking for

  • Issue in Invoking an Updatable View with Instead of Trigger

    Hi, I am trying to insert a record using Updatable View with Instead of Trigger. When i try to save the data, i get the below error: java.sql.SQLException: ORA-01403: no data found ORA-06512: at line 1 at oracle.jdbc.driver.T4CTTIoer.processError(T4C

  • Copy all assets in a production out to a device

    I have been trying to set-up an approve process where once an editor sets production status to approved - all assets within the production should copy out to a device which is a dropfolder for signiant. But I get an error stating "Security Restrictio

  • Table that captures change history of Ownership of Tranport Requests.

    Hello Folks,                     I have been trying to locate a table that captures change in ownership of requests. I've tried Transport organizer transactions SE01 (extended view), tables E070 and E071 and SE03 but without success. Is there a table

  • How To Open A Folder of native system

    Hello Frnds can any body guides me how to open a folder of my system.actually i am using adobe air 2.0 for making a simple application in which i send and recived files.I simply uses File Class for extarct the nativepath of file.now i have path where

  • Enter the text while confirmation

    hi gurus, While prod. we have a byproduct we want to enter text there so that we can see that this perticular material is generated from this work center, date and time. can i enter the text against component in co11n > component overview. Thanks and