Same User Twice

Is there any way to merge a user with an existing login that exist for the same user. If I log in to a room and exit without disconnecting gracefully, and re-enter again with the same auth token I get a new user listed with number 1, 2.... etc added to the display name. Is there any way to configure this behavior so that a user re-entering with the same token is merged or replaces the original user?
Thanks.

There are two possible workarounds for this.
One would be to
Initially log into the room as the room owner for every client login.
The owner could check to see if this client is already in there by getting the user list and boot out the existing instance.
Logout from the room owner session and log back in again as the "real" client.
Another solution would be to use the server api to check the user list and retract the user if they are already in the room. This could be kind of messy because it would involve some handshaking between your client and server.
I am seeing this problem a lot more frequently now because the debug version of Flash 10.3 that I'm using seems to crash very frequently on both Firefox and IE. Any crash of the Flash Player causes the problem to happen.
If it was possible to add a boolean param to ConnectSessionContainer that allows to either
1. boot out the existing session or
2. create a second session for the user
That would be the idea solution. Is it possible that this could be added in the next release of the API or is a workaround the best way to fix this problem for now?
Thanks,
Barry

Similar Messages

  • Login twice in same apex app by same user not possible

    Hi,
    In itself it is possible to login twice by same user in same appl.
    But when using both apps on diff pages eachtime the user is prompted to login again.
    Why is that and why cant'w we use the app twice by same user.
    It is possible to use same app by same user twice
    Thanks in advance,
    Hugo

    I think it is probably due to your cookie and the session state. I cannot use IE or FF to access the same application twice with the same id, otherwise if I do different searches or change pages, the sesiion in the other window gets confused and starts showing session state varibale from the other window. This is with two different windows (not tabs) of IE or FF running.
    But, I can easily use IE, FF, and Chrome to access the same application with the same credentials, and everything will work as if I logged in with three different ids. I barely remember this 'problem' from 'the old days', and cookies had something to do with it. It "may" have been that the solution (in some cases, depending on what you and the app are doing), was during the authenication process that every app creates and uses a cookie with the same name.
    Hope this helps some,
    Bill Ferguson

  • Stopping of assignment of duplicate role in SU01 and same user in PFCG.

    Hello Experts,
    I have a requirement, wherein I have to restrict assignment of duplicate roles in the user master (SU01) also I should not be able to assign same users twice in the user tab in PFCG.
    Please advise...Thanks in advance.
    Best Regds,
    Suyog Chakot...

    Hi Suyog,
    There are two ways to do it:
    1 - PRGN_COMPRESS_TIMES
    2 - SSM_CUST .
    PRGN_COMPRESS_TIMES has its own limitation, it works perfect in Non-CUA landscape while have lot of issues in R/3 CUA landscape.
    SSM_CUST is universal and I guess it can be used in al landscape. CUA as well as NON CUA. Let us know if you need any more information on this.
    Just search with these two key words and I am sure you will get your reply.
    Edited by: sap.sec.akshay on Dec 30, 2009 6:55 PM

  • End user receving same mail , twice in a day .

    Hi,
    Throu this report , i am sending mail to a user. I the scheuld this program as background job.
    But My problem is end user receving same mail twice a day.I am sure , Program is executed onces in day.
    Plz help me to solve the problem
    REPORT  zplm008_tdr_mail_alert        .
    *DATA DECLARATION.
    DATA: it_ztdr TYPE TABLE OF ztdr WITH HEADER LINE.
    DATA  wa_maktx TYPE makt-maktx..
    *SELECTION SCREEN
    PARAMETER: p_date TYPE sy-datum DEFAULT sy-datum MODIF ID dat .
    *START-OF-SELECTION
    START-OF-SELECTION.
      SELECT * FROM  ztdr INTO TABLE it_ztdr
             WHERE  rlddt  = p_date.
      IF it_ztdr[] IS NOT INITIAL.
        LOOP AT it_ztdr.
          PERFORM send_mail.
        ENDLOOP.
      ENDIF.
    *&      Form  SEND_MAIL
          text
    -->  p1        text
    <--  p2        text
    FORM send_mail .
      DATA: lt_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                       WITH HEADER LINE.
      DATA:   ls_message TYPE char255.
      DATA: lt_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            lt_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            lt_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            lt_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            gf_cnt TYPE i,
            gf_sent_all(1) TYPE c,
            gs_doc_data LIKE sodocchgi1,
            gf_error TYPE sy-subrc.
          Adds text to email text table
      lt_message = 'Hi,'.
      APPEND lt_message.CLEAR lt_message.APPEND lt_message.
      lt_message = 'Requested design is released. Pls raise the TPR (If required to be ordered).'.
      APPEND lt_message.CLEAR: lt_message.APPEND lt_message.
      lt_message = 'Details of the released design:'. APPEND lt_message.
      lt_message = '*******************************'.APPEND lt_message.CLEAR: lt_message.APPEND lt_message.
      MOVE : 'TDR No '  TO lt_message.
      lt_message+21(1) = ':'.
      lt_message+22(40) = it_ztdr-tdrid   .APPEND lt_message.
      MOVE  : 'PED Part no '  TO lt_message.
      lt_message+21(1) = ':'.
      lt_message+22(40) = it_ztdr-matnr.
      APPEND lt_message.
      CLEAR: wa_maktx.
      SELECT SINGLE maktx FROM makt INTO  wa_maktx WHERE matnr = it_ztdr-matnr.
      MOVE 'PED Part Description' TO lt_message.
      lt_message+21(1) = ':'.
      lt_message+22(40) = wa_maktx   .APPEND lt_message.
      MOVE : 'PED Part Rev no' TO lt_message .
      lt_message+21(1) = ':'.
      lt_message+22(40) = it_ztdr-matnr_rv .APPEND lt_message.
      MOVE: 'Rnd part No  ' TO lt_message .
      lt_message+21(1) = ':'.
      lt_message+22(40) = it_ztdr-ref_matnr . APPEND lt_message.
      MOVE : 'Rnd Part Rev '  TO lt_message .
      lt_message+21(1) = ':'.
      lt_message+22(40) = it_ztdr-ref_matnr_rv .APPEND lt_message.
      CLEAR: lt_message.
      APPEND lt_message.
      APPEND lt_message.
      lt_message = 'To View the Design:'.
      APPEND lt_message.
      lt_message = '*******************'.APPEND lt_message.
      CLEAR: lt_message.
      APPEND lt_message.
      lt_message ='For Standard gauge, use Transaction: ZPED_TOOLPRINT'.
      APPEND lt_message.
      lt_message ='For Non-Standard gauge, use Transaction:  ZCV04N or CV04N'.
      APPEND lt_message.
    *Send email message, although is not sent from SAP until mail send
    *program has been executed(rsconn01)
    Fill the document data.
      gs_doc_data-doc_size = 1.
      DATA subject TYPE string.
      CONCATENATE 'Design Released for'  it_ztdr-tdrid  'of'  it_ztdr-ref_matnr
            INTO subject SEPARATED BY space.
    Populate the subject/generic message attributes
      gs_doc_data-obj_langu = sy-langu.
      gs_doc_data-obj_name  = 'TDREQ'.
      gs_doc_data-obj_descr = subject .
      gs_doc_data-sensitivty = 'O'.
    Describe the body of the message
      CLEAR lt_packing_list.
      REFRESH lt_packing_list.
      lt_packing_list-transf_bin = space.
      lt_packing_list-head_start = 1.
      lt_packing_list-head_num = 0.
      lt_packing_list-body_start = 1.
      DESCRIBE TABLE lt_message LINES lt_packing_list-body_num.
      lt_packing_list-doc_type = 'RAW'.
      APPEND lt_packing_list.
      CLEAR lt_receivers.
      REFRESH lt_receivers.
    Add the recipients email address
    For SAP mail
    IF NOT GSCR_UNAME IS INITIAL.
      lt_receivers-receiver = it_ztdr-reqnm.
      lt_receivers-rec_type = 'U'.
      APPEND lt_receivers.
    ENDIF.
    For external mail
    IF NOT gs_outtab-reqnm IS INITIAL.
       lt_receivers-receiver = gs_outtab-reqnm.
       lt_receivers-rec_type = 'U'.
       APPEND lt_receivers.
    ENDIF.
    Call the FM to post the message to SAPMAIL
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = gs_doc_data
          put_in_outbox              = 'X'
          commit_work                = 'X'
        IMPORTING
          sent_to_all                = gf_sent_all
        TABLES
          packing_list               = lt_packing_list
          contents_txt               = lt_message
          receivers                  = lt_receivers
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
    Store function module return code
      gf_error = sy-subrc.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Get lt_receivers return code
      LOOP AT lt_receivers.
      ENDLOOP.
      PERFORM initiate_mail_execute_program.
        CLEAR:lt_message[] , lt_message , gs_doc_data ,gf_sent_all,lt_packing_list[]
        ,lt_packing_list ,lt_receivers[], lt_receivers.
    ENDFORM.                    " SEND_MAIL
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          text
    -->  p1        text
    <--  p2        text
    FORM initiate_mail_execute_program .
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM

    Hi,
    In your code
    You are looping the perform in which you are calling below FM.
    LOOP AT it_ztdr.
       PERFORM send_mail.
    ENDLOOP.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = gs_doc_data
    put_in_outbox = 'X'
    commit_work = 'X'
    IMPORTING
    sent_to_all = gf_sent_all
    TABLES
    packing_list = lt_packing_list
    contents_txt = lt_message
    receivers = lt_receivers
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    So keep your FM after the loop.
    Pls. reward if useful...

  • Logged in twice as same user?

    The computer that I am currently using is a Mac Pro with OS 10.4.11. Because it is a "community" office computer with multiple users, many of the settings get changed by people not knowing much about operating systems.
    So here's the problem, someone using the computer over the weekend happened to get the computer logged in twice as the same user??? How do you disable one of the duplicate users? I've tried logging out of the duplicate user but can't get back into the system without logging back in as the same user, which in turn creates the duplicate user again... annoying! What is the solution. I've tried force-quitting & hard-rebooting the computer only to have the duplicate come back. Please, someone help

    Even though it might look like it, there shouldn't be two identical accounts (I am guessing that the users do not have admin access to create or modify accounts). You can use the Accounts preference pane to see (or remove) the accounts.

  • Hi i have download os x mavericks system preferences go to users & groups click on account picture scroll down to Linked click on Linked i have the same picture twice how do i delete these pictures

    hi i have download os x mavericks system preferences go to users & groups click on account picture scroll down to Linked click on Linked i have the same picture twice how do i delete these pictures

    I am not connected even though I am.
    It is showing you are connected, but the signal strength is low.
    bookmarks
    Those are what is in the Favorites bar. They can be changed by deleting the from the Favorites bar. To add others, add them to the Favories bar.
    How can you remove that app?
    You can't.
    Un-install CleanMyMac. It can damage the entire system.
    Myth of the Dirty Mac
    CleanMyMac - Uninstall
    CleanMyMac2 Un-install
    If you are going to re-install, make sure you have 1 or preferably 2 full backups using Time Machine and/or a clone.
    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

  • I keep getting calls from non existing area codes and phone numbers.  They are never the same number twice.  How do I stop this?

    About a week ago I started getting phone calls on my cell phone from numbers that do not exist, including the area codes.  I can not report these to the Do Not Call list because the area code is non existent.  I'm getting these calls all the time now and never from the same number twice so there's no point in blocking them.  If I answer I may or may not get a person who has an accent from India so heavy that I can't understand what they are saying.  This is getting to the point where I just want to cry I'm so frustrated.  Anyone else having this issue or does anyone know how to stop it?
    Thank you

    I'm sorry that you are having all these troubles. I have sent you a private message.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Multiple instances of the same BSP app for the same user

    Hi,
    I currently have a BSP application which has a main page which consists of three frames.  Each of the frames within the page is linked to its own controller, with one other controller controlling the whole page.
    due to the nature of the program i need to access information from one controller in another.  To do this I create a reference to the controller whose data I want within the controller that needs access to it.  This works fine under normal processing, however when the application is executed / called up twice by the same user, the controllers for the initial instance of the application are de-referenced...
    Does anybody know why this may be occurring...and how to get around it?
    Thanks
    Mike Law.

    Whenever you open a browser anew, then there is no session data that the browser can send in any way whatsoever, therefor a new session on the server is started.
    If you open a new window from within the first session this might not be the case, you can run multiple windows in the same session.
    Either way, I would recommend to search the forum, there have been discussion about this (or a similar) topic, e.g. accessing the same model instance - it would be best if you look for them, read them, and if you have any questions left come back for more
    Cheers,
    Max

  • How to restrict the entry of same material twice on the order

    HI,
    How to restrict the entry of same material twice on the order before saving the Order ?
    I do not want my users to enter the same material as two different line items in the order.
    Any inputs wud b appreciated

    Hi Vam,
    For this you need to take the help of an ABAPer . Ask him to modify the user exit and add the logic.
    For user exit please go through the below link it will help you to resolve your issue.
    http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm
    Regards,
    Krishna O
    Edited by: Krishna O on Jun 3, 2010 12:29 PM

  • FindByProperty Returns Same Record Twice

    I have a curious situation in which the findByProperty method is returning the same record twice. I have only two records in the file for this test, and they are both tied to the same contact ID. But, instead of bringing back both records, it brings back the first record twice. Any ideas?
    ContactNote entity
    @Entity
    @Table(name = "CONTNOTEP", schema = "CRMLIB", catalog = "S657567F", uniqueConstraints = {})
    public class ContactNote implements java.io.Serializable
         // Fields
         @Id
         @Column(name = "CONTACTID", unique = false, nullable = false, insertable = true, updatable = true, precision = 5, scale = 0)
         private Long                    contactId;
         @Temporal(TemporalType.DATE)
         @Column(name = "CNDATE", unique = false, nullable = false, insertable = true, updatable = true, length = 10)
         private Date                    lastUpdatedDate;
         @Temporal(TemporalType.TIME)
         @Column(name = "CNTIME", unique = false, nullable = false, insertable = true, updatable = true, length = 8)
         private Date                    lastUpdatedTime;
         @Column(name = "CNNOTE", unique = false, nullable = false, insertable = true, updatable = true, length = 100)
         private String                    note;
         @Column(name = "CNSALMNUM", unique = false, nullable = false, insertable = true, updatable = true, length = 2)
         private String                    salesmanNumber;
         @ManyToOne(fetch = FetchType.LAZY, cascade = {})
         @JoinColumn(name = "CONTACTID", insertable = false, updatable = false)
         private Contact                    contact;
         @Transient
         private GregorianCalendar     date;
    ContactServiceImpl
         public List<ContactNote> getContactNotes(String sessionId, Long contactId) throws AuthenticationFault
              authenticateSession(sessionId);
              List<ContactNote> contactNoteList = contactNoteDao.findByProperty("contactId", contactId);
              if (contactNoteList.size() == 0)
                   ContactNote contactNote = new ContactNote();
                   contactNoteList.add(contactNote.defaultContactNote());
              return contactNoteList;
    JUnit Test Method
         @SuppressWarnings("unchecked")
         public void runGetContactNotes() throws Exception
              UserDao userDao = (UserDao) applicationContext.getBean("userDao");
              User user = userDao.login("[email protected]", "password");
              assertNotNull(user);
              ContactService dao = (ContactService) applicationContext.getBean("contactService");
              List<ContactNote> contactNoteList =
                   dao.getContactNotes(user.getSessionId(), 1276L);
              for (ContactNote note : contactNoteList)
                   System.out.println(note.getContactNoteId() + " " + note.getNote());
    Results of Test
    [TopLink Fine]: 2007.10.02 08:50:30.988--ClientSession(7339385)--Connection(6964063)--Thread(Thread[main,5,mai
    n])--SELECT CONTACTID, CNTIME, CNNOTE, CNDATE, CNSALMNUM FROM CRMLIB.CONTNOTEP WHERE (CONTACTID = CAST (? AS B
    IGINT ))
         bind => [1276]
    1276 Jason requested to get Sinclair gift card "backs" because they have so many returned/used gift cards
    1276 Jason requested to get Sinclair gift card "backs" because they have so many returned/used gift cardsThanks for any help that can be provided. This has me stumped.
    R. Grimes
    Message was edited by:
    rdgrimes

    I was able to resolve this situation by splitting the ContactNote entity in two: ContactNoteId and ContactNote. I had combined them because it seemed kind of silly to have the id, date, time in the ContactNoteID entity, while the ContactNote entity just had two fields beyond the embedded id.
    R. Grimes

  • Logging on with the same user?

    Hi all,
    I know there is some rule that allows a user to log on more than once. A client of mine says they could always log in to the same company twice with the same username, but now they can't. They can only log on to 2 different companies with the same user name.
    Was there a change made or am I missing something? I have tested on a single computer. I open 2 instances of SAP Business One 2007 and log in with the same user into the same company. THe first one logs on fine, the second one says "This user is already connected to this company". If I log on to a different company with that user it logs in.
    I really thought you could log on with the same user to the same company.
    The company has a distributed environment and people run around every now and again logging on at different computers (especially supervisors). This is a critical issue for them.
    Please help
    Thanks,
    Adele

    Adele,
    I am not sure if you might have changed the default layout of SQL Management Studio, so you should
    log on to Management Studio and go to Menu 'Window' -> 'Reset Window Layout'.
    This will restore the default layout, which usually is the very same after a fresh SQL Server 2005 installation.
    Now you should find on the left hand side the so called Object Explorer. In the Object Explorer Window you should see the SQL Server name, below of this should be
    SQL Server name
    +Databases
    +Security
    +Server Objects
    +Replication
    -Management
          +Mantenance Plans
          +SQL Server Logs
              Activity Monitor
    +Notification
    Maybe there are some more entries, depending on the options choosen during installation.
    Kind regards
    Mario Schoenberg
    Senior Support Consultant
    SAP Business One Forums Team

  • NS_BINDING_ABORTED error - Resubmits the same URL twice

    I have a website that has multiple tabs after successful log in. Each Tab is mapped to different URL. when I change from one Tab to other, at random, for one of the Tab URL, the NS_BINDING_ABORTED errors comes for first GET submission and behind the scenes, wihtout any further user interruption, the fire fox browser submits the same URL mapped to the tab second time. But we are not allowed to submit the same URL twice at any time. Because each time for the URL GET request, a unique GUID is appended. If the borwser re-submits the same URL with same GUID, the application throws an error message, hence user can not see the next tab on which he/she clicked.
    Interesting this is that the same website works fine in any IE browser. Why this is happening only for fire fox browser?

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    [http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Same users could open SBO application in one license

    Dear Expert/Guru,
    I have a problem relates to run SBO application in the different PC but using same user. For example : user A run SBO client application in PC-1 then he want to run SBO client application in PC-2 by using the same user code that he used to login to SBO in PC-1. This can be done in SBO 2004A SP 00 PL 41 but I don't understand why in SBO 2005A SP 01 PL 18 can't do this. Is it possible to do this in the SBO 2005A ?
    I appreciate your answer. TIA
    Rgds,

    Hi Steve,
    It doesn't matter where the SBO GUI is running (ie same computer or different computers). The restriction is enforced by the license server and not the workstation. You can only log in to the same company twice concurrently with a single user. But the same user could open as many different companies as he wants concurrently.
    Please note that this is an 'undocumented feature' of SBO and it could be something that SAP change in future versions (although it has been around for a few versions now). There has been talk about changing from named users to concurrent users for a while though 2007A still uses the existing mechanism.
    Kind Regards,
    Owen

  • Purchase the same ringtone twice

    Hi Apple,
    I accidentally purchased the same ringtone twice in the App Stor. Is there any chance I could refound one of the two? Thx

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    You can try the 'report a problem' page to contact iTunes Support and see if they will refund or credit you : http://reportaproblem.apple.com
    Or you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    (Tones are a one-time only download from the store, so if you will have to pay to redownload them. You can copy them from a device to the Tones part of your computer's iTunes library by connecting the device and doing File > Devices > Transfer Purchases so that you can take a backup copy.)

  • Reinstalling Premiere Elements on the same PC twice

    I had to reinstall PE on the same PC twice after intalling a new hard drive an again after reinstalling Windows 7. The program seems to think I have reinstalled PE 8 on more than two PCs. How do I fix this?

    You contact Adobe (this is a user to user forum) to have them reset your activation count
    Select a reason, then click I STILL NEED HELP to activate Premiere Elements chat
    -http://helpx.adobe.com/contact.html?product=premiere-elements&topic=activating-my-product- or-serial-number-issues

Maybe you are looking for

  • "Home Sharing? No Home Sharing."

    Home Sharing is not working for me. After reading through these discussions, I'd say there's a chance it's not working for you either. What I've done for us, here, is compile a list of helpful trouble-shooting tips that I've copied and pasted from ot

  • Music sync problem - The disk could not be read or written to.

    Hello! Since my last iPod restore I have got a problem with music syncing. When I want to sync about more than 10 files iTunes gives an error massage: "The disk could not be read or written to." It is very annoying to copy 20GB music. Any good idea?

  • IPhone music is distorted

    Hello.. I've been an iPhone owner for about two weeks now and I am on my second iPhone. The first one had an issue where the back light would not stop flickering. My current iPhone has a problem where if I change the equalizer settings to anything ot

  • Compiler directives to differetiate between solaris 9 and solaris 10

    i have an API which makes certain function calls which are different for solaris 9 and solaris 10. i cannot add my own defines, since that would mean that applications too would have to define them. does the Sun Workshop compiler provide any default

  • Reverse delivery with batchsplit

    Hi All, when you reverse the Transfer Order the batch split line has to be removed using an SAP program, Can anyone let me know that?