Template creation for logged in user

Is there a variable or other means to auto check the 'Document and Settings\<current logged in users>\My Documents'
I can not find how to auto check the box for the current logged in user. It's not in the template editor.
Also searching returned dead end posts...
http://forums.novell.com/novell-prod...shortcuts.html
http://forums.novell.com/novell-prod...s-folders.html
http://forums.novell.com/novell-prod...ing-admin.html
Anyone have experience with this?

myfirelight,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://support.novell.com/forums/faq_general.html
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • View RSOP data for logged on user that is not administrator

    When troubleshooting group policies I use GPResult and RSOP.msc a LOT!  Since we started deploying Windows 7 I've been having the worst time trying to use these utilities.
    Normally when a user is not getting policies I can just run rsop.msc and see if there is any error information as well as which policies have and have not applied.  In Windows 7 I am prompted for an Admin password when I run rsop.  Well that would
    be fine but now RSOP attempts to gather data for the administrator; I need to see the data for the logged on user.  The only way I've been able to work around this so far is to add the user to the local admin group then I can run rsop and gpresult.  When
    I'm done I have to remove them from the admin group.
    This seems silly to me.  Can anyone tell me how to see RSOP and GPResult data as the USER instead of the Admin.
    Also please do not chime in telling me to run rsop in planning mode as that only tells me what is supposed to happen, not what is actually happening on the system.

    Hi,
    Base on my test and research, there’s impossible to use RSOP.msc with user, and run as administrator when you login with user still doesn’t work.
    That’s necessary to login with administrator and run rsop.msc. It’s a by design feature.
    Thank you for your understanding.
    Regards,
    Leo  
    Huang
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Widget for Logged On Users

    Is there a widget that will let one determine the users (IP or name) that are logged onto your machine, say for example, remotely? IS there there some other way of doing this?
    Thanks. Paulo.

    sm04-shows the logged on users of current server.
    AL08-shows logged on users of all servers in the network.
    Even you can access this from SM51 and selecting the server on which you want to see logged on users and hit user processes tab.
    mark as  answered if it solved the problem and reward points for the same.

  • How can I create template documents for non-InDesign users to edit the text of later?

    I'm looking to produce a small system for people within my company to edit and print labels as needed that comply with our internal design standards. I would like to use InDesign to produce a few templates for labels that people could then edit one or two fields later on, things like item name and ID number. I'm not averse to producing a small application in XCode that users can start up, enter their data and it saves the printer-ready label sheet to their desktop. I started out using Acrobat Pro, but I'm running into trouble embedding fonts for use in form fields, centering text, and outputting a filled-in pdf for print use, and not a form that submits info to an email or server. If InDesign is the wrong tool for the job of setting up a template like this, please feel free to suggest another route.

    I would direct you to the Acrobat forums, personally. You can enable rich-text formatting of Acrobat form fields from within Acrobat Pro, and also IIRC embed fonts for use in form fields. If you can spec out what you mean by "fine detail that we'd need" then we, or someone over at the Acrobat forums, can tell you whether or not rich text in Acrobat forms will work for you. I suggest this to you because centering text for Acrobat form fields is dead easy, so I suspect you've not investigated the tools available in Acrobat after you've exported the PDF from InDesign.
    Post-export PDF data merge sounds like, I dunno, variable-data printing? which doesn't sound like it would fit your case.

  • [Server 2008R2] Filter event logs for logged in users from clients on domain

    Hi All,
    I am looking for a script which can be run on a domain controller to check which user accounts logged in on the domain. I am looking for both the username and client. Reason why I need this is to check where service accounts are used.
    Thanks.
    Kind regards,
    Bart
    Bart Timmermans | Consultant at inovativ
    Follow me @
    My Blog | Linkedin |
    Twitter
    Please mark as Answer, if my post answers your Question. Vote as Helpful, if it is helpful to you.

    Hi Bart,
    To parse the event log, you can refer to the cmdlet "Get-WinEvent", and how to use this cmdlet to parse event log, please check this article, you can also add the "-computername" to query event log from remote computers:
    Use PowerShell Cmdlet to Filter Event Log for Easy Parsing
    To monitor the logon history, please check this function to start:
    function Get-Win7LogonHistory {
    $logons = Get-EventLog Security -AsBaseObject -InstanceId 4624,4647 |
    Where-Object { ($_.InstanceId -eq 4647) -or (($_.InstanceId -eq 4624) -and ($_.Message -match "Logon Type:\s+2")) -or (($_.InstanceId -eq 4624) -and ($_.Message -match "Logon Type:\s+10")) }
    $poweroffs = Get-EventLog System -AsBaseObject -InstanceId 41
    $events = $logons + $poweroffs | Sort-Object TimeGenerated
    if ($events) {
    foreach($event in $events) {
    # Parse logon data from the Event.
    if ($event.InstanceId -eq 4624) {
    # A user logged on.
    $action = 'logon'
    $event.Message -match "Logon Type:\s+(\d+)" | Out-Null
    $logonTypeNum = $matches[1]
    # Determine logon type.
    if ($logonTypeNum -eq 2) {
    $logonType = 'console'
    } elseif ($logonTypeNum -eq 10) {
    $logonType = 'remote'
    } else {
    $logonType = 'other'
    # Determine user.
    if ($event.message -match "New Logon:\s*Security ID:\s*.*\s*Account Name:\s*(\w+)") {
    $user = $matches[1]
    } else {
    $index = $event.index
    Write-Warning "Unable to parse Security log Event. Malformed entry? Index: $index"
    } elseif ($event.InstanceId -eq 4647) {
    # A user logged off.
    $action = 'logoff'
    $logonType = $null
    # Determine user.
    if ($event.message -match "Subject:\s*Security ID:\s*.*\s*Account Name:\s*(\w+)") {
    $user = $matches[1]
    } else {
    $index = $event.index
    Write-Warning "Unable to parse Security log Event. Malformed entry? Index: $index"
    } elseif ($event.InstanceId -eq 41) {
    # The computer crashed.
    $action = 'logoff'
    $logonType = $null
    $user = '*'
    # As long as we managed to parse the Event, print output.
    if ($user) {
    $timeStamp = Get-Date $event.TimeGenerated
    $output = New-Object -Type PSCustomObject
    Add-Member -MemberType NoteProperty -Name 'UserName' -Value $user -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'ComputerName' -Value $env:computername -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'Action' -Value $action -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'LogonType' -Value $logonType -InputObject $output
    Add-Member -MemberType NoteProperty -Name 'TimeStamp' -Value $timeStamp -InputObject $output
    Write-Output $output
    } else {
    Write-Host "No recent logon/logoff events."
    Get-Win7LogonHistory
    Refer to:
    https://github.com/pdxcat/Get-LogonHistory/blob/master/Get-LogonHistory.ps1
    If there is anything else regarding this issue, please feel free to post back.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Template creation for appraisal

    Hi Experts,
    Can the end user be able to create appraisal templates with varying points as per their requirement?
    Is it possible to upload the appraisal templates used in legacy system ?
    Regards,
    RK.

    Hi Rishi,
    Adding to Martin.
    Administrator will create the Template
    Hr User / Executive will Release the Template
    Employee will rate his rating and save, it automatically trigger to his/her superior/manger
    Manager will review / change / accept / reject / complete the appraisal.
    This is all one by one process and the flow of appraisal is depends upon the client process & procedure in their HR department. same has to be created in the Appraisal template.
    i think you got some idea.
    Regards,
    Praneeth kumar

  • Prevent ~/Library/ folder creation (for dummy/daemon users?)

    Hi.
    I have a few daemon/dummy users under whose UID I only run a few shell daemons, so nothing that has anything to do with Mac OS X proper --- only the UNIXy foundations.
    Hence, the Library folders in those users' home directories are unnecessary (and actually a problem). However, for some reason, they keep getting re-created (though empty, with only ".localized" in them).
    Can I somehow stop the Library folder from being created, short of a minutely rm -rf cronjob?
    Thanks.

    Bear in mind that I don't actually know what I'm talking about and this is moreover "do as I say" not "do as I have done" because I haven't...
    It sounds like you created those users using System Preferences > Accounts. Don't! That's not the way to create daemon users.
    Instead you want to use the dscl command. See Apple's Example: Adding a User From the Command Line. In particular,
    1. Choose a UID less than 100 or 200 to mark a "system"-type user but be sure it is not already used.
    2. Use something like /var/empty or /dev/null for the NFSHomeDirectory property. That should take care of your home directory issues. (Preexisting Apple system accounts seem to use /var/empty.)
    3. Use something like /usr/bin/false for the UserShell.
    4. I'm not sure what you are supposed to do about the password. Search for more Apple documentation.
    5. Use at your own risk.
    Unfortunately, MacOS doesn't include a useradd program to make this easy like Linux does.

  • Muse Template creation for BC

    I have
    placed that tag inside a master page, as per instructions from http://support.muse.adobe.com/muse/topics/master_pages_and_template_in_businesscatalyst and that the page is still not being published as a template and instead it's being published as a regular page?
    I have followed these instructions i believe to the T:
    1) Create the page as you normally would in Muse
    2) Use Object:Insert HTML... to create an HTML page item
    3) Put nothing but a {tag_pagecontent} in the HTML page item
    4) Size the rectangle for the HTML page item to be whatever you want the page content area of your template to be.
    I'm really not sure what the problem might be here
    Please help anyone

    Will the content on my pages to which I apply the template be lost everytime I publish the website ?
    I am not clear on how this works. Will be great if u can clarify!

  • Best practice for Active Directory User Templates regarding Distribution Lists

    Hello All
    I am looking to implement Active Directory User templates for each department in the company to make the process of creating user accounts for new employees easier. Currently when a user is created a current user's Active directory account is copied, but
    this has led to problems with new employees being added to groups which they should not be a part of.
    I have attempted to implement this in the past but ran into an issue regarding Distribution Lists. I would like to set up template users with all group memberships that are needed for the department, including distribution lists. Previously I set this up
    but received complaints from users who would send e-mail to distribution lists the template accounts were members of.
    When sending an e-mail to the distribution list with a member template user, users received an error because the template account does not have an e-mail address.
    What is the best practice regarding template user accounts as it pertains to distribution lists? It seems like I will have to create a mailbox for each template user but I can't help but feel there is a better way to avoid this problem. If a mailbox is created
    for each template user, it will prevent the error messages users were receiving, but messages will simply build up in these mailboxes. I could set a rule for each one that deletes messages, but again I feel like there is a better way which I haven't thought
    of.
    Has anyone come up with a better method of doing this?
    Thank you

    You can just add arbitrary email (not a mailbox) to all your templates and it should solve the problem with errors when sending emails to distribution lists.
    If you want to further simplify your user creation process you can have a look at Adaxes (consider it's a third-party app). If you want to use templates, it gives you a slightly better way to do that (http://www.adaxes.com/tutorials_WebInterfaceCustomization_AllowUsingTemplatesForUserCreation.htm)
    and it also can automatically perform tasks such as mailbox creation for newly created users (http://www.adaxes.com/tutorials_AutomatingDailyTasks_AutomateExchangeMailboxesCreationForNewUsers.htm).
    Alternatively you can abandon templates at all and use customizable condition-based rules to automatically perform all the needed tasks on user creation such as OU allocation, group membership assignment, mailbox creation, home folder creation, etc. based on
    the factors you predefine for them.

  • How to access Portal Logged in user in Web Service application

    Hi Experts,
    I have created one Deployable Proxy and based on that i have created Web Based (WAR) project. to consume the proxy i have created Servlet based java file which invokes Web services. Based on this WAR project i created EAR application which deploys on J2EE server.
    I am facing issue while accessing Portal Logged in user in my Servlet Class in WAR project so can  you please provide inputs for how we can access Portal Logged in user in our Servlet class? also how we can access LDAP detailes of portal Logged inuser ?
    I tried to fetch the Logged in user from servlet request but i can't access it giving me null value. Following is the method details that i am using in my servlet.
    protected void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException, IOException                
    IUser user = UMFactory.getAuthenticator().getLoggedInUser();
    String strName = user.getFirstName();
             If I checked in LDAP values First name for logged in user is present but in my code its giving Null value.
    Can you please provide your inputs on above issue.
    Regards,
    Rahul

    have you found a solution this problem yet?

  • Record display to match log in user

    I'm trying to create a log in area with user information. I
    have used the update record and it does display a record but only
    the first record that I input no matter what username I log in
    with. I want to have the record display match the logged in users
    information.

    Heya Joe,
    Try this:
    1. Restrict access to page for logged in users.
    2. Create form you'll use for Update Record Server Behavior.
    3. Add a hidden field in the form for primary_key name and id
    = primary_key
    4. Add the value for primary_key as the session login_id from
    the Bindings Tab in Dreamweaver.
    5. Add Update Record Server Behavior. Select primary_key form
    field for integer primary key in Update Record SB and add other
    form fields corresponding to update record accordingly.
    6. save, put, login, visit, update logged in users record.
    Hope that helps!

  • Project Template Creation in CProjects

    Hi,
    This is regarding project template creation for CProjects.
    I am now using the following BAPIs but not getting the templates created.
    1. For project definition creation: BAPI_BUS2172_CREATE
    2. For template creation: BAPI_BUS2170_CREATE
    I am getting the project definition created but not the template created.
    Please help.

    Hi,
    You can get this done in the IMG under the 'spro' transaction. In Collaboration projects, get to create the role type and specify the project types (Regular, Program etc.) where this role type would be applicable.
    Hope this helps...

  • Urjent:Partition error:Logging out user [Admin], active for 0 minutes

    Hi all,
    Iam using 11
    Wen iam creating Transaparent partition its validating successfully , but wen iam saving it its giving error , partition creation failed
    Error: 1051037: Logging out user [Admin], active for 0 minutes
    and it s giving error reading ddb file
    i tried with maxl also but it continiously running for 30 mints , its horrible , actually it takes 2 mints
    how can i resolve this issue, any help would be appriciated
    thanks
    Edited by: user8815661 on 26 avr. 2010 05:18
    Edited by: user8815661 on 27 avr. 2010 04:00
    Edited by: user8815661 on 3 mai 2010 04:18

    Sounds like there is some sort of ddb file corruption. There are many causes, but the quickest fix I have found is usually a file-based deletion of the ddb file on both the source and target side of this partition. The attempt to create a partition on this database will cause a new ddb file to be created. Of course, this is dangerous. You can't have any other partitions on either the source or target side...or they will be deleted by this step. But the only purpose of the ddb file is for partition definitions, and it exists on both source and target.
    I've found this happens if one side of a partition (one of the ddbs from source or target) gets the file deleted, or communication is down between the source database server and target database server.

  • Order Creation for Anonymous and Registered/Loggedin User

    Hi all,
    1) I wanted to know about order creation in two different scenario i.e Anonymous and registered/logged-in user.
    2)What happens when we make persistOrdersForAnonymousUsers=true in ShoppingCart.properties ?? will this only store the orders in the DB, is there any other use for this.

    Hi Enzo,
    For
    a) If you have not added any item to the cart the default behavior is to not persist the Order Object. There is property ShoppingCart.saveEmptyOrders which is false by default. If an anonymous user has added an item to the cart then the Order Object will be persisted.
    b) Even if the session expires when you come back to the site the order will be loaded in to the cart because the orderId or the profileId is set in a persistent cookie. Again what is the stored in the cookie depends on how you implement the Anonymous Order Persistence. Here again the default behavior is to persist the anonymous profile also and store the profile id in the cookie. You need to persist both anonymous profiles and orders unless you want to write your own code to manage the loading of orders based on a custom cookie.
    with warm regards,
    Jai

  • XML log: Error during temp file creation for LOB Objects

    Hi All,
    I got this exception in the concurrent log file:
    [122010_100220171][][EXCEPTION] !!Error during temp file creation for LOB Objects
    [122010_100220172][][EXCEPTION] java.io.FileNotFoundException: null/xdo-dt-lob-1292864540169.tmp (No such file or directory (errno:2))
         at java.io.RandomAccessFile.open(Native Method)
         at java.io.RandomAccessFile.<init>(RandomAccessFile.java:212)
         at java.io.RandomAccessFile.<init>(RandomAccessFile.java:98)
         at oracle.apps.xdo.dataengine.LOBList.initLOB(LOBList.java:39)
         at oracle.apps.xdo.dataengine.LOBList.<init>(LOBList.java:30)
         at oracle.apps.xdo.dataengine.XMLPGEN.updateMetaData(XMLPGEN.java:1051)
         at oracle.apps.xdo.dataengine.XMLPGEN.processSQLDataSource(XMLPGEN.java:511)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:445)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroup(XMLPGEN.java:1121)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroup(XMLPGEN.java:1144)
         at oracle.apps.xdo.dataengine.XMLPGEN.processSQLDataSource(XMLPGEN.java:558)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:445)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:308)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:273)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:348)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:293)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    I have this query defined in my data template:
    <![CDATA[
    SELECT lt.long_text inv_comment
    FROM apps.fnd_attached_docs_form_vl ad,
    apps.fnd_documents_long_text lt
    WHERE ad.media_id = lt.media_id
    AND ad.category_description = 'Draft Invoice Comments'
    AND ad.pk1_value = :project_id
    AND ad.pk2_value = :draft_invoice_num
    ]]>
    Issue: The inv_comment is not printing on the PDF output.
    I had the temp directory defined under the Admin tab.
    I'm guessing if it's the LONG datatype of the long_text field that's causing the issue.
    Anybody knows how this can be fixed? any help or advice is appreciated.
    Thanks.
    SW
    Edited by: user12152845 on Dec 20, 2010 11:48 AM

    Hi All,
    I got this exception in the concurrent log file:
    [122010_100220171][][EXCEPTION] !!Error during temp file creation for LOB Objects
    [122010_100220172][][EXCEPTION] java.io.FileNotFoundException: null/xdo-dt-lob-1292864540169.tmp (No such file or directory (errno:2))
         at java.io.RandomAccessFile.open(Native Method)
         at java.io.RandomAccessFile.<init>(RandomAccessFile.java:212)
         at java.io.RandomAccessFile.<init>(RandomAccessFile.java:98)
         at oracle.apps.xdo.dataengine.LOBList.initLOB(LOBList.java:39)
         at oracle.apps.xdo.dataengine.LOBList.<init>(LOBList.java:30)
         at oracle.apps.xdo.dataengine.XMLPGEN.updateMetaData(XMLPGEN.java:1051)
         at oracle.apps.xdo.dataengine.XMLPGEN.processSQLDataSource(XMLPGEN.java:511)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:445)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroup(XMLPGEN.java:1121)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroup(XMLPGEN.java:1144)
         at oracle.apps.xdo.dataengine.XMLPGEN.processSQLDataSource(XMLPGEN.java:558)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:445)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:308)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:273)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:348)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:293)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    I have this query defined in my data template:
    <![CDATA[
    SELECT lt.long_text inv_comment
    FROM apps.fnd_attached_docs_form_vl ad,
    apps.fnd_documents_long_text lt
    WHERE ad.media_id = lt.media_id
    AND ad.category_description = 'Draft Invoice Comments'
    AND ad.pk1_value = :project_id
    AND ad.pk2_value = :draft_invoice_num
    ]]>
    Issue: The inv_comment is not printing on the PDF output.
    I had the temp directory defined under the Admin tab.
    I'm guessing if it's the LONG datatype of the long_text field that's causing the issue.
    Anybody knows how this can be fixed? any help or advice is appreciated.
    Thanks.
    SW
    Edited by: user12152845 on Dec 20, 2010 11:48 AM

Maybe you are looking for

  • Ipad as Universal Remote

    Hi, I just bought a 32gb Ipad and intend to use it also as a Universal Remote for my home theatre. Does someone know or recommend any good and trustworthy app or accessories for this mean? Thanks, Gus

  • I reformatted my ipod to windows and now I get a blank screen. Help!

    My brother gave me his old Ipod 30Gb, I believe it's an IPOD Classic. When I first connected it to my PC I got a message that it needed to get reformatted to Windows, so I did that. After that when the IPOD came back on it had a blank screen. I tried

  • I can't see my time capsule hard drive anymore

    I have a macbook pro connected to time capsule (1tb) and a printer. I can access the internet and can print but my machine has stopped backing up and cannot find the time capsule hardrive anymore. I have tried resetting everything (several times) to

  • Partition / Format - 500 gig Seagate external hard drive

    Alright, please correct me if I'm wrong. I just acquired a new 500 gig Seagate FreeAgent external hard drive. I want to format it so that all the files will be accessible/readable by both PC and Mac. It only needs to be write-able by a Mac (write-abl

  • Installing Windows 7 on Bootcamp after upgrade to Mtn Lion

    Before installing Mountain Lion I erased Windows XP and all contents from Bootcamp. Now I am running Mountain Lion and attempting to put windows 7 on Bootcamp 5.0.0. I ran the disk utility on Bootcamp and it shows (formatted as Mac OS Extended (Journ