Duplicate User Folder, Application Folder, Library, etc, etc for same user

I just ran Omnidisksweeper and my Volumes folder is the largest with my active drive in it with my Users folders (9.6 gb), Desktop, Library, Applications, System. usr,etc. Below it in the hierarchy is Users (14.gb) with Desktop, Library, Applications, System. usr,etc.  My computer is really hanging and I don't have my Snow Leopard start disk to rebuild. Even when I get it I don't know which User Folder to keep. I can find the 14.0 user folder  which is my home folder but I can't locate the 9.6 gig User folder. Any ideas.

Well if rebecca doesn't show up in the accounts it must have come from some old update or somewhere.  In that case then, yes, you could just trash it.  But I suggest you do it this way in terminal (cut/paste):
sudo rm -rf /Users/rebecca
The sudo will cause a prompt for your admin password.  The rm will delete the folder and there is not turning back one you do this.  This is faster than throwing stuff in the trash and avoids permissions problems too.
Just in case though I would suggest you backup your drive before attempting this.

Similar Messages

  • How do I move an App Store app to a user's application folder?

    I have set up my mom with an older Macbook Pro of mine to save her from the evils of the PC. I set up two users, one for her and one for me; hers is uber simple (big icons, only the essentials in the doc) mine is crazy complicated. We share apps, of course, which was fine until I realized she is going to want to download Mah Jongg game apps and the like from the App Store, and I would LOVE it if I didn't have to have all that cluttering up the root Applications folder.
    I already tried to move one app from root to her user's Applications folder and all that moved was an alias, the app stayed at root. So how does one move these things? Is there a way via the finder? Can I use terminal (and if so could someone spell out the command for me?)
    Thanks in advance.

    You might want to rethink moving the apps.
    First the App Store knows what's installed by looking in the Applications folder. If the app is not there but is listed as purchased it will be prompting you to download it constantly.
    Second Lion has really locked down the permissions on the Applications folder, even Admins (as you're discovered) have to jump through hoops to change stuff around. You'll need to change permissions on the folder at least to get the apps out. It will be a pain in the long run.
    Again weigh the inconvenience of having an extra few apps in the Applications folder against what I described above.
    regards

  • Stopped mac protector scam download in process of scanning files.  Trashed application from download folder/application folder and system preferences' accounts log in items.  does anything else need to be purged? checked?

    stopped mac protector scam download in process of scanning files.  Trashed application from download folder/application folder and system preferences' accounts log in items.  does anything else need to be purged? checked?

    stopped mac protector scam download in process of scanning files.  Trashed application from download folder/application folder and system preferences' accounts log in items.  does anything else need to be purged? checked?

  • Need help in setting up Group Policy for same user in local system and Terminal server

    Hi All,
    Currently our remote users are using our network using VPN client over internet.
    They are generally at their home computer and doing VPN as they have to work only in one RDP server for application.
    We actually have a OU created for these RDP users and assign then some strict policy like they can not use any other .exe,they can not user any explorer ,they can not even use windows explorer when they are on RDP they just use one exe of their application.
    Now what my management want is they want their home computers in Domain and want them to login via their same credentials they are using for RDP but they don't want them to restrict in their home computers with any strict policy.
    Now my confusion is how can I configure different policies for same users or same OU.
    Can any one guide me please...

    you can achieve this fairly easily with group policy.
    create an OU and put your remote desktop servers in that OU.
    configure both user and computer policies in a group policy and link it to that ou.
    you need to enable loopback mode - you may want it in merge or replace depending on your other policies you have. Probably replace though I would guess. this is set in the computer configuration > admin templates > system / group policy section.
    now remove the policy you have currently setup for your users on the users OU containing the rdp users. If you want you can move these users back to your main users OU.
    when your users login to the RDP server the settings in the user section of the GPO linked to the RDP Servers OU will apply.
    when the user logs in to their own computer the policies from the user OU and computer OU will apply - but not the more restrictive RDP OU.
    hope that makes sense.
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • "Subscriptions limit reached for same user" validation error when trying to create a subscription to a product - wha can cause this?

    Hi,
    I've created a third product level called "partner" other than the two that come as standard.
    I'm running through the process of taking an existing user from the starter product to the partner product, and am subscribing the user to partner before removing the starter subscription. There seems no problem with a user having both a starter and unlimited
    subscription, but am getting the following error when subscribing to partner.
    "Subscriptions limit reached for same user"
    This is using a subscriptions put. The same code works fine when upgrading to unlimited.
    What can cause this?
    Andy

    Hi Miao,
    The function to promote someone to partner is:
    public async Task<ActionResult> ToPartner(string id)
    //add partner subscription
    var prodId = await APIMHandler.GetProductIdFromName("Partner");
    var subscriptionId = Guid.NewGuid().ToString();
    //set apim role to partner
    var partnerId = (await APIMHandler.GetGroups()).First(a => a.name == "Partners").id;
    await APIMHandler.AddUserToGroup(id, partnerId);
    if (await APIMHandler.SubscribeToProduct(subscriptionId, id, prodId))
    //disable starter subscription
    await ApimDelegationController.HandleFreeSubscriptionRemoval(id);
    //set local role to partner
    await UserManager.AddToRoleAsync(id, "Partners");
    return RedirectToAction("Index");
    Where subscribetoproduct is:
    public static async Task<bool> SubscribeToProduct(string subscriptionId, string UserId, string productId)
    //The REST API and the delegation are inconsistent in how they represent ids.
    if (!UserId.StartsWith("/users/"))
    UserId = "/users/" + UserId;
    if (!productId.StartsWith("/products/"))
    productId = "/products/" + productId;
    var client = new HttpClient();
    client.DefaultRequestHeaders.TryAddWithoutValidation("Authorization", "SharedAccessSignature " + CalculateAcessToken(ApimIdentifier, ApimPrimaryKey));
    var uri = ApimBaseUrl + "subscriptions/" + subscriptionId.ToString() + "?api-version=" + ApiVersion;
    var response = await client.PutAsJsonAsync(uri, new { userId = UserId, productId = productId, state = "active" });
    if (response.StatusCode == System.Net.HttpStatusCode.Created)
    return true;
    if (response.StatusCode == System.Net.HttpStatusCode.Conflict)
    var error = await response.Content.ReadAsStringAsync();
    return false;
    if (response.StatusCode == System.Net.HttpStatusCode.BadRequest)
    var error = await response.Content.ReadAsStringAsync();
    return false;
    var errorf = await response.Content.ReadAsStringAsync();
    throw new Exception(string.Format("Error in SubscribeToProduct: return status {0}. Content: {1}", response.StatusCode.ToString(), errorf));
    The status code is "BadRequest" and the error provided earler is returned.
    So at this time the user is added to the "partners" group, but I can't subscribe them to the Partner subscription, which is accessible to members of the partner group.
    Andy

  • Missing files, user folder, application folder and system folder

    I am using a MacBook Pro 2011 model with OS X 10.9.4.
    Since I bought the machine several years ago, I have had only a few small problems with it. Yesterday I wanted to reduce the size of a video, so I downloaded a video compressor/converter software, and left the computer on and the program compressing my video whilst I went off to work. When I returned home, the compressing program had a pop-up saying ''Could not complete compression, system full'' or something along those lines.... After trying to play the movie without success, I decided that I would restart my computer, as it had been on all day.
    When the computer restarted, it came up with the grey loading bar, which usually comes up when I have done a software update. It disappeared quite soon and several minutes later, my user profile appeared. I logged in as normal, and then tried to open my browser. An error message popped up stating"Can't open user profile directory, because you lack sufficient privileges. You might want to contact the administrator of this machine". I then tried to open other programs and they all came up with similar messages and did not open. Skype stated "Can't create a lock file at Users/Lauren/Library...etc".
    I then went to Finder to look at my applications and they were ALL GONE! Then I went to a folder I have with all my files called "My files", and although the primary folders were visible, "SCHOOL,WORK, HOLIDAYS PICS, etc", these folders were empty. I then checked my User folder, and my systems folder and these were empty too. However, the Desktop and Documents folders still contain the documents that were previously there, and my background images remained the same.
    I tried to open Word, and although it is also missing from the applications folder, and it opened, also allowing me to open a document which I know is located within the 'empty' folders. I have a feeling that my documents and files are still on my computer, but I don't know how to access them!
    Please if someone could shed light on the situation! All my work files and personal files are on this computer and I would be devastated to loose them!
    Let me know if you need any more ino or screen shots!
    Kind regards,
    Lauren

    OS X- Gray progress bar appears under Apple logo during startup
    You need to start by doing the following:
    Reinstall Lion, Mountain Lion, or Mavericks without erasing drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu.
    Reinstall Lion, Mountain Lion, or Mavericks
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • How To Copy User Folder/Application Folder To Fresh Drive

    I have a friend's iMac G5 whose hard drive went south. Fortunately I was able to copy its contents onto an external firewire drive before it totally lost its data. I installed a new hard drive in the iMac and put on a fresh copy of Leopard and iLife '80 - using my friend's same name for the user folder. Migration Assistant won't see the folder as it is on a connected but not bootable drive. So I need to manually drag over her data but I am concerned about just how to do this in a way that won't put me (and her) in "permissions agony." What's the best way to do this? Her system was running Tiger 10.4.11.
    Plus the same is the case for her old applications folder. How can I get all that including the files that go into various libraries. Migration assistant would be so wonderful as it handles all that stuff...any help with this part also?
    Thanks in advance.
    John
    Message was edited by: JOHN PAGE

    I was able to have a fairly successful conclusion to my dilemma. I had copied her information using Retrospect's Duplicate function and all her data was copied onto a firewire drive. This was done as her drive was going south before it totally deteriorated. I made a new administrative user with a slightly different user name (adding a 1 to her name) and copied all the user folder data over. Then I deleted the original user (and the 1 on her new user name) and was left with all her stuff in good shape with no permission problems that couldn't be taken care of with Disk Utility. Of course the Applications folder was one I didn't bother with because of how so many applications install things all over the place, preferences, application support folders, etc.; but, after a reinstall of most of her applications, things to seem to be working quite well. A few of her applications that I had no install for, I copied over successfully from her old application folder itself. Not bad.
    I bought a Time Capsule for her use and am backing up that way for her...as well doing a Super Duper incremental back also onto the Time Capsule.
    Thanks for your help.
    John

  • User only application Folder - Dockulicious

    I just noticed there is no application folder for just the user. Can I just set one up and place applications in it that only I have access to. Will this effect how the program performs? I was looking at the Dockulicious Docks apps which is really cool to change the dock. But I want to let each individual user set their own type dock.

    Graig,
    With a few exceptions, applications can go anywhere in the file system and run just fine. The most notable exceptions are Apple's own apps, and the need to have them in the main "Applications" folder is related to the ability to update them when needed. If I am not mistaken, some recent updates have addressed this issue, but it is still a good idea to keep them where they belong.
    For your own third-party apps, you can create a folder anywhere in your own HOME folder, and place them there. If you want them in your Dock, just drag them there from wherever you place them.
    Scott

  • User-specific Applications folder : inheritance possible ?

    Hello,
    Very rarely does anybody use this computer, but I'm learning about account security and trying it out in order to learn about how it works. So I created accounts for Administrator, Guest, and made my primary account standard.
    I have a growing number Applications and some of them aren't really of much use to anyone who uses this computer. So I figured this would be a good chance to learn about a private Applications folder.
    I created an "Applications" folder inside my home folder, and OS X was nice enough to give it the special "A" icon. (Thanks OS X! However, I was hoping that it would "inherit" the Apps from the main Applications folder and add those inside my Home directory to it. Currently they function as two completely separate folders, which works okay, but is less convenient.
    Is there a way to do this? If there is no built-in way, is there a way to accomplish this with Folder Actions? (I haven't used Folder Actions yet, but I'm reading about them and they're quite interesting....)
    Thanks,
    -- Tony
    White MacBook Core Duo   Mac OS X (10.4.8)  
      Mac OS X (10.4.8)  

    Well, I do already have an alias of "/Applications" in the Finder sidebar. Your suggestion functions, but what I'm trying to do is eliminate the extra click in switching from "~/Applications" to "/Applications". Not a huge deal, just an inconvenience I would like to ditch.
    So my hope is that there's a way to go to "~/Applications" and have it list everything from "/Applications" in addition to the local contents.
    Possible? *sniff sniff*

  • Home Folder Applications folder is empty

    Using Finder, if I select Macintosh HD, I get the applications folder, and it lists the apps, as it should. In the Sidebar is my Home Folder, identified by my short name...when I select it, I get various folders to view....the Applications Folder is empty...nothing....but if I select Macintosh HD in the Sidebar as I mentioned above, all the apps are their...
    What does this mean? Why is the Applications folder under my shortname empty?
    Thanks.

    "Why is the Applications folder under my shortname empty?"
    Because that is where apps that you, and only you have access to. No other users will see them or be able to use them. If the folder's empty, don't worry about it.

  • Configuring IDM menus for different roles for same user?

    Looking forward to Sun IDM 8.x and Sun Role Manager 4.1 installation. Couple of points before the decision are -
    1. If a user A has two roles R1 and R2 (for Sun IDM) then how does Sun IDM decide how the IDM console should appear (menus etc.) to the user based on whether he's logging in with Role R1 or R2? The login screen doesn't contain any input entry for choosing the role with which to log-in. With that in mind, is it even possible to have multiple roles for same login id? Or does the user have to maintain two seperate login identities?
    2. Same question for Role Manager
    3. Does Sun Role Manager 4.1 provide Roles merging feature?
    Thanks,
    AG

    IDM combines the two roles. So if a user has the two roles and role R1 grants access to menu items 1,2,3 and role R2 grants access to menu items 3,4,5, the user will have access to menu items 1,2,3,4,5. If you want to separate these two roles, you will need two different login users - but what exactly are you trying to achieve there?
    Can't help you with Role Manager, sorry.

  • EP: Does it support diff content for same user (Intranet vs internet)....

    Hi,
    Can a user say "abc" can have different content displayed while he logins from Internet or intranet.
    I am trying to find an answer to above question:
    We want to have one single production portal and this portal will be behind the outer firewall, DMZ and
    If one user "abc" when trying to login from internet, he can access only the vendor information of the company and when the same user "abc" login from intranet, he can access both vendor information and HR information.
    My research so far:
    help.sap.com &
    The SDN topic:
    Landscape with two Production Portals., was intresting and informative.
    In the link below, the slide 17, describes for the two different users can have two diff content.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7c3ba590-0201-0010-f4b1-953e107b9b57
    The multitenant EP was intresting, got an impression, it supports for different ABAP clients. question, Can Multi tenant portal implemented for same ABAP client and have the user abc have different content coming from the internet vs intranet?
    Based on Note 863837, multi tenant portal capabilities will removed from nw04s SP08, any idea what this note talking about
    Second question: Planning to install Apache in DMZ. Does Apache installation is supported on the Virtual machine.
    Any leads or answers are well appreciated and will be rewarded.

    Holger,
    Thanks for the reply, that was useful.
    I posted this message in service markeplace, and got a reply from SAP, and they do not have out of box solution. Since the project is on aggressive schedule, may be this issue, which involves lot of devlopment needs to tackle in next proect cycle.
    Qustion regarding the Apache was also resolved. Reply from SAP is posted below.
    Thanks,
    Durga
    HI Mr Durga,
    Can a user say "abc" can have different content displayed while he
    logins from Internet or intranet.
    This feature is not provided with the standard Delivered NWO4 suite.
    I would ask you to take this query in the sdn forum,as these type of
    questions are answered by SAP consulting guys.
    As far as multitenant EP is concerned,
    Based on ramp-up experience and customer feedback, SAP has decided to
    not release the IT scenario variant "Implementing a Multitenant Portal"
    for general availability after SAP NetWeaver 2004s ramp-up.
    Refer to the documentation link
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/
    615ad7dfeb4688e10000000a11466f/frameset.htm
    Second question:
    Does Apache installation is supported on the Virtual machine.
    Installation of Apache as DMZ is not Recommended by SAP.
    SAP Recommends SAP Web Dispacher.
    But SAP supports to a certain extend,if the client is using Apache.
    Please refer to the attached Note
    Note 480520 Integration of SAP J2EE Engine 6.20 / 6.40 with Apache

  • Trusted RFC not working for different user , working for same user

    Dear All,
    I have two SAP system - One Solman (7.0) and another ECC 6.0 (SR3) on HPUX box with Oracle DB (Unicode).
    I want to establish Trust relationship between these system.
    I have configured the same, as per the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/8b/0010519daef443ab06d38d7ade26f4/content.htm
    and note 128447.
    My requirement is one user X in solman client 001,
    will execute some test plan (Tcode stwb_2) which will take the control to ECC 6.0 client 200, execute the tcode as user Y and come back in Solman again.
    The user X (SAP_ALL) exists in Solman - client 001 and user Y (SAP_ALL) exists in ECC 6.0 - client 200.
    In ECC 6.0 client 200, I have created a role ZRFCACL with the following and assigned to the user Y (as per the above help / note):
    Role : ZRFCACL
    Auth. Obj: S_RFCACL
    Value assigned to fields are:
         RFC_SYSID : SOL
         RFC_CLIENT: 001
         RFC_USER  : X
         RFC_EQUSER: N
         RFC_TCODE : *
         RFC_INFO  : *
         ACTVT     : 16
    Whenever the user  X is trying to execute the test from solman, he is getting the error : "No authorization to log on as trusted system (RC = 0)"
    Each time the user is trying the above, in ECC 6.0, the following dump is occuring:
    CALL_FUNCTION_SINGLE_LOGIN_REJ under username SAPSYS
    I have assigned the role ZRFCACL to user X in Solman also.
    Next, I have performed the following check:
    created one user M in both system
    created the role ZRFCACL2 in ECC 6.0 client 200 as follows and assigned the role to user M:
         Role : ZRFCACL2
         Auth. Obj: S_RFCACL
         Value assigned to fields are:
              RFC_SYSID : SOL
              RFC_CLIENT: 001
              RFC_USER  : ''
              RFC_EQUSER: Y
              RFC_TCODE : *
              RFC_INFO  : *
              ACTVT     : 16
    Assigned SAP_ALL to user M in both system (So the user M in Solman does not have ZRFCACL2).
    This time, the trust relationship worked and no dump got generated.
    I have also checked the thread Trusted RFC do not work
    but unable to resolve the issue.
    Any suggestion where the things are going wrong in this / what else I need to check or this is not possible at all?
    Thanks in advance for your help.
    Sudip

    Hi Valdecir,
    Thanks for the reply. I am providing the detail of the generated dump below:
    Please check in case any clue is there.
    Runtime Errors         CALL_FUNCTION_SINGLE_LOGIN_REJ
    Date and Time          12.08.2008 18:59:32
    Short text
    No authorization to logon as trusted system (Trusted RC=0).
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPMSSY1" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An RFC call (Remote Function Call) was sent with the invalid user ID "98819 "
    . Or the calling system is not registered as trusted system in the
    target system.
    How to correct the error
    The error code of the trusted system was 0.
    Meaning:
    0    Correct logon as trusted system mode
    1 No trusted system entry for the calling system "SOL " or the
    security key entry for the system "SOL " is invalid
    2 User "98819 " does not have RFC authorization (authorization object
    (S_RFCACL) for user "98819 " witl client 001.
    3    The timestamp of the logon data is invalid
    The error code of the SAP logon procedure was 1.
    Meaning:
    0    Login was correct
    1    Wrong password or invalid user ID
    2    Locked user
    3    Too many attempted logons
    5    Error in the authorization buffer (internal error)
    6    No external user check
    7    Invalid user type
    System environment
    SAP-Release 700
    Application server... "gcbeccd"
    Network address...... "10.10.4.158"
    Operating system..... "HP-UX"
    Release.............. "B.11.23"
    Hardware type........ "ia64"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 1
    Shortdump setting.... "full"
    Database server... "gcbeccd"
    Database type..... "ORACLE"
    Database name..... "RD3"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 5 2008 00:55:24"
    create on........ "HP-UX B.11.23 U ia64"
    Database version. "OCI_102 (10.2.0.1.0) "
    Patch level. 146
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "HP-UX B.11"
    Memory consumption
    Roll.... 16192
    EM...... 4189840
    Heap.... 0
    Page.... 0
    MM Used. 1194640
    MM Free. 2992576
    User and Transaction
    Client.............. 000
    User................ "SAPSYS"
    Language Key........ "E"
    Transaction......... " "
    Transactions ID..... "489F2BD6C36D0F12E10000000A0A049E"
    Program............. "SAPMSSY1"
    Screen.............. "SAPMSSY1 3004"
    Screen Line......... 2
    Information on caller of Remote Function Call (RFC):
    System.............. "SOL"
    Database Release.... 700
    Kernel Release...... 700
    Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
    Call Type........... "synchron and non-transactional (emode 0, imode 0)"
    Inbound TID.........." "
    Inbound Queue Name..." "
    Outbound TID........." "
    Outbound Queue Name.." "
    Client.............. 001
    User................ 98819
    Transaction......... "SMSY"
    Call Program........."SAPLSRTT"
    Function Module..... "SCCR_GET_RELEASE_NR"
    Call Destination.... "SM_RD3CLNT200_TRUSTED"
    Source Server....... "gcbsolm_SOL_00"
    Source IP Address... "10.10.4.206"
    Additional information on RFC logon:
    Trusted Relationship "X"
    Logon Return Code... 1
    Trusted Return Code. 0
    Note: For releases < 4.0, information on the RFC caller are often
    only partially available.
    Information on where terminated
    Termination occurred in the ABAP program "SAPMSSY1" - in
    "REMOTE_FUNCTION_CALL".
    The main program was "SAPMSSY1 ".
    In the source code you have the termination point in line 67
    of the (Include) program "SAPMSSY1".
    Source Code Extract
    Line
    SourceCde
    37
    endmodule.
    38
    39
    module %_rfcdia_call output.
    40
    "Do not display screen !
    41
    call 'DY_INVISIBLE_SCREEN'.
    42
    perform remote_function_diacall.
    43
    endmodule.
    44
    45
    module %_cpic_start.
    46
    if sy-xprog(4) = '%RFC'.
    47
    perform remote_function_call using rfctype_external_cpic.
    48
    else.
    49
    call 'APPC_HD' id 'HEADER' field header id 'CONVID' field convid.
    50
    perform cpic_call using convid.
    51
    endif.
    52
    endmodule.
    53
    54
    55
    form cpic_call using convid type c.
    56
    communication send id convid buffer header.
    57
    if sy-subrc eq 0.
    58
    perform (sy-xform) in program (sy-xprog).
    59
    else.
    60
    message a800.
    61
    endif.
    62
    endform.
    63
    64
    form remote_function_call using value(type).
    65
    data rc type i value 0.
    66
    do.
    >>>>>
    call 'RfcImport' id 'Type' field type.
    68
    if sy-xprog = 'JAVA'.
    69
    system-call plugin
    70
    id 'JAVA' value 'FORW_JAVA'
    71
    id 'RC'   value rc.
    72
      if there is no rollout on the JAVA side which
    73
      rolls both, JAVA and ABAP, we return to the
    74
      C-Stack and reach this point
    75
    76
      in case there was an rollout, the ABAP-C stack is lost
    77
      and we jump direkt to this point
    78
    79
      here we trigger the rollout on this Abap side with
    80
      the following statement
    81
    system-call plugin
    82
    id 'JAVA' value 'ROLL_OUT'
    83
    id 'RC'   value rc.
    84
    else.
    85
    perform (sy-xform) in program (sy-xprog).
    86
    rsyn >scont sysc 00011111 0.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    1
    SY-TABIX
    0
    SY-DBCNT
    1
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    CPIC and RFC Control
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20080812
    SY-UZEIT
    185932
    SY-XPROG
    SAPRFCSL
    SY-XFORM
    READ_SINGLE_LOGIN_DATA
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    2 FORM         SAPMSSY1                            SAPMSSY1                               67
    REMOTE_FUNCTION_CALL
    1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30
    %_RFC_START
    Chosen variables
    Name
    Val.
    No.       2 Ty.          FORM
    Name  REMOTE_FUNCTION_CALL
    %_DUMMY$$
    0000
    0000
    2222
    0000
    SY-REPID
    SAPMSSY1
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454555322222222222222222222222222222222
    310D339100000000000000000000000000000000
    SYST-REPID
    SAPMSSY1
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454555322222222222222222222222222222222
    310D339100000000000000000000000000000000
    HEADER
    000000000000
    000000000000
    TYPE
    3
    0000
    0003
    SY-XPROG
    SAPRFCSL
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5455445422222222222222222222222222222222
    3102633C00000000000000000000000000000000
    %_ARCHIVE
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RC
    0
    0000
    0000
    SY-XFORM
    READ_SINGLE_LOGIN_DATA
    000000000000000000000000000000
    000000000000000000000000000000
    544455444445444445445422222222
    2514F39E7C5FCF79EF414100000000
    %_SPACE
    0
    0
    2
    0
    No.       1 Ty.          MODULE (PBO)
    Name  %_RFC_START
    %_PRINT
    000                                                                                0###
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RFCTYPE_INTERNAL
    3
    0000
    0003
    Internal notes
    The termination was triggered in function "ab_xsignon"
    of the SAP kernel, in line 2491 of the module
    "//bas/700_REL/src/krn/rfc/absignon.c#9".
    The internal operation just processed is "CALY".
    Internal mode was started at 20080812185932.
    Calling system.....: "SOL "
    Caller.............: "98819 "
    Calling client.....: 001
    RFC user ID........: "98819 "
    RFC client.........: 200
    Trusted return code: 0
    Logon return code..: 1
    Transaction code...: "SMSY "
    Active state.......: "-782823270"
    Note: At releases < 4.0, the information for the caller is not
    available.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    (0)  0x4000000003b2b450  CTrcStack + 0x1b0 at dptstack.c:227 [dw.sapRD3_DVEBMGS00]
    (1)  0x4000000004d2c470  Z16rabaxCStackSavev + 0x1d0 [dw.sapRD3_DVEBMGS00]
    (2)  0x4000000004d32160  ab_rabax + 0x3570 [dw.sapRD3_DVEBMGS00]
    (3)  0x4000000002b43cb0  SignOnDumpInfo + 0x280 at absignon.c:2491 [dw.sapRD3_DVEBMGS00]
    (4)  0x4000000002b3f2f0  ab_xsignon + 0xb30 at absignon.c:876 [dw.sapRD3_DVEBMGS00]
    (5)  0x4000000002aa4cb0  ab_rfcimport + 0x1ad0 at abrfcfun.c:3599 [dw.sapRD3_DVEBMGS00]
    (6)  0x40000000040f4a80  Z8abjcalyv + 0x500 [dw.sapRD3_DVEBMGS00]
    (7)  0x400000000402f190  Z8abextriv + 0x440 [dw.sapRD3_DVEBMGS00]
    (8)  0x4000000003f538b0  Z9abxeventPKt + 0xb0 at abrunt1.c:281 [dw.sapRD3_DVEBMGS00]
    (9)  0x4000000003f360a0  ab_dstep + 0x280 [dw.sapRD3_DVEBMGS00]
    (10) 0x4000000001cb4600  dynpmcal + 0x900 at dymainstp.c:2399 [dw.sapRD3_DVEBMGS00]
    (11) 0x4000000001cab0e0  dynppbo0 + 0x280 at dymainstp.c:540 [dw.sapRD3_DVEBMGS00]
    (12) 0x4000000001cb1ec0  dynprctl + 0x340 at dymainstp.c:358 [dw.sapRD3_DVEBMGS00]
    (13) 0x4000000001c9dff0  dynpen00 + 0xac0 at dymain.c:1628 [dw.sapRD3_DVEBMGS00]
    (14) 0x4000000001fea460  Thdynpen00 + 0x510 at thxxhead.c:4830 [dw.sapRD3_DVEBMGS00]
    (15) 0x4000000001fb4de0  TskhLoop + 0x4e20 at thxxhead.c:4518 [dw.sapRD3_DVEBMGS00]
    (16) 0x4000000001faae40  ThStart + 0x460 at thxxhead.c:1164 [dw.sapRD3_DVEBMGS00]
    (17) 0x4000000001569ec0  DpMain + 0x5f0 at dpxxdisp.c:1088 [dw.sapRD3_DVEBMGS00]
    (18) 0x4000000002c10630  nlsui_main + 0x30 [dw.sapRD3_DVEBMGS00]
    (19) 0x4000000002c105c0  main + 0x60 [dw.sapRD3_DVEBMGS00]
    (20) 0xc00000000002be30  main_opd_entry + 0x50 [/usr/lib/hpux64/dld.so]
    List of ABAP programs affected
    Index
    Typ
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    SAPMSSY1
    0
    11.04.2005
    09:27:15
    22528
    E
    1
    Prg
    SAPLSCCA
    1
    05.07.2005
    13:10:18
    52224
    E
    2
    Prg
    SAPRFCSL
    0
    13.02.2005
    17:31:45
    17408
    E
    3
    Typ
    RFCSYSACL
    0
    13.02.2005
    17:31:45
    7168
    4
    Typ
    SYST
    0
    09.09.2004
    14:18:12
    31744
    Directory of Application Tables
    Name                                     Date       Time       Lngth
    Val.
    Program  SAPMSSY1
    SYST                                       .  .       :  :     00004612
    \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\0\0
    Program  SAPRFCSL
    RFCSYSACL                                  .  .       :  :     00001760
    SOL                             RD3
    ABAP Control Blocks (CONT)
    Index
    Name
    Fl
    PAR0
    PAR1
    PAR2
    PAR3
    PAR4
    PAR5
    PAR6
    Source Code
    Line
    116
    CLEA
    00
    0035
    SAPMSSY1
    60
    117
    CLEA
    00
    0036
    SAPMSSY1
    60
    118
    CLEA
    00
    0037
    SAPMSSY1
    60
    119
    MESS
    00
    001C
    SAPMSSY1
    60
    120
    ENDF
    00
    0000
    SAPMSSY1
    62
    121
    00
    0000
    SAPMSSY1
    62
    122
    PERP
    00
    0001
    SAPMSSY1
    64
    123
    PERP
    02
    0000
    SAPMSSY1
    64
    124
    WHIL
    00
    0002
    0000
    0000
    0000
    0000
    0000
    0000
    SAPMSSY1
    66
    128
    WHIL
    00
    0003
    0000
    0000
    0000
    0000
    0000
    0000
    SAPMSSY1
    66
    132
    BRAN
    05
    001E
    SAPMSSY1
    66
    133
    CALY
    00
    0003
    0038
    002A
    0005
    002B
    0000
    0000
    SAPMSSY1
    67
    >>>>>
    CALY
    02
    0000
    0039
    8000
    0000
    0000
    0000
    0000
    SAPMSSY1
    67
    141
    COMP
    00
    0002
    0010
    003A
    SAPMSSY1
    68
    143
    BRAF
    02
    000E
    SAPMSSY1
    68
    144
    SRFC
    01
    0000
    003A
    003B
    SAPMSSY1
    69
    146
    SRFC
    01
    0000
    003C
    C000
    SAPMSSY1
    69
    148
    SRFC
    02
    0000
    0000
    0000
    SAPMSSY1
    69
    150
    SRFC
    01
    0000
    003A
    003D
    SAPMSSY1
    81
    152
    SRFC
    01
    0000
    003C
    C000
    SAPMSSY1
    81
    Thanks & Regards
    Sudip

  • Can Exchange have 2 different mailboxes for same user

    hey guys,
    I need to know whether Exchange 2010/2013 can have two mailboxes for the same user e.g.
    1st mailbox is configured to send and receive emails for: xxxxpride.co.ke and 
    2nd mailbox is configured to send and receive emails for: xxxxsolutions.co.ke
    is this possible? if not how should i go about this scenario?
    will it mean I have to run two different exchange and AD servers which will have a different public IP?

    No you can not have 2 mailbox for one user. Because, mailbox is associated with AD account and you need authentication to send emails.
    In this case you can do  following 
    1. Create a different user account with 2nd email address and Forward that 2nd email to first one. So User is reading 2 email in one mailbox. TO send email from 2nd mailbox assign the send as permission to first account.
    2. Add the Alias email address in your first mailbox. (By doing so) User will recieve the emails for both address but cant send from 2nd email address.
     You can have multiple domains configured to recive and send emails in one exchange server.Yes certainly
    we can create multiple recipient for multiple domains.. Under authoritative domains section of hub transport. External Relay and Internal relay and authoritative domains can be created. you can create email address policies for each domain as well. See the
    link below to understand more.
    http://technet.microsoft.com/en-us/library/aa996314%28v=exchg.150%29.aspx
    UMESH DEUJA MCP,MCTS,MCSA,CCNA

  • Authorization sales documents varrying per transaction for same user.

    Dear Gurus,
    I have a query in defining the transaction authorizations for a user on the transaction level.
    Requirement is as follows.
    I want to give the transaction code VA01 to a user to create 2 sales orders say OR,  RE so while authorizing document types i will allow both the document types only to that user to create.
    But at the same time for the same user i want to allow the transaction code VA02 also with some more document types say OR, RE, CR, FD.  means I want to allow the change mode of 4 documents but 2 documents for create transaction.
    there fore the user can never create the CR and FD sales order but can make changes for all 4 documents OR, RE, CR and FD.
    Please tell me while defining the role and authorizations for a user how can I fulfill the above requirement?
    Anyhow I have to fulfill the above requirement. So Please suggest me all the possible solutions.  by any possible way to complete the authorization.
    Please reply me soon guurs.
    regards,
    Sanjay

    Hi Sanjay
    As you are asking for all possible way I am suggesting you two ways:
    1. Take help of BASIS team
    2. Use user exits: Create a Z table for all the users you want such authorization and code the following code in user exit USEREXIT_SALESORDER_SAVE under MV45AFZZ.
    Z table structure:
    1. User id
    2. Tcode
    3. Order type
    Code for user exit:
    If tcode = VA01 and ordertype = OR, RE.
       Check Z table.
           If entry not found.
               Exit without saving.
            end if
    endif.
    If tcode = VA02 and ordertype = OR, RE,CR, FD.
       Check Z table.
           If entry not found.
               Exit without saving.
            end if
    endif.
    try and revert

  • Is it possible to override the SecurityFilter class so that I can use it for my external app which is deployed in ToolsAndFramework and needs to validate for same user/password as is being used to log in experience manager?

    I have created a java app and deployed in ToolsAndFramework of endeca and since that app can be accessed through a directl url so want to implement an security filter which will use the same user validation as is used in experience manager.

    Sorry to hear that, but this forum is for us, users, and what you need is someone from Xperia Care to find your motherboard and send it back, I don't think it'll be possible to retrieve any data from a broken motherboard. 
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

Maybe you are looking for

  • Need to download hp laserjet m1319f mfp

    as it got erased while my reset was being done and the diskdrive is not working either This question was solved. View Solution.

  • File renaming weirdness

    I hope someone can straighten me out here. I moved a bunch of jpegs to the desk top so I could rename them. I created a folder and tried to move them there. It copied the jpegs to the folder but the originals stayed on the desktop. anyway, when I tri

  • Autoconfig Run on which node first

    Hi Guru's, I had little confusion, 1. Where to run auto config first DB node or Apps node, and Why (which ever is the first node), 2. if multiple Application nodes then on which node first, 3. both cases like noshared application file system and shar

  • Zen Micro wont turn o

    [size="4" color="#0000ff">My zen micro isn't turning on now when i hold the button. The only way to turn it on is to connect it to the usb port. Is there anyway to restart it so it will work?

  • When I answer my iPhone 4s, I cannot here the person calling unless I switch to speakerphone.  How can I fix this?

    When I answer my iPhone 4s I cannot hear the person calling unless I switch to speakerphone.  How do I fix this?