How to make NWBC Role based

Hi SAP Experts,
I am trying to connect NWBC Version: 10000.1.12.806 with ECC 6.0 ehp ABAP system , Its connecting and able to execute transaction codes.
But I want to define NWBC role based for the users. I have followed note 1163891but role based display not coming.
How it is possible , kindly help.

Solved through NWBC Guide

Similar Messages

  • Urgent!! How to make Security Profile Based on Payrolls???

    Dear Everyone,
    I am facing this urgent case which is:
    * My company have 2 payrolls, they need to make security based on payrolls, and the case is our HR team can access all employees data including elements except managers elements or managers data at all ( so they cant find them while querying on them from people enter and maintain window)
    * I tried to make a separate payroll for managers (third payroll) and then making security profile includes all payrolls so they can access all payrolls element and data, then I make another security profile with the original 2 payrolls for other HR team so they can access employees assigned to these payrolls only, but I had to choose which is restricted ( employees or contingent workers or applicants or contacts), I tried to restrict employees in both security options, then I assigned the first security profile which includes the 3 payrolls to their responsibility in profile options, also did that with the second security profile and assigned to the profile option for the responsibility of HR team.
    after choosing restrict employees in security profiles, in both responsibilities I cant find any employees( because I restricted them).
    Please tell me how to make some of the top management cannot be find within search in people enter and maintain, only top management responsibilities can access all employees data and information.
    thanks for your time
    Mohamed Mannaa
    [email protected]

    to use custom you can write something like
    ASSIGNMENT.grade_id in (select g.grade_id
    from
    per_grade_definitions gd,
    per_grades g
    where
    g.grade_definition_id=gd.grade_definition_id (+)
    and gd.segment1 <= 12
    this is showing all employees having grade less than or equal to 12; you can use any other criteria based on your needs.

  • How to make a report based on the result of another report?

    Hi, All,
    I am a new guy in BW development
    I  made the report1, to show the "Total Sales in each country and each shop "
    (the fact table is "Order")
    now I want to make report2 "in each countries, the number of the shops, whose Total Sales >100000"
    Can I make the report2 based on the result of report1 (use the same fact table)
    thanks a lot
    QY

    Hi Klaus,
    your condition only works if the Shop is in the query. If I understood it correctly you have one query with
    Country   Shop   Total Sales
    and one with
    Country   Number of Shops   Total Sales
    and you don't want to restrict the second Total Sales but the Total Sales from the first query.
    Best regards
       Dirk

  • How to make column range based on a column in Oracle BI 11g

    Hello everyone!
    I want to know, how to make column range from a column in oracle bi 11g.
    for example!
    I have a column amounts and I want to build on this with other values of quantity, other column range 1-9,10-49,50-99,100-249, 249 o more.
    regards!
    when I try to make the range I have error.
    Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: SELECT CASE WHEN "CUBO_DEEE_TAB"."CANTIDAD" BETWEEN 1 AND 9 THEN 1 a 9 ELSE "CUBO_DEEE_TAB"."CANTIDAD" END FROM "DM_DEEE"
    Edited by: 964157 on 09-oct-2012 11:50

    You cannot add columns dynamically. But you can define a maximum number of numbers and then hide unused columns in your form useing SET_ITEM_PROPERTY(..,VISIBLE, PROPERTY_FALSE);

  • How to make a form-based search API using HTTPClient

    Hi,
    I am getting trouble to make an API that is related to making a site search by using a form-based search API by help of HTTPClient

    Hi,
    Something seems to get added to the form action because of "http". Hence I am removing it.
    You need to write a procedure with the values in the as parameters. Say for example you want to insert a record into dept
    table then
    Dynamic page code
    <html>
    <body>
    <form action="portalschema.insert_dept">
    <input type="text" name="p_deptno">
    <input type="text" name="p_dname">
    <input type="submit" name="p_action" value="save">
    </form>
    </body>
    </html>
    Procedure code.
    create or replace procedure insert_dept
    (p_deptno in number,
    p_dname in varchar2,
    p_action in varchar2)
    is begin
    if p_action = 'save' then
    insert into scott.dept(deptno,dname) values(p_deptno,p_dname);
    commit;
    end if;
    end;
    grant execute on insert_dept to public;
    Hope this helps.
    Thanks,
    Sharmila

  • How to make a collection based on successful application deployment?

    Hi,
    Does anyone know how I can make a collection from where the members are all the computers that have successfully installed a particular application.
    I saw this query from another site but i'm having a problem finding the assignmentID for the application I deployed.
    select SMS_R_System.ResourceId from  SMS_R_System inner join SMS_AppDeploymentAssetDetails on SMS_AppDeploymentAssetDetails.MachineID = SMS_R_System.ResourceId where SMS_AppDeploymentAssetDetails.AssignmentID = “16777222″ and SMS_AppDeploymentAssetDetails.StatusType
    = “5″
    Can someone also point me on where I can find the assignmentID for an application?

    Why do you want to do that? Just explain what you are trying to achieve.
    Torsten Meringer | http://www.mssccmfaq.de
    Hi Torsten,
    I wanted to create a collection that will contain the computers which have succeeded an application deployment. So then I can have a list of it. Vice versa, I wanted a list of those that failed. I know that I can do that by replacing the status type to what
    ever corresponds Error or Fail. It just so happen that I can't find the assignmentID.
    Another issue that I'm facing is that my reporting node is not working. I'm currently working on it but I have to get the list of successful/failed application deployment as soon as possible. That's why I though of creating a collection containing only those
    computers.

  • How to make a report based on a search box containg IDs for multiple rows

    Hello everyone,
    I'm using APEX to build a database application. My users want to search a table by submitting multiple IDs in a search box. They want to list the row IDs for all the rows they want to search in one input box, and after clicking the Submit botton, all the rows should be displyed. Any idea to make it with APEX. I appreciate all your help.
    Guang

    Unless your search is all numbers, each one will have to be separated by a '. That's probably why the multiple select isn't working. Try and add that around your SQL query, but I think you'll have to escape it for it to work.
    And about the error-checking, you can create a short PL/SQL snippet to check/format the string in :PXX_SEARCH. You could start with something as simple as having it attach the ' you''ll need.
    declare
      srch_tmp     VARCHAR2(200);
    begin
      srch_tmp   := ''||:PXX_SEARCH||'';
      :PXX_SEARCH   := srch_tmp;
    end;Note that this is incomplete and won't do everything you need. You'll have to use some string manipulators like REGEXP to parse the search string.
    Edited by: blarman74 on Nov 12, 2009 10:06 AM

  • How to make a text based language in mathscript node executed faster?

    Hello Everyone,
    I have build a VI contains mathscript function node, due to the big data needs to run it takes long time to finish the execution, is there any way to make the process faster, such as building shared library so it can be called by call library function node, or this only valid for c and c++ .
      any help will be highly appreciated

    smercurio_fc wrote:
    There is no way to convert the Mathscript code to a shared library.
    Please post what you're actually doing in the Mathscript node. As Gerd noted, there's probably a way to do this using native LabVIEW functions.
    While it may not be possible for a direct conversion from MathScript code to a DLL, it is possible to build a shared library using the application builder from a VI containing a MathScript node. This could be one way to get MathScript code into a shared library.
    The application builder is included with LabVIEW Professional Edition. You can setup a shared library by going to the project explorer and right clicking "Build Specifications" and selecting New->Shared Library (DLL).
    -K Scott

  • How to customize homepage role-based?

    Hi,
    I want to customize the homepage in crm2007 by role. I customized the menu entries but cant find the right place for the homepage. I checked the component workbench but couldnt find what I was looking for.
    Can anybody help?
    Thanks a lot.

    Component-Workbench->Move entries up to delete.

  • How to make a time based image transition using CSS?

    Hi
    I want to make an image in a DIV morph into another (in the
    same DIV) and then back again every ten or 20 seconds, but I want
    the transition to be smooth. . I was wondering if there is a simple
    CSS way of doing this, rather than making an animated gif with
    stacks of frames?
    Cheers
    Shaun

    CSS doesn't do such things.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "celebritymusic" <[email protected]> wrote
    in message
    news:esm5vt$8mn$[email protected]..
    > Hi
    >
    > I want to make an image in a DIV morph into another (in
    the same DIV). I
    > was wondering if there is a simple CSS way of doing
    this, rather than
    > making an animated gif?
    >
    > Cheers
    >
    > Shaun

  • How to make MRP run based on Target Safety stock

    Dear Experts,
    For our MRP-planned materials with safety stock we would like MRP run to take into account  target stock level defined for each month.
    for example: we know the target stock level values will be for M1 = 1000, M2 = 0, M+3 = 5000 etc.
    MRP should then propose orders to replenish up to the target stock level at the end of each month:
    needs for current month = (target stock level defined for current month  minus safety stock)
    needs for M1 = (target stock level defined M1 minus safety stock)
    needs for M2 = (target stock level defined for M2 minus safety stock)
    etc
    Do you know if there is any simple way to achieve this?
    Thanks you!
    Elynn

    Dear Experts,
    in my company, we are facing exactly the same issue,  we would like the MRP to consider a target stock exaclty as described by Elynn.     To be more clear, if we could reproduce the TDSS like in SNP in MRP, we'll be happy !.
    We imagine already to manage the target stock level in APO DP and released into ECC6 as a different MRP element than Forecast.  this target stock should not be considered as forecast neither consumed by any sales order.   Only to force the MRP to generate planned orders to increase the final stock when needed.  This is only an idea, we have nothing tested yet.
    someone have an idea if there's a standard solution for make this ?  I mean, why this fonctionality exist in SNP but not in MRP?
    thanks for any help
    Celia

  • How to make Parametres mandatory based on the selected parametre value

    Hi Gurus,
    I have a requirement in concurrent program.can anyone suggest me on this how to proceed,
    i have a concurrent program like ABC Program with three parameters (A parameter, B parameter, C parameter)
    my requirement is
    A parameter has 3 values (TEST,DEV,PROD)
    if a user selects 'TEST' value from the A parameter then 'B' parameter should become mandatory for user to enter value
    if a user selects 'DEV' value from the A parameter then 'C' parameter should become mandatory for user to enter value
    if a user selects 'PROD' value from the A parameter then 'B' and 'C' parameter should become mandatory for user to enter value.
    is it requirement is feasible ,
    any inputs on this post is highly appreciable.
    Thanks in advance

    Please see these links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Concurrent+AND+Dependent&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Concurrent+AND+Dependent+AND+LOV&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • ADF UIX Role Based Access Control Implementation

    Hi,
    Can anybody suggest a detailed example or tutorials of how to implement a role based access control for my ADF UIX application.
    The application users can be dymanically added to specific roles (admin, Secretary, Guest). Based on the roles, they should be allowed to access only certain links or ADF entity/view operations. Can this be implemented in a centralized way.
    Can this be done using JAZN or JAAS. If so, Please provide me references to simple tutorial on how to do this.
    Thanks a lot.
    Sathya

    Brenden,
    I think you are following a valid approach. The default security in J2EE and JAAS (JAZN) is to configure roles and users in either static files (jazn-data.xml) or the Oracle Internet Directory and then use either jazn admin APIs or the OID APIs to programmatically access users, groups and Permissions (your role_functions are Permissions in a JAAS context).
    If you modelled your security infrastructure in OID than the database, an administrator would be able to use the Delegated Administration Service (DAS), as web based console in Oracle Application Server. To configure security this way, you would have two options:
    1. Use J2EE declarative security and configure all you .do access points in web.xml and constrain it by a role name (which is a user group name in OID). The benefit of this approach is that you can get Struts actions working dirctly with it because Struts actions have a roles attribute.
    The disadvantage is that you can't dynamically create new roles because they have to be mapped in web.xml
    2. Use JAAS and check Permissions on individual URLs. This allows you to perform finer grained and flexible access control, but also requires changes to Struts. Unlike the approach of subclassing the DataActionForward class, I would subclass the Struts RequestProcessor and change the processRoles method to evaluate JAAS permissions.
    The disadvantage of this approach is that it requires coding that should be done carefully not to lock you in to your own implementation of Struts so that you couldn't easily upgrade to newer versions.
    1 - 2 have the benefit of that the policies can be used by all applications in an enterprise that use Oracle Application Server and e.g. SSO.
    Your approach - as said - is valid and I think many customers will look for the database first when looking at implementing security (so would I).
    Two links that you might be interested in to read are:
    http://sourceforge.net/projects/jguard/ --> an open source JAAS based security framework that stores the user, roles and permissions in database tables similar to your approach
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/adfstrutsj2eesec.pdf --> a whitepaper I've written about J2EE security for Web applications written with Struts and JavaServer pages. You may not be able to use all of it, but its a good source of information.
    Frank

  • How to restrict selected Role under a Role???

    Hi Friends,
    I have 3 roles, which are Role-1, Role-2, Role-3.
    Role-2 & Role-3 are Under/Part of Role-1.
    Now, I have assigned Role-1 to a user. By doing this, When he logs in he is able to see the Role-2 and Role-3 also eventhough we havent assigned Role-2&3.
    Now My question is, How to restrict a role under a role. For example, I dont want to show Role-3.
    When i checked the user roles assigned, i see only Role-1 but not 2 other roles.
    Could anyone advice on how to make unwanted role in role. Assuming, no one is going to assign directly with Role-2 & Role-3. They got assigned only Role-1.
    Thanks for u r time!!
    Thanks,
    Raghavendra.P

    Hi Praveen,
    Thanks for important/useful information. I really dont understand is., Inspite of giving the properties to the each of role/workset, How do we call the approprite under the role. for example :
    If we have Role-2 with propery dept=sd,
    and Role-3 with propert dept=xi, etc.
    Now i have Role-1, within which i have Role-2 and Role-3.
    Now, if i want to see only roles with dept=xi then where should i mention and what should i mention.
    I understood till creating the properties, assigning the properties to roles/worksets, giving values to properties.
    Only i doesnt understood is how to activate which we want in the scenario.
    Thanks for your time..!!!
    Thanks,
    Raghavendra Pothula

  • OIM 11.1.1.5 provisioning role based objectclasses and attributes

    TL;DR You can't provision some attributes in our LDAP directory without the objectclass and I can't figure out the best way to inject the dynamic objectclasses into the create user process without the user being created already.
    Some background:
    I have configured our oim 11.1.1.5 instance and LDAP connector to provision ODSEE.  At another's recommendation, I put all possible LDAP attributes in a single form regardless of which objectclass was needed for them.  In ODSEE, sets of attributes are allowed through objectclasses for each 'Role'.  ie. Student, Employee, Guest, etc objectclasses.  I have all of the roles identified in OIM and can map them to an objectclass in LDAP
    My question is, how can I provision role based objectclasses along with the common ones that are configured in the lookup so that when the associated attributes are provisioned, I don't get objectclass violations? 
    Can I append objectclasses to the list stored in the Configuration lookup in ldapUserObjectClass?
    Should I create a child form containing the objectclasses and try to provision them?
    Can/should I create a child form for each set of attributes by role?  Common attribs in the LDAP_USR form and role based attribs in UD_LDAP_STU, UD_LDAP_EMP, UD_LDAP_GST, etc.  Would prepop and the rest of the main form functions work the same?
    Anything else I'm not thinking of? I am still a novice with some of these topics and may be way off base.
    Any help will be greatly appreciated and thank you in advance

    It is definitely doable if you use a custom LDAP connection implementation and just add objectclass update calls as needed as precursor tasks for the Update tasks.
    Here is a small LDAP demo tool that you can adapt to do the update: http://iamreflections.blogspot.com/2010/08/manage-ad-with-jndi-demo-tool.html
    There may be a smarter and more out of the box way to do it but this will work.
    Martin

Maybe you are looking for

  • BAPI or FM or Class for Customer open items CLEAR (F-32)

    Hi Everyone, Is there any BAPI or FM to CLEAR customer open items (F-32). Thanks, NK

  • ITunes 7 update error - "Invalid Drive E:\"

    I just updated iTunes. Once the installation was done and I restarted my computer I tried to open iTunes and got an error message that stated "Invalid Drive E:\" and then shut down the operation. I cannot get iTunes to work, but QuickTime seems to be

  • Is bootcamp assistant not working in Mntn Lion?

    I'm trying to run Bootcamp Assistant (for the first time ever) in 10.8 and it is not playing ball. The download process seems extremely slow, it's wasted two blank DVDs by attempting to write to them then giving up and returning an error. So, I tried

  • Insert Initial Fill of New Aggregates

    Hi Experts, good morning............. In Infocube I  created Aggregates it's working fine, I include Process chain in Aggregate Rollup......(Process Types) Drag and Drop Insert Initial Fill of New Aggregates asking Initial Fill__________, Then I sele

  • Automated process to compare new data with the existing

    Below is the requested task and I am not sure if I can do this with only Database and ETL skill. "New customers access out site and I get a http:// request notifying me with new people accessing our website. I need to somehow take this new customer a