Get user name in different DAD not portal

Hi,
I have the portal in dad portal. But i need create other DAD with name SCOTT acess other Remote Database. I need, in dad SCOTT, get username.
Marcio Mesti

check this out it might be helpful
http://oracle-magic.blogspot.com/2006/12/who-is-connected-to-my-apps.html
fadi hasweh
http://oracle-magic.blogspot.com/

Similar Messages

  • I receive an error stating user name and password are not valid on my ipad and iphone 3Gs when attempting to load email from my icloud account. When I log onto icloud from my Mac, it wont load the email either.

    One day, my ipad and iphone pick up my emails (.mac account) from icloud just fine. the next day, I recieved error messages that say my user name and password are not accurate. I removed the icloud program on both devices and added it back on to both devices and get the same message. I logged into icloud from my Mac and while I can log in, it times out when I select email and wont load the email there either. Any Suggestons?

    I am having the same problem; it started about 24-36 hours ago.
    I know my ID/PW combo are correct because I can access all other aspects of iCloud except mail.
    iPhone -- returns incorrect ID / Password
    iPad -- Same
    Mail.app on Mac -- returns incorrect password error
    icloud.com -- allows me to log in and use all functions accept mail.  When I try to use mail it stays on a white screen for about 60 seconds then returns a dialogue box that indicates a server error.
    I contacted Apple and they placed my iCloud account into something called "Troubleshooting" mode.  They generated a new strong password and sent it on to "Engineering."
    I suspect there are a small number ofo users like you who are affected with the same problem I am.  Too small a number for it to be reported as an outtage.  I suggest you call Apple and open a case to have your mail investigaged.
    Hope this helps...

  • Getting user name from sopa header

    How should get user name from soap header in my udf...?i searched in sdn,but not get exact solution...

    I din't get this with SRemoteUser
    1. i've enabled " Do Not Use SOAP Envolope"
    2.Enabled ASMA
    3.Variable Transport Binding .
    used the following code as well:
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey user = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/SOAP", "SRemoteUser");
    conf.get(user);
    But not value in it.. Correct me if iam wrong..

  • BAPI to get user name

    Hi ,
    Is there any BAPI to get the user name while importing employee number ?
    input parameter : employee number
    output parameter : user name
    Regards,
    Pavani
    With a little more effort you would have
    found CATSXT_GET_USER_ID_OF_PERNR in
    your system
    Edited by: Suresh Datti on Sep 1, 2009 2:42 PM

    For this  BAPI_USER_GET_DETAIL   input parameter is user name .i want to pass employee number and get user name .
    i am looking for BAPI not normal functional modules.if there are any BAPIs pls send .
    Regards,
    Pavani

  • I have Microsoft Office within my user name, but it is not available for the other 2 users. What do I need to do to allow them access?

    I have Microsoft Office within my user name, but it is not available for the other 2 users.  What do I need to do to allow them access to the software?

    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macstart/how-do-i-ena ble-office-for-all-users-on-one-mac/38bd94cc-d26c-41c9-8471-ee87d63ebfc9?msgId=0 fbd6314-a12a-4fed-85f9-d939208095ff

  • I want is that I get  user name!

    Hi,
    Below are my two annotated classes, namely, Requisition and User, that represent two tables requisitions and users. What I want is that I get
    to get username from users table in my requisition query instead of user id which is stored in the requisitions.request_by.
    Table field requisitions.request_by hold the ids of users ,ie, users.id values.
    Here are my tables:
         users
                   + id int(11)
                   username varchar(15)
                   password varchar(15)
                   role int(11)
                   last_login timestamp
         requisitions
                   id int(11)
                   post varchar(50)
                   + request_by int(11)
                   platform varchar(50)
                   experience_required int(11)
                   comments text
                   date_requested date
    Here is my Query for fetching requsition object in the RequisitionServiceimpl.java
         public List getRequisitions(User loggedInUser){
              Query queryRequsitions = em.createQuery("Select r FROM Requisition as r");
              List list = queryRequsitions.getResultList();          
              return list;     
    Below are my two annotated classes Requisition and User:
    import java.util.Date;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.PrimaryKeyJoinColumn;
    import javax.persistence.SecondaryTable;
    import javax.persistence.Table;
    import javax.persistence.JoinColumns;
    import javax.persistence.JoinColumn;
    @Table(name="requisitions")
    @SecondaryTable(name="users")
    @Entity
    public class Requisition {
         @Id
         private int id;
         private String post;
         @Column(name = "request_by")
         private int requestBy;
         private String platform;
         @Column(name = "experience_required")
         private int experienceRequired;
         private String comments;
         @Column(name = "date_requested")
         private Date dateRequested;
         // Name from users Table
         @Column(table="users", name="username")
         private String username;
         public int getId() {
              return id;
         public void setId(int id) {
              this.id = id;
         public String getPost() {
              return post;
         public void setPost(String post) {
              this.post = post;
         public int getRequestBy() {
              return requestBy;
         public void setRequestBy(int requestBy) {
              this.requestBy = requestBy;
         public String getPlatform() {
              return platform;
         public void setPlatform(String platform) {
              this.platform = platform;
         public int getExperienceRequired() {
              return experienceRequired;
         public void setExperienceRequired(int experienceRequired) {
              this.experienceRequired = experienceRequired;
         public String getComments() {
              return comments;
         public void setComments(String comments) {
              this.comments = comments;
         public Date getDateRequested() {
              return dateRequested;
         public void setDateRequested(Date dateRequested) {
              this.dateRequested = dateRequested;
    // Only Getter for Users Table field username
         public String getUsername() {
              return username;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.Table;
    @Table(name="users")
    @Entity
    public class User {
    @Id
    private Long id;
    @Column(name="username")
    private String name;
    private String password;
    private int role;
    public String getName() {
    return name;
    public void setName(String user) {
    this.name = user;
    public String getPassword() {
    return password;
    public void setPassword(String password) {
    this.password = password;
    public Long getId() {
    return id;
    public void setId(Long id) {
    this.id = id;
    public int getRole() {
    return role;
    public void setRole(int role){
    this.role = role;
    Thank you,
    Adil

    I made this changes to Requisition.java and now I can get user name
    import java.util.Date;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.JoinColumn;
    import javax.persistence.OneToOne;
    import javax.persistence.Table;
    @Table(name="requisitions")
    @Entity
    public class Requisition {
    @Id
    private int id;
    private String post;
    @Column(name = "request_by")
    private int requestBy;
    private String platform;
    @Column(name = "experience_required")
    private int experienceRequired;
    private String comments;
    @Column(name = "date_requested")
    private Date dateRequested;
    @OneToOne
    @JoinColumn( name="request_by", insertable=false, updatable=false)
    private User user;
    public int getId() {
    return id;
    public void setId(int id) {
    this.id = id;
    public String getPost() {
    return post;
    public void setPost(String post) {
    this.post = post;
    public int getRequestBy() {
    return requestBy;
    public void setRequestBy(int requestBy) {
    this.requestBy = requestBy;
    public String getPlatform() {
    return platform;
    public void setPlatform(String platform) {
    this.platform = platform;
    public int getExperienceRequired() {
    return experienceRequired;
    public void setExperienceRequired(int experienceRequired) {
    this.experienceRequired = experienceRequired;
    public String getComments() {
    return comments;
    public void setComments(String comments) {
    this.comments = comments;
    public Date getDateRequested() {
    return dateRequested;
    public void setDateRequested(Date dateRequested) {
    this.dateRequested = dateRequested;
    public User getUser() {
    return user;
    public void setUser(User user) {
    this.user = user;
    Edited by: adilsun on Jul 23, 2008 8:36 PM

  • My gmail says I cannot recieve mail because my user name or password sure not correct they are correct what should I do

    Subject
    My gmail says I cannot recieve mail because my user name or password sure not correct they are correct what should I do

    setting>mail>click on your gmail account>delete account> add account> re add your gmail account

  • HT204053 I have an Apple ID and use I Cloud with my Ipad and Iphone. I am trying to publish a website from my macbook but my user name and password is not recognised when I try?

    I have an Apple ID and use I Cloud with my Ipad and Iphone. I am trying to publish a website from my macbook but my user name and password is not recognised when I try?

    Ken.Lloyd wrote:
    Sorry for the delay. System preferences icloud is not an option for me. Syst preferences mobileme is
    The minimum requirement for iCloud is Lion 10.7.2 - earlier systems don't show the iCloud preference pane. If you want to use iCloud you will have to upgrade to Lion or Mountain Lion (assuming your computer meets their requirements) but even so you won't be able to publish web pages to iCloud because it does not provide web hosting. This page examines that situation in more detail:
    http://rfwilmut.net/missing2

  • Get User Names and Mail Ids present in Exchange Server

    Hello All,
    Can we get all the names and mail ids present in the exchange Server global address book?
    I tried one example but it is giving error.
    Exception in thread "main" javax.naming.CommunicationException: [LDAP: error
                code 2 - Protocol Error]; remaining name 's=satheesh'
    Code is given below:
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://mailserver:389");
    DirContext ctx = new InitialDirContext(env);
    Attributes answer = ctx.getAttributes("s=satheesh");
    Any example code to get user names and mail ids will be helpful.
    Thanks in advance.
    Regards,
    Satheesh A
    [email protected]

    Hi Satheesh,
    I am new to LDAP. I am facing the exact same problem as you mentioned. Did you solve your problem?
    Thanks for any help you can provide.
    Hello All,
    Can we get all the names and mail ids present in the
    exchange Server global address book?
    I tried one example but it is giving error.
    Exception in thread "main"
    read "main" javax.naming.CommunicationException:
    [LDAP: error
    code 2 - Protocol Error]; remaining name
    aining name 's=satheesh'
    Code is given below:
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL,
    "ldap://mailserver:389");
    DirContext ctx = new InitialDirContext(env);
    Attributes answer = ctx.getAttributes("s=satheesh");
    Any example code to get user names and mail ids will
    be helpful.
    Thanks in advance.
    Regards,
    Satheesh A
    [email protected]

  • I using new ipad 32gb and i cant get user name and password how i configure it ? please give me solution

    im using new ipad 32gb and i cant get user name and password how i configure it ? please give me solution

    What do you mean 'can't get user name and password' ? What are you trying to do with your iPad and what happens when you do it ?

  • User name password prompt is not working

    Hi Experts,
    I have a screen in a BSP application in which , I have two links.
    These two links are the links to the screens of a different BSP application for which default username password is not set.
    But when I clicked the first link its prompting for the user name and password but its not happening for the second link.
    Its also vice versa.
    I checked the below link which explains about the way password details are prompt but I am not sure of how to handle this and have the prompt for username and password for both the links.
    http://help.sap.com/SAPHELP_470/Helpdata/EN/5a/f8b53a364e0e5fe10000000a11405a/frameset.htm
    Your inputs will be helpful.
    Regards,
    Gopal

    Hi,
    this sounds a case for Single Sign On, especially if you´re calling your 3 applications from the Enterprise Portal. You have to talked to your administrators for EP and SAP, since it is a complicated task.
    Try this link for more about the user and this link for SSO.
    after entering username and password for the first time, somehow the information remains alive event when you close your BSP application and call another one. This is a very bad security case if you´re moving your applications into production.

  • Install user name and passcode,still not OK to install FLASH PLAYER!

    I download FLASH PLAYER,but when I install it, it need me to input my user name and passcode, I done, but still cann't get through it.
    I have my own user name and passcode in ADOBE, but seems it is not match the Install FLASH PLAYER request, now I cann't open website any video.
    Pls help!

    There are countless topics here on this same page with the same question: you need to enter your computer's administrator id & password.

  • Getting user name (at command line argument)

    At the beginning of my program I need to prompt for the user name and then follow this with a welcoming message. Please help as I have not yet learnt this in my studies!

    When prgramming java, and surely when learning it, alway use the documentation. You ken find it @ http://java.sun.com/j2se/1.3/docs.html To do input and output with the console you need the java.lang.System (Doc are @ http://java.sun.com/j2se/1.3/docs/api/java/lang/System.html ). The system object has an open inputstream called in wich reads the standard input, normally what users type on the console. So System.in.read() will get you a char that is typed on the console.
    In your case it might be easier to create a BufferedReader.
    BufferedReader input = new BufferedReader(System.in); will create a buffered reader that reads from the console. The advantage is that you can now use input.readLine() to read a complete line (until return key is pressed).
    Succes
    AVee

  • Get user name

    Hi I need Labview to programatically create a file in the C:\Documents and Settings\"Username"\Application Data\ folder but i do not not how to find the user name.  I tried the "Get permissions' function but that returned nothing for the owner and group
    My only other choice would be to use the temporary directory filepath and work backwords but that is not very clean
    thanks

    Hey,
    Please open and run attached VI, this should help.
    Christian
    Attachments:
    Username1.vi ‏18 KB

  • Getting user name or password incorrect message when trying to access email

    I keep getting an incorrect user name or password message whenever I try to get into my mail. Also, my mail has not been updating anything since Thursday. I have the 1st edition iPad

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this: Delete the account in Mail and then set it up again.
     Cheers, Tom

Maybe you are looking for

  • Can i migrate w7 os to a new computer?

    hi, the issue that i am having here is that i am planning to buy a new mbp with the i7 processor. i understand that you can migrate your files and make it as if nothing happened by using the time machine option but that is for mac. i have boot camp o

  • ITunes (Win7 x64) is no longer opening after the latest version update

    iTunes (Win7 x64) is no longer opening after the latest version update - I have attempted an un/reinstall - can anyone offer other suggestions? I am running Windows 7 64-bit, and am trying to reinstall the 64-bit iTunes from the iTunes website.  I pr

  • Defining condition according to the new field of purchase order?(urgent!!!)

    hi all, i added new field to the table ekko (screen me21n). and now i want to define pricing conditions of purchase order according to this field. i create table and access sequence for condition type and define a condition record. but when i am crea

  • ASR9K Series devices inventory is not working.

    Hi all.  Inventory in CiscoWorks with new devices ASR9K Series is not working. CW version: LMS3.2.1. Device: ASR-9006 AC Chassis. Credentials correct. Can any help me? Screenshot1: inventory request fail. Screenshot2: RME knows Cisco ASR9006 Router.

  • The AirPort utility doesn't support my AirPort Express, now what?

    The Airport untility set up my new AirPort Express just fine, however, when I try locate my older AirPort Express to extend my network, it says the AirPort Utility doesn't support the older AirPort Express. It's there in the WiFi drop down menu and,