What's the command to reset user's calendar (not csuser reset - schema2)

Hi,
We're running JES5. A user has problems accessing his calendar, and I wanted to reset the calendar's attributes.
I tried:
root@jescal sbin/ > ./csuser reset uid
but I got this error:
This command is not valid for schema 2. Please use the Communications Services Delegated Administrators Utility.
What's the correct command for schema2 ? probably commadmin user modify of somesuch, but can't find the right suboption in the delegated admin administration guide...
Thanks,
Tom.

shane_hjorth wrote:
tom_absi wrote:
We're running JES5. A user has problems accessing his calendar, and I wanted to reset the calendar's attributes.What precisely is the problem that they are having and how are they accessing their calendar data (Calendar Express, WCAP/Lightning, Outlook connector, Communications Express/UWC)? When logging on in the UWC, the calendar wouldn't be available.
But I think it was an ldap issue, I corrected a field and asked them to try again.
Somehow, the icscalendarowned attribute contained only:
uid$user name
whereas in all the other account I could found, it contained
uid$user name
uid
So I corrected that, I guess that was what caused the problem (not sure how this could happen...)
>
I tried:
root@jescal sbin/ > ./csuser reset uid
but I got this error:
This command is not valid for schema 2. Please use the Communications Services Delegated Administrators Utility.There is no equivalent command for schema 2. The "./csuser reset uid" is somewhat heavy handed, it removes all calendar related attributes from the account will likely "break" more then it will "fix".
Regards,
Shane.

Similar Messages

  • What is the command to see the database

    what is the command to see the database?iam using oracle express edition in that i tried to create a database but it showing database already created.
    i need to check which database is created.

    Probably you are thinking that Oracle database is a kind of file something like which we sees other files like .txt, .doc, .pdf etc which we sees by ls or dir commands.  Of course there are files for Oracle database, but they have their own nomenclature and setup which finds in C:\oraclexe\oradata\XE\ (For example in Windows) or /usr/lib/oracle/xe/oradata/XE/ (For example in Linux).
    By default, the database is started for you after installation and every time your computer is restarted. However, to reduce the overall performance load on the system, you can manually stop the database, and then manually restart it later.
    Oracle® Database Express Edition
    Ok, now if you wish to login to the database (we don't says "see" the database, because database is different thing than a picture or image ), you just open your command window and say :
    sqlplus sys/your_password_of_sys_user as sysdba
    If you get SQL> prompt, you have logged in the database as sys user and this is your database. 
    If you wish to login with different user then you can :
    1.login from command window by sqlplus username/password
    2.login from SQL> prompt by connect username/password
    Regards
    Girish Sharma

  • What is the difference between reset and adobe reset??

    what is the difference between reset and adobe reset??

    Reset and Reset (Adobe) will have the same effect unless you have changed the defaults.
    For raw files LR uses its own defaults as the starting point for developing an image. For example, if you don’t apply your own import preset the standard default settings under detail are:
    Sharpening:
    Amount 25
    Radius 1.0
    Detail 25
    Masking 0
    Some users like to adjust these and make the tweaked settings into their own defaults. After making the desired adjustments in Develop simply hold down Alt and the reset button changes to Set Default.
    Clicking the button will save the new default settings. This can be useful if you have more than one camera and wish to use different defaults for each.
    To get back to the standard defaults simply hold down shift and click Reset (Adobe)
    Restore
    You can also restore the default settings globally in the develop module from the top menu:
    Develop >> Set Default Settings
    Then click the button "Restore Adobe Default Settings"
    The standard defaults will then apply again to all future imports. For photos already in the catlaog where a non-standard default has already been applied you would need to adjust them manually using Shift+Reset (Adobe) but after adjusting one, it is then possible to sync all the others.

  • We are a creative design studio, we need to use apple mac pro server , so we can make more than a different user to use at the same time doing different activities, on different screens, is it possible?what is the max. no. of users that can work efficient

    we are a creative design studio, we need to use apple mac pro server , so we can make more than a different user to use at the same time doing different activities, on different screens, is it possible?what is the max. no. of users that can work efficient.
    Appreciate your support and if possible , how to do this?

    If you want to work with Mac OS X, you need one computer per simultaneous user.
    What you are describing, " Multiple simultaneous logins to a single computer" is not avialable on a regular Mac of any description, unless you decide to use Unix tools instead of Mac OS X.
    Server will happily store files for many, many users and provide them to multiple (up to hundreds) of computers at "near hard Drive" speeds over Gigabit Ethernet. It can make the File Sharing part easy.

  • What are the commands available to read a file from application server and

    What are the commands available to read a file from application server and store the file into an internal table?

    Hi,
    To read a file from an Application Server to an Object there is a command in ABAP called <b>READ DATASET</b>. After that file is transported to that object you have to do a loop and put that data in an Internal Table.
    This statement exports data from the file specified in dset into the data object dobj. For dobj, variables with elementary data types and flat structures can be specified. In Unicode programs, dobj must be character-type if the file was opened as a text file.
    For dset, a character-type data object is expected - that is, an object that contains the platform-specific name of the file. The content is read from the file starting from the current file pointer. After the data transfer, the file pointer is positioned after the section that was read. Using the MAXIMUM LENGTH addition, the number of characters or bytes to be read from the file can be limited. Using ACTUAL LENGTH, the number of characters or bytes actually used can be determined.
    In a Unicode program, the file must be opened with an arbitrary access type; otherwise, an exception that cannot be handled will be triggered.
    If the file has not yet been opened in anon-Unicode program, it will be implicitly opened as a binary file for read access using the statement
    OPEN DATASET dset FOR INPUT IN BINARY MODE.
    . If a non-existing file is accessed, an exception that can be handled can be triggered.
    Influence of Access Type
    Files can be read independently of the access type. Whether data can be read or not depends solely on the position of the file pointer. If the latter is at the end of the file or after the file, no data can be read and sy-subrc will be set to 4.
    Influence of the Storage Type
    The import function will take place irrespective of the storage type in which the file was opened with the statement OPEN DATASET.
    If the file was opened as a text file or as a legacy text file, the data is normally read from the current position of the file pointer to the next end-of-line marking, and the file pointer is positioned after the end-of-line marking. If the data object dobj is too short for the number of read characters, the superfluous characters and bytes are cut off. If it is longer, it will be filled with blanks to the right.
    If the file was opened as a binary file or as a legacy-binary file, as much data is read that fits into the data object dobj. If the data object dobj is longer than the number of exported characters, it is filled with hexadecimal 0 on the right.
    If the specified storage type makes conversion necessary, this is executed before the assignment to the data object dobj. Afterwards, the read data is placed, byte by byte, into the data object.
    System Fields
    sy-subrc Meaning
    0 Data was read without reaching end of file.
    4 Data was read and the end of the file was reached or there was an attempt to read after the end of the file.
    Thanks,
    Samantak.
    <b>Rewards points for useful answers.</b>

  • What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi All,
    What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi Jayachander,
    Have a look at these sap notes:
    For taking backup: Schedule from DB13 and get the exact command from Logs
    1841993 - SYB: How to schedule backups in DBA Cockpit
    1887068 - SYB: Using external backup and restore with SAP Sybase ASE
    How to restore DB
    1611715 - SYB: How to restore a Sybase ASE database server (Windows)
    Divyanshu

  • What is the password for 'oracle' user created during XE installation?

    Hi,
    What is the password for 'oracle' user automatically created when XE is installed?
    I installed XE on Linux and it's created under 'oracle' user, but I don't know 'oracle' password. So, I cannot stop TNS listener.
    During configuration, it prompted me to enter SYS and SYSADMIN password but it didn't ask me to enter 'oracle' user password.
    Please let me know or point me to the document.
    Thanks,
    N

    Hi Jari,
    I tried your suggestion, but it didn't work unfortunately.
    When I type (sudo su -oracle) as follows, it still prompts the password. When I hit Enter key w/o anything, it seems to proceed and the prompt shows up in the following line. So, I thought it was successful, but when I checked 'whoami', it's not logged in as 'oracle'.
    So, I created the password for 'oracle' and logged in as 'oracle' using a new password. Then, I stopped TNS listener to uninstall XE.
    It would be nice if it's documented in XE document somewhere... since it's created by XE installation, I assumed some kind of default password was used.
    Thanks,
    N

  • What is the command to verify the configuration that are not saved or sent to local controllers?

    Q: What is the command to verify the configuration that are not saved or sent to local controllers?
    A: We can execute the command that is shown in below image to check the status of the configuration that has been made.
    Note: For example I made changes to the default VAP profile and executed the command "show master-configpending" which shows the pending configuration to be saved/sent to local controllers.

    But that jar file loads without images and icons when it is in other directory.Images should be accessed via a URL rather than using a filename because they will exist as entries in the jar archive not as files. Typically this URL would be obtained by using the Class method [getResource()|http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResource(java.lang.String)]. There are details in this [Java World article|http://www.javaworld.com/javaworld/javaqa/2002-11/02-qa-1122-resources.html].

  • I am trying to connect my iMac with my MacBook What is the command keys and process in doing so. Have firmwre in place.

    I am trying to connect my iMac with my MacBook What is the command keys and process in doing so. Have firmwre in place.

    Here's the Apple Support article on Target Mode http://support.apple.com/kb/HT1661

  • What is the limited number of users?

    What is the limited number of users?

    WHile your question is a bit too vague to answer with certainty I'll start with a res[ponse and you can fine tune it if it is not what you are asking about.
    The number of users of any single product for a single user license at any given moment in time is one.

  • I want to upload multiple pictures what is the command on my keyboard?

    I want to upload multiple pictures to an email. What is the command on my keyboard???

    Selecting multiple items (pictures, files etc.) is pretty standard across most apps.  To select a block of items click on the first then shift-click on the last.  To select multiple non adjacent items click on the first then command-click on each of the remaining items.  You can then do copy/paste, drag/drop or whatever other command may be appropriate for the app you are using.

  • What are the steps to reseting the administrator password with the mac os x installation dvd?

    what are the steps to reseting teh administrator password with the mac os x installation dvd?

    See OS X- Changing or resetting an account password.

  • What is the command to look at process at os level ?

    what is the command to look at process at os level ?

    Do you want Dispatcher processes or else all sap related processes?
    Any ways:
    Try with this:
    ps -ef/grep XXXX/grep DEV..here XXXX..give process name
    If you want for all then just go with ps -ef/grep DEV
    If you want to have cpu utilization then just go with
    TOPAS cmd ....
    Use dpmon for a single dispatcher.
    Satish

  • HT1391 what is the command to copy and also the command to paste?

    What is the command to copy and paste something?

    In Mac OS X, press the Command and C or V keys.
    (87331)

  • HT1343 What is the command to turn my screen from a positive white background to a negative black background

    What is the command to change my screen from a positive (white background) to a negative (black background)  Is the command the same for
    mac book as it is for the imac?

    Option-Control-Command-8, or the setting on the Display pane of the Universal Access system preference. It's the same for all computers running Snow Leopard.
    Regards.

Maybe you are looking for

  • N8, Unable to check in or access check in settings...

    Hi, Have been unable to check in via ovi maps. I can not even access the check in settings as it just flashes a box with "system error!" and OK. Have tried factory reset, installed social again and nothing seems to help. Maps does not show in the ins

  • Xcelsius/Dashboard Design - mouse over capability doesn't work/losing hover

    Hello there,  I am currently in a tough situation.  If any Xcelsius gurus can provide me with a solution, I would very much appreciate your help. I currently have a dashboard with pie chart component in the default view.  It has a radio button with t

  • Can't make an event go away in the html..

    I created an event (all day) some time in the past. Then I deleted this event. It has gone away on my iCal and on other Mac Subscriber(s) iCal versions. The html version at my .Mac account continues to display this event. I've tried unpublishing and

  • Rotating Pictures & Video Sent Through Email

    I have taken pictures and video holding my iPhone 4 in a portrait mode (not landscape), but when I email the video or pictures via iPhone the pictures and video are sideways (rotated on its side 90 degrees) to the person receiving the videos and pict

  • Exception:oracle.stellent.ridc.protocol.ServiceException: Unable to display

    Hi All, While i excute the RIDC code to retrieve the information using the COLLECTION_INFO service. i got the following error. Error: Event generated by user 'weblogic' at host 'CIS'. Unable to display virtual folder information. Unable to open folde