Webservice try to resolve a user who never login to the system

Hi All,
I'm using usergroup.asmx webservice in the workflow. It works fine for old users (who already logged in to the system)
If webservice try to resolve a user who never login to the system  it got errored.
What could be the reason? Can anyone suggest a solution?

You can use ResolvePrincipals, which performs an action similar to SPWeb.EnsureUser,
http://msdn.microsoft.com/en-us/library/websvcpeople.people.resolveprincipals(v=office.14).aspx
Dimitri Ayrapetov (MCSE: SharePoint)

Similar Messages

  • How to find the user who never logon R3 system since system golive.

    Hi everyone,
    Our R3 system golive on 2005.Due to some reasons,we need to find out the users who never logon R3 system since system go live and want to delete it.Those large numbers of unvalued users has been created because of imprecise estimation before golive.So for now,we willing to remove those users by using some kind of method.and you know,the number of unvalued user are immense,so it's impossible to identify this kind of user by using T-code su01 one by one.
    Thanks in advance.

    Hi rong,
    Run report RSUSR006. One of the criterias is "Users with Initial Password"
    That should answer your question.
    Regards
    Juan

  • ORACLE E-BUSINESS SUITE 11i Query to find users who never logged in

    Dear, All -
    ORACLE E-BUSINESS SUITE 11i
    Is there a query to find out a list of users who were created but never logged into the system. I believe these users do no appear in FND_USER table since they never logged in.
    Thanks in advance!

    FAIRE wrote:
    Dear, All -
    ORACLE E-BUSINESS SUITE 11i
    Is there a query to find out a list of users who were created but never logged into the system. I believe these users do no appear in FND_USER table since they never logged in.
    Thanks in advance!All application users details are stored in FND_USER table (whether they logged in or not).
    To find the list of those users, please run this query:
    SQL> select *
    from FND_USER
    where LAST_LOGON_DATE is NULL
    and END_DATE is NULL;Thanks,
    Hussein

  • How to capture the user who has logged into the portal.

    Hi,
    How do I capture the user who has logged into the portal.
    HOw do I retrieve the first name and last name of the logged in username.
    Could someone provide me a related link or PDF to work on this.
    Thanks,
    Suvarna

    Hi suvarna,
    Check the following code
    ISearchResult rst = UMFactory.getUserFactory().getUniqueIDs();
                      IUserFactory usf = UMFactory.getUserFactory();
                      IUser iuser = null;
                      IUserListElement userElement = null;
                      int i = 0;
                      while (rst.hasNext()) {
                            iuser =
                                  UMFactory.getUserFactory().getUser(rst.next().toString());
                            String email = iuser.getEmail();
                            String fname = iuser.getFirstName();
                            String lname = iuser.getLastName();
    regards
    Anil Dichpally

  • How to find a user who created message in satelite system ?

    hi all,
    Does anybody know how to find a user who created message in satelite system, but when there is no business partner created for him in Solman ? In tx crm_dno_monitro, crmd_order or dnotifwl  there isn`t any information. Is there any Tx or something where i can check it ?
    Regards,
    M.

    Hi,
    BP should ne maintained for the user in satellite system as a identification in solman system.
    how you are trying to create a message in satellite system..
    if you are using help-> create support message then, you can get the message log details on the table BCOS_PROT.
    please update us
    Thanks,
    Jansi
    Edited by: shivjansi on Jan 25, 2012 7:44 PM

  • Message tracking log of internal users who are all sent the mails to external domain

    Hi ,
    How can i get the message tracking log from internal users to external users?
    We need the report of internal users who are all sent the mails to the external domain
    Regards,
    Sankar M
    Sankar M http://messagingdevelopment.blogspot.in/

    Sankar, your outbound send connector has an address space of *. So when you run "Get-SendConnector", you will see something like the following:
    Identity                                AddressSpaces                          
    Enabled
    Unix System Connection                  {SMTP:*.domfreebusy.contractor.hunti... True
    Outgoing SMTP Connector                
    {SMTP:*;10}                             True
    Mailbox Journaling Connector            {SMTP:pdwastap01.huntington.com;1}      True
    The middle one with the {SMTP:*;10} in my case (you may have a different number than 10 in yours) is my outbound connector. So yours will show an address space of {SMTP:*;<some number, 10 is the default>}. HTH ...

  • How to craete a user who can only browse the dashboard??

    Hi friends,
    How to create a test user who can only browse the dashboards and not able to modify any of the reports using answers??
    Please tell me the steps.
    Thanks

    @Alastair: I thought it'd be nice to start a new trend in the forum.
    @bob123: Depends on how you manage your user and groups in general. Everything created in the RPD? Read from some Oracle tables? LDAP/ADSI? You can do it in the RPD, in the web catalog (Edit Group -> Group Membership ==> The table below contains a list of the current members of this group. Users can join the group by entering the group's password from the Join Catalog Group screen, or you can manually add them by clicking Add New Member below.) or outside.

  • Solaris users who did login for more than months

    Hello All,
    Can any one help me out to find those users who did not login to the system for more than a month or more? I need to do some user clean up.
    Thanks..
    Edited by: user4027740 on Apr 13, 2011 12:35 AM

    USERS=`grep -v NOLOGIN /etc/passwd | cut -d: -f1`
    for USER in $USERS
    do
    echo "---------- $USER --------------"
    last -n 1 $USER
    done
    ############this script helps you find out the last login time of all users in /etc/passwd file###################

  • Maintaining the information of user who is login to BO

    Hi,
    I want to store the information about user who is login to BO Webi. Can i store this information to webi
    report.
    can you please help me...

    Hi,
    Are you trying to get information about when user logged in and how long was the session. how many users logged in and all. If so ..........
    As far as i know you need to configure your audit database and enable auditing where ever needed. Then you can generate reports required using Activity Universe.
    This detailed information is available in Admin Guide.
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_bip_admin_en.pdf
    Go to chapters 12 and 13.
    Thanks,
    SK.

  • RE: Force user to re-login if the application is idle for awhile!

    Hi,
    I a similar thing a little while ago for an application written in a 4gl (not Forte) running
    windows 95 clients. I ended up dropping out to "C" and using the SDK to install
    hooks which monitored certain mouse and keyboard events to the application.
    It ended up being less than 10 lines of code in the end whereas when I tried
    to do it within the 4gl it was looked like wholesale changes to lots of code.
    This option fell down when the user was reading their help file or updating
    a word document so we added a pop-up which came up at the front of all applications
    on the PC giving the user a further minute to respond so as not to annoy the genuine
    user who was still "there" but doing something else.
    I have not had the chance to try this in Forte yet but it should be possible.
    If you think this might be an option for you I will try and cobble together an
    example.
    Dalton
    ===============================================================
    Dalton Cranston 45 Castle St.,
    GO5 Ltd Reading. RG1 7SN
    E-mail: [email protected] United Kingdom
    URL: www.go5.com Phone: +44 (0)1189 589 555
    Fax: +44 (0)1189 587 467
    -----Original Message-----
    From: Lu Wang X1 [SMTP:[email protected]]
    Sent: 13 February 1998 17:45
    To: [email protected]
    Subject: Force user to re-login if the application is idle for a while!
    Hi;
    For some security reasons, it requires our Forte application to force user to
    re-log into the application if the user doesn't use this application for 10
    minutes. The problem and difficulty to us is that how to determine there is no
    activity going on for this application on the client's PC.
    Any thought and ideas will be greatly appreciated!
    Lu Wang
    Eli Lilly and Company
    [email protected]
    (317)276-5776

    Hi Rick,
    Thanks for the Reply.
    When they are doing some action with RF id system gave DUMP - ITS_TEMPLATE_NOT_FOUND.
    With this is there any efect on Table locking.
    We got the dump on the ITS screen where as at the same time in back end ECC system TABLE data is using.
    Thanks
    Naresh

  • I have several users who have updated to the new iOS 5 and now are unable to get to the apple store

    I have several users with ipads who have updated to the new iOS5 and are now unable to access the itunes store.  It loads about half way and then nothing.  Any ideas on how to fix this?

    Photo stream only keeps your photos for 30 days.  After that, they are removed from your photo stream but not from any device that has already received them.  Chances are, the 44 photos are from the last 30 days; the others are not there because they are no longer in your photo stream.
    If the photos were in your camera roll when you last backed up, restoring to the backup should recover them.  However, you will have to restore to the entire backup to do so.  If they weren't backed up or imported to your computer, there is no way to recover them now.
    To be sure your photos are saved, regularly import them from the camera roll to your computer as outlined here: http://support.apple.com/kb/HT4083.

  • Users who don't have the  "update user" capability can update users!

    Version: Sun IdM 7.0 on Glassfish on Sparc
    We have hit a problem/bug whereby a help desk user (which doesn't have the "update user" capability in either their user account or the help desk role) was able to select the campus from the "List Users" tab, and then click "Update Users" from the dropdown, and kickoff a FULL push of data from our HR system to AD. We haven't fully migrated to IdM to provision the accounts (we have another piece of software that does this for now), so needless to say this was not expecting or desired. Some of the users (student workers, mostly) had their email addresses changed from their exchange email to their student email, and other users had their display names changed (which seems like a small thing, but there are a lot of vocal users out there...). We are working on restoring the users that changed.
    Does anyone know of a quick and dirty way to disable the "list users" tab until we can figure out how to prevent this from happening again?

    bump
    Has anyone seen this problem besides us?
    Also, is there a way to only show this control for administrative users, and not for "help desk" users?
    Thanks,
    Mark

  • How to Find out who is login into the Portal.

    Hi Friends ,
    I have one doubt  Now I have one Requirement. i.e.
    How many members (users) login in to the Portal?
    In what time they login into the portal?
    How many times hits the iView in  Portal?
    Who is last login into the portal?
    I have find out these details by using these details I will create one Iview.
    How to find these details. By using these details I will created one iView. Kindly  let me know.
    Could you tell me those
    1.     Is it creating Portal Activity Report iView in Portal?
    2.     By using WDJ Application we can create one Application. By using this application we can create iView?
    Regards
    Vijay Kalluri

    Hello Vijay,
    If you are interested in a 3rd party application with all the stats you need and more, check out Click Stream by Sweetlets. Easy to download and user friendly with many key reports quickly accessible. It also answers some of the questions you had above a whole lot simpler than anything else out there or any other route you had in mind.
    In the very near future Click Stream will also have iView recording to monitor iViews, telling which iViews have been clicked, etc. Also, the one you were looking for, "who the last login into the portal", will soon be added.
    Click Stream uses the Usermanagement (UME) API to get more information about the user, groups, roles, LDAP attributes etc. and offers you the ability to use such information for filtering within any report.
    Click Stream also uses the PCD API to get information about the pages your users are visiting.
    Here are some reviews on the SAP EcoHub from people who have used it: http://ecohub.sdn.sap.com/irj/ecohub/solutions/clickstream
    Please just let me know if you have any question or if you are open to test drive Click Stream. We will certainly help as best as we can.
    Good luck.

  • LMS 4.2.4 User Tracking End Host Report The system cannot find the path specified

    Hello at all,
    I have a problem when creating a scheduled User Tracking End Host Report.
    I always get the message "The system cannot find the path specified" and the job fails.
    An immediate report is successful.
    I tried to change the "Report Publish Path" from "C:/Program Files (x86)/CSCOpx/" to "C:/PROGRA~2/CSCOpx/", but that did'nt worked.
    Has anybody an idea?
    Regards, Kerstin

    Share the screenshot of the following directory :
    NMSROOT\CSCOpx\campus\etc\cwsi
    In case it is blank, try following :
    1.Stop the services : net stop crmdmgtd 
    2.Take a copy of > C:/Progra~2/campus/etc/users and place it under C:/Progra~2/campus/etc/cwsi
    3.Start the services : net start crmdmgtd
    Please try and let me know the updates.
    -Thanks
    Vinod
    **Encourage Contributors. RATE them.**

  • Capture users details when logins to the applicaiton

    Hello,
    Can anyone please, help me with this issue. I am using APEX 3.2 version and I want to capture the details of the user mainly user id; their session id; when he/she logged to the application (Date & Time), which pages did he accessed within the application; ip address. After capturing the details i want to insert these into a sample table. So that I can display the details - such as users last visited date to the application.
    Thanks,
    Orton

    Hello Orton,
    Try checking out ApEx's built-in views Utilities > APEX Views. There is a wealth of information in those views. You'll need logging turned on for your application(s) - that is done in Shared Components > Definition. Using this information or summarizations of this information, should get you well on your way. One note - I believe the logs you will be interested in do get cleared automatically (forgive me I don't remember the frequency) so depending on how far back you need to report you may need to set up something to copy this data into your own tables.
    Hope this helps,
    John

Maybe you are looking for

  • Font changes when copy and paste url (Safari to Mail)

    When copy from iphone 5 (vs 7.1.2-& no I don't want to update yet ) Safari, a URL/web address and paste into MAIL app, the font changes and won't paste in the same format as the email I've been typing. Is there any way to correct this? Also, anything

  • Solaris 10 and NFS/Automount into Solaris 8 Env.

    Hello fellow Administrators, I have recently upgraded my own station to Solaris 10 6/06 update 2 in a Solaris 8 NIS/Automount environment. How ever, i have noticed that my station from time to time 'frezzez' and becomes unresponding. It's as if the s

  • Can't insert characters from Character Viewer

    I have used Character Viewer in the past. The way it worked was to highlight the character in Character Viewer and then click the "insert" button. I can bring up Character Viewer and see all the characters, but even after highlighting a character, I

  • Delete or Truncate statement for data purging

    Hi, I am writting a stored procedure to purge data from table every month. There is no constraint on table column except primary key. I am using 'delete' statement as it records an entry in the transaction log for each deleted row. But it's a slow pr

  • GUI - refresh problem

    I wrote a new code which draw two shape; circle and rectangle. I aim to cotrol their places with sliders. However, There is a problem about that. When I use slider, a new slider occurs in the panel. And when I move shapes, previous actions don't disa