New role in CUA user record not getting pushed to child system

I added a new child system to our CUA setup.  I've confirmed that the RFC connections from both sides are working properly (test connection succeeds) and I've successfully completed the user transfer function in SCUG.  All exisitng roles assigned to the users in the child system are now appearing in the CUA central system as expected.  I added a new role to a user via SU01 in the central system to this child system, but when I go to the child system, it does not appear in the user's SU01 record.  Any ideas why this would not be syncing properly?
Thanks,
Michael

Hi,
Whenever you create a new role in child system, it has to be sync up with the central system.
To sync up with the central system, login to central system goto su01>enter any user name>go to roles tab- click on Text comparision from chiled system. Its navigate to another screen, there you have to mention the child system and click on execute. it syncs up with child sytem. Hope it will help you out to resolve the issue.
If still you are getting the same issue login to the central system.. goto SE38-- enter the program name as "RSCCUSND" and click on execute there mention the user name and the logical system id of the Child system name, select the parameters which you wanted to distribute to child system and execute it.
Best Regards
Mani

Similar Messages

  • CUA: Model view not created automatically in Child System

    Hi, I try to create a CUA with just a child system thru txn SCUA. The result of generation is good and all green. The part that is not right is I do not see the model view created in txn BD64 of child system, I can see it created in master system. Both RFC of master and child system are working fine. I do not see errors at WE20 & WE21 as well. Under this situation, I can see CUA active in master system but not child system. Hence, CUA is not working as it says in master system.
    I have setup CUA couple of times before but this is the first time that I encounter such a weird situation. Does anyone has any clue where could have gone wrong?
    Edited by: Annie Chan on Jul 25, 2008 5:23 PM

    Hi Everyone,
    It is indeed a RFC issue but it was a silly mistake with the incorrect hostname that I am suppose to connect to. Hence, the Distribution Model doesn't exist in the child system. Nervertheless, your advise does point to the right direction.
    Thanks so much for your input. Points are granted as accordingly.
    Regards,
    Annie

  • User is not logged on, but the system thinks it did!

    Hi,
    We're having a problem with one user. When you try to log on with his userid and password, this notification screan comes up: You have already logged in. Do you want to logout and login to a different Organization? "YES" "NO"
    Trying again, doesn't work.
    When you watch the logged on sessions with the admin console, you will see that there is a session with the user and that he is indeed logged on!
    BUT this is not how it is for real, cause he is NOT logged on, doesn't get further then this notification screen!!
    Someone knwos what's wrong? We still have to try to restart everything, but it's a production system so we'll have to wait till nobody is logged on :-S
    Thanks!
    Greetz,
    Miranda

    - it is possible to terminate the session and the user is logged of (also get's the message)
    - when the users answers no (to log of and log in to a new organization) you stay at the same screen notification
    and the admin console shows the user as logged on
    - when the users answers yes (to log of and log in to a new organization) it get's the logon screen (default logon screen)
    and the admin console shows the user as logged off
    - when i inactivate the user and it is logged on, it get's after trying to logon new this message: This user is not active.
    Contact your system administrator, but it stays logged on .. shows the admin console
    - i also can delete the user from the organization (after one time logged on it has a profile under the users from the logged on organization)

  • Active substitute maintained for a user is not getting workitems for approv

    Hi,
    Active substitute maintained for a user is not getting workitems for approval.Earlier he was getting
    but now a days he is not getting.
    Roles wise also , i checked, it is proper.
    Please advise me on this.
    Regards,
    Niti

    Hi Check Table HRUS_D2 for the user id and cross check it with the users pa record and IT 105.
    Also check the email address maintained in su01. And further you can check with the org attrib forward??? is maintained.
    I hope this helps.
    Saj

  • Adobe creative Cloud photshop cs 6 register user iam not getting COPY CSS options please help

    iam adobe creative cloud photshop cs 6 register user iam not getting COPY CSS options even i have updated photoshop several times
    still not getting this options please help
    Thanks
    Koushik

    13.0.1 is the last version of Photoshop to run on Windows XP but it does not include the Copy CSS feature.
    The Copy CSS feature was first introduced in Photoshop 13.1 (Cloud only) and higher.
    http://blogs.adobe.com/jkost/2013/02/copy-css-attributes-in-photoshop-13-1.html
    Photoshop 13.1 does not run on Windows XP. So your operating system is preventing you from upgrading Photoshop to 13.1+.
    http://helpx.adobe.com/photoshop/kb/new-system-requirements-photoshop-131.html
    If you plan to remain a Cloud member then you will have to upgrade to Windows 7 or Windows 8 (or get a new computer) very soon in order to run Photoshop CC to be released on June 17, 2013.

  • Chat user is not getting message from the other users

    In my application when user [A] initiate the chat with user[B]  , I am facing following issues
    -          User[B] is not getting initiation notification so that I am unable to open chat pod for user [A] on user[B] application
    -          Due to above problem , User[B] not getting any message sent by the User[A]
    -          User[A] can send only one message and it is displayed on simple chat pod
    when User[A]tries to send more then one message it is not displayed on simple chat pod but on the console I can see the messages
    following is sample code
     public function connectChat() :void {
    _collectionNode =
    new CollectionNode();_collectionNode.sharedID = NOTIFICATION_COLLECTION_NODE;
    _collectionNode.connectSession =
    this.connectSession;_collectionNode.addEventListener(CollectionNodeEvent.SYNCHRONIZATION_CHANGE, onSynchronizationChange,
    false, 0, true);_collectionNode.addEventListener(CollectionNodeEvent.ITEM_RECEIVE, onItemReceive,
    false, 0, true);_collectionNode.subscribe();
    /*** @private
    * Handles the creation of a collection node if it does not already exist
     protected function onSynchronizationChange(event:CollectionNodeEvent):void { 
    if (_collectionNode.isSynchronized) { 
    if (!_collectionNode.isNodeDefined(START_CHAT_LIST) && _collectionNode.canUserConfigure(connectSession.userManager.myUserID)) {_collectionNode.createNode(START_CHAT_LIST,
    new NodeConfiguration(UserRoles.VIEWER, UserRoles.VIEWER, true, false, true,false, NodeConfiguration.STORAGE_SCHEME_QUEUE));}
     public function connectChat() :void{
    trace('connectChat');_collectionNode =
    new CollectionNode();_collectionNode.sharedID = NOTIFICATION_COLLECTION_NODE;
    _collectionNode.connectSession =
    this.connectSession;_collectionNode.addEventListener(CollectionNodeEvent.SYNCHRONIZATION_CHANGE, onSynchronizationChange,
    false, 0, true);_collectionNode.addEventListener(CollectionNodeEvent.ITEM_RECEIVE, onItemReceive,
    false, 0, true);_collectionNode.subscribe();
    /*** @private
    * Handles the creation of a collection node if it does not already exist
     protected function onSynchronizationChange(event:CollectionNodeEvent):void { 
    if (_collectionNode.isSynchronized) { 
    //Creates the nodes if they don't exist 
    if (!_collectionNode.isNodeDefined(START_CHAT_LIST) && _collectionNode.canUserConfigure(connectSession.userManager.myUserID)) {_collectionNode.createNode(START_CHAT_LIST,
    new NodeConfiguration(UserRoles.VIEWER, UserRoles.VIEWER, true, false, true,false, NodeConfiguration.STORAGE_SCHEME_QUEUE));}
    /*** Checks if a chat is going to be started with this specific user
     protected function onItemReceive(event:CollectionNodeEvent):void { 
    var item:MessageItem = event.item; 
    var openChatEvent:OpenChatEvent = OpenChatEvent.ToOpenChatEvent( item.body, OpenChatEvent.OPEN_CHAT ); 
    switch (item.nodeName) { 
    case START_CHAT_LIST: 
    trace("Starting Chat Notified");  
    if( openChatEvent.userId && openChatEvent.userId == this.connectSession.userManager.myUserID ){
    this.dispatchEvent( openChatEvent ); 
    if( this._collectionNode.isSynchronized ) 
    this._collectionNode.retractItem( START_CHAT_LIST, openChatEvent.roomId );}
    break;}
    /*** Publishes a request for someone to join a chat
     public function publishChatRequest(notificationEvent : NotificationEvent) :void { 
    if( this.connectSession.userManager.getUserDescriptor( notificationEvent.userID ) ){
    var openChatEvent:OpenChatEvent = new OpenChatEvent( OpenChatEvent.PUBLISH_CHAT,null,notificationEvent.sharedID, notificationEvent.userNotificationList, null, notificationEvent.userID ); 
    if( this.presenceUsers )openChatEvent.descriptors =
    this.presenceUsers; _collectionNode.publishItem(
    new MessageItem( START_CHAT_LIST, openChatEvent, openChatEvent.roomId ) );}
    else{
    Alert.show(
    "User "+ notificationEvent.userID + " is not logged in.", "Publish Error" );}

    A) are these methods copied twice in the code here on purpose?
       connectChat() and onSynchronizationChange is repeated in code due copy paste mistake
    B) are both users subscribing to _collectionNode right away? Do each of them
    get to onSynchronizationChange?
       Yes , each of them get to onSynchronizationChange
    C) If you put a breakpoint in onSynchronizationChange, do you see the node
    get created? Do you see it in the dev console?
    Yes , it is creating a node
    D) Is user B receiving an onItemReceive at all? Is user A?
    Yes , it is creating a node
    Now both the user getting chat message, have following issue
    When user A initiate the chat with user B this action is not opening chat pod / window on user B end which shows user A has initiated chat with user B
    But when user B click on user A name to initiate the chat, this action opens a chat window and user B can see message send by user A
    Above scenario is not normal chat behavior in which other user gets the notification of chat . what could be the problem

  • CUA-User does not exist in Child system

    Hi All,
    User has been created in  child system through central system,and respective roles also assigned through central system.Now,the issue is when user is trying to log in child system,it's showing user does not exist.
    I did Text comparison also,status is okay.
    Kindly help!
    Regards,
    Naveen

    Hi,
    Could you just login to the child system and view the userid created through su01?
    1. In case you are unable to do the same, there is certainly a problem  with idoc distribution for which you can find the reasons in SCUL.
    2. In case the userid exists in child syatem, you need to check if address data for the userid is being maintained in child system or not.
    In case you get an error message " Address data not maintained"  while viewing the userid through su01 in the child system, then you need to execute report RSADRCK2 in the child system.
    You may refer to the following link in this case:
    http://help.sap.com/saphelp_sm32/helpdata/en/85/91cd3b11571962e10000000a11402f/frameset.htm

  • SD: Condition record not getting automatically determined

    Hi,
    Condition record not getting automatically determined for a condition type for which following access is maintained.
    The access has table containing following fields:
    Sales Organisation
    Distribution Channel
    Division
    Sales Document type
    Sales Document No.
    Material no.
    Following is the scenario:
    A sales order is created  for Project Systems attach a WBS element to the line item .
    With respect to the above created sales order a Billing request ( a sales doc. type which is different than the above sales order). When the billing request is created materials appearing in the line item will be different.Different materials will appear in the billing request because of the DIP profile maintained.
    The prerequisite is that before creating billing request the sales employee has to maintain condition master record with above access.The condition record will combine sales organisation, distribution channel, division, sales document type ,
    sales document number ( the 1st refered sales order)
    and the material are different
    than the ones maintained in the 1st sales order.
    This will enable in getting billing request generated without manual intervention in pricing for other materials for which condition records have been maintained as stated above.
    Following is the error message we get
    ===================================
    " Inactive        X   Inactive via formulae of incorrect "
    Thanks
    Aby
    Message was edited by: Aby Jacob Emmanuel

    As I know, thats just a warning message(if its a std one).
    Ignore it and save.
    Check your pricing date of the document. For execution it should be similar or after valid-from date maintain in condition record.
    But, you need not create a condition record. Simply change the existing one combination of your desire. But, this warning will come there also for your combination.
    Thanks & Regards
    JP

  • Cisco Flex Connect and users can not get IP Address by WAN

    Hello my name is Ivan
    I have a wlc 5508 with license base to 50 aps, i use a deployment flex connect. I already registered all my access points, I use web authentication to authenticate users guest, and the service dhcp is in the central site.
    My issue is the users in each remote site, can not get an ip address by dhcp from the central site, they can authenticate in the guest ssid, but any users can not get an ip.
    The request is passing by the wan in this way
    Central Site DHCP - Router WAN - Remote Site - Users with notebooks. I use flex connect central deployment (all the traffic consulting to the wlc) .
    perhaps i should use local deploy? The wlc is in the central site.
    Can you help me to resolving this issue please? , perhaps any advice?
    Regards
    Ivan.

    Thanks Osita
    If I configure Central Authentication and  I configure central switching I need to create a dynamic interafce for each remote site and each dynamic interface associated with a different VLAN ID, because I can not associate a single interface dynamic to the same  VLAN ID, but in my case the client remote in each remote site have the same network segment with the same VLAN ID with the same SSID for guests. My goal is to configure web authentication with the local DHCP server at each remote site, will this work?.Each remote site have its own server dhcp.
    If I configure authentication central authentication with central switching with web authenticacion as I set in my scenario?
    My issues are the interfaces dynamics, because I have the same network to the customer guest with the same ID VLan in each remote site
    Regards

  • I have a new iPhone 6 and I am not getting iMessages, only txt messages.  How do I change this to receive iMessages, too?  My friends are sending me iMessages that I am not receiving.

    I have a new iPhone 6 and I am not getting iMessages, only txt messages.  How do I change this to receive iMessages, too?  My friends are sending me iMessages that I am not receiving.

    If you didn't have imessage on and now do, it sometimes takes a while to get synced up.

  • Urgent help? for Standalone AP users are not getting ip addresses

    Dear friends,
    i have  Cisco LAP1140 series access points and i wanted to use them as autonomous , so i converted their ios from light weight to autonomous to
    c1140-k9w7-tar.124-25d.JA  image.
    my network senario is
    CORE SW +  Access SW  + Access points
    Core SW:
    act as a dhcp server for wireless user
    for WLAN vlan 16 is configured on it
    configured dhcp pool here for vlan 16
    Access SW:
    access points are cooneted with it
    and every switch port assign to vlan 16 that is connected to AP
    Standalone Access Points:
    connected to access switch and have assigned static management IPs from vlan 16 that i have excluded in DHCP Pool in core switch.
    configure only one ssid and broadcast
    both radio 5ghz and 4.2 ghz are up
    i can ping the gateway from each Access point to core switch
    but the users can not get the ip address from the ssid that is configured on APs.
    below is the attached of  configuration of the access point
    please review the configuration and advise me where i have mistaken and what i have missing in the configuration?
    please reply me ASAP because this is very urdent for me and your reply is very important for me
    Thanks

    Thanks for your reply Ven
    actually i did not check that and it does make sence too may be problem with DHCP Scope
    but you know why i did not check because there is an other scope on the core switch for Data users only the difference
    of vlan numbers and names
    but that data vlan users are getting ip addresses and connect normally to internet.
    did you view the configuration that i attached with my 1st post?
    if no please view it and advise me if i have any missing there.
    further i ll check for DHCP in the morning to connect my laptop dirct with switch port to is that getting ip address or no.
    Thanks

  • LAN was down ie Users are not getting ip from DHCP server after enabling DHCP snooping

    Hi All ,
    Enclosed file has network connectivity diagram.
    1. L3 vlan's ie 2,3,4,5 and 6 are configured on ACC-CR1 and ACC-CR2. 
    2.Trunk is configured between Core switches ( CR1 and CR2) and access switches .VTP mode is transparent on all switches.L2 vlans are configured on all access switches.
    3.DHCP is server is located at different location and is reachable over MPLS.
    Without enabling dhcp snooping , users connected to access switches (Sw1,sw2,sw3 and Sw4 ) are getting ip address from DHCP server without any problem and everything is working fine.
    But users connected to Sw3 and Sw4 are getting ip address from rouge DHCP server which is not pingable from any one of the switch.
    So we have configured DHCP snooping for all vlan's on CR1 , CR2 , SW3 and SW4 and "trusted uplink ports" which are connected to WAN routers from CR1 and CR2  and also "trusted uplink ports " of Sw3 and Sw4 which are connected to CR1 and CR2.
    As soon we have enabled DHCP snooping and trusted respective uplink ports , users are not getting ip address from remote DHCP server and even users connected to Sw1 and SW2 are facing same issue.
    Note : DHCP snooping is not configured on SW1 and SW2.
    Why users are not getting ip address from remote DHCP server as soon as we enabled dhcp snooping on Core switches and two access switches ie sw3 and sw4 ? what could have caused DHCP packets to be dropped ? Any idea would be appreciated .

    Hi,
    as you say: " HSRP is configured between CR1 and CR2 and Vlans are active on CR1" does it mean there are L3 intrefaces configured in each VLAN on your CR switches and ip hepler-address pointing to the remote DHCP server is configured on each of them?
    I know it's difficult in a productive environment but IMHO you need to find out where are the DHCP offers dropped.
    Either by enabling DHCP debugging or by capturing packets via Wireshark, e.g.
    Best regards,
    Milan

  • Stock value is not getting updated in APO system From ECC automatically

    Hi All,
    Stock value is not getting updated in APO system From ECC automatically but if we do it manually from transaction CFM2 it will get updated.
    for this we are using EXIT_SAPLCSTK_001.
    I am using VL10A for delivery and VL06G for PGI
    I have also checked integration model for material and stock.
    Please help me out as it is very urgent.
    Thanks,
    Gaurav Mittal
    Edited by: GAURAV MITTAL on Feb 6, 2008 6:09 PM

    Hi,
    for transferring the stock data from R/3 to APO automatically, you need to have the integration model for material and stock activated.
    please check the same.
    if this does not help, let me know in detail the steps which you are following..
    Ram

  • I ve updated my i pod touch to version 6.0.1. Installation got failed with some error msg, and now my i pod is not getting detedted in my system.Help me to fix it up.

    i ve updated my i pod touch to version 6.0.1. Installation got failed with some error msg, and now my i pod is not getting detedted in my system.Help me to fix it up.

    What's the error mesage?

  • Hi, I m using an iPhone 4 and my yahoo push email was working just fine but for the last few days I am experiencing some problem that is the emails are not getting pushed , I have to manually fetch the mails. So what could be the reason for this....

    Hi, I m using an iPhone 4 and my yahoo push email was working just fine but for the last few days I am experiencing some problem that is the emails are not getting pushed , I have to manually fetch the mails. So what could be the reason for this.....I have set the email setting to "push" mode. Moreover I can't edit the mail server address ....current it's on Yahoo SMTP server

    Will it get rectified and restored...if so after how long. What could be the reason for such outage kindly share,  as I am facing real problem because of this...

Maybe you are looking for

  • Mapping regulatory data for food contact in property tree

    Hi, I am looking where I can mapp food contact regulatory data in the standard property tree. I am thinking of one of the properties mentioned in the notification/reporting tree. Of course I always can build my own property but I want to use the stan

  • DAC: Change capture sql problem.

    Hi, DAC 10g, SEBL_VERT_80 This is for vanilla code. When I right Click S_OPTY-> Select Change Capture Scripts->Generate Change capture SQL -> Incremental I am getting the Select * from Dual It suppose to generate all truncate image table and create v

  • What transaction level should I use?

    Hi all; I have a nightly daemon that bills all customers who's monthly bill is this night. For a given customer, in a transaction I verify that they still have not been billed, run the charge through paypal, update their record based on the results o

  • Form based on a precedure

    Hi, I can not build a form based on a procedure other than the owner of application. The procedure name is not in the list to build form from. I can build form based on any tables without problem. And I can build form by type in the procedure name di

  • HCM P&F - Mass processes Fast Data Entry Error

    Hi guys, I have a new requirement to do a new mass process to save some IT data on several employees without Workflow related. First of all I have tried to understand how standard is working and I have checked one of mass process that system provides