Security with Staged Solution

HI all,
If we use the staged solution.  Are SAP authorization still considered?
thanks.
JB

Hi JB,
No they won't.
You can replicate structural authorizations to a large extent in OrgChart Staged but it requires some more intermediate to advanced knowledge of the application configuration. Out of the box OrgChart Staged has 4 security roles, at least 1 (if not 2 I believe) have "self and below" security which is like structural authorizations. This allows a user to see "restricted" information for their orgunit and below (ie for a Manager) but not the rest of the structure.
For a bit more info on configuring security in OrgChart 2.1 Staged you can read my SDN Blog [Configuring security in STVN OrgChart 2.1|/people/luke.marson/blog/2010/09/17/configuring-security-in-stvn21-orgchart]. The principles apply to previous  versions and to 3.0.
[Configuring security in STVN OrgChart 2.1|/people/luke.marson/blog/2010/09/17/configuring-security-in-stvn21-orgchart]
Best regards,
Luke

Similar Messages

  • HT201303 How can I reset my security answers ? I do not remember them, and Apple support just can help me if I remember one o more answers. I already have three Follow-ups: 237312883, 374526499 and 239690719 with no solution.

    How can I reset my security answers ? I do not remember them, and Apple support just can help me if I remember one o more answers. I already have three Follow-ups: 237312883, 374526499 and 239690719 with no solution.

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • How to implement Oracle user/role security with Access front end?

    Hi,
    We have successfully migrated our Access database tables to Oracle 10g using SQL developer. We've recreated all the users and roles(i.e., access groups) in Oracle and granted rights to tables.
    In the Access front end database, in the Database window we have saved linked Oracle tables which replaced the Access tables. The forms, reports, queries run fine with the linked Oracle tables. All the linked table use one ODBC DSN to the Oracle database with the same Oracle user id.
    We need to be able to authenticate users into the Oracle database and RE-link the tables based on their own unique user id. By during so we can allow users to use the Oracle standard user id/role and system privileges to control select, update, ect. rights to the database.
    I've been able to use the VB code within Access to logon into the database with a unique id, but I have not been able to find out how to RE-link the tables to the unique user id using VB. There should be some way to relink tables dynamically, based on users login into the Access front end.
    I don't know a great deal about Access projects, but I do know with SQL server allows login into your Access project and link tables dynamically.
    Can someone give me some assistance or point me in the right direction?
    Thanks in advance,
    Larry

    We had one of our programmers here come up with a VB code solution for re-linking table within Access. However the relinking takes 3-4 minutes for 100+ tables.
    In an effort to help you understand the situation better, I will attempt to elaborate on the problem:
    We have an Access 2003 application which currently has a front end using Access(forms, reports, queries, & VB code) and a MS Access 2003 backend.
    We have migrated the backend tables to Oracle. However, we still have a need to maintain the front end in Access, since we have over 60 forms, 40 reports, 200+ queries in Access. Its easy to understand, we have a significant investment in the front end(Obviously, the plan is to migrate the front end also at some future date).
    In order to utilized the existing front end, we have to validate and modify the current front end connections to the new Oracle backend. One of the features of Access is that you can "link" tables and save the link for runtime. Each Access table can have its own link which is a separate ODBC/JET connection. As such, each separate link has its own userid/database information.
    The other issue with using the Access front-end is that Access utilizes a workgroup file to implement user and group security. The workgroup file contains all the users and which groups the users belong to in Access. Then within Access, you allow users access to object(tables, queries, ect) by their userid and or group. When users open an Access database with Access security enabled, they are required to log into Access. The login is authenticated by the workgroup file. Once, logged into Access, users have rights to Access objects based on their rights granted to their userid and groups they belong. The problem here is that when you remove the linked Access tables and replace them with linked Oracle tables, Access has knowledge about Oracle table rights granted to users; nor would you expect it to.
    The dilema is the disconnect between Access and the fact Oracle utilizes a similar but much more sophisticated security model. It creates users and roles(which are similar to Access groups), and again this is independent of Access security.
    Our solution was to still use the Access workgroup file security along with the Oracle security model. By using the Access userid and then creating a similar Oracle userid with similar table rights granted in Access, you could apply security within Access and also with the Oracle database.
    For example, a user BOB logs into Access via the workgroup file, using VB code, Access then establishes a Oracle connection logining into Oracle using the same unique userid BOB into Oracle.
    After connecting and validating user BOB into Oracle, then the Access tables are relinked to Oracle using the user BOB userid and table rights.
    This Oracle userid has been granted table rights specific for this userid.This allows the user BOB to use the Access application and still be authenticated into the Oracle database.
    The problem with this solution is that the relinking of the saved Access tables takes 3-7 minutes for about 100+ tables. This is not acceptable for users each time they log into the application.
    Our current alternative is to use one Oracle userid to login each user, and use Access form restrictions/security to allow/prevent users from updating/viewing data. Obviously, this is not the optimal solution in respect to security, but it at least allows us to control access to the data(via the forms) by using one logon required for each user, and quick startup time for the application.
    I understand SQL server does a better job in integration, but we use Oracle which is what I am trying to work with.
    Larry

  • Feedback - CiscoWorks Security Information Management Solution

    Can somebody share his experience with
    CiscoWorks Security Information Management Solution (CiscoWorks SIMS)?
    How do you like it? Is it doing what it is supposed to do well?
    Thanks

    I have installed the SIMS 3.1 appliance into a small web hosting network. I have 4 Cisco IDS, 8 routers, and 6 Pix firewalls all reporting to the unit.
    I am in the process of exploring all the different reports available. So far I am happy with automated reporting capability.
    I have found that the vast majority of events are due to system misconfiguration, network cleanup, etc. There is definitely a significant effort to tune your reporting devices in order to avoid false positives and other "noise".
    I am also looking into the Risk Management cabability but the documentation is less than helpful. Apparently the "brute force" method of just diving in and testing all the capabilities of the system is the only way to really learn it.
    Let me know if you have any specific questions and I will do my best to answer.
    JT

  • What is a Secure remote Control solution for ipadv3  to osx 10.8?

    I have a desktop and a laptop that I need to control via remote using my iPad 3. I am an administrator of a small network and it is against co policy to use vnc as my MacBook opens up with my access when I control it via vnc/apple desktop sharing. I need a more secure rdp like solution. I cannot use any external solutions like log me in, go to my PC... or the like. re: Against co policy.
    I opened two tickets and asked one simple question. Can apple confirm that no apple so has a secure remote access feature built in? With confirmation I can justify having to purchase or develop a solution. They would not admit it.
    Rdp is mediocre and somewhat secure. What is the issue for apple to use it for their so?
    How about Remote Desktop via a sash tunnel and lock the desktop?
    Does anyone have a simple cheap or free solution?

    Well the old VPN Client was the ONLY IPsec remote access VPN client that Cisco offered. So they wouldn't need to say "we recommend this one vs. that one" would they?
    Any migration needs to take into account new features and potential issues with the new client software. So you would need to confirm your VPN head end type, version, licensing, etc. Decide whether you want to use IKEv2 or sSL transport. Decide how you want to deploy the client software. Decide whether you want to make any changes to the features deployed given the expanded range of capabilities offered by AnyConnect, etc.
    Hope this helps. Please rate helpful posts.

  • 9 days and counting with no solution...thanks verizon

    8/24, all three of my tvs start experiencing pixelation where the screens constantly cut in and out along with the sound.  I try the support center provided through the menu section.  I try all trouble shooting methods and none fix the problem.  The next day 8/25 I call verizon customer support for assistance.  The gentlemen that answers has a thick accent that is very hard to understand when he speaks english so I ask to be transferred to someone who speaks english as their primary langauge.  He indicates that it is impossible for him to do that so I hang up and try again with another call. 
    The second call leads to the next technician testing my line and restarting my tv boxes.  This does not fix the problem so we schedule a technician to come out to my house.  The next available time would be from 4-6pm on Wed (8/28).  I was told the technician would call thirty minutes prior to arriving at my house.  About 5:28pm on 8/28 i recieve a text message that my request was closed.  No one ever showed up at my house and my tvs were still not fixed....I call customer support at 5:48 and ask why my request was closed, I was told that the technician found no one at home so he closed the request...I was at home the entire time anxiously waiting his phone call and arrival.  Without explanation I was told my option was to make a new ticket and schedule another day for service...Needing this problem fixed I have no choice but to schedule another service date so the next available is Fri (8/30) from 2-4pm.  I take off work again and sit at my house for two hours.  I recieve a call from a blocked number at 3:35pm on Friday and the call drops.  Minutes later I receive a voicemail notification.  It's the technician telling me that there are multiple requests for service in my neighborhood so my problem is not isolated to my house.  He said they were aware of the problem and would have it fixed soon so there was no need to come to my house.  
    Now to Sunday morning (9/1), the problem is still not fixed so another call is made to customer support.  I tell the technician the problem and the history.  He doesn't seem to listen to what I have told him and tries to give me steps to troubleshoot the problem.(this troubleshooting had been done 3 previous times)  I ask to speak to a supervisor which he does not want to transfer me to.  Eventually he puts me on through to a supervisor who doesn't listen to my actual problem but just assures me that the technician can troubleshoot the issue. (He cannot because I had already tried to troubleshoot the issue with other technicians) 
    So here I am 9 days from when the problem started with no solution.  No management that can take care of my issue or really seem to want to take care of my issue...Directv here I come!

    Hi PleaseJustHelp,
    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you. Please go to your profile page for the forum and look at the top of the middle column where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under "My Support Cases" you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis, as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.

  • Web Service Security with SAML - Invalid XML signature

    Hello together,
    we want to build a scenario where we want to use Web Service Security  with SAML.
    The scenario will be
    WS Client (Java Application) -> WS Adapter -> Integration Engine ->  WS Adapter-> CRM (Web AS ABAP 7.01 SP 3)
    SAP PI release is 7.11 (SP Level 4)
    We want to use the SAML Authentification from WS Client to PI and from PI to Web AS ABAP.
    The SAML authentifications between the WS Client and PI works when there is no SAML auth between PI and CRM.
    But we get following error at calling the CRM system when we want to communicate with SAML:
      <E_TEXT>CX_WS_SECURITY_FAULT:Invalid XML signature</E_TEXT>
    Has somebody an idea of the possible reason for the error.
    Thanks in advance
    Stefan

    Error Messages in the Trace/Log Viewer:
    CX_WS_SECURITY_FAULT : Invalid XML signature | program: CL_ST_CRYPTO==================CP include: CL_ST_CRYPTO==================CM00G line: 48
    A SOAP Runtime Core Exception occurred in method CL_ST_CRYPTO==================CM00G of class CL_ST_CRYPTO==================CP at position id 48  with internal error id 1001  and error text CX_WS_SECURITY_FAULT:Invalid XML signature (fault location is 1  ).
    Invalid XML signature

  • IPad 1 Safari Crashes Constantly and getting worse day by day.  Has Apple come up with a solution?  Now I am hearing its alos happening on the newer models.  My company is about to buy a lot of tablets and I will not recommend Apple anything til they fix.

    iPad 1 Safari Crashes Constantly and getting worse day by day.  Has Apple come up with a solution?  Now I am hearing its also happening on the newer models.  My company is about to buy a lot of tablets and I will not recommend Apple anything until they fix the problem.  Granted 30 or 40 iPads is not a huge impact but i promise once the outside world hears about this BS things will change.  There are plenty of other tablets out there that do not have this problem.  At the very least we should have the option of rolling back to a stable IOS...

    I have already tried all the things mentioned above as well as other things such as other browsers etc.  Its is obviously a problem with the hardware.  I also borrowed a brand new 4th gen iPad and it does the same thing.  Even after upgrading it to 6.01.  An occasional crash is one thing and can easily be waved off but this is clearly systemic and the problem appears to be related to graphical images and videos.  Both iPads are the 64gb versions, the only difference other than model is the iPad 1 has ATT cellular.  The new version is clean i.e no other APPs loaded other than what came with it.  I have 7 more coming but im seriously considering sending them back in favor of an Android tablet or the MS Surface.

  • HT4623 can someone assist me with a solution to the problem with my iphone 5. I upgraded to IOS 6.1.4 and since then i have had the problem of No Sim. I restored to the factory settings using i tunes as i have my back up on my pc but still the same proble

    can someone assist me with a solution to the problem with my iphone 5. I upgraded to IOS 6.1.4 and since then i have had the problem of No Sim. I restored to the factory settings using i tunes as i have my back up on my pc but still the same problem. I have swapped sim and my Sim is working on other iphone with ios 6.1.3

    Try a new SIM from your carrier.  If that doesn't work, make a Genius Bar appointment and get your phone evaluated.

  • Having a problem with HP Solution Center seeing my hp6940 printer

    So here's the environment, windows XP, ip address 192.168.50.2, hp 6940 at 10.9.26.100.  These two networks are connected by a router.  I can ping the printer, I can browse to the printer address and see the printer web pages.  If I bring up HP Solution Center, version 60.0.114.000, it reports when accessing the status "hp deskjet Disconnected!"  and if I check ink levels the HP 6940 Toolbox reports "The computer is unable to establish two-way communication with the device"  Windows XP can print to the printer.  What mechanisms are being used by the Solution Center to try to communicate with the printer?

    Hello w74me ,
    Welcome to the HP Forums.
    I see that you are having an issue with the Solution Center.
    Try running the HP Print and Scan Doctor.
    If the Doctor fails, please let me know where it failed and error codes you may see.
    Cheers, 
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Is there a way to print a pdf, which is secured with password?

    I want to know a way to print pdf which is secured with password to print without throwing a error ?
    Instead it has to ask for a password and print..

    we need to have an associated application installed in the system for that particular fileYup.
    does javax.print api works for pdf files and word documents?Nope.
    There is something called (I think) iText which can handle PDF documents. No idea whether it includes a printing facility or not.
    db

  • Can't get Email client to work with Network Solutions Email server

    This is a new Email account started after I installed Snow Leopard. The Email server is Network Solutions. I have tried all afternoon and evening trying to set up just one account / mailbox on the Mac and I still haven't gotten it to work. I have been over the settings multiple times with Network Solutions and they tell me all the settings are correct, but still no joy. When I try to 'Get Mail' it simply spins its wheels for a minute or so then displays a (!); i.e. it times out and stops trying. I don't know if it is something about Network Solution's servers that is causing the problem or if it something wrong on my end (most likely). Any idea what I can try? Is there a log someplace that will tell me exactly what part of the process is failing?

    Problem solved. For some reason the POP client had 'SSL' turned on. Guess I set it by accident during one of my many tries. All is well now.

  • Since up dating my Firefox I can not play any games on Facebook they all run very slow, can someone please help me with a solution.

    Since up dating my Firefox I can not play any games on Facebook they all run very slow, can someone please help me with a solution.It mainly seems to be with games.

    RE: "P.S. I  found it aggravating that I couldn't copy and paste text  here, it wanted me to insert as a link or an image, how do you insert plain  text?"
    I take it you tried using the "right click" menu?   That doesn't seem to work, as you noted, but, you should be able to paste text by pressing your CTRL key  and while holding it down, press the "V" letter  key.
    CTRL + C = COPY
    CTRL + X = CUT
    CTRL + V = PASTE
    HTH,
    Ortho_Fan

  • Is there a way to view Flash videos on my iMac without downloading Adobe Flash Player? I'm concerned about performance and security with Flash Player.

    Is there a way to view Flash videos on my iMac without downloading Adobe Flash Player? I'm concerned about performance and security with Adobe Flash Player.

    If the video is only available in a format that requires Flash player : then no.
    However, a great many can also be viewed in an HTML5 version, in which case http://hoyois.github.io/safariextensions/clicktoplugin/ or similar can be set up so that Flash never runs unless you specifically choose it to.

  • HT201210 Hey,I've got a problem on my iPad mini for a few days now?My iPad is in recovery mode at the moment and I Cannot restore my Ipad with iTunes...Can anyone help me with the solution?Each of your helps will be appreciate

    Hey,I've got a problem on my iPad mini for a few days now?My iPad is in recovery mode at the moment and I Cannot restore my Ipad with iTunes...Can anyone help me with the solution?Each of your helps will be appreciate...Thanks for all the helps...

    Follow step 1 to 6 closely to recover your iPad.
    http://support.apple.com/kb/HT1808
    Note: You may have to repeat the above a few times

Maybe you are looking for

  • Is there a way to split a very large 1 page pdf into letter size multiple page pdf?

    I often have very large single page pdfs that need to be printed onto letter size paper.  Usually I don't have access to the printer where I'm working so I have to send the file to someone for printing.  I have AXI pro, they don't.  I want to make su

  • Please recommend replacement Hard Drive for imac G5 17in

    My 160gb drive died, and I would like to replace with a larger drive. Can I please have your recommendations for a replacement. The original drive is a Seagate Barracuda 7200.7 Model # st3160023as I'd like to find something at least 250gb and 100% im

  • Filling tax amount which deviate from the calculted one

    While adding new line to a Purchasing invoice I need to fill the tax amount (which deviate from the within TaxCodeRate calculated one). For example if amount is 10 euro vatRate = 5%.  It should be possible to fill the PriceAfterVat with 110 euro with

  • Regagarding Page Format

    hi all,         I need to design one smartform that dimensions are height - 29 cm  and width 33 cm . Can anybody tell me which page format is suitable for this. and how can we create our own page format ? is it Possible. Please suggest Regards Rami

  • Automate DRM Metadata load into HFM

    Is there a way to automate a DRM metadata load into HFM? In both instances, we are using the latest Fusion versions and I wanted to know if there is a way to automate loading the flat file produced by DRM into HFM. How would this be done? Does EPMA v