Document Access for resource accounts

Hello,
Anyone know if it is possible to create a shared folder in a resource account and import documents into it?
We want to have an admin account which would be used to hold forms, policies, etc. When its created under a user account and the user moves on we have to recreate the shared folders with documents etc. If it was a resource account we could just change ownership.
Thanks,
Tom

Hello Danita,
So would this be a simple properties change of the "Author"? Or some other attribute from Console One or something.
Thanks!
Tom
Originally Posted by dzanre
taphillips wrote:
> Thanks for the reply. I suppose we would have to find a way to change
> ownership of docs when a user moves on...
That's easy enough to do. Easier if you remember to do it before you delete the
user account (i.e., you can reassign all documents from user1 to user2). But if
you forget there is a routine to run to assign all "orphaned" docs to a
particular account as well.
Danita
Novell Knowledge Partner
Are you a GroupWise Power Administrator? Join our site.
http://www.caledonia.net/register
If you find this post helpful and are logged into the web interface,
show your appreciation and click on the star below...

Similar Messages

  • Document Summarization for External Accounting Documents - ECC 6.00

    Hi All,
              I would like to know about the Document Summarization for external accounting documents in controlling. please can anyone suggest when we have to use this in ECC 6.00.
    Regards,
    Pranav

    Hi,
    Please see note 1070629 - FAQs: New General Ledger Migration
    https://websmp204.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1070629&_NLANG=E
    Extract :
    77. How can I deactivate classic Profit Center Accounting (EC-PCA) after activating the new General Ledger?
    Note 702854 explains how to deactivate classic Profit Center Accounting.
    If you use document splitting for profit centers in ERP2004, delete the dummy profit center from the table TKA01 also. For this purpose, Note 702854 provides the program Z30PCA23. Use the program Z30PCA23 to delete the dummy profit center of classic Profit Center Accounting in the controlling area.
    Hope this helps.
    Cheers,
    Gimmo

  • Root/admin access for user account

    I'm not sure the best way to explain this, but, I want my user account to be able to write/read ANY file on my HDD. How do I enable that in Lion? I've already added my user to the admin group, but, to no avail. Essentially I want to do $> sudo chmod -R a+rwx /, but, without having to do that.
    Yes, I understand that your everyday account shouldn't have this type of access and you should only elevate privleges when necessary. W/ that in mind, I'd really appreciate answers (or links) detailing how to do this and not explaining why I shouldn't do this.
    Thanks, and let me know if I should explain what I need in more detail.
    - Matt

    The top level of the hard drive has always been an admin-only area. In 10.6 and earlier, the admin group could write there. Now in 10.7, only root can write there. It was changed for security reasons. Apple realized that not many people are following their security guidelines and are running as admin users all the time, and so they have tightened up security in Lion.
    User files should not be put there. Put them in your home folder or in /Users/Shared if you wish multiple users to access them.

  • Setting access for an account to create backups

    We are moving from creating backups via stsadm to a vendor backup product. That product runs with its own sa account.
    I was asked to add that account to the sharepoint farm admins group and I have done that.
    I just am wondering whether that account needs to have site collection admin privleges as well to be able to backup all the site collection data?
    If so, how do you handle that? typically a site collect has a primary and a secondary admin. Is there some way to set things up so that this specific sa account doesn't require being one of those 2 roles and still have the permissions needed to backup -
    and recover - SP items?
    Thanks for your opinions.

    check the below technet and compare your account permission with it.
    Configuring permissions for backup and recovery (SharePoint Server 2010)
    also check this technet for more detail about the Backup & recovery.
    Backup and recovery for SharePoint Server 2010
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Controlling network access for user accounts

    Can anyone suggest a way to control airport access to a wireless network?
    I have an iMac G4 with AirPort running Tiger that I'd like to set up for a young teen to practice doing some video editing. I'd like to have network access disabled under normal circumstances, but be able to enable it easily during times when there is supervision.
    Ideally, I'd like to have the airport icon in the menubar and select a network to join causing a prompt for an administrator password. I can't seem to get anywhere close to that. Any help would be appreciated.
    Thanks.

    Thank you for your quick response.
    5. Click the checkbox under Require Administrator
    password to:
    The two choices I have are:
    - when changing networks
    - when creating a computer-to-computer network
    The first almost gets me what I want, there are two problems with this as I see it.
    1. when the computer comes up and automatically logs in, the user is greeted by authentication dialogs. (AirPort trying to connect?) I'd like to configure AirPort not to automatically try to connect and therefore not produce these dialogs.
    2. once approved, the network stays approved until the next reboot. I'd like to not be forced to reboot just to "lock down" the network again.
    Any help on those two points?

  • Access to Resources via Non-admin accounts

    Is there any way to provide access to resources so that they are accessible via
    non-admin accounts. For e.g. to Retrieve my JMSConnectionfactory i do a
    Environment env = new Environment();
    env.setProviderUrl(url);
    env.setSecurityPrincipal(username);
    env.setSecurityCredentials(password);
    Context ctx = env.getInitialContext();
    The username and password here is the admin account. This works fine but if i
    use a non-admin account(member of Operators group), i get exceptions on Domainloghandler
    runtime
    Problem: I need to register a mbean that needs to access JMS Resources. Since
    our deployment team doesnt want to provide us access to admin accounts, we use
    a "operators" group account to register our mbeans. if i do this, i get a
    Access not Allowed for subject:principals=[operator, Operators], on ResourceType:
    DomainLogHandlerRuntime Action: execute Target: registerToMe.
    This happens when my managed resource tries to access a JMS ConnectionFactory.
    Instead if i register my mbeans using the admin account, everything is fine and
    my managed resource works nice.
    This is on weblogic 81 SP1 on Solaris. Please let me know if you need more details.
    Any clues/hints/solutions greatly appreciated. There is not a lot of documentation
    on how to access/register mbeans using non-admin accounts.
    TIA
    Raj

    I have done some more debugging on this and have narrowed down the issue to the
    location where my initialcontext is being obtained.
    so if i register my mbean as a non-admin account and do an operation on the managed
    resource which fetches initial context, i get the below exception. This is how
    i get my initialcontext
    weblogic.jndi.Environment env = new weblogic.jndi.Environment();
    env.setProviderURL("t3://machine:8102,machine:8103");
    env.setSecurityPrincipal("operator");
    env.setSecurityCredentials("operator");
    Context ctx = env.getInitialContext();
    I am doing this from a mbean thats registered on a different managed server(t3://machine:8101)...
    Whats wrong with this?
    TIA
    Raj
    "Raj" <[email protected]> wrote:
    >
    Is there any way to provide access to resources so that they are accessible
    via
    non-admin accounts. For e.g. to Retrieve my JMSConnectionfactory i do
    a
    Environment env = new Environment();
    env.setProviderUrl(url);
    env.setSecurityPrincipal(username);
    env.setSecurityCredentials(password);
    Context ctx = env.getInitialContext();
    The username and password here is the admin account. This works fine
    but if i
    use a non-admin account(member of Operators group), i get exceptions
    on Domainloghandler
    runtime
    Problem: I need to register a mbean that needs to access JMS Resources.
    Since
    our deployment team doesnt want to provide us access to admin accounts,
    we use
    a "operators" group account to register our mbeans. if i do this, i get
    a
    Access not Allowed for subject:principals=[operator, Operators], on ResourceType:
    DomainLogHandlerRuntime Action: execute Target: registerToMe.
    This happens when my managed resource tries to access a JMS ConnectionFactory.
    Instead if i register my mbeans using the admin account, everything is
    fine and
    my managed resource works nice.
    This is on weblogic 81 SP1 on Solaris. Please let me know if you need
    more details.
    Any clues/hints/solutions greatly appreciated. There is not a lot of
    documentation
    on how to access/register mbeans using non-admin accounts.
    TIA
    Raj

  • How do we restrict the user access for a particular G/L account

    Dear Experts,
    At our customer site, we follow master / derived role concept for authorisations.
    We have a requirement to restrictict user at G/l account authorisation level.
    I am aware that every g/l account account has a authorisaition group. But g/l account authorisation is a non-org value for which the present value is * for brgru, we cannot restrict by user/org. At our customer site the authorisations are provided at master role level for a designation and derived role is restricted for a plant, BA etc..
    Is there is any user parameter level restriction which can handle this requirement, i mean user parameter for specific g/l account, as we do LIF pid to restrict vendor level access.
    Appreciate your suggestions ASAP.
    Best regards,
    M.Kumaran

    Depends.
    What are you trying to protect? GL account masterdata (FS00) or FI document creation for specific GL accounts?
    Without knowing more about the design principles behind your roles, your release or other restrictions, I would suggest:
    (1) grouping off the GL accounts you want to protect in authorization groups (maintained via FS00);
    (2) deactivating either object F_BKPF_BES (if your trying to restrict FI document creation) or object F_SKA1_BES (if your trying to restrict access to GL account masterdata) or both in master/derived role;
    (3) create several separate roles that would contain only the aforementioned objects with access to specific GL account groups;
    (4) assign the roles from step 3 to users as required.
    Hope this helps.

  • Linking resource accounts to access policy from a database

    As part of the seeding process, we assign roles to the users and then run the recon to assign resources to the user. We have an access policy which is supposed to assign AD resource when a User has an Employee role. After we seed all the existing users, we enable to policy to assign AD for the new users, but since we recon the user's instead of access policy, it doesn't link the access policy to resource account.
    How can I link those two in the database so next time when someone is removed from the Employee role, it will also remove the AD account. I tried setting the pol_key attribute in UD_ADUSER with the id of the policy found in table pol but that didn't help.
    Thanks

    As part of the seeding process, we assign roles to the users and then run the recon to assign resources to the user. We have an access policy which is supposed to assign AD resource when a User has an Employee role. After we seed all the existing users, we enable to policy to assign AD for the new users, but since we recon the user's instead of access policy, it doesn't link the access policy to resource account.
    How can I link those two in the database so next time when someone is removed from the Employee role, it will also remove the AD account. I tried setting the pol_key attribute in UD_ADUSER with the id of the policy found in table pol but that didn't help.
    Thanks

  • Hi. I am using a time capsule for few PC s. I have made 5 different account to access time capsule. but in windows when i enter account name and password for one account, i cannot access other accounts, because windows saves username

    Hi. I am using a time capsule for few PC s. I have made 5 different account to access time capsule. but in windows when I enter account name and password for one account, i cannot access other accounts, because windows saves username. how can i prevent this from happenning. I really need to access all my accounts and dont want it to save automaticlly.

    Why have 5 accounts if you need to access all of them.. just have one account?
    Sorry I cannot follow why you would even use the PC to control the Time Capsule. Apple have not kept the Windows version of the utility up to date.. so they keep making it harder and harder to run windows with apple routers.

  • When I choose a photo to share on face book a drop down box appears with the message, Face book didn't recognise the information you entered for the account this is my Face book login information I use to access my face book page how can I overcome the b

    when I choose a photo to share on face book a drop down box appears with the message, Face book didn't recognise the information you entered for the account this is my Face book login information I use to access my face book page how can I overcome this.

    Delete abd re-enter your Facebook account information jnder the accounts tab in the iPhoto preferences
    You may also want to take a look at the user tip for Facebook problems
    LN

  • Hi there I lost my password for my original iTunes account I can't recover it because the email address it is registered under is not longer valid How can I access my old account?

    Hi there.
    I did a factory restore and then restored it with iCloud back-up. I have been using lots of Apple products and i have used three different email adresses. Almost all apps restored perfectly but everytime i try to play a song in the Music app, i asks me for a Apple-ID i had no idea i have used.
    Hence:
    I lost my password for my original iTunes account
    I can't recover it because the email address it is registered under is not longer valid
    How can I access my old account?
    Can't find a place to change the email address to my new one without the password which I no longer remember.
    There is no way to just erase Apple-ID's on my device either.
    What to do? Should i ju give up and start from scratch and delete 2 years of stuf?
    Cheers!

    If you can remember the answers to the security questions when you set up that account - I think that you can reset the password without needing email authentication. You can try it here. Read it and see if it's possible. But if you can't remember the answers to the questions it will not work.
    http://support.apple.com/kb/ht1911

  • Accounting document missing for MIGO

    A migo document doesnu2019t have corresponding FI document.
    While selecting FI document option it says
    No subsequent document found in Accounting
    Message no. RW011
    Diagnosis
    All documents generated in Financial Accounting for object type 'MKPF',
    Reference document number 'xxxxxxxx' and organizational unit 'xxx' should be displayed.
    MIGO and MIRO has been done for the PO properly and while trying to clear GR IR only invoice document is available and no GR document is found.
    What is to be done to solve the problem.

    No its not.
    and we didnt changed the logical system name, these two cases was found while searching.
    but unfortunately these are not the case.

  • Number range for Invoice & Accounting document to be same

    Forum Members
    The client requirement is to have same document number for both invoice & Accounting document.
    Earlier for fiscial year 2006 it was same where as for fiscial year 2007 it is coming as different.
    Can somebody help in providing the details & configuration details?
    Regards,
    Vengat

    Hi Vengat,
    Go through this link and it may be helpful for you.
    http://www.ficoexpertonline.com/archive/Volume_03_(2004)/Issue_05_(May)/V3I5A1.cfm?session=
    Regards,
    RitiG

  • Number Range For the accounting document

    Hai, 
    After creating the billing document, account determination error is coming.
    Message says that number range 01 is not maintained for the accounting document

    Go to OBA7, select the document type RV and execute.  There ensure that the object 01 in the field number range assignment.  Next go to FBN1, key in company code and ensure that the above object is maintained there.
    thanks
    G. Lakshmipathi

  • Manual creation of idoc for a Accounting document FIDCC1

    Hi,
    Some of the config for the change pointer was not moved to production and some accounting documents have been created which have not triggered the IDOC.
    Is there a way to create the idoc for the accounting documents already created.
    Regards,
    Puneet.

    Once you have all your change pointers setup correctly (view bd52) then you should be good to go BUT to answer your question about the existing documents .. you would need to somehow "touch" those documents to trigger the creation of the IDOCs. You can modify something on then that also is attached to the change pointer say a date? 1/11/11 change to 1/12/11 but don't save that value .. change back to 1/11/11 then save.
    Just my thoughts .. let me know how it goes.
    Jay Esparza

Maybe you are looking for