How do I grant permission=node_create_child in KM?

The error message: "Permission denied: uri=/kmfolder,
permission=node_create_child, user=XXXXXX"
Background:
We are using a KM Windows repository to connect KM to a Windows shared
folder over the network. Then we are using a Web Dynpro java
application to write a file to the KM Folder, which is then mapped to
that KM Windows repository.
Security on the Windows shared folder is wide open. Everyone=Full
Control, and Domain Users=Full control.
Problem:
When end users try to write the file to KM through the Web Dynpro app,
they get the error:
"Permission denied: uri=/dm_filenet, permission=node_create_child,
user=XXXXXX"
But when we give them the Content Admin role, they are able to write
the file just fine. For this reason, I do not believe there is a
Windows permission issue.
We have tried:
-Explicitly setting User Mapping through User Admin -> Identity
Management
-Using a System Principle role with Full Access (Read, write, delete)
-Duplicating the Content Admin role, removing the pages & iViews (so
they can't view the Content Admin interface) and assigning this role to
our test users.
We have setup:
Network path
- ->jCIFS=True
- ->Network path=
<serv.host.com>\<sharename>
- ->User=<domain>\<ADMIN User>
KM Windows System Object
- ->User Mapping=admin,user
KM Windows System Landscape Definition
CM Repository Manager
- ->Prefix=/<sharename>
- ->Persistance Mode=fsdb
- ->Root directory=
<serv.host.com>\<sharename>\root
- ->Root directory for versions=
<serv.host.com>\<sharename>\versions
- ->Repository services=svc_acl
- ->Security Manager=W2kSecurityManager
- ->ACL Manager Cache=ca_rsrc_acl

Please see thread /thread/1302951 [original link is broken]

Similar Messages

  • HT1727 How do you grant permission for home sharing and authorizing?  My mac did home share, but now says, "The required directory was not found or has a permissions error", when I try to authorize.

    How do you grant permission for home sharing and authorizing?  My mac did home share, but now says, "The required directory was not found or has a permissions error", when I try to authorize.

    OK, I just got off of the phone with Apple and still no joy. They had me try a few things that did not work, then told me to Archive and Install, which did not either. Anyway, thanks for the additional help very note worthy, but still no joy. Also an email to iTunes Support took me here
    http://docs.info.apple.com/article.html?artnum=93061
    I have a Users/Shared folder but since the files we are talking about are invisible, I can see how it is structured.
    And by the way I tried this one
    http://discussions.apple.com/message.jspa?messageID=3577004#3577004
    and it did not work. However, when I install a fresh copy of Tiger on the external it did authorize the computer and was able to play the downloads. But coping the invisible file to my boot drive was not successful. But , like I said the music did play when I started up from the external. So I guess that may be my only solution, unless someone can tell what the correct directory is and where it for iTunes downloads.

  • How do I grant permission in privacy setting?

    Ever since updating to iOS7, any apps that require permission in my privacy setting are not actually showing up under the privacy setting.  For example, if I want to use Instagram, it won't access my photo albums.  It says to grant permission under settings>privacy>photos.  When I do that, there are no apps listed requesting permission to access my photos.  Any ideas/suggestions?  Thanks in advance!

    I had a similar issue and to solve it I simply erased the app and redownloaded it and when it initally asks for permission in a pop up be sure to say yes.
    I am sure there is a more technical solution for this issue but I have not been able to find one. Let me know how this works for you
    Regards,
    Jake

  • How to give grant permission on packaged procedure

    Hi ,
    This is Ramesh  what is my requirement is i want give permission packaged procedure that means i given permission  only procedure not entire package it is possible or  not? if yes then why
    given example

    Hi,
    You  can't  give grant to package.function or procedure.
    You  can do that following way.
    SQL> create or replace package p is function f return number; end p;
      2  /
    Package created.
    SQL> create or replace function f return number is begin return p.f; end;
      2  /
    Function created.
    SQL> grant execute on f to scott;
    Grant succeeded.
    Regards
    Mahir M. Quluzade

  • I received a message on my new Samsung S5 that said this mobile number does not have permission to send messages.  Further it say to contact the acct. owner (me) to change permission.  What is this aboutand how do I grant permission?

    Duplicate post - please see:
    I got an new Samsung S5 this week.  Now I am getting a message saying that this mobile number does not have permission t…
    Message was edited by: Admin Moderator

        Congratulations on your new phone Gramps5019! Let's make sure we fix this asap. All you have to do is go to Settings from your phone, the More>Select 'Default SMS App' and choose "Messages" instead of "Messages ". This will fix it. 
    AdaS_VZW
    Follow us on Twitter at @VZWSupport 

  • Grant Permission In Access Database

    Hello All
    How to set Grant Permission in Access Database, I get an error here
    what's wrong in my SQL syntax?
    Best Regard
    Xan To

    Hello Matthias Kläy
    I Have try your code and I get an error
    this my code
    Imports System.Data.OleDb
    Imports System.Data
    Imports ADOX.ObjectTypeEnum
    Imports ADOX.ActionEnum
    Imports ADOX.RightsEnum
    Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim cat As ADOX.Catalog
    Dim grp As New ADOX.Group
    Dim Builder As New OleDb.OleDbConnectionStringBuilder
    Try
    With Builder
    .Provider = "Microsoft.ACE.OLEDB.12.0"
    .DataSource = "C:\Users\Xan To\Desktop\Test.mdb"
    End With
    'Using cn As New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\Xan To\Desktop\Test.mdb; Jet OLEDB:System Database=system.mdw;")
    Using cn As New OleDb.OleDbConnection
    With cn
    .ConnectionString = Builder.ConnectionString
    End With
    Using cmd As New OleDb.OleDbCommand
    With cmd
    .Connection = cn
    .CommandText = "GRANT SELECT ON TABLE MSysObjects TO PUBLIC"
    End With
    cn.Open()
    'cmd.ExecuteNonQuery()
    cat = New ADOX.Catalog
    cat.ActiveConnection = cn
    grp.Name = "Public"
    cat.Groups.Append(grp)
    grp.SetPermissions("MSysObjects", adPermObjTable, adAccessGrant, adRightRead)
    End Using
    End Using
    Catch ex As Exception
    MessageBox.Show(ex.ToString)
    End Try
    End Sub
    End Class

  • Set Grant Permission to table in Access Database

    Hello All,
    How to set grant permission in Access 2003 Database. I am using Microsoft ACE OLEDB 12.0 Connection String, Using System.Data.OleDb Component and want to set Grant DELETE, INSERT, PROCEDURE, SELECT, UPDATE ON MSysObjects TO Admin
    Best Regard
    Xan To

    Hello Kevin And Paul
    I have tried what you all say, but I get an error like this
    this my code:
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim Builder As New OleDb.OleDbConnectionStringBuilder
    Try
    With Builder
    .Provider = "Microsoft.ACE.OLEDB.12.0"
    .DataSource = "C:\Users\Xan To\Desktop\Test.mdb"
    End With
    'Using cn As New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\Xan To\Desktop\Test.mdb; Jet OLEDB:System Database=system.mdw;")
    Using cn As New OleDb.OleDbConnection
    With cn
    .ConnectionString = Builder.ConnectionString
    End With
    Using cmd As New OleDb.OleDbCommand
    With cmd
    .Connection = cn
    .CommandText = "GRANT SELECT ON TABLE MSysObjects TO Admin"
    End With
    cn.Open()
    cmd.ExecuteNonQuery()
    End Using
    End Using
    Catch ex As Exception
    MessageBox.Show(ex.ToString)
    End Try
    End Sub

  • How i can grant permissions a user to pakege body

    i would like to know how i can grant permission to user on a pakege body. so the user can see that. i created a pakage and it has couple pakage body but the user can see the pakage body. however i did grand execute on pakage.
    thanks

    in order to be able to see the package spec as well as the body in the schema browser of the tool you are using, you will have to grant
    EXECUTE ANY PROCEDURE
    to that user.
    beaware of the consequences of granting this privledge to the user though.
    read more about it here:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:454220160386#55242292670725
    This is one of the security model feature that you automatically get by using packages.
    if you do not like the benefits (which will be hard to understand), you can start writing simple procedures and functions.
    Message was edited by:
    Kamal Kishore

  • How add grant permission in java.policy

    hi master
    sir serch in my system
    C:\Program Files\j2sdk_nb\j2sdk1.4.2\jre\lib\security
    C:\Program Files\j2sdk_nb\_jvm\lib\security
    C:\Program Files\Java\j2re1.4.1_03\lib\security
    C:\Program Files\Java\jre1.5.0_10\lib\security
    sir i have many java.policy file which one is default java.policy file
    how i add the code
    permission java.util.PropertyPermission "java.version", "read";
    permission java.util.PropertyPermission "java.vendor", "read";
    permission java.util.PropertyPermission "java.vendor.url", "read";
    permission java.util.PropertyPermission "java.class.version", "read";
    permission java.util.PropertyPermission "os.name", "read";
    permission java.util.PropertyPermission "os.version", "read";
    permission java.util.PropertyPermission "os.arch", "read";
    permission java.util.PropertyPermission "file.separator", "read";
    permission java.util.PropertyPermission "path.separator", "read";
    permission java.util.PropertyPermission "line.separator", "read";
    permission java.util.PropertyPermission "java.specification.version", "read";
    permission java.util.PropertyPermission "java.specification.vendor", "read";
    permission java.util.PropertyPermission "java.specification.name", "read";
    permission java.util.PropertyPermission "java.vm.specification.version", "read";
    permission java.util.PropertyPermission "java.vm.specification.vendor", "read";
    permission java.util.PropertyPermission "java.vm.specification.name", "read";
    permission java.util.PropertyPermission "java.vm.version", "read";
    permission java.util.PropertyPermission "java.vm.vendor", "read";
    permission java.util.PropertyPermission "java.vm.name", "read";
    and this code
    grant codeBase "C:\Program Files\j2sdk_nb\j2sdk1.4.2\jre\lib\security
    permission java.security.AllPermission;
    give me idea how i add my code in java.policy file of using the oracle database in applete
    thank
    aamir

    in the control panel see what runtime is used by ur applet, mostly the lastest one u installed.
    C:\Program Files\Java\jre1.5.0_10\lib\security
    in this folder grant permission for the codebase where ur database is located.

  • How to grant permission to user to access Lync 2013 OcsPowerShell

    I'm writing script for our first line for creating Lync users. I need give access to connect to https://lyncpool.domain.local/OcsPowerShell via powershell. Only users in CSAdministrator group have permission to connect, but this group have to much
    privileges. I created custom group with custom permissions and I need grant permission to this group to access OcsPowerShell.

    Try giving them CsUserAdministrator RBAC membership. They should be able to run the following cmdlets to manage the users only:
    Disable-CsUser
    Enable-CsUser
    Get-CsAdUser
    Get-CsUser
    Get-CsUserClusterInfo
    Move-CsUser
    Move-CsLegacyUser
    Set-CsUser
    Grant-CsClientPolicy
    Grant-CsClientVersionPolicy
    Grant-CsConferencingPolicy
    Grant-CsDialPlan
    Grant-CsExternalAccessPolicy
    Grant-CsHostedVoicemailPolicy
    Grant-CsLocationPolicy
    Grant-CsPinPolicy
    Grant-CsVoicePolicy
    Get-CsArchivingPolicy
    Get-CsClientPolicy
    Get-CsClientVersionPolicy
    Get-CsConferencingPolicy
    Get-CsExternalAccessPolicy
    Get-CsHostedVoicemailPolicy
    Get-CsLocationPolicy
    Get-CsPinPolicy
    Get-CsVoicePolicy
    Get-CsClientPinInfo
    Unlock-CsClientPin
    Lock-CsClientPin
    Set-CsClientPin
    Get-CsClientVersionConfiguration
    Get-CsDialPlan
    Get-CsSite
    Get-CsComputer
    Get-CsNetworkInterface
    Get-CsPool
    Get-CsService
    Get-CsSipDomain
    Revoke-CsClientCertificate
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer" | Blog
    www.lynced.com.au | Twitter
    @imlynced

  • How to revoke and grant permission in java using Security Manager  ??

    I like to revoke and grant permission through java code..can anybody give me a sample code.

    Discussion is here:
    http://forum.java.sun.com/thread.jspa?threadID=731363

  • How to get the permission of a file in java

    Hi All,
    I need to get the permission's that are granted to a file and how to modify its permission.Which class in java is used for this purpose?Kindly give me a solution.Thanks in advance.

    java.io.File class can be used.
    File f = new File("filename");
    S.O.P(f.canRead());
    S.O.P(f.canWrite());You can set the attribute using Runtime class.
    Runtime r = Runtime.getRuntime();
    Process p =r.exec("attrib -r file");If you are working with unix,
    r.exec("chmod -permissionoptions file");

  • Grant permission to all objects of a schema to apps user(Oracle 10g)

    Dear Fiiends,
    I would like to grant permission on all objects of a particular schema to apps user(Oracle 10g).How do I do it?
    (ex)grant all on <schemaname>.<objectname> to apps with grant option.
    This is the permission i want to give but i can't do it for all objects one by one so how do i do it in a single command.
    Regards,
    Arun

    You can't do it in a single command. You have to give object-by-object privileges (you could grant something like SELECT ANY TABLE, but that applies to every schema in the database and is generally a rather bad idea). You can, however, use a bit of dynamic SQL to do the job, i.e.
    FOR x IN (SELECT * FROM user_tables)
    LOOP
      EXECUTE IMMEDIATE 'GRANT ALL ON schema_name.' || x.table_name || ' TO apps WITH GRANT OPTION';
    END LOOP;You can do the same with other object types, hit DBA_TABLES rather than USER_TABLES if you don't want to run this as the object owner, etc.
    Justin

  • Grant Permission in Applet

    I am writing an applet which needed to read and write files with user's local machine, so i need to grant the permissions.
    It seem the only way to grant the permissions for applets is needed user have some manually setup before running the applet. (Either modify the security policy
    file or and add trust cert. ).
    but i see some applets in the web and grant permission by a pop-up dialog
    and user only need to answer "yes" or "no". how can they do this? is this supported by Java Plug-in? and How can i do it ??

    Without policy file in your own class you can do this (i think NS only):
    (import netscape.security.PrivilegeManager;)
    try {
                   PrivilegeManager.enablePrivilege("UniversalLinkAccess");
                   System.out.println("\tUniversalLinkAccess Success!");
                   PrivilegeManager.enablePrivilege("UniversalPropertyWrite");
                   System.out.println("\tUniversalPropertyWrite Success!");
                   PrivilegeManager.enablePrivilege("UniversalPropertyRead");
                   System.out.println("\tUniversalPropertyRead Success!");
              } catch (netscape.security.ForbiddenTargetException e) {
                   System.out.println(
                        "\tFailed! Permission to read system properties denied by user.");
              } catch (Exception e) {
                   System.out.println("\tFailed! Unknown exception while enabling     privilege.");
                   e.printStackTrace(System.out);
              }

  • Can I grant permission to write in specific attributes using security groups

    Hi
    I Created GPO that write the computer name in the one of the user attribute "comment attribute " when  he logged on
    then i went to OU and grant self delegate permissions to allow the users of that OU to write on "comment attribute
    but this did not work for the users how have been disabled form inheritance
    so instead of grant delegate permissions to the OU
    Can I grant permission to write in specific attribute "comment attribute " using security groups "Domain User "??

    Hi,
    Open Active Directory Users and Computers.
    On the View menu, select Advanced Features.
    Right-click the object for which you want to assign, change, or remove permissions, and then click Properties.
    On the Security tab, click Advanced to view all of the permission entries that exist for the object.
    To assign new permissions on an object or attribute, click Add.
    Type the name of the group, computer, or user that you want to add, and then clickOK.
    In the Permission Entry for ObjectName dialog
    box, on the Object and Properties tabs,
    select or clear the Allow or Deny check
    boxes, as appropriate.
    http://technet.microsoft.com/en-us/library/cc757520(v=ws.10).aspx
    Regards,
    Rafic
    If you found this post helpful, please give it a "Helpful" vote.
    If it answered your question, remember to mark it as an "Answer".
    This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before implementing!

Maybe you are looking for

  • [SOLVED] Firefox 2.0.0.8 Font Issues

    Update: Updating to Firefox 2.0.0.8-2 fixes this problem. I upgraded from Firefox 2.0.0.7 to 2.0.0.8 and am now experiencing some strange font problems. The font spacing is completely messed up in 2.0.0.8. Anyone else experiencing this? Here's how it

  • SNP quota arrangement with fixed lot size

    Hi all, i have a question regarding quota arrangement for external procurement in snp heuristic. Whe have 2 sources of suppy created by info record. The quota is 25% for the first and 75% for the second one. In product master there is maintained a fi

  • The iPhone could not be restored. An unknown error occurred (1002)

    Was playing poker and it just crashed last. After a few reboots I get the "connect to iTunes" screen but it can't because it wants my password. The phone is in emergency call only mode and I can't get to the password screen. If I wait long enough the

  • Actulizar inventario

    Buen dia En la empresa se va a realizar un inventario fisico con el fin de depurarlo, qusiera saber como puedo usar el DTW para subir los datos actualizados del inventario y la forma como debo hacerlo. Cordial saludo

  • ASP database and forms

    Show my question: - I have a mysql and ASP - How I create 3 asp form pages and all data from this 3 pages enter a one record in mysql ? Also link examples ? thanks Marina