User Rights for iprintman

What is required in order to give a user rights to use iprintman. I have added the user as a manager of both the print manager and the printers. The user has also been lum enabled and can login to /PsmStatus.

I'm sorry . . I typed the wrong message. It should have been:
terminate called after throwing an instance of 'OpenWBEM4::CIMException'
what(): Access to CIM resource unavailable to client (You are not authorized to invoke method GetDefaultManager on object /root/cimv2:Novell_PrintManager)
Aborted
Originally Posted by chucks0
Error from iprintman on Linux:
terminate called after throwing an instance of 'OpenWBEM4::HTTPException'
what(): Unable to process request: 401: Authentication failure
Aborted
Error from iprntman on Windows:
Error: Unable to process request: Unauthorized:

Similar Messages

  • Suggested user rights for FCP daily work

    friends,
    I am wondering what is the suggested user rights for a user doing daily work with final cut pro?
    Should this user be an admin or restricted?
    What is the suggested - best practice?
    I am wondering what the benefits - drawbacks are of iether means.
    What do you do?
    Thnaks

    If you're the only user, you need to have admin privileges...
    If you're not the only user, and you don't trust the other users, then just give one person admin privileges... That said, I know of several bays here in Denver which are used extensively by many users and they all share the same user account without a problem... just sort of depends on how much you trust all those different folks.
    FCP runs fine either way, but only admin's can install updates or other applications. In some cases you can even set up systems that won't allow users to even use utilities... I think this is likely taking things a bit far, but it's certainly not unknown to do this. (keeps them from reformatting drives for example).
    But in and of itself, FCS runs OK with or without admin privileges.
    Jerry

  • Admin and user rights for change active airport

    Hello alltogether,
    my son has a new MacBook (System 10.5) for his school and he learn with the computer in all school-subjects. So I create two users, admin and one for him. After he has install all applications that he need for school, I gave the admin a password. Now my son can't install applications or change system settings. But i must give him admin rights, because when he stay at school, he must change the airport environment for school and if he stay at home he must change it back to home. Is it not possible to set the rights for a not admin user so, that he can change the airport environment?
    Thanks for reading.
    Regards,
    Tommy

    If he needs admin status to use the wireless connection, then you need to make him an admin user. As far as I know, there is no partial admin configuration.

  • Help setting up accounts and user rights for students

    hi there, we've just bought an xserve for a college classroom running 20 imac clients and me being new to the xserve and macs in general wondered if you guys can tell me the workflow for setting user accounts up and getting the students to log onto the xserve domain with their accounts. so that the xserve can give their imacs the restrcitions for their use (user rights basically) how the imacs log on has really got me stumped as with windows it does it on logging in? any help would be appreciated

    I've just realised that you have to manually remove some stuff from the classes such as reference to J2Se classes.
    How do you do this.

  • Local Repository User Rights for the Data Designer

    Hello,
    we are using the Data Services with 4 users and one local repository stored on the server.
    Is it possible to hide in the Data Designer foreign objects and projects from other users in the local repository? What's the best practice for that, for every user a seperate repository or to restrict the repository rights with the cmc?
    Our system:
    Windows Server 2008
    Data Services 4.0 SP1
    IBM DB2 9.7 (Repository)
    Thanks for some tips and hints!

    Hi Alexander,
    At any point in time, you should only have one user connected to one repository in Designer.
    If two users are using the same repository at the same time, then there is a risk of corruption of repository objects.
    Best practice is to have a repository for each (concurrent) developer and a central repository for version management.
    Depending how testing is organised, you might also need to have repositories for unit test / QA (UAT) and finally a production repository.
    For good measure, an additional central reposotiry for production can be valuable:
    - if development for new project start before the 'previous' project has gone into live.
    - You can prepare go-live by checking in all the objects required for live into central-production first.
    - It's the final safety measure, if objects in production are corrupted and dev/test systems have modified versions.
    So, a typical landscape would look like this:
    DEVELOPMENT:
    n number of development repositories, one for each developer
    1 test repository (local)
    1 dev central repository
    TEST
    1 UAT repository (local)
    PROD
    1 PROD repository (local)
    1 central repository
    Jan.

  • Querying User Rights for Create Document for Webi

    HI all,
    We developed a .NET application that allows a user to create Webi documents if they have access rights.  This worked in Business Objects XI R2 and we're upgrading to BusinessObjects Enterprise XI 3.1.  Our VB.NET code is as follows:
         Dim webIApplication As InfoObject
         webIApplication = istore.Query("SELECT * FROM CI_APPOBJECTS WHERE SI_ID = " &     applicationID.ToString()).Item(1)
         If webIApplication.SecurityInfo.CheckRight(17170446) Then
                    permissionOK = True
         End If
    This right used to allow a user to create a webi document, however, this right must have changed in the new version, since checking this right always returns false.  We did verify that this user has rights when using the built in Infoview, and it works properly.  We have been unable to determine the new right ID, or if this is still the proper way to check for such rights.  Thanks for any information you can provide.

    Hi,
    I'm trying to do the same in Java with a 3.0 but my code below is not working do you have an idea of what is wrong ?
    ISessionMgr sm = CrystalEnterprise.getSessionMgr();
       IEnterpriseSession _es = sm.logon("Niko", "", "machine", "secEnterprise");
       ISecurityInfoMgr isim = _es.getSecurityInfoMgr();
       ISecRights iMyRights = isim.getRights();  
       IInfoStore iStore = (IInfoStore) _es.getService("InfoStore");
       IInfoObjects rUsers = iStore.query("select * from ci_systemobjects where si_kind like 'WebIntelligence'");
          IInfoObject rUser = (IInfoObject)rUsers.get(0);
         int iObjectId = rUser.getID();
       IPluginBasedRightIDs ip = rUser.getSecurityInfo2().getKnownRightsByPlugin();
       java.util.Map toto = ip.getPluginCustomRights();
       IRightID[] irids= (IRightID[])toto.get("CrystalEnterprise.WebIntelligence");
       Locale myLo = new Locale("FRENCH");
       Locale lyLO2 = myLo.FRENCH;
       for (int i=0;i<irids.length;i++) {
        if (irids<i>.getBaseID()==14) {
         System.out.print(irids<i>.getDescription(lyLO2) + " -->" + irids<i>.getBaseID() + " -- " + irids<i>.getRightPluginKind() + " = ");
         int iResult = iMyRights.checkRight(irids<i>.getBaseID(), irids<i>.getRightPluginKind(), iObjectId);
         System.out.println(iResult == ISecurityResult.CE_SEC_GRANTED);
    Any help is appreciate. Consulting is engaged on a project related to this dev and it is hurry.
    Regards,

  • User Rights for a Sequence

    I created a sequence using a "CREATE SEQUENCE MY_SEQ;"
    while logged in as MYDBA. I have granted a user (JoUser) select rights to MY_SEQ, but when I try to use MY_SEQ while logged in as JoUser it doesn't work. More specifically when
    I execute a "SELECT * FROM USER_SEQUENCES;" MY_SEQ is not listed.
    The sequence works just fine as long as I'm logged in as MYDBA. All I need JoUser to do is a NEXTVAL on MY_SEQ. Any ideals on what I'm missing are appreciated.
    I'm using Oracle9i 9.2.0.1.0

    1) You need to select from mydba.my_seq
    2) To see the sequence from id JoUser, you need to select from all_sequences
    A better plan, though, is to "create public synonym my_seq for my_seq;" as mydba. Then, other users can select from my_seq without having to specify mydba.my_seq.
    Tim

  • Planned Task - Problems with user Rights for recurring tasks

    Hi there,
    I'm currently trying to configure a database replication tool from a 3rd party supplier to work as planned task on Windows Server 2012 R2 (Datacenter).
    There's a very strange problem, however: It does work perfect, if I configure the task to occur only once. It does not work, if I check the "Run that task each XXX hours/days"-Checkbox when configuring the Trigger.
    i.E.: works, when I have a trigger for each hour, doen't work if I configure one trigger to reoccur each hour.
    I tried to pinpoint that problem down, and I found that the task cannot access it's logfile when it's started "reoccurring" (It probably would not make sense to post a screenshot here, since I'm working with the german version of the server). It
    also does not work if I configure a specific trigger to end the task after XXX hours/days/etc. of operation.
    To form a more specific question: are there differences in the rights used to start a process, if it is scheduled to be started each our, by configuring a reoccurring trigger?
    Thank's in Advance,
    Alex

    Hi ALex,
    Would you please post more detailed information about Planned and recurring tasks?
    If you means creating task in task scheduler, in general, the triggers shouldn't frustrate the execution of the task, and we usually need to check the security option in the task.
    To troubleshoot the issue in task scheduler, please enable the task history: Open an elevated Task Scheduler (ie. right-click on the Task Scheduler icon and choose Run as administrator)->In the Actions pane, click Enable All Tasks History.
    If you means creating recurring tasks on project server, I recommend you can post in the dedicated Forum for a better response:
    https://social.technet.microsoft.com/Forums/en-US/home?category=project
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • User rights for technical User for Web Service Communication

    Hello all,
    we have a scenario where a web service is called, which is exposed by XI. The XI asks for a technical user, when the service is called from an external application. How can we create a user, which is only able to be used in certain scenarios, so that it's not possible, that everybody who has the user can invoke all scenarios.
    Best regards,
    David

    Hi David,
                     If I am not wrong, you are using Soap Adapter in XI for receiving webservice calls from 3rd Party Application.
    Configure a user with no - roles and authorisation profiles in XI server first.
    Then, this users need to be set up in Visual Administrator in XI server.
    Ask your Basis to Follow the steps below:
    1.Login to XI Visual Administrator.
    2.Click on Services -->Security Provider --> Runtime --> Policy Configurations -->
    Then select below under Components:
    Sap.com/com.sap.aii.af.soapadapter*XISOAPADAPTER --> then click on Security Roles -->
    Select:  xi_adapter_soap_message -->  Modify and add your configured User here in Users tab.
    Note: This will authorise your user without any roles.
    In this way you can give above username and password to 3rd Party Application to configure at their end.
    Since user don't have any access, nobody can misuse it and can only be used for webservice calls at XI server.
    Implement this  and if solve your problem , provide full points.
    Thanks ,
    Anurag

  • User rights for creating a notification

    Some of our users do not have the right to create personal notifications.
    The specific user is in an user role "Incident Resolver", and as I read it on TechNet (Link), users in this role should have the right to make personal notifications.
    Any hints would be appreciate.
    Patrick Wahlmüller

    This is what we tried:
    When to notify: When an object oft he selected class is updated
    Targeted class: Incident
    Managementpack: tried both: custom and Service Manger Incident Management Configuration Library
    Group: no selection
    Criteria: tried both: empty & assigned to.username equals username
    E-Mail template: custom
    Error message on “create”: The user SCSMTest does not have sufficient permission to perform the operation.
    Giving the user admin rights => create runs. So it is on the security Settings.
    Patrick Wahlmüller

  • Roles/ User rights for document upload

    Hi everybody!
    I'm trying to Upload test documents in SOLAR02->Test Cases->Test Case Type "TWTD" (Test Document).
    I'm failing with the error message "No authorization to import a document".
    Does anybody know which role/authorization I need for being able to upload a test Document?
    Thanks in advance,
    Lars

    Hi,
    The easiest way is to run transaction /Nsu53 after you get the error message.
    But probably the authorization objects you need to take a look at are AI_SA_TAB and S_AIRMTAB.
    Br,
    Anders

  • Licensing and user rights for speech features in Mac OS 9.

    Are they to be used only for non-commercial personal uses?
    Are they free to use for anything as long as you give Apple attribution?
    For example, if they were to be used as voices in an iOS game, would it need to be free, be fine commercially, need to pay a license fee or simply be disallowed at all?
    Thanks very much.

    Is it in any way like vocaloid or UTAU, which lets you use it for any purpose, even commercially as long as it follows the law (and is not used to defame people)?
    http://en.wikipedia.org/wiki/Vocaloid
    http://utau.wikia.com/wiki/UTAU_wiki

  • Extended user rights and 500 users limits on a PDF Form

    Hello,
    I read that there's 500 users limits for using extended user rights on Acrobat Pro 9.
    Here's my situation:
    - I built an application PDF form with extended user rights for Adobe Reader users to save the form. And I'm going to be hosting it on the web for users to download the PDF form to their local hard drive.
    - The form will have a button to submit to a web page with a script for processing FDF, XFDF, XML, or HTP form export.
    My question is:
    1. Would it be violating the 500 users limits if more than 500 users download the form and save the PDF after filling out fields, but not submit the data back to the server?
    2. What would happen if more than 500 responses are received through above method? Would new visitors still be able to save the PDF form for their archive purpose after downloading it from our web site?
    Thanks.

    Can Adobe's licensing department define "extract"?  I know there is a lot of confusion here and I'm trying to understand.
    Here is our scenario:  We have developed an Adobe fillable form which we will be sending to 1000 customers.  Customers can open the form (in Reader v9.5 and greater) and fill out the form, validate it and then print it.  The customers are not sending the PDF files back to us and the PDF data is not being collected so there is no data we can extract from Adobe files (we are not that advanced yet).  Customers will just print the information, then fax or send back to us by U.S. Mail. 
    When we receive the completed information (via fax/mail, not PDF), we read information off our form.  Does Adobe consider reading our information “extracting” with our eyes?  I’m not sure how they can consider that extracting?  I would think Adobe owns the mechanism (aka PDF file) for validating our content, but they wouldn’t own the content on our form if we want to physically read it, right?
    Adobe needs to clarify this more clearly and I’ve ready their interpretation of the Policy, but it doesn’t address this scenario.  http://www.adobe.com/products/eulas/pdfs/Reader_Extension_Policy_A10-5-31-2011.pdf
    George, I don't think you are an Adobe Employee.  I see you are a MVP, but you are not officiall speaking for Adobe are you?
    ---Thanks.

  • User authentication for menus..

    Hi Everyone,
    I am doing a project for my office to maintain inventory, I want to implement user rights for the menus..
    I would appreciate if any help me out...
    Thanks in advance..
    Regards,
    Irsath Ahamed.

    Al-Salamu Alikum ya Ahmed...
    1. Create your menu.
    2. Think of your security concept and create the resulting DB-Roles. Grant
    the roles to the users.
    3. Choose Menu-Property MENU MODULE ROLES
      and enter the names of the DB-Roles you created.
    4. Choose Menu-Property USE SECURITY and set to TRUE.
    The command to grant a role to a dbuser is
    GRANT <ROLENAME> TO <USERNAME>;
    5. Choose a Menu Item (or Submenu Item)
    choose MENU ITEM ROLES Property and highlight (blue) the
        Roles you want to give access to the menu item.
    (you can highlight more than one with Shift-Key)
    Grant roles access to individual menu items (using the Menu Item Roles property).
    6. Compile  and Generate the menu module.
    7. Compile and Generate  the form module.and then forms checks which roles are assigned to the connected user & which menuitems (forms & parameter forms of reports) should be shown to the user.
    If u Google u will find many...
    Pls have a look here
    http://www.orafaq.com/forum/t/157310/0/
    http://www.orafaq.com/forum/t/62786/2/
    Runtime Forms .FMX
    http://download.oracle.com/docs/cd/B25329_01/doc/admin.102/b25107/users_secure.htm
    Hope this helps...
    Regards,
    Amatu Allah.

  • Problems Managing User Access Rights for Web Gallery

    Has anyone else had issues changing the user access rights for a web gallery? It seems like the access is everyone or no one. Are the user rights handled per event in the gallery? I had issues adding events to the user's view/download rights in the publish settings.
    Also, can these settings only be set when an event is first published? Attempting to change the user access rights after the event is published seems to require a re-upload of the images.
    Any thoughts?

    Problem solved.
    I had to put the following lines in the specified "0000_any_80.my.website.conf" file:
            <Directory "/Library/WebServer/subdomain.domain">
                    Options All +MultiViews -ExecCGI -Indexes -Includes
                    AllowOverride None
                    # For Password protection
                    AuthType Digest
                    AuthName "Password Protection"
                    require valid-user
                    <IfModule mod_dav.c>
                            DAV Off
                    </IfModule>
            </Directory>

Maybe you are looking for

  • How do you use the status column to show progress of a step in an OI?

    Hi everyone, I was just doing a little browsing and noticed the picture at the top of the http://www.ni.com/teststand/ web page.  It shows a progress bar in the status column of a step being executed. I have several applications where this would be a

  • Java code check

    Hi Java Experts, Could anyone pls chk the code given below....when i try to run this code...it comes up with many errors.....pls help import java.awt.*; public class scrollimage extends java.applet.Applet implements Runnable { Image buf; Graphics gBu

  • F110 Payment for Kenya rouding to 0 or  5 cents

    When we offer a payment to the bank we have to round the ammount to  x,x0 or x,x5 We are using the Payment Medium Workbench. How can do this? Thanks, Paul

  • Account change, reset and slow ADSL??

    Hi all, I'm new to the forum and looking for advice and possibly help from the Mod's. My wife has recently retired from BT and we consequently moved from an employee contract to a standard customer contract. When the new contract became effective, a

  • Create DB Link?

    Dear all, I want to create a DB link from accessing one database to another. Let say I have one database in Site A and the other database in Site B. Site A wants to get information from Site B. How can I do that? Please advice, Amy