Query: Rename users

Hi,
as I change the name of xelsysadm administrator Identity Manager 9.1.0.0
Thank

Do they rename the root user in their unix systems as well?
If you can't do it through the web client you can always bypass the controls by simply updating the USR_LOGIN field in the USR table by using SQL. This is a really bad idea but if the client really insists this is how it can be done.
Most integrity checks are implemented in the app layer in OIM so by going into the db you can usually bypass most things but it is a really bad idea to do this.
Best regards
/M

Similar Messages

  • In ST03 , how can i see the Query name, user id,how many times executed the

    HI Experts,
    In ST03 , how can i see the Query name, user id,how many times executed the query.
    these details how do i get from the above transaction.
    EX:-if there is one report name X,I want to know how many users had executed X report today,weekly,monthly.
    ex:-query userid total number of execution
    sales order 0000555 5 times
    custmer 05855 2 times
    fast reply will be appreciated,

    Hi,
    Look here:
    http://help.sap.com/saphelp_nw04/helpdata/en/3b/54df4204892a78e10000000a155106/frameset.htm
    Also check these:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2d/b8be3befaefc75e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/25/ece73a39e74d27e10000000a114084/frameset.htm
    Hope this helps..
    Bye
    Dinesh

  • In ST03 , how can i see the Query name, user id,how many times .

    HI Experts,
    In ST03 , how can i see the Query name, user id,how many times executed the query.
    these details how do i get from the above transaction.
    Points will be awarded.
    BR
    sivs

    Hi Siva,
    Reporting statistics data is only written to the database table if BW statistics have been manually activated for the corresponding InfoProvider first. If this has not been done, it is therefore not possible to display any reporting statistics in transaction ST03.
    Therefore activate the reporting statistics for all relevant InfoProviders. To do this, set the OLAP flag in the BW Administrator Workbench (transaction RSA1) in the area Tools ® BW Statistics for InfoProvider.
                    Check here...........
    http://help.sap.com/saphelp_nw04/helpdata/en/ca/86df4254d81e1fe10000000a155106/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c8c4d794-0501-0010-a693-918a17e663cc
    Hope this will help you shiva.........
    Regrads,
    Vijay

  • Change user's OU with punctuation mark doesn't work by Rename User View

    Hi,
    I have problem with moving user between OU by Rename User View when punctuation mark in name of OU is used.
    I have own WF that assign user to specific OU depending on value of Select component. When value of this component is changed (against previous value) I call Rename View, that assign user to new OU. For OU without punctuation mark Rename View works OK.
    After finishing WF with punctuation mark in OU this Error appers:
    java.lang.RuntimeException: There is no such object on the server.
    But creating new AD account (by role assignment) in OU with punctuation work OK. In select component is rule that replace puctional character in correct form.
    Select component:
    <Field name='slctOrganizationalUnitUzivatele'>
                    <Display class='Select' action='true'>
                        <Property name='title' value='Nastavte organizacni jednotku:'/>
                        <Property name='allowedValues'>
                            <block>
                                <dolist name='zmena'>                             
                                    <invoke name='listResourceObjects' class='com.waveset.ui.FormUtil'>
                                        <invoke class='com.waveset.session.SessionFactory' name='getServerInternalContext' />
                                        <s>OrganizationalUnit</s>
                                        <s>AD</s>
                                        <null/>
                                        <s>false</s>
                                    </invoke>
                                     <rule name="RUL nahrada znaku">
                                        <argument name="inputString">
                                            <ref>zmena</ref>
                                        </argument>
                                        <argument name='hledanyRetezec'>
                                            <s>\,</s>
                                        </argument>
                                        <argument name='nahrazovaciRetezec'>
                                            <s>\, </s>
                                        </argument>
                                    </rule>                              
                                 </dolist>
                            </block>
                        </Property>
                        <Property name='sorted'>
                            <Boolean>true</Boolean>
                        </Property>
                    </Display>
                    <Default>
                        <upcase>
                            <ref>user.accounts[AD].ad_container</ref>
                        </upcase>
                    </Default>
                </Field>
    WF-Rename User
    <Activity id='10' name='renameUzivatele'>
            <Action id='0' application='com.waveset.session.WorkflowServices'>
              <Argument name='op' value='checkoutView'/>
              <Argument name='type' value='RenameUser'/>
              <Argument name='id' value='$(user.waveset.accountId)'/>
              <Argument name='authorized' value='true'/>
              <Return from='WF_ACTION_ERROR' to='error'/>
              <Return from='view' to='renameView'/>
            </Action>
            <Action id='1'>
              <expression>
                <block>
                  <set name='renameView.accounts[AD].identity'>
                    <ref>newDNrecord</ref>
                  </set>
                  <set name='renameView.resourceAccounts.currentResourceAccounts[AD].identity'>
                    <ref>newDNrecord</ref>
                  </set>
                  <set name='renameView.resourceAccounts.currentResourceAccounts[AD].selected'>
                    <s>true</s>
                  </set>
                  <set name='user.global.OrganizationalUnit'>
                    <ref>slctOrganizationalUnitUzivatele</ref>
                  </set>             
                </block>
              </expression>
            </Action>
            <Action id='2' application='com.waveset.session.WorkflowServices'>
              <Argument name='op' value='checkinView'/>
              <Argument name='view' value='$(renameView)'/>
              <Argument name='authorized' value='true'/>
            </Action>
            <Transition to='nastaveniPristupu-overeni'/>
            <WorkflowEditor x='193' y='343'/>
          </Activity>
    <set name='newDNrecord'>
                    <concat>
                      <s>CN=</s>
                      <ref>user.global.fullname</ref>
                      <s>,</s>
                      <ref>slctOrganizationalUnitUzivatele</ref>
                    </concat>
                  </set>Do you have any ideas?
    Thanks Petr

    Hi,
    I discovered following:
    - if name of OU in AD is without space (e.g. test,sample) so DN record is test\,sample and user is moved into this OU.
    - if name of OU in AD is with space (e.g. test, sample) so DN record is still test\,sample and user isn't moved.
    So problem is with empty space. How can I preserve space in DN name? I found something in documentation but I doesn't work for me.
    +Special Characters in FieldValues
    If you have a field value with a comma (,) or double quote (") character, or you want to preserve leading or trailing spaces, you must embed your field value within a pair of double quotes ("field_value"). You then need to replace double quotes in the field value with two double quote (") characters. For example, "John ""Johnny"" Smith" results in a field value of John "Johnny" Smith. +
    (from IDM Business Administrator's Guide, p.77)
    Guided this information I put value of slctOrganizationalUnitUzivatele into "". But this didn't work. Is good idea to have space in DN?
    Thanks for help.
    Petr
    Edited by: petrklinkovsky on Sep 10, 2009 5:06 AM

  • How to modify inputtext in af:query when user change another inputtext

    I have Jdev 11.1.1.3
    I'd like to change inputtext B (this contain a Date) when I change inputtext A (this contain a another Date).
    Those fields are inside af:query.
    I try to explain better.
    I have created the af:query and user before executing the query selects the start date in inputtext A when he/she comes out with tab, I would like to add one day to the inputext B.
    It's possible?
    For me, the complexity is that I can not manage the fields inside af:query
    Thanks

    Hi,
    there is no direct access to this. However, you should be able to get the input value to then set a new default value on the ADF BC model for the dependent attribute. After this you PPR the query component to show the new value.
    Sample 160 at http://blogs.oracle.com/smuenchadf/examples/ may be helpful
    Frank

  • Discoverer EUL Workbooks - Query Statistics, Workbooks Queried By User

    Hi there.
    I've just ran Discoverer EUL workbooks and found out a nice functionality on one of those queries. It's on EUL Query Statistics workbook, "Workbooks Queried By User" worksheet (and others).
    If you take a look at the "Worksheet Usage" column, you'll notice that there's an effect that looks a lot like a "progress bar". According to the times that worksheet was used, this bar advances or retract.
    I noticed it's a calculated column, but when I try to edit it, it shows no more than COUNT_DISTINCT("Date & Sheet"). I got a little confused on how this COUNT_DISTINCT shows that "progress bar"....
    So... how can I implement this on my DM queries?
    TIA.

    You need Desktop. When you format the data, there is a check box to show graphical bars. This option is not available in Plus, but the bars will show up when the report is displayed in Plus.

  • EDK Query By User Name

    Hi There,
    I'm trying to use the EDK to query by a user's name, but I"m having a bit of trouble.
    In C#, I can use the code below to successfully query for a user(s) by ID. For example, here I want all users with user ID above 200:
    RemoteSession = RemoteSessionFactory.GetTokenContext(PortletRequest.GetRemoteAPIEndpoint(),PortletRequest.GetLoginToken());
    UserObjectManager = RemoteSession.GetObjectManager(ObjectClass.User);
    int iFolderID = 0; /// 1 is the admin root folder, 0 sets all folders?
    int iStartRow = 0;
    int iMaxRows = 10;
    int iMinObjectID = 200; // this is where non-standard plumtree users
    ObjectProperty sortProperty = UserProperty.Name;
    bool ascending = true;
    ObjectProperty[] ReturnProps = new ObjectProperty[] { UserProperty.ObjectID, UserProperty.Name };
    QueryFilter filter1 = new IntQueryFilter(UserProperty.ObjectID, Operator.GreaterThan , iMinObjectID -1);
    QueryFilter[] filters = new QueryFilter[] { filter1 };
    UserObjectQueryResults = UserObjectManager.QueryObjects(iFolderID, iStartRow, iMaxRows, sortProperty, ascending, ReturnProps, filters);
    However, when I use as my filter the following:
    string sNameToSearch = "karen";
    QueryFilter filter1 = new StringQueryFilter(UserProperty.Name, Operator.LessThan, sNameToSearch);
    I get all sorts of erros, depending on the Operator used (i've tried all of them). Most of the operators (like LessThan, EQUAL, Greaterthanorequal, etc) error that they require anything but "empty or a BSTR" (ie they dont take a string). The Operator "IN" says that it needs a 1D SAFEARRAY. However, in .NET, the function asks for a string, which is what I am providing.
    Any help / suggestions you could provide would be great?
    Also, can you confirm that the new EDK will be out in January? Do you have a date yet? Also, is it true that you will be able to query for user profile information (of other users, not just the current user) at that time?Thanks!Karen

    Hi Karen/John,
    To query for a specific username, you can use a StringQueryFilter, specifying the property as ObjectProperty.Name (or UserProperty.SimpleName etc), the operator as Operator.Equals, and the username as the operand. This will match the specific user with the supplied name.
    Unfortunately if you are attempting to match a substring within the Name, this is not possible with the current EDK. The In operator operates on arrays (as you have seen), you need a Contains operator to match substrings, which will be available in the new EDK.
    We do not have a concrete date set for the new EDK release (mainly due to dependencies on other produces, such as portal 5.0.2), but we are expecting it to be release at the end of January.
    Jonathan

  • Query for user group

    Dear Team,
    When I am creating  Query for user group via T-code  SQ01.
    Query     ZDEMO1    then Create
    This messege is comming .
    System setting does not allow changes to be made to
    object AQQU /ISDFPS/OM  ZDEMO1
    Why this messege is comming .
    Thanks
    manu

    Dear Manu,
    Please check in SE06 >> change system options >> if the system and the relevant object is in modifiable status.
    Cheers,
    Jazz

  • When using BW Bex query analyzer users cannot change reporting queries ....

    Issue: When using BW Bex query analyzer users cannot change reporting queries. Any attempt to change queries results in errors.
    Error: BEx Query Designer: Run-time error '-2147221499 (80040005) Fatal Error - Terminating
    Impact: Business reporting is currently being negatively impacted because users cannot modify queries, cannot change filters for fiscal period and fiscal year.
    OS / MS Office Suite being used: Vista & Office 2007
    Backend System: BW 2.0B
    Frontend System: Being a large organization, we have a controlled environment wherein all users will have the following applications installed by default:
    1. SAP Client Base 7.10
    2. SAP BW 3.5 Patch 4
    3. SAP BI 7.10 Patch 900
    4. SAP GUI 7.10 Patch 12
    Does anyone has any idea as to why we are getting this error? Is it a Vista issue? Is it a front-end issue?

    Just a thought - did you guys apply any Microsoft security patches before this started happening - we had a similar issue in other SAP application due to MS security update. Raise an OSS with SAP

  • Rename user's in Oracle 8i ???

    This is possible ==> rename user's in Oracle 8i ???

    You mean, renaming user: SCOTT to user: JOHN.
    As far as I know, the answer is NO.
    One of way to do the above is:
    1. export owner=SCOTT.
    2. Create user JOHN like SCOTT. You can set the same password using
    ALTER USER JOHN ... etc. values clause.
    3. imp fromuser=SCOTT touser=JOHN.
    4. delete user SCOTT (making sure no objects belong to scott).
    HTH
    Srinivasa

  • Rename User View

    Hi,
    I'm going to adopt user renames, using Rename User View, and automatic attribute derivation (like email addresses) is a must. Everything's working fine except changing attributes of the waveset name space (email, organization).
    Here's the rule:
          <Rule name='Set Attributes for Rename'>
            <RuleArgument name='renameView' value='$(renameView)'/>
            <dolist name='resource'>
              <ref>renameView.toRename</ref>
              <set>
                <concat>
                  <s>renameView.resourceAccounts.currentResourceAccounts[</s>
                  <ref>resource</ref>
                  <s>].selected</s>
                </concat>
                <s>true</s>
              </set>
              <cond>
                <ref>user.newLogin</ref>
                <block>
                  <set name='renameView.newAccountId'>
                    <ref>user.newLogin</ref>
                  </set>
                  <set>
                    <concat>
                      <s>renameView.accounts[</s>
                      <ref>resource</ref>
                      <s>].login</s>
                    </concat>
                    <ref>user.newLogin</ref>
                  </set>
                  <set>
                    <concat>
                      <s>renameView.accounts[</s>
                      <ref>resource</ref>
                      <s>].accountId</s>
                    </concat>
                    <ref>user.newLogin</ref>
                  </set>
                  <set>
                    <concat>
                      <s>renameView.accounts[</s>
                      <ref>resource</ref>
                      <s>].email</s>
                    </concat>
                    <concat>
                      <ref>user.newLogin</ref>
                      <s>@domain.com</s>
                    </concat>
                  </set>
                </block>
              </cond>
            </dolist>
          </Rule>The problem is that the email address is only changing on accounts like Active Directory (account[AD].email), but the old value is still in waveset.email and global.email ('cause there isn't an account[Lighthouse].email attribute).
    Is there a way to change these values too? It seems that it's no use inserting lines into the rule about waveset and global attributes.
    Thanks,
    Adam

    check the workflows, forms, and views document. Its detailed there.
    Note that IDM doesn not support domain moves...only OU moves within the same domain.
    Dana Reed
    AegisUSA
    Denver, Co
    [email protected]
    "We are the Identity Company"

  • Rename Users

    What the best way of renaming users??
    I have taken over a site and there are a few changes required by the manager
    All users must have a login format
    FirstnameS[econdname)
    ie. Fred Blogg becomes FredB
    The users all have own data stored in Home folders ie. users\username
    Users have Groupwise accounts - new email will be in the same new "FredB"
    format whilst retaining the old
    Users have Documents and Proxy rights
    [Thank fully site only has 12 users!!!]
    From what I can see :-
    I first rename the NDS account & home folder using ConsoleOne
    Then rename GroupWise account using ConsoleOne
    Add nickname for the old account so emails will still come to them
    Have I missed anything?

    MikeL,
    > I first rename the NDS account & home folder using ConsoleOne
    > Then rename GroupWise account using ConsoleOne
    > Add nickname for the old account so emails will still come to them
    >
    > Have I missed anything?
    That should take care of it. Note that there are utilities out there
    that handles mas renames, but as you say, you only have 12 users.
    - Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Novell has a new enhancement request system,
    or what is now known as the requirement portal.
    If customers would like to give input in the upcoming
    releases of Novell products then they should go to
    http://www.novell.com/rms

  • Query all users when they last logged on?

    Hi,
    how can I run a script to query all users to see when they last logged on. I want to be able to select a cut off date to exclude current users.
    Any ideas?
    Thanks
    Paul

    Try using the 'last' command from the Terminal, or read the wtmp logs directly.
    (33318)

  • I renamed user folder by accident...

    i renamed user folder by accident then all my desk,preferences, firefox signets have disapeared.....
    But i can see there is still a folder called "desk" which is my good old desk so someone can tell me if there is a solution to recover everything by renaming something or anyhing plz ?

    Open the desk folder and see if that's it; if so, put it in the Users folder with its original name. If not, choose Go to Folder from the Finder's Go menu, provide /Users/ as the path, and check the folders there. If it's not there, search your computer for a file which is located in the good folder, select it, choose Get Info from the Apple menu, and check its path.
    (83111)

  • Pass parameter value to another parameter.... User query in user parameter

    Hello everyone, any help would be greatly appreciated.
    Problem:
    My report currently has 5 user parameters (3 Number, 2 Characters). I have an after parameter trigger that evaluates all the parameters to see which one has any value and then creates the “where clause”. Below is an example of two of the 5 parameters.
    The function works fine, I just cut out all the other stuff for this issue.
    function AfterPForm return boolean is
    IF :P_JOB_ID is not null then
         :P_WHERE_CLAUSE := 'where Job_num = :P_JOB_ID';
    ELSIF :P_QUES_DESC is not null then
    :P_WHERE_CLAUSE := 'where DESCRIPTION like :P_QUES_DESC’;
    ELSE :P_WHERE_CLAUSE := ‘where JOB_NUM = 0';
    The “P_WHERE_CLAUSE” is used as follows in a query.
    Select job_num
    from PROMOTION
    &P_W_CLAUSE
    Issue:
    The query result can be anywhere from 1 to 50 job_num’s. I need to show the end user running this report the values (job_num) in a drop down list. They in turn will select one job_num which will be used to run the report. I tried putting the Select job_num from PROMOTION &P_W_CLAUSE in a User Parameter but that does not work. I get an error. I feel that I am approaching this the wrong way. Because in the end I would end up with two queries, one for the Select statement containing the P_W_CLAUSE and another with the final report. This issue is sort of like cascading prompt where the values from one (or more) parameters are used in the select of another user parameter which in turn the value selected will be used in the final report. Also this report will be used somewhere between 50 - 75 times per day so storing the values in a temp table might not work.

    Sorry,
    as I know depending parameters like you want are not possible in Reports. You can use one reports as parameter-report-only to use a second as your original report, but this is not perfect. Or use a tool like Application Express (which is able to have depending fields) in front of reports to build your parameter forms.
    Regards
    Rainer

Maybe you are looking for

  • BADI ME_GUI_PO_CUST-- Data not getting saved after adding tab at Header

    Hi, My requirement is to add an additional tab at header level  and a field in that tab. I used the BADI  ME_GUI_PO_CUST and implemented it. I can see the tab and the field in it at header level.But when i try to save it , its popping up message 'Dat

  • Upgrading Windows 7 (Legacy BIOS/MBR Disk) to Windows 8 (UEFI/GPT/Secure Boot)

    Hi there, I've recently purchased a W530 with Windows 7 pre-installed.  Ultimately, I'd like to replace this with Window 8 + Secure Boot.  I believe I can get Windows 8 via the Microsoft Upgrade offer for a reasonable price, since this was a recent p

  • Help hooking up IMac Chrome 24" to Onkyo tx-606 to Panasonic Plasma

    I have a 24" iMac Chrome, a Onkyo TX-606 A/V receiver and a 50" Panasonic Plasma TV (Can't recall the model, but it is a 720p plasma TV). I ordered the DVI to HDMI cable, from Apple, to hook all this up together. The TX-606 and Plasma work great toge

  • Iphoto '08 preferences

    Trying to stop duplication of photos from my hard disk and each time I try to access preferences, I get nothing (mac thinks for a few seconds and then I end up back at iphoto as if I had not tried to select preferences. Is this a bug?

  • Gallery Default To Nothing Selected

    I have a gallery that my users use to make a selection. Additional information about the selected item then appears elsewhere in the screen. I would like nothing to be selected in the gallery until the user clicks on an item. How do I do this? I trie