CUP -Can we use refrence user ?

Hi Everyone,
Is there way to request access in CUP saying same as XYZ users , I mean to say can we request access using refrence user
can we create a custom tab for this?
I would appreciate any input from you r experience
Thanks in advance

Hi Alpesh
What I am trying to ask is it possible via CUP to request access for user A  saying
give user A same access as user r B.
In other words as you said , copy other user's access.
I think you have ansered my question that we can , and how can we do this? , as I was unable to see the option in  "create request" screen
Thanks for your input
Regards
PKK

Similar Messages

  • Find My Phone - can I use same user + password for 2 phones?

    Just loaded the "Find My Phone" App on my new iPhone 4 and set it up. What a great tool for locating a lost iPhone. The only problem is that my wife and I have a joint mail and apple ID account.
    So, my question is can I use Same user name (mail account) and password for TWO iPhone 4's (mine and wifes)? I assume that would work since each phone has a different serial number, and it seems to be ok when connected to my computer to sync each phone separately.
    Any help would be appreciated, thanks.

    My phone was stolen a few days ago. It must be flat by now, I have had it locked by my service provider, Find my Phone still works but says it's in Sydney, I live in Melbourne. Is this accurate? How can it still find the phone if it's not on?

  • How can i use exisitng user data(Id, password) for user mapping

    Hi All,
    For User mapping , we can import user mapping data for many users from user administration. and for each user
    we can maintain mapping data in the standard format.
    eg:
    [User]
    uid=user2
    $usermapping$:BCE:user=ext_user2
    $usermapping$:BCE:mappedpassword=password
    i am clear till this point.
    this all works if we know the userid and passowrd on the system 'BCE'.the passwords on the system 'BCE', are encrypted . so there is no chance for me to know the passwords.
    so how can i use the existed userid/passowrd on the system 'BCE' for the mapped user and mapped password on the portal while doing usermapping.
    Thanks in Advance,
    Lakshmi

    Hi,
    I think this should work.
    1. Setup SSO with SAP logon tickets first. How to do this is described many places, e.g. http://help.sap.com/saphelp_nw04/helpdata/en/d3/41c8ecb31d11d5993800508b6b8b11/content.htm
    This SSO will not work at first, because the username is different in the back-end system. So what you need to do is to get the back-end username into the ticket (don't need a password because that is done by the SAP logon ticket)
    2. Create a portal component which uses the usermanagement API to create a usermapping which only consists of the username and a blank password. You can do this manually I think if you have no reference system defined.
    IUserMappingService umap =(IUserMappingService)PortalRuntime.getRuntimeResources().getService(IUserMappingService.KEY);
    //this is the currently logged in user. You might another user
    IUserContext user = request.getUser();
    //Get the existing data (think it can be null)
    IUserMappingData userMapping=umap.getMappingData(systemAlias, user);
    HashMap map = new HashMap();
                             map.put(IUserMappingService.UMAP_KEY_USER, backEndUserName);
    //add blank password               map.put(IUserMappingService.UMAP_KEY_PASSWORD, "");
    //store the values                    userMapping.storeLogonData(map);
    Voila, this should allow you to do SSO using SAP logon tickets, but with another name that you use against the portal. I am uncertain if this will work if you have multiple usermappings in the sap logon ticket
    PS since the sap logon ticket is issued at logon time, you need to relogon to get the changes done by the code
    Regards
    Dagfinn

  • When RFC uses, Can I use common user

    Hello,
    I plan to use RFC that is link between R/3 to external System.
    The system I'm thinking is that R/3 is the data storage target, external System is the Data Input.
    So, I use RFC to call function Call from external System.
    Now,The things I don't know is,
    When I use Common User for calling RFC, All I need is one Common User license, Is that possible?
    The external System is used by a lot of users.
    Should I pay a lot more license fee than one common user.
    Thanks.
    Regards
    Koji

    Hi koji,
    1. The user in sap is  important.
    2. when we use bapi,
      we have to provide the user
    (which is already in sap)
    3. That use should
       have rights to
       do that transaction in sap,
      (other wise bapi will give error)
    4. There is no concept of common user.
       There is only one user, one user,.... etc.
    5. The user who uses the bapi to post data,
       should provide his own
      user id and password (of sap)
    regards,
    amit m.

  • How can I use active user session that's in an application scope Hashtable?

    First of all, is it possible to use the same session after a user exits and then returns?
    Second, if it is possible, then please tell me what I need to do. So far, this is what I have been doing...
    1.) The user submits login credentials
    2.) The user is authenticated.
    3.) The user does not have an existing session, so a new one is created.
    4.) The user closes the browser.
    5.) The user returns to login page and submits login credentials.
    6.) The user is authenticated.
    7.) The user has an existing session, so it should be used.
    This is where I'm having trouble. All active sessions for my application are stored in a Hashtable. I have been using <%@ page session="false" %> so that a new session is not automatically created. Each time before I create a new session, I check my Hashtable to see if that user has an existing session. If a session exists for that user, then I would like to continue using that session if possible. I have used the methods request.getSession() and request.getSession(false), but a new session is always returned.
    I could create a new session, copy the attributes from the old session(which is stored in my Hashtable) to the new session, and then invalidate the old session, but I'd rather not do that.
    Is there a way that I can use existing sessions that I have stored in my Hashtable?

    First of all, is it possible to use the same session after a user exits and then returns?No, I don't think so. Let me explain why. When the server creates a session object for each client, it needs to know which client is making the request. Remember that HTTP is a stateless protocol. Every time a client makes a request, it sends some sort of session id to the server to let the server know who is trying to make the request. The server will then check to see if a session object exists for that particular client and if so, it will make sure that the max inactive interval (maximum time alloted for that client's session) has not been exceeded. If every thing is okay, then the client can access the session object to get values that were previously placed there. There are many ways that servers try to keep track of clients. One way is to have the clients write the session ID using cookies. But, many people like disallow cookies. So some servers do what is known as URL rewriting. That is, they will write the session ID on the end of the query string. This can also be accomplished programmatically, but it can be taxing to do. Anways, the point is that the client and the server have to have some sort of link between each other and that link is the session ID. So, if the browser is closed, the session ID is lost. That particular client will be forced to get a new session ID the next time the following code is executed:
    //create a session object and set its values
    HttpSession session = request.getSession(true);>
    Second, if it is possible, then please tell me what I
    need to do. So far, this is what I have been doing...
    1.) The user submits login credentials
    2.) The user is authenticated.
    3.) The user does not have an existing session, so a
    new one is created.
    4.) The user closes the browser.
    5.) The user returns to login page and submits login
    credentials.
    6.) The user is authenticated.
    7.) The user has an existing session, so it should
    be used.If you really want to do something like this, you could make up your own ID and store it as a cookie on the client. I've never tried anything like this before so you would have to do your own research. Are you sure you want to do something like this. There is a reason why it works the way it does. There is also a reason why you want to keep the session timeout value some what small. Let me give you an example of some craziness with sessions. A client we once had wanted to keep their sessions open for 4 hours because they said there clients simply did not like to log in all the time. I nearly gasped when I was told we needed to do this. When you make the session time out large (i.e. the maxInactiveInterval( )), then session objects stick around longer in the server. Let's say a client logs into the server and receives a session object. Then, the client makes a few requests. The server knows to keep the session alive as long as the time between requests has not exceeded 4 hours. Then the client closes the browser. How is the server suppose to know that the browser was closed. Well, it doesn't. It just knows to check times between requests. So, that particular session object won't be garbage collected until the session times out. What if a whole bunch of clients did this. Yucko. The server would have a whole bunch of session objects living in memory. What a waste. This is all above and beyond the typical security problems that can arise from having a session open for so long. To make a long story short, you really shouldn't do what you are trying to do unless it is the nature of the app.
    >
    This is where I'm having trouble. All active sessions
    for my application are stored in a Hashtable. I have
    been using <%@ page session="false" %> so that a new
    session is not automatically created. Each time
    before I create a new session, I check my Hashtable
    to see if that user has an existing session. If a
    session exists for that user, then I would like to
    continue using that session if possible. I have used
    the methods request.getSession() and
    request.getSession(false), but a new session is
    always returned.
    I could create a new session, copy the attributes from
    the old session(which is stored in my Hashtable) to
    the new session, and then invalidate the old session,
    but I'd rather not do that.
    Is there a way that I can use existing sessions that I
    have stored in my Hashtable?

  • How can we use two user certificates at a time?

    Hi,
    I want to use two different user certificates for two different trading partners. Can we keep two private keys in single wallet and use those simultaneously? In our case our two trading partners are using different CA's certificate and we are forced to use two private keys.
    Please tell me that is there any way by which I can manage two private keys at a time in single wallet?
    Please help.
    Thanks & Regards,
    Anuj Dwivedi

    a. How To Extract A Private Key and Certificate From A Wallet
    Oracle does not provide any functionality within Wallet Manager, or otherwise, to do this. However this can be achieved using OpenSSL.
    - If a Linux server is available, OpenSSL is usually installed by default (/usr/bin/openssl). If not you can download it from www.openssl.org
    - To extract the key and certificate from the Wallet run:
    openssl pkcs12 -in ewallet.p12 -passin pass:<wallet_password> -out ewallet.txt -nodes
    - The resulting ewallet.txt is a file that contains the unencrypted private key, the certificate and all the root CA's in the wallet. Then the relevant information for the key, and certificate(s) can be copied to separate files to create the individual key and certificate(s)
    b. How to Convert a Certificate and Private Key to an Oracle Wallet
    SSL2OSSL (UNIX) and OSSLCONVERT (Windows) are tools that allow you to convert Private Keys and Certificates to an Oracle Wallet format. This format is required for Oracle Application Server. $ORACLE_HOME/Apache/Apache/bin/ssl2ossl
    Points to Note:
    * Even though capath, cafile, and chain are optional, at least one must be specified.
    * All the certificates that are being converted must be in base64 format.
    * If you are converting a self signed certificate, running ssl2ossl/osslconvert does not import the certificate as a Trusted Certificate. Therefore it is necessary to import the certificate as a Trusted Certificate in Wallet Manager after its converted, otherwise the Wallet will not work with Application Server.
    usage:
    $ ssl2ossl -cert /<path>/server.crt -key /<path>/private.key -cafile /<path>/rootca.crt -wallet /ssl/wallet -ssowallet yes
    Enter wallet password:
    Verifying password - Enter wallet password:
    SUCCESS
    This will create a ewallet.p12 file in /ssl/wallet

  • Can't use local users after they are created

    I have a mid '11 macbook pro, with OS X Lion w/ Server functionality installed on it from Apple, so far no third-party server apps/functionality.  I have been using Macs and *nix style systems for some time and haven't this specific problem before on lion or previous versions.  I have used the server app but never had any problems before. 
    Ok, so my actual problem: I create local user accounts, through the system preferences pane, configure parental controls and everything that needs to go along with the new accounts, have fast user switching enabled and can see the icon up in my status bar but it will not let me switch to another user account at all.  Even upon a fresh boot, I don't have a list of users or anything that might let me select anything other than my main admin account.  I do not want to keep using the local admin just because (for possible security reasons) and I am trying to allow family members access to the computer as well with these accounts and it just isn't working (with all known pertinant options checked).
    Please help me with this, if there are any screenshots you would like I can provide you with necessary info. 
    Thanks in advance!!!
    -cj

    See this...
    Songs Missing When Browsing By Artist
    btabz

  • Can I use the User Name in Aut. Objects's value

    Hello everyone, I need to know if is possible to use a variable with the SAP User Name in values of the Autorization Objects in some roles.
    Thank you to everyone
    Maximiliano Valin

    Thanks Ruchit, I misread your post.
    There are infact some special cases where the system does infact check to see whether not only the job step user is authorized, but also the job scheduler.
    * Intercepted jobs are only released only if the current user
    * has proper authorization.
      DATA: wa_tbtccntxt LIKE tbtccntxt.
      GET TIME.
      DATA: wa_tbtco LIKE tbtco.
      SELECT SINGLE * FROM tbtco INTO wa_tbtco
        WHERE jobname  = jobname AND
              jobcount = jobcount AND
              status = btc_scheduled.
      IF sy-subrc = 0.
        IF global_job-status = btc_scheduled AND
             ( NOT dont_release IS INITIAL AND
               ( release_stdt-sdlstrtdt < sy-datum OR
                 ( release_stdt-sdlstrtdt = sy-datum AND
                   release_stdt-sdlstrttm < sy-uzeit
             ) OR
             dont_release IS INITIAL
          IF sy-subrc = 0.
            SELECT SINGLE * FROM tbtccntxt INTO wa_tbtccntxt
              WHERE jobname  = jobname AND
                    jobcount = jobcount AND
                    ctxttype = 'INTERCEPTED'.
            IF sy-subrc = 0.
              AUTHORITY-CHECK OBJECT 'S_RZL_ADM'
                       ID 'ACTVT' FIELD '01'.
              IF sy-subrc <> 0.
                ret = err_no_authority.
                RAISE cant_start_job_immediately.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    Kind regards,
    Julius

  • User Variable Options: How can I use them in a Business Rule?

    How can I use a "User Variable" set in File / Preferences in a Business Rule? It doesn't seem to appear as an Essbase Substitution Variable or as a Global Variable of Business Rules. The only way I know how to use it is to place the dimension on the POV or Page dimension of a data form, then use a Global Variable in a run time prompt to pick the member and run a BR against it, or some function of it.
    What do I do if I want to have that dimension in Columns or Rows? How can I set a BR to directly reference the member chosen under User Variable Options?
    J

    Thanks Alp, but I can't seem to reproduce what you are writing below. I want to refer my Business Rule to address the value set in File / Preferences / User Variable Options; no matter what members I show elsewhere in the data form.
    My other workaround is through a run time prompt and hope the user selects the appropriate user variable at the very bottom of the selection list in order to calculate the appropriate list of members.
    J

  • Parameter Form-How to use a user parameter to retrieve list of values for another par

    I am developing a report in Reports 6i. There are 2 parameters on parameter form namely year and month.
    LOV for Year is retrieved from database. After user selects a value from LOV for year, I want to retrieve another LOV for month parameter based on selected year. That is how can we use a user parameter's value to dynamically retrieve an LOV for another parameter on the same parameter form.
    Pl. guide.
    Thanks in anticipation.

    You can't restrict the "List of Values" of one parameter based on the value of another parameter within the Reports Builder/Runtime parameter form.
    The SQL select statements within LOV's are only executed once. They aren't re-calculated when you enter, leave or change other field values in the parameter form. This is mainly because there is no event model in the Reports parameter form and it only supports basic form functionality.
    To do what you're after in a client-server environment you need to create an Oracle Forms "parameter form" and use that to execute the Report using the run_product() call. Actually, you should probably use Oracle Forms for any more generic "form" functionality such as radio buttons or check boxes.
    If you're in a Web rather than Client-Server environment, it may be easier to create a JSP based parameter form. You can then use Reports 9i since it has JSP support to assist here.

  • CUP Password Reset funtionality requires users to login using password

    Hi All,
    CUP Password Reset is requiring users to enter user ID and password before resetting the password. Basically, if a user forgets his password, he needs to enter his password to reset it (in other words, it doesn't work).
    Anyone have thoughts on how to resolve this?
    I'm running GRC AC 5.3 SP12.
    CUP is only password reset functionality.
    No LDAP is connected.
    User Master Source is SAP UME.
    Authentication Source is SAP UME.
    Thanks,
    Pete

    Why not?
    You can configure CUP not to require login and use challenge response for resets.
    In my opinion this is the least preferrable option, as it requires every user to register and will move support effort from resetting passwords to resetting password questions, which users tend to forget just as often.
    It also leaves the possibility for imposters to register (as you don't require a login...) which allows you to reset any password if you're fast enough...
    I'm sticking to my recommendation - LDAP authentication is the best option.
    Frank.

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

  • How can I allow multiple users on XP pro to use the same itunes files

    I'm new to this iPod/iTunes stuff and i would like to allow my family to use all the songs that I have on the computer. I installed iTunes 7.0 and loaded all 1800 songs using my user profile. I then let my wife signon and when i opened iTunes she couldn't see all the songs. I placed the iTunes directory in the /All Users/Shared Documents/shared music folder and i made the change to the iTunes preferences.
    Other users on the same machine still can't see all the music.
    What am I doing wrong?

    You're half-way there, GrezGolfer.
    To get to the finish line, make sure it's the iTunes Music folder, not the iTunes folder, you've put in the Shared Documents folder. (see http://docs.info.apple.com/article.html?artnum=93195 for details.)
    And finally, follow the instructions in the last part of that Knowledge Base article for each user - File menu > Add Folder to Library ...

  • HT204053 i RECENTLY PURCHASED ANOTHER IPHONE.  MY INTERNET IS NOT WORKING.  I JUST CREATED AN APPLE ID.  WHAT'S NEXT?  I NOW HAVE TWO DIFFERENT ACCOUNTS WITH DIFFERENT USER NAMES.  HOW CAN I USE ONLY ONE ACCOUNT FOR ITUNES, ICLOUD APPLE ID ETC???

    I RECENTLY PURCHASED ANOTHER IPHONE.  MY INTERNET IS NOT WORKING.  I JUST CREATED AN APPLE ID.  WHAT'S NEXT?  I NOW HAVE TWO DIFFERENT ACCOUNTS WITH DIFFERENT USER NAMES.  HOW CAN I USE ONLY ONE ACCOUNT FOR ITUNES, ICLOUD APPLE ID ETC???

    Welcome to the Apple community.
    iTunes and iCloud and different accounts, you will need to delete both accounts from your device before adding the new details in their place.
    For iCloud go to settings > iCloud, scroll down and hit the delete button. You can then sign back in using your correct details. For iTunes go to settings >store, tap your account ID and then sign out, you can then sign back in using your correct Apple ID.

  • Can I use external APIs to authenticate users?

    I have been asked to develop a lightswitch application either as desktop client or HTML client. Now I am confused about the authentication
    mechanism in LightSwitch, and it leads a question: Can I authenticate my users from an external website or application?  
    For the HTML client, I have been thinking that whether I could use external APIs like Facebook Login API to authenticate my users? If I could, the code should be JavaScript, then where should I put it, and how can I configure my LS application?
    For the desktop client, same question, if I could identify my users by pulling some user information from an external website, what kind of code/Programming Language shall I use? 

    Hey ConnorTx!
    This is not supported out of the box.
    For in-browser desktop applications, you can hack around this by setting up the social media credentials, then redirecting to your desktop application while passing the self-encrypted credentials.  I explained this workaround in
    this article.
    I don't have enough production experience with HTML apps yet.  However when you use Forms authentication, I suspect you can simply fill in the IPrincipal on the HttpContext.Current, then redirect to your HTML app, and the LightSwitch Forms Auth mechanism
    would pick up your principal as valid credentials.  I wish I had time to show you some code for this, would make a great blog post :/
    Keep rocking LS!
    Jan
    It's your story - time to switch on the innovation.||About me||LightSwitch blog

Maybe you are looking for