Get user info step

Hello I to know how work the step Get user Info.
anyone can help me?

If you are sending XML payloads to CAD, you are probably using IPC, correct?
The best way you can handle this then is have the CAD login action "register" the login with your IPC server.
Here's a video I made, showing how CAD can talk to an IPC server (written in ruby).
http://www.youtube.com/watch?v=88E-z0ShlFE
Here is a forum thread where I gave away the code:
https://supportforums.cisco.com/message/3041806#3041806

Similar Messages

  • How i get user info from ldap using java after authenticating user with SSO

    Hi
    I have one jsp/bean application as a partner application with SSO.
    It works fine.
    Now i need to get other attributes of user from LDAP who has logged into the application through SSO.
    using SSO java APIs i only get username, userDN, subscriber info.
    To get user's other attribute i have to user LDAP APIs for that i have to create on Directory Context, for the same i need userpassword.
    so here i my question, how do i get user password after he has logged in thro SSO.
    regards..
    and thanking u in advance
    samir

    Valentina,
    there's no way to get the password value from the directory (it's one way). Of course you can get the hashed (MD4,MD5,SHA-1) base64 encoded value (i.e. the value you see in OiD) but not the 'password'.
    --Olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Getting user info with integrated dot net app.

    To start, I know nothing about SAP integration. This has been thrown at me to try to resolve.
    I need to integrate a dot net app into SAP. I need to know who the user is that is accessing my .ascx page.
    I found this:
            Dim userInfo As Map = DirectCast(Request.getAttribute(PortletRequest.USER_INFO), Map)
            lblUserID.Text = DirectCast(userInfo.[get]("user.name.given"), String)
    And This:
    <portlet-app>
    <user-attribute>
    <description>User Given Name</description>
    <name>user.name.given</name>
    </user-attribute>...
    Any help would be appreciated, and again, if you can help I will need complete help, because as Sgt Schultz would always say..
    I know nooooothing...
    Edited by: Raymond Blair on Dec 15, 2008 5:40 PM

    Hello Raymond,
    For developing .NET applications I would recommend you to evaluate [PDK for .NET|https://www.sdn.sap.com/irj/sdn/dotnet?rid=/webcontent/uuid/40be5378-bfa9-2b10-399b-ba5719c0b5b8] ( Portal Development Kit for Microsoft .NET ). As a part of its installation, you get documentation integrated into Visual Studio help. It contains a set of very helpful tutorials.
    Best Regards,
    Rima.

  • API get user group

    Hi,I'm trying to get an user group using VB API.I'm using function ESB_GetUser, I tried the fields type, name, description....Name returns the username and not the group name. AppName and DbName do n ot return any value. However I do not have any error...Any idea? A bug maybe? Is it possible to do a such thing with API?Thanks for your help--------------------Sub ESB_GetUser()Dim sts As LongDim User As StringDim str_group As StringDim UserInfo As ESB_USERINFO_TDim str_type As String * ESB_TYPE_USERDim str_name As String * ESB_USERNAMELENDim str_description As String * ESB_DESCLENDim str_appname As String * ESB_APPNAMELENDim str_dbname As String * ESB_DBNAMELENDim str_access As String'Starting an API connectionCall ESB_InitCall ESB_AutoLogin(cst_application)User = "my_user"'************************' Get User Info structure'************************sts = EsbGetUser(hCtx, User, UserInfo)str_name = UserInfo.namestr_type = UserInfo.Typestr_appname = UserInfo.AppNamestr_dbname = UserInfo.DbNamestr_access = UserInfo.Accessstr_description = UserInfo.Description'DeconnectingCall ESB_LogoutCall ESB_Termmsg = "User " & User & " belongs to " & str_description & " group."res = MsgBox(msg, vbOKOnly)End Sub

    Please check the PDK APIs for what APIs are available. Note that a user can belong to more than one group. They can define one of their groups as their default group. There is an API to get the default group for a user.

  • Getting the User Info while Invoking the Process

    Hi All,
        We have created few processes and are working fine.. Now we got a new request to enable the Site Minder authentication for each request. In our project the LiveCycle process is getting invoked from a Flex code via SOAP end point. Flex application is authenticating the request by reading the info from the request object sent by the Site Mider. Is there a way in LiveCycle process to read information from the browser request object? Our application is not linked with LDAP. We wanted to know the user id that was passed as part of the Site Minder authentication and use it in the rest of the services.
        Thank you for your time and help..
    Regards
    Srini

    Jasmin,
             Thank you for your reply. What you are saying is, the Parent app which is invoking the LiveCycle process needs to read the Request object and then pass the user info to the LiveCycle process.
             So we do not have a way to read the browser cookie information from the LiveCycle process. Just want to confirm..
    Thanks
    Srini

  • Getting user OID info

    Hello:
    I need to get more info from a user inside a portlet. I can get username and DN from a user that has logged in portal from my portlet, but when I call another fuctions like getFirstName, getLastName or getPropertyValue I always get null values.
    <br><br>
    This is a piece of my code:
    <br><br>
    PortletRenderRequest pReq = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    ProviderUser pUser = pReq.getUser();
    <br><br>
    <P> DisplayName = <%= pReq.getUser().getDisplayName() %>.</P>
    <P> FirstName = <%= pReq.getUser().getFirstName() %>.</P>
    <P> DN = <%= pReq.getUser().getUserDN() %>.</P>
    <br><br>
    Only getUserDN() and getName() works. I need to get more attributes from the OID and
    <br><br>
    Another 'extrange' thing is that I see no data (apart from USER_NAME or ID) into the WWSEC_PERSON view. Are this two things related? From PL/SQL I can call wwsec_api.person_info and it works OK, so I suppose that it is connecting to the directory correctly.
    <br><br>
    Thanks in advance,
    Javier.

    We use a procedure that runs every night to refresh the OID data into a table. Then we use the porta.wwctx_api.get_user function to pull information into a portal componet. Here is the procedure code followed by the table code:
    CREATE OR REPLACE PROCEDURE wwsec_pers_closepf_proc2 IS
    BEGIN
         DELETE closepf_person2;
         COMMIT;
              FOR i in (select ID from portal.WWSEC_PERSON$)
              LOOP
         DECLARE
              l_person_ID                number     := portal.wwsec_api.person_info(p_person_id => i.id).ID;
              l_person_USER_NAME      varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).USER_NAME;
              l_person_EMPNO                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).EMPNO;
              l_person_LAST_NAME           varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).LAST_NAME;
              l_person_FIRST_NAME      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).FIRST_NAME;
              l_person_MIDDLE_NAME      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).MIDDLE_NAME;
              l_person_KNOWN_AS           varchar2(80) := portal.wwsec_api.person_info(p_person_id => i.id).KNOWN_AS;
              l_person_EMAIL                varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).EMAIL;
              l_person_WORK_PHONE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).WORK_PHONE;
              l_person_MOBILE_PHONE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).MOBILE_PHONE;
              l_person_PAGER                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).PAGER;
              l_person_FAX                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).FAX;          
              l_person_OFFICE_ADDR1      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR1;
              l_person_OFFICE_ADDR2      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR2;
              l_person_OFFICE_ADDR3      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR3;
              l_person_OFFICE_CITY      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_CITY;
              l_person_OFFICE_STATE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_STATE;
              l_person_OFFICE_ZIP      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ZIP;
              l_person_OFFICE_COUNTRY varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_COUNTRY;                                        
              l_person_TITLE               varchar2(80) := portal.wwsec_api.person_info(p_person_id => i.id).TITLE;
              l_person_MANAGER           number     := portal.wwsec_api.person_info(p_person_id => i.id).MANAGER;
              l_person_DEFAULT_GROUP      number          := portal.wwsec_api.person_info(p_person_id => i.id).DEFAULT_GROUP;
              l_person_PMO_GROUP          boolean          ;--:= portal.wwsec_api.is_user_in_group(p_person_id => i.id, p_group_id => (23));
              l_person_GUID               varchar2(32);     
              v_pmo_group                    varchar2(5);
              CURSOR get_guid IS
                   SELECT guid
                   FROM orasso.wwsec_person$
                   WHERE user_name = l_person_USER_NAME;
         BEGIN
              OPEN get_guid;
              FETCH get_guid INTO l_person_GUID;
              CLOSE get_guid;
              IF l_person_PMO_GROUP = TRUE THEN
                   v_pmo_group := 'TRUE';
                   ELSE v_pmo_group := 'FALSE';
              END IF;     
              INSERT INTO acquisitions.closepf_person2 (
                   id,
                   user_name,
                   empno,
                   last_name,
                   first_name,
                   middle_name,
                   known_as,
                   email,
                   work_phone,
                   mobile_phone,
                   pager,
                   fax,
                   office_addr1,
                   office_addr2,
                   office_addr3,
                   office_city,
                   office_state,
                   office_zip,
                   office_country,
                   title,
                   manager,
                   default_group,
                   guid,
                   pmo_group)
              VALUES      (
                   l_person_ID,
                   l_person_USER_NAME,
                   l_person_EMPNO,
                   l_person_LAST_NAME,
                   l_person_FIRST_NAME,
                   l_person_MIDDLE_NAME,
                   l_person_KNOWN_AS,
                   l_person_EMAIL,
                   l_person_WORK_PHONE,
                   l_person_MOBILE_PHONE,
                   l_person_PAGER,
                   l_person_FAX,
                   l_person_OFFICE_ADDR1,
                   l_person_OFFICE_ADDR2,
                   l_person_OFFICE_ADDR3,
                   l_person_OFFICE_CITY,
                   l_person_OFFICE_STATE,
                   l_person_OFFICE_ZIP,
                   l_person_OFFICE_COUNTRY,                                                                                                     
                   l_person_TITLE,     
                   l_person_MANAGER,
                   l_person_DEFAULT_GROUP,
                   l_person_GUID,
                   v_pmo_group);                                                                      
                   EXCEPTION WHEN NO_DATA_FOUND
                        THEN
                             EXIT;
                   COMMIT;
         END;
         END LOOP;
    END;
    CREATE TABLE CLOSEPF_PERSON2
    ID NUMBER NOT NULL,
    USER_NAME VARCHAR2(256),
    EMPNO VARCHAR2(30),
    LAST_NAME VARCHAR2(60),
    FIRST_NAME VARCHAR2(60),
    MIDDLE_NAME VARCHAR2(60),
    KNOWN_AS VARCHAR2(80),
    EMAIL VARCHAR2(256),
    WORK_PHONE VARCHAR2(30),
    MOBILE_PHONE VARCHAR2(30),
    PAGER VARCHAR2(30),
    FAX VARCHAR2(30),
    OFFICE_ADDR1 VARCHAR2(60),
    OFFICE_ADDR2 VARCHAR2(60),
    OFFICE_ADDR3 VARCHAR2(60),
    OFFICE_CITY VARCHAR2(30),
    OFFICE_STATE VARCHAR2(30),
    OFFICE_ZIP VARCHAR2(30),
    OFFICE_COUNTRY VARCHAR2(256),
    TITLE VARCHAR2(80),
    MANAGER NUMBER,
    DEFAULT_GROUP NUMBER,
    GUID VARCHAR2(32),
    LASTUPDATED DATE DEFAULT sysdate,
    USER_LOGIN VARCHAR2(5)
    Thanks,
    Martin

  • I changed my username and now afp doesn't show any users. I have file sharing on. And also when I select "get more info" on the shared folders they don't have my username in there. it just has "applepc(me)" it my old username before changing it.

    I changed my username and now afp doesn't show any users. I have file sharing on. And also when I select "get more info" on the shared folders they don't have my username in there. it just has "applepc(me)" my old username before changing it showed the correct username? please any help would be great.

    Turn Time Machine OFF temporarily in its preference pane. Leave the window open.
    Navigate in the Finder to your backup disk, and then to the folder named "Backups.backupdb" at the top level of the volume. If you back up over a network, you'll first have to mount the disk image file containing your backups by double-clicking it. Descend into the folder until you see the snapshots, which are represented by folders with a name that begins with the date of the snapshot. Find the one you want to restore from. There's a link named "Latest" representing the most recent snapshot. Use that one, if possible. Otherwise, you'll have to remember the date of the snapshot you choose.
    Inside the snapshot folder is a folder hierarchy like the one on the source disk. Find one of the items you can't restore and select it. Open the Info dialog for the selected item. In the Sharing & Permissions section, you may see an entry in the access list that shows "Fetching…" in the Name column. If so, click the lock icon in the lower right corner of the dialog and authenticate. Then delete the "Fetching…" item from the icon list. Click the gear icon below the list and select Apply to enclosed items from the popup menu.
    Now you should be able either to copy the item in the Finder or to restore it in the time-travel view. If you use the time-travel view, be sure to select the snapshot you just modified. If successful, repeat the operation with the other items you were unable to restore. You can select multiple items in the Finder and open a single Info dialog for all of them by pressing the key combination option-command-I.
    When you're done, turn TM back ON and close its preference pane.

  • User Exit in 10g - To get client info

    Hi all
    We have a user exit call in forms 4.5 which returns client info (OS version).
    As we are going for 10g, the user exits will reside in AS.
    Is there any way by which i can use the same user exit to get client info now ?
    Thnx and Regards
    Sriram

    in the old days of forms 6i we created tons of java-applets for host-commands and so on.
    with the first version of webutil all the applets we created ourself were gone, because all functions were in the webutil-toolset.
    You can use it beginning with forms 9i. It's very good and easy to use. Look in OTN where the developer-downloads are
    Gerd

  • TS2363 ok, i get down to step 6 and copy and paste "C:\ProgramData\Apple Computer\iTunes\SC Info" and it comes up folder emty? ideas..

    itunes will not open (win 7) followed instruction on a help forum. i get down to step 6 and copy and paste "C:\ProgramData\Apple Computer\iTunes\SC Info" and it comes up folder emty? ideas..

    Hi Mac Attack,
    My computer will not disconnect from the internet.  It seems to find a clone router and continues even when I shut down and unplug my my own home iy
    Your main question was 'chopped' in the title. Please reply in the body of a reply box with the full question and anything you have tried. And no, the long report was not helpful .
    If the same website is opening each time you launch a browser (Safari?) hold down the shift key as you launch to prevent previous pages from opening.
    Have a look at your settings in Safari > Preferences. Especially General and Privacy.
    Reset Safari to remove cookies and other stored data.
    System Preferences > General
    Have a look at your settings in System Preferences >  Security & Privacy.
    Call back with more questions.
    Regards,
    Ian

  • Cancel and keep workitem in ready state in user decision step

    Hi,
    In a user decision step,there is a default option 'Cancel and keep the work item'.
    Now clicking on this option, the workitem goes into "Inprogress state"
    whereas i want to keep the workitem in "ready state"  after i click on the option 'Cancel and keep the work item'.
    I am trying to modify the Process method of Decision Object type to incorporate this funcationality by using FM "SAP_WAPI_PUT_BACK_WORKITEM.
    but im getting the error that this FM cannot be used at runtime.
    Place where im trying to call this FM:
    After the FM'SWU_PROCESS_MANUEL_DECISION'
    I am getting the value of RESULT.
    If result is SPACE or sy-subrc is not 00 then i am calling this Fm which takes Wi_id of the userdecision as input.
    Kindly help
    Regards

    Hi,
    Let me ask you this. Why you need to have this in "Ready" state, Not in "IN PROCESS" state. Anyway, the witem is still there in the user's inbox, and if you have any deadline monitoring, then this is also taken care with "Cancel and keep xxxx". So, i think, functionally you'll still be better with the existing functionality.
    And, with all this, if you are still trying to change, then i think it's NOT possible. If i understand correctly, you are trying to use the FM "SAP_WAPI_PUT_BACK_WORKITEM" within the PROCESS method. And, if you understood the functionality of how this works, you are trying to set the status of the SAME witem for which you are executing the PROCESS method.
    THe way i understand the behind-the-scenes process, once you make a decision and save, this method is the one which in turn sets the witem status. And within that, you CANNOT capture the status as it is yet to be posted to the Witem tables.
    Probably, after this decision step, use a different background task with the above FM to set the witem status to "Ready", BUT NOT IN THE SAME METHOD of PROCESS.
    Also, it's not advisable to change this std. method.
    Hope this helps you. Reply,if you need more info.
    venu

  • Changing a username in Active Directory - does this update People picker, User Info List etc?

    What happens in SP2013 when a user gets married and changes their name in AD?
    My understanding is that after a full  (?) User Profile import and a People crawl (Full/inc?) - their display name in SharePoint will be updated but in SP2013 do the entries in People picker and User Info Lists also get updated or are their manual steps
    that have to be taken?
    Thanks
    J

    First, User Profiles will be updated after the next incremental sync.  SP 2013 only does Full User Profile syncs manually.  A full sync is not really required.
    Second, there are two timer jobs that will sync the user profile with the user lists in each site collection.  The "Quick" job only syncs new users, while the "Full" job should sync all user changes.  The "Full" job
    runs hourly by default.
    Third, the people picker should be getting its info from AD, although there is some caching that goes on.  So it should pick up the change from AD when the cached information ages out.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Ignoring Keys in "Get Digit String" steps

    I have a "Get Digit String" step to allow users to press '1' to bypass some announcements.  The Prompt for this step is set to play the announcments.  On the Input tab, I've set Maximum Retries = 0, so that I don't hear "Are you still there?" after the announcements play.  On the Filter tab, I've set only the '1' key as a valid option.  I've also set the Input Length = 1.  What happens is that if any key other than '1' is pressed, then the Unsuccessful branch executes, and the announcements are terminated.  But I only want the announcements terminated if the '1' is pressed.  All other keys should just be ignored, and the announcements should continue playing.
    Any ideas on how to get this done?

    That's not possible for one simple reason.  The script executes in a serial fashion.  One step at a time.
    What you are asking requires asynchronous activity.
    In one instance you need to play a message, and in another you need to validate user input.
    From what I can think of, your best solution is to eliminate the exclusivity of the number 1 and just allow any digit.
    I did think of an alternate method, but it requires greater knowledge of CallManager an MOH sources.
    Here's an example:
    2 CTI Port Groups, 1 for the call to land on, and 1 for your to redirect to which has a special MOH source that plays messages to the caller.
    Call comes in on port group 1
    You process some info
    You redirect the caller to the messages phone number in port group 2
    Place Call Hold
    Get Digit String (filter "1")
         Success
              Call Unhold
              Call Redirect somewhere else
         Failure
              Loop Get Digit Step
    EDIT:  Again, I want to stress that this method requires exceptional knowledge of CallManager's ability to handle MOH.  There's a lot to consider on this one.

  • Restoring Old User Info and programs

    Hi, I just got my macbook back from repair and the harddrive is wiped clean...had to start over with new user name and registration.
    Before I sent it away (again), I backed up my user profile on a firewire drive.
    How do I properly re-install this old user information?
    Can I still install and use all my new programs saved in old User?
    What do I need to be careful of?
    Old User info is in 10.4.7---clean Mac back from repair in 10.4.6
    If someone could give me a step-by-step sort of reply or point me in the direction of a support article I'd really appreciate it.
    Thanks

    Fritz,
    All the info you need is contained in this kbase article, but there is one item from this article that is somewhat out of date....
    When you get to the section of the article that describes the 2 commands to use in Terminal, use this single one instead:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">chown -R username:username /Users/username</pre>
    In the above command, you will replace all instances of "username" with your own short name. So, if your short name is "fred," for example, you will type the following exactly:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">chown -R fred:fred /Users/fred</pre>
    Otherwise, follow all the directions for "manually" restoring your HOME folder.
    Keep in mind that this will not reinstall applications that you had installed before. It will, however, restore all of the settings and data for those applications. Once you have reinstalled the applications, themselves, you will be right back where you were.
    Scott

  • Help! I know nothing and need to get my info from my Curve onto my Pre

    Ok first off I know nothing so please don't use any techincal terms or assume that I know what an OS something is because I promise I don't.  What I need is to simplely get the info off my Blackberry Desktop Manager onto my new Palm Pre.  I've been at it for days and trying to decipher all the lingo on here and I guess I'm not smarter than a 5th grader because I can't figure it out.
    What I need to know is step by step instructions.  Don't tell me I can save 19.99 if I do certain steps myself because I really just want the easy way out.  Please people have pity on me - I can't even figure out my kids PS3.
    So I don't have anything important in Outlook or any other program than my Blackberry Desktop Manager.  I appreciate any help from those willing to help my lost self.  Thanks a bunch!

    In order to transfer your data to the PRE you will need to have your data in Outlook. Once you have your data in Outlook, you can use the Palm Data Transfer Assistant to transfer your data to the PRE.
    Here is an article on how to setup your Blackberry to sync with Outlook. If you have trouble with this, you will need to call Blackberry support for assistance.
    http://www.ehow.com/how_4502616_sync-outlook-blackberry-via-usb.html
    Once you have the data in Outlook, you can call Palm for setup assistance at the following number, 1-866-750-PALM.
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://kb.palm.com/wps/portal/kb/na/pre/p100eww/sprint/home/page_en.html
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.

  • I keep getting ' user not register for online ' when trying to get track names for my CD imports for Windows 7

    I keep getting ' user not register for online ' when trying to get track names for my CD imports for Windows 7 and I'm unable to find a solution.

    I can't be certain exactly which steps are going to be needed in each case, but if you work through this in sequence hopefully one of the steps will prove effective.
    First try this:
    With iTunes closed.
    Press the WinLogoKey+R
    Type in %appdata% and press return
    Double click on Apple Computer
    Double click on iTunes
    Delete the file CD Info.cidb
    Start iTunes and try again.
    If that doesn't work close iTunes and try deleting com.apple.iTunes.Gracenote.plist in the same folder.
    If that doesn't work close iTunes and try deleting iTunesPrefs.xml. This will reset your some of your preferences in iTunes so be sure to check them and reset as required.
    If that still hasn't resolved things close iTunes and try deleting the entire %appdata%\Apple Computer folder or look for parallel files/folders in the C:\Users\<User>\AppData\Local or C:\Users\<User>\AppData\LocalLow in case a corrupt file is persisting there.
    Note that any iOS device backups are stored in the MobileSync folder within Apple Computer. Once things are working you should backup your devices again as soon as possible.
    Or it might not be the preference files after all...
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

Maybe you are looking for