Substitution: Personal Number, No User ID

Hi All ,
      I am in a strange situation. I have a requset from an enduser. he says  his personal number is 12345678 but there is no user id attached. Now the request is to maintain a substitute for him. I have 2 questions:
1. Will he be getting any workitem ? I mean without any user id ?
2. If yes then how do I maintain a substitute for a personal number ?
Thanks in Adv
Anuj Sethi

Hi Anuj Sethi,
Without a user id he will nog get any workitems. And I don't think it will be possible to maintain a substitute for a personel number.
Regards,
Martin

Similar Messages

  • ESS Web Dynpro "Change Personal Number"

    Hi,
    we are using EP70 and ERP2005.
    When I start the Web Dynpro "Change Personal Number", the user needs to type in the personal number he want to change to.
    Is there a chance, to make this an F4 Input help field, with interactive selection?
    TIA,  points guranteed

    it is not possible according to SAP

  • User-exit or BADI to fill cost center if we know personal number in FB60

    Hi experts,
    When we enter a vendor invoice in FB60, if we know Personal Number, can we get its Cost Center automatically from PA0001 when we press "Enter"?
    Is there an user-exit or Badi which can be triggered when we press "Enter" or how we do the configuration?
    Thanks for your helps.

    Hi
    I believe there isn't a BADI or EXIT allows to change item data, I usually use the exit to change the item text EXIT_SAPMM07M_001 (the BADI MB_MIGO_ITEM_BADI should be the same thing) where I change the data by field-symbols:
    FIELD-SYMBOLS: <KOSTL> TYPE MSEG-KOSTL.
    ASSIGN '(SAPMM07M)MSEG-KOSTL' TO <KOSTL>.
    <KOSTL> = .......
    Max

  • Hide all tabs in Personal Number Search Help

    Hi Experts,
    In Assest Master AS01, there is a personal number field. When user click on search icon from this field, system has to show only newly added elementary search help tab and hide all standard elementary search helps tabs tagged to Collective Search help PREM.
    Collective search help tagged to Personal number is PREM. I am able to hide all elementary search helps by adding some code in search help exit "HRMC_PREM_EXIT_A " and can see newly added search help. But with addition to this tab there is one more search help tab is apperaing. Name of the appered search help is "Free Search". I checked PREM but there is no any elementary search help with this name.
    The reason behind adding new search tab is user should not see sensitive data and personal details.
    Can anybody tell me how to hide this tab? Your suggation(any enhancement point) is highly needed for me.
    Thanks in advance!
    Regards,
    Meera.

    Hi,
    In the P_Pernr object for field, AUTHC add M as well. Refer the below link for more detals.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/ef/4aba3b3bf00152e10000000a114084/content.htm
    Regards,
    Gowrinadh

  • From personnel number to person number

    Hi,
    I do have user name and personnel number of an employee. How can I get the person number of this employee as it is used in address data, for example table ADR6? What's the link between personnel number and person number/address number?
    Regards,
    Robert

    Hi
    personnel number and person ID number are two different Terms.
    Personnel number is PERNR
    When a new employee is hired, the system automatically creates the external person ID and stores it in the Person ID infotype (0709).
    This is used majorly in the case of Concurrent employment
    Ravee
    +91.99206.33669

  • Tracking number of users online

    Hi all,
    I'm building a small application where I want to track and display number
    of users logged in to the system. I'm developing the system using form-based authentication
    on Tomcat.
    My initial idea was to create a user object for every user successfully logged in and then add a user object
    to a static array. I'm not sure but I guess there are better ways of tracking number of online users in the
    system.
    I've seen plenty of threads about sessions but failed to find something that helps me with this.
    If anyone can point me in the right direction or point me to articles discussing this, it would be much
    appreciated.
    Cheers
    Erik

    Hi ,
    Thank's for the posting of the code "a_sun". I haven't been able to make any posting until now (been occupied with other tasks).
    I've been implementing a HttpSessionListener just for testing (at the moment this class is counting number of users). This implementation works successfully.
    I still haven't been able to figure out how to pass the username from j_username FORM Authentication to my listener implementation.
    How can I get my SessionListener implementation to get hold on the username of the logged in person?
    When I was not able to solve this, I was thinking of an alternative solution and use the session application scope to store an array or map and then add the user there.
    I would be more comfortable with, if I could solve this using any of the event Listeners from the API.
    I've also been looking at HttpSessionAttributeListener and from my understanding this implementation should be triggered when an attribute is added to the session.
    I tried the following
    HttpSession session = req.getSession()
    session.setAttribute(("test", myName);My HttpSessionAttributeListener is never triggered when I do this. Any suggestions why?
    Thanks
    Erik

  • Maximum Number of users in a "User Group" (SU01/Logon data/User Group)

    All,
    My security person recently approached me with a problem she has regarding user groups.  She wants to assign user groups so that way division leaders/designees can handle password resets within their own area.  To do this she has started using the "User Group" field in SU01/Logon data.
    She's told me the maximum number of users she can add to a "User Group" is 30.  Can anyone else confirm this?  Is there a setting (profile or otherwise) to increase this limit?  Any DSN or outside reading that anyone can refer me to on this matter?
    Many thanks....

    > There is a little green clip board icon on the bottom right corner...
    I only get that after hitting the Authorization data button in SU10 and the the Multiple selection button next to the user. Ow, and it's not green, the upload from textfile button is
    By the way, hitting F4 on a user input field in SU10 will also provide you with the possibility to select more than 30 users in one go.
    Edited by: Jurjen Heeck on Dec 29, 2009 12:08 PM

  • CAT 2 Personal number field

    Dear All,
    I would like to make the personal number field unchangeable by users.
    I have maintained the parameter ID at SU3, than at CAC2 I have made the field
    CATSFIELDS-PERNR displayed. With this I am able to load the data there automatically.
    The problem is that the field is still changeable therefore all employees can record times
    to each others employee number. So the aim is to allow record working times to their own
    personal number.
    Any Ideas?
    Thank you in advance,
    Péter

    Hi Peter ,
    You can make the  CATSFIELDS-PERNR as display only .
    In Include LCATSF20 , click on Enhance icon , then goto EDIT -> Enhancement Operations -> Show Implicit Enhancements options . You can find the Yellow line at the end of the Include (Before the ENDFORM) . You can create Enhancement Implementation here with below code in place :
    Loop at screen .
    if screen-name = 'CATSFIELDS-PERNR' .
    screen-output = ON .
    Modify screen .
    endif .
    endloop .
    You can also try using SHD0 (creating Transaction variant) .
    Hope , this is helpful to you .
    Thanks and Regards,
    Sucharita Das

  • I know the personal number. How to know the address number on ADR* tables ?

    Hello,
    I know the personal number. How to know the address number on ADR* tables ?
    I need some information from ADR2 and ADR6 and I know the personal number (on PA30 transaction ).
    There's some MF or we can do it by some table ?
    Tks.

    Hi
    You can get the user name from PA0002 passing personal number.
    If you know user name you can go to USR21 table, enter login name and get  ADDRNUMBER value.
    Regards
    Yossi Rozenberg

  • CAT2 Personal number unlock ??

    Hi,
    We have web enabled the transaction CAT2 for filling in the time sheet from the Portal through ITS.
    The problem is that , when a user click on the time sheet link a number if times the prosonal number associated with that user id gets locked.
    We want to some how unlock this personal number from R/3 automatically after some time, say 20 minutes.The locked number can be seen by going to sm12.
    I tried changing the parameter ~timeout in global.srvc file but that does not seem to make any difference.
    We are on ITS 6.2 patch 17.
    Please help.
    Thanks in advance,
    Vivek

    Hello Edgar,
    Can I have a question as well according to the topic?
    I have an issue with cat2's personal numbers. I would like to make the "personal number" selection screen field unchangeable by users, and have the field automatically loaded. The aim is to allow record working times only for the user who actually signed in the SAP/ERP.
    Peter

  • How to find the number of users  connected to database from OS level(Linux)

    Hi All,
    Could anyone know , how to find the number of users connected to database without connecting with sql*plus
    is there any command to find it?
    example we have 10 databases in one server, how to find the number of users connected to particular database without connecting to database(v$session)?
    oracle version:- 10g,11g
    Operating System:- OEL4/OEL5/AIX/Solaris
    any help will be appreciated.
    Thanks in advance.
    Thank you.
    Regards,
    Rajesh.

    Excellent.
    Tested, works as long as you set the ORACLE_SID first ( to change databases )
    ps -ef | grep $ORACLE_SID | grep "LOCAL=NO" | awk '{print $2}' | wc -l
    Thanks!
    select OSUSER
        from V$SESSION
    where AUDSID = SYS_CONTEXT('userenv','sessionid')
        and rownum=1;Best Regards
    mseberg

  • How to find maximum number of users we can assign for Hyperion Planning.

    HI,
    How to find maximum number of users we can assign for Hyperion Planning.i.e., how to find license limit in hyperion planning 11.1.2.1.
    In Essbase propreties, the system is showing maximum planning users could be 65535.
    what would be the number for concurrent scenario?
    Thanks
    Giri
    Edited by: Giriprasad on Jun 18, 2012 2:18 AM

    The number of users would be based on your license agreement with Oracle, the system is not aware of your license agreement so it is up to you to stick to it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How do I find the number of users logged on another server?

    I'm trying to ping other servers and find the number of users logged on that server. Any leads?

    Do you need maybe something like this?
    FINGER(1) UNIX Reference Manual
    NAME
    finger - user information lookup program
    SYNOPSIS
    finger [-lmMspho] [user ...] [user@host ...]
    DESCRIPTION
    The finger utility displays information about the system users.

  • How do I find the number of users returned by a cfldap query?

    How do I find the number of users returned by a cfldap query?
    I'm not allowed to do something like:
    <cfif ArrayLen(results.rows) gt 1>
    I then get an error:
    faultCode:Server.Processing faultString:'Unable to invoke CFC - Object of type class coldfusion.tagext.net.LdapResultTable cannot be used as an array' faultDetail:''
    Many thanks for any light you can shed

       Cheers again Ian for your many helps,
    it now won't let me do
    <cfqueryparam value="#results.USNCreated#" cfsqltype="cf_sql_varchar">
    I get the message:
    faultCode:Server.Processing faultString:'Unable to invoke CFC - Error Executing Database Query.' faultDetail:'[Macromedia][SQLServer JDBC Driver][SQLServer]The name "results.USNCreated" is not permitted in this context. Valid expressions are constants, constant expressions, and (in some contexts) variables. Column names are not permitted.'

  • How to find out total of number of users accessing Hyperion Planning applications ?

    Hi All,
    Could someone help me with the details of how to find out total number of users who are accessing Hyperion Planning application in Env.?
    This is with regard to licenses so wanted accurate and unique information,
    Thanks
    Amith

    Hello Amith,
    I think you should have a look at the blog of Cameron Lackpour http://camerons-blog-for-essbase-hackers.blogspot.be/
    In the "Shared Services Stupid Trick" blogs, he shows how to find the real access to an application. The side benefit is that it is amusing to read.
    In how far this is OK for the licenses is written on another page. You likely need to use the same method as Oracle does. Ask the Salesperson how to do this. (I am curious what his/her reply is).
    Regards,
    Philip Hulsebosch.

Maybe you are looking for

  • Ipad mini bluetooth wont pair

    I have a ipad mini w/retina.  Suddenly it won't pair on bluetooth with my keyboard.  I've cold started and tried several different keyboards.  I see a message that lasts less than a half second giving the digit code but then a message overwrites that

  • How to configure objective function for use in minimizati​on?

    Hi all, I have been working on a minimization problem (for details, see this post).  I have figured out how to run an unconstrained minimization, but can't quite figure out why my objective function wire remains broken.  Here is a screen shot: Any id

  • Split() questions

    I have tried to read regular expression (regexp) tutorials but I don`t really see how to do what I want. What I want is to have "One" printed above "two" and that printed above "three" without doing System.out.println(temp.trim()); in the for-each lo

  • Cineware opening error

    When I`m trying to open Cinema4d Lite through after effects it shows me this error: Anyone have solution for this? Thank you.

  • CCM 5.1: How to re-send the CDR to Billing Server

    Dear Sir, When the SFTP is broken and re-connected, the CDR manager does not re-send the CDR records that generated during the connection broken time. How can I or CCM re-send these records to Billing Server again to keep the Billing Report Coorect?