R12 - irecruitment external candidate user account

Hi,
As part of Oracle's release R12.1.2, recruiter can create external candidate's user account.
I have set the "IRC: Create User Account" to Yes at site level. This made the e-mail field on create candidate page as required. I created the cadidate with required information.
After that, I can search the candidate with the first name, last name etc. However, no e-mail/notification is sent to that external candidate. When I checked the user for that external candidate using system administrator responsibility, the user account is created but there is no responsibility attached to it.
Oracle is expected to send a notification to the e-mail id of external cadidate with login information which is not happening. What am I missing?
Thanks!

This sounds like a problem with standard functionality to me so you might want to kick off the SR route.
A couple of things:
1) Can you see the notification in wf_notifications?
SELECT *
FROM wf_notifications
ORDER BY notification_id desc;
(this gets all notifications ordered by the most recent, so scan through the begin_date to see if you can find one for this user)
2) Do you see any responsibilities after running these concurrent programs:
- Sync responsibility role data into the WF table.
- Synchronize WF LOCAL tables

Similar Messages

  • E-Rec 6.04 Incorrect status of external candidate user password.

    Hi,
    We are on E-Rec 604 with seperated standalone e-rec system.
    I have a problem with the password of external candidates. When an external candidate is registered in the application, introduce user and password and all mandatory fields and all work ok. He can enter in his profile, introduce all fields, apply offers, etcu2026
    But when he log off and try to access again, the password is incorrect. If the external candidate Request a new password all works ok and when introduce this one and change this initial password, this new one let him to access in the future login in the correct  way.
    I realized that this is because the USER in R3 of the external candidate is cretaed with the field Password Status set to Initial password (set by administrator) and I think it is wrong, the status must be Product. Password. Instead, when request new password and set the new one the field status is Product. Password., the correct statusu2026
    I´m very confused I don´t know what can I did wrong.
    The type of the user is Dialog and the user that create all the external candidates user is the WF-BATCH my workflow useru2026 I think perhaps this is the reasonu2026 This is the correct user to create the external users?. Perhaps.. I set the assigned agent bad in any Workflowu2026?
    Somebody could guide me, please?.
    Best Regards,
    Esther

    Hi,
    it seems you have a workflow in background sending out a smartforms based email after registration.
    This smartforms seems to have a password generation mechanism, which overwrites the password of the user with a new initial one.
    Please check that.
    Best regards
    Sebastian

  • E Recruitment External candidate user id in SU01

    Dear All,
    while creating user name for  external candidate through HRRCF_CAND_REG, a user name is getting created with some different sequence and we can see it in SU01. will SAP treats it as a new user when it comes to user licences or will SAP ignore this user. please let us know if we are missing on something.
    Regards

    Dear ,
    Following information about E-Recruiting user licenses:
    For Reference User,Service user & Communication user you may please refer to the chapter 13.7 of the System Measurement guide 7.0 available in the service market place (service.sap.com/licenseauditing   >Named
    user Measurement     > Documentaion) Please also refer to the SAP Notes
    327917 & 553606)
    Regarding Dialog Users, You need to customize some special user types to identify these users like the following:
    Special user 01 (ID 71): e-Recruiting, External
    Special user 02 (ID 72): e-Recruiting, Internal
    a.For the External Candidates who log on to SAP System Via URL- Should be classified with Special user 01(71)= e-recruiting External
    b.Internal Candidates who are employees (and not already have a chargeable user in another SAP System)Should be classified with Special user 02 (72) = e-Recruiting,Internal
    So the external users (ID71) are not counted against your e-recruiting
    user licenses!
    This is 100% assurance..
    Best Regards,
    Deepak...

  • How to enable Preferences link on Irecruitment External Candidate page?

    Dear all,
    We are accessing Irec External Candidate home page through below URL.
    http://host:port/OA_HTML/IrcVisitor.jsp
    Two languages are installed on this instance. (English, Arabic)
    Now while launching this page, we would like to choose Arabic language.
    How can we achieve this?
    Note:
    I already treid my hands on following.
    1. addedt ICX_GLOBAL_MENU to Irec Candidate global menu
    2.Added ICX_GLOBAL_MENU to External Candidate menu
    No luck.

    Pls check below link if this help:-
    In iRecruitment, Display Language Is A Required Field on External Site [ID 363614.1]
    Thanks,
    JD

  • Extending logic behind a checkbox in iRecruitment external candidate page.

    Hi All,
    We have a requirement to extend the logic behind the check box in Irecruitment external page (AplOtherInfoPG). The logic is buit in a AM (IrcCandidatePersonalAcountAM). Its a root AM for the page AplOtherInfoPG and its referred from many other pages too. I have extended this AM using following steps
    1. FTP all the files from $JAVA_TOP/oracle/apps/per/* to your PC and configure your PC for OA Framework development
    2. Create a new BC4J package in which the extension will reside.
    3. Note down the path and the properties of existing AM that we wish to extend
    4. Create a new AM, and specify the original AM being extended.
    5. Ensure that the properties of original AM are applicable for new AM too.
    6. Perform substitution. This will create a jpx file.
    7. Upload the jpx file into Database.
    8. Deploy the custom BC4J to $JAVA_TOP by FTP'ing all files.
    9. Bounce the server
    After this change I'm getting the error 'JBO-29000: Unexpected exception caught: java.lang.StackOverflowError, msg=null'. This error is appearing on all the pages where the same AM(IrcCandidatePersonalAcountAM) is referred. Its totally clueless.
    I have got an suggestion that extending an root AM is not recommanded in OAF. If So, how I should go about it.
    Please help me to achieve this requirement.
    Thanks,
    Guru

    Hi Guru,
    As you mentioned extending the rootAM is not advisable.
    As a workaround what you can try is
    1) Extend the controller in your page,
    and get the RootAM, ChildAM, Your VO(where you have the checkbox attribute is there) and then set the value what do you wanted.
    Use the below code to get your required AM and VO, please change the sample code according to your AM name...etc.
    // Get requested AM from Root am
    public OAApplicationModule getRequestedAM(OAPageContext pageContext, String requestedAMName)
    writeLog(pageContext,"Requested AM called to check the AM "+requestedAMName );
    String amName = "";
    String objectivesAMName = requestedAMName;//"ObjectivesAM";
    String nestedAMArray[] = pageContext.getRootApplicationModule().getApplicationModuleNames();
    pageContext.writeDiagnostics(this,"Root AM=>"+pageContext.getRootApplicationModule().getName() + " Child AMs=>"+ nestedAMArray.length,1);
    OAApplicationModule currentAM = null;
    currentAM = (OAApplicationModule)pageContext.getRootApplicationModule();
    for(int i = 0; i < nestedAMArray.length; i++)
    amName = nestedAMArray;
    pageContext.writeDiagnostics(this,"Nested AM Name=>"+amName + "and amName.indexOf(objectivesAMName) "+amName.indexOf(objectivesAMName),1);
    currentAM = (OAApplicationModule)pageContext.getRootApplicationModule().findApplicationModule(amName);
                        //Get the view names
                   String[] viewNames = currentAM.getViewObjectNames();
    for (int i =0 ;i<viewNames.length ;i++ )
    writeLog(pageContext,i +" Value "+viewNames[i]);
    if(!(amName.indexOf(objectivesAMName)==-1))
    pageContext.writeDiagnostics(this,"Found Handle to My Nested AM " + amName ,1);
    break;
    return currentAM;
    Get the VO from the AM
    OAViewObject objAssessmentVO = (OAViewObject)yourAM.findViewObject("yourVO");
    Get all the attribute from a VO with Attribute Names in Custom CO
    OAApplicationModule rootAM = pageContext.getRootApplicationModule();
    OAApplicationModule apprAM = (OAApplicationModule)rootAM.findApplicationModule("AppraisalsAM");
    String offlineStatus = (String)apprAM.invokeMethod("getOfflineStatus",new Serializable[]{appraisalId+""});
    OAViewObject appraisalVO = (OAViewObject)apprAM.findViewObject("AppraisalVO");
    if(appraisalVO !=null)
    AppraisalVORowImpl appraisalVORow = (AppraisalVORowImpl) appraisalVO.first();
    if(appraisalVORow !=null)
    int attrCount = appraisalVO.getAttributeCount();
    writeLog("XXRBG",pageContext,"Attrbuute count "+attrCount);
    String[] attributeNames = appraisalVORow.getAttributeNames();
    for (int i = 0 ;i< attributeNames.length ;i++ )
    writeLog("XXRBG",pageContext," Name "+attributeNames[i] +" = "+appraisalVORow.getAttribute(i));
    Thanks,
    With regards,
    Kali.
    OSSi.

  • Irecruitment external candidate issue- Urgent Plz

    Hi All,
    We are having irecruitment enabled for the external site visitors in the website. This is working fine with the IE7 version. Now users are using IE 8 version and they are facing some problems like not able to upload the resume.
    So my question is, Is there any setups we need to do for the IE 8 version of the irecruitment version.
    Thanks and Regards,
    joshna.

    From this post i came to know that we need the form updation is required, if we update the forms versions. We may face different issues which can't be expected. So i want suggestion from you people to go forward.This is a must to meet the minimum requirements and ensure that your client browser and OS are certified with Oracle EBS.
    What i suggest to the client is enable a tip message in the External site visitor page that This application is not compatible to the IE 8 for time being, but i need to fix it asap.I believe there is no other fix (or workaround). If you do not want to apply the required patches to meet the minimum requirements, then you may log a SR and see if Oracle support would help (I doubt it since they will ask it to apply those patches first).
    Thanks,
    Hussein

  • Error While saving Basic Detail in iRecruitment External Candidate

    Guys
    Actually data was already saved by IEC responsibility after some changing then we accessed this page again then basic data was blank while address information was appearing properly, and we update again basic information then system is being raise error " No current row for View (IrcCandidatePerInfoVO)".
    this coused was due personalization ,
    Could you please help me this issued is appearing on prod system.
    Thanks.

    i checked the solution, which is step below, i have checked end date,but this field was blank.
    Could you please help me furthere if you don't mind.
    Edited by: oracle0282 on Nov 5, 2010 3:49 AM

  • Irec External Candidate issue

    We created external user in Irec. Username created successfully and following responsibility is assigned to him by system.
    iRecruitment External Candidate
    Now I try to log in with this username/password.
    After entering username/password of external candidate, it automatically goes to below url and I am getting no page found error.
    https://careers.abc.uk/OA_HTML/OA.jsp?page=/oracle/apps/fnd/sso/login/webui/MainLoginPG&akRegionApplicationId=0&transactionid=540823505&language_code=US&requestUrl=&username=IREC_USER&langCode=US&rfctx=bstfKXcnspEIVScal1nW3g76X1cwPYd-pHAbKQravIE&oas=x5NkJ7Hrj1CbAfiDDXFRvw..
    I believe, we are missing some setup.
    So please advice.

    From log, it clearly indicates that, when we try to open below link:
    http://erp-dev.ajman.ae:8021/OA_HTML/IrcVisitor.jsp
    then it divers to the "career.ajman.ae:443". it should be "erp-dev.ajman.ae:8021" instead of this.
    I think it is happening due to some framework profile.
    Once we will set the correct value in this profile, issue will be resolved.
    Can someone tell me the exact profile name?
    https://career.ajman.ae:443/OA_HTML/OA.jsp?page=/oracle/apps/irc/candidateSelfService/webui/VisHomePG&akRegionApplicationId=821&OAPB=IRC_BRAND&transactionid=1954324264&language_code=US&p_home_url=/OA_HTML/IrcVisitor.jsp&OASF=IRC_VIS_HOME_PAGE&OAHP=IRC_EXT_SITE_VISITOR_APPL&rfctx=O.aAEciZ4lS2n-qmSZgRyg76X1cwPYd-pHAbKQravIE&oas=a3TIuomUokplzudm3asqmg..
    GET /OA_HTML/IrcVisitor.jsp HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Host: erp-dev.ajman.ae:8021
    Connection: Keep-Alive
    Cookie: oracle.uix=0^^GMT+3:00^p
    HTTP/1.1 302 Moved Temporarily
    Date: Wed, 20 Apr 2011 08:40:19 GMT
    Server: Oracle-Application-Server-10g/10.1.3.0.0 Oracle-HTTP-Server
    Set-Cookie: JSESSIONID=c0a8646f54655c3cbb8705c64491ac23e910c88e534c.e34TbNaNaN0Qai0QaNeObhyTbN50; path=/OA_HTML
    Set-Cookie: DEV=9mJk2lvFEh-9AU5nqVygsZNS:S; Domain=.ajman.ae; Path=/
    Location: http://erp-dev.ajman.ae:8021/OA_HTML/RF.jsp?function_id=14296&resp_id=23350&resp_appl_id=800&security_group_id=0&lang_code=US&params=eH5l70xLXi1cY17ZmbkqBmDaVkSdJzj2r8LJn-7qn4IX5g3dynlT13MLJh34U.87&oas=7pFNuuV8mfnYYyBWkRLqYQ..
    Keep-Alive: timeout=15
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=WINDOWS-1256
    GET /OA_HTML/RF.jsp?function_id=14296&resp_id=23350&resp_appl_id=800&security_group_id=0&lang_code=US&params=eH5l70xLXi1cY17ZmbkqBmDaVkSdJzj2r8LJn-7qn4IX5g3dynlT13MLJh34U.87&oas=7pFNuuV8mfnYYyBWkRLqYQ.. HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Host: erp-dev.ajman.ae:8021
    Connection: Keep-Alive
    Cookie: JSESSIONID=c0a8646f54655c3cbb8705c64491ac23e910c88e534c.e34TbNaNaN0Qai0QaNeObhyTbN50; oracle.uix=0^^GMT+3:00^p; DEV=9mJk2lvFEh-9AU5nqVygsZNS:S
    HTTP/1.1 302 Moved Temporarily
    Date: Wed, 20 Apr 2011 08:40:19 GMT
    Server: Oracle-Application-Server-10g/10.1.3.0.0 Oracle-HTTP-Server
    Set-Cookie: JSESSIONID=c0a8646f54655c3cbb8705c64491ac23e910c88e534c.e34TbNaNaN0Qai0QaNeObhyTbN50; path=/OA_HTML
    Location: https://career.ajman.ae:443/OA_HTML/OA.jsp?page=/oracle/apps/irc/candidateSelfService/webui/VisHomePG&akRegionApplicationId=821&OAPB=IRC_BRAND&transactionid=1954324264&language_code=US&p_home_url=/OA_HTML/IrcVisitor.jsp&OASF=IRC_VIS_HOME_PAGE&OAHP=IRC_EXT_SITE_VISITOR_APPL&rfctx=O.aAEciZ4lS2n-qmSZgRyg76X1cwPYd-pHAbKQravIE&oas=a3TIuomUokplzudm3asqmg..
    Keep-Alive: timeout=15
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=WINDOWS-1256
    -------------------------------------------------------------------

  • IRec: Hosting multiple pages for external candidates

    Do we have any standard mechanism or possibility of hosting multiple pages iRecruitment External Candidate/ IrcVisitor.jsp?
    Thanks in advance.

    Hi
    There is no standard mechanism but you can definately refer to the article & solution provided by Anil which describes about how multiple IrcVisitor.jsp can be hosted for segregating vacancies geo wise.
    http://www.apps2fusion.com/solutions/82-oracle-hcm-solutions/454-irecruitment-vacancy-segregation-solution
    Hope it helps.
    Thanks,
    Sanjay

  • Can't log into User Account after disrupting external hard drive

    I keep my account (Admin) on an external hard drive due to the large volume of data. I mistakenly pulled out the USB cable to the drive while trying to resolve another issue. Subsequently, it appeared a lot of my data was missing. I restarted the computer and couldn't log into my user account. It seems pulling the USB cable to the external drive corrupted something. I verified both disks (internal & external) and all was OK. I ran Disk Permissions and tried to repair. The resultant information is attached at the bottom of this message.
    I can access my data on the hard drive from my laptop over the network. I just can't get into my user account directly. Any ideas on how I can address this issue?
    Repairing permissions for “Macintosh HD”
    Warning: SUID file "usr/libexec/load_hdi" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/Resources /DiskManagementTool" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Reso urces/Locum" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/Install.framework/Versions/A/Resources/runner " has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/readconf ig" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig" has been modified and will not be repaired.
    Warning: SUID file "usr/libexec/authopen" has been modified and will not be repaired.
    Warning: SUID file "System/Library/CoreServices/Finder.app/Contents/Resources/OwnerGroupTool" has been modified and will not be repaired.
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/classlist" , should be 0, user is 95.
    Permissions differ on "Library/Frameworks/HPPml.framework", should be drwxrwxr-x , they are drwxr-xr-x .
    Permissions differ on "Library/Frameworks/HPServicesInterface.framework", should be drwxrwxr-x , they are drwxr-xr-x .
    Permissions differ on "Library/Printers/hp/Frameworks/Matterhorn.framework/Versions/DI_MH.A.05.01.001 /Resources/Info.plist", should be -rw-rw-r-- , they are -rwxrwxr-x .
    Permissions differ on "Library/Printers/hp/Frameworks/ResourceManager.framework/Versions/DI_RM.A.04.0 7.000/Resources/Info.plist", should be -rw-rw-r-- , they are -rwxrwxr-x .

    There may have been another solution to this problem but I went the route of creating another user name and migrated the data over to that name. Thank you!

  • 2 user accounts, 2 itunes libraries, 1 shared media folder - external drive

    Hi--
    I've researched this to death, and have not found any answers.
    So my wife and I each have individual
    - Apple IDs
    - user accounts on a shared mac
    - itunes libraries (in our user/music folders)
    We have one massive 500 GB media folder on a non-startup drive, that I'd like to be the source for the actual music in our respective itunes libraries. I've pointed the the "iTunes media location" (under Prefs > Advanced) at this folder repeatedly.
    The media in that huge folder does not show up in my wife's itunes. It is too big to be moved to the startup drive to store in Users/Shared or Public.
    I have tried alias and symlinking to no avail. I believe it may have to do with permissions and have downloaded Batchmod but am unclear what I should set the permissions on
    Also I assume this has nothing to do with File Sharing?
    Somebody out there must have gotten this to work...
    Thanks for all advice!

    Chris - again many thanks. I think I am 95% sure I'm understanding.
    As you've laid it out below, if either one of us rips a CD in our individual accounts, the actual MP3s (or AACs) WILL be added to the giant itunes media library on the external.
    HOWEVER, those newly ripped songs will ONLY appear in the account of the person who did the ripping. So the only workaround is to periodically "re-add" the entire giant media folder to each person's library? (assuming this won't create duplicates)
    Chris CA wrote:
    redzep wrote:
    Chris, Thanks so much for your prompt and helpful reply. Just to clarify:
    1) I need to "add to library" and select the entire 500 gb media folder
    Yes.
    Mkae sure iTunes prefs > Advanced - iTunes media folder location is pointed to the iTunes media folder on the external.
    BUT make sure that
    "Copy file to iTunes Media folder when adding to library" is UNCHECKED, right?\
    This should be checked so when either of you adds antyhthong, it will get copied to the iTunes media folder on the external.
    If the other adds something to their library by selecting something already in iTunes media folder, it will not get copied there again.
    Then she should see the same music, be able to drag/drop to her iphone, make her own playlists etc. right?
    Yes.
    The iTunes library,itl file (tells iTunes where everything is, what the playlists are, ratings, etc.)  is in the /Music/iTunes/ folder on your internal.
    2) But if either one of us adds some music, it will not dynamically update in the other one's itunes? Does this apply to both music ripped from CD as well as itunes purchases (from our respective accounts?)
    Correct. it will not update the other person's library.
    This applies to everything.

  • How do I migrate from a former user account on an external drive after a clean install?

    This question has been partially answered before but not to my satisfaction and, from what I've found, not for Mountain Lion.
    My MBPr was running fine for a week after I transfered my User account to an external drive. After some reorganization I decided to move the acount to a different external drive. I blundered and, for whatever reason, was unable to log in to any account on my MBPr. Not even my backup account - which suprised me. (I tried repairing disks, permissions, etc...) I tried to resolve it on the phone with Apple to no avail. Finally, I gave up. I booted into recovery and did a reinstall. After 12 hours I came back to find that it wasn't a clean reinstall. And I still couldn't log in to anything. 
    I then did an erase and reinstall. After another 12 hours I now have a clean install of Mountain Lion on my MBPr. I have an external drive with my former working user directory (Home:Users/mrmoose) on it. (BTW, It is LARGER than my internal SSD drive, it is not bootable, AND I have no backup of it in Time Machine format.)
    My current user account is Macintosh HD:Users/bullwinkle
    1) Is there a way to "reclaim" my user account on the external drive - possibly without even copying or migrating?
    2) Can I copy the contents of bullwinkle (excluding some of my folders under Documents so it fits) to Macintosh HD Users/bullwinkle? Including the Library folder? I have audio plugins, etc...
    I'd still like my User directory on an external drive. But I will settle for keeping it on the internal drive. I just want my info back.
    Why, oh, why does Migration Assistant require your data to be in TIME MACHINE format only - why can one not migrate from a full copy on an external drive? Why can't it look at the darn thing and say, "Hey, that's a copy of an OSX User directory. I can migrate data from that."?
    I would greatly appreciate a detailed response. THANK YOU. Lama Out.

    ~/Library is probably the one you don't want to move back because it may bring the issues back along with it.
    All your own data you can drag & drop. You can drag the contents of any folder Movies, Music, Pictures, Documents (or as much as you want).
    Rather than try to replace the Library you can take ~/Library/Application Support, Mail, Safari and any other folders you need.
    To access your hidden ~/Library folder go to your Finder "Go" menu hold the option key to choose "Library".
    Then you can drag it to the Sidebar for easy access.

  • User account on external hard disc frequently gets corrupted - reasons?

    Dear all,
    I have recently written a question regarding a problem with my user account; in this question I have described that I have my data for my user account on an external hard disc (USB2 hard disc), and that all data in this account seemed to be deleted one day (in fact, it was simply set to a wrong path, see below); user V.K. has helped me out of the problem - the problem could be solved by renaming the external hard disc and setting the path to my user data folder in the "user account" settings to my old folder on the renamed disc; You can find our discussions here: http://discussions.apple.com/thread.jspa?threadID=1513799&tstart=0 By the way, I use OS X 10.5 (newest version).
    Now, several months later I find myself in the situation that the problem returns frequently, although I do not yet see regularities or the reason; each time the described renaming-procedure helps, but anyway it is annoying, and some programs who have data on my user account folder (such as Linotype FontExplorer X - latest version!) even fail to notice the change and have to be very reset with lot of effort.
    Now, as I can not imagine that I am the only one who uses a user account on an external drive, I start wondering what am I doing wrong. Did anybody else ever experience problems like these? Does it also occur when the user account is stored in a network (on a server) - which must be a very common workplace setup? Is there anything known about the reasons?
    I do not understand what causes this problem; and also, the problem seems to be very intricate - I do not know enough about the internals of Mac OS X, but (if You look into my old post cited above), if You simply try to reset the user path in the user account settings to the folder on the NOT renamed disc, the account stops to work completely, and the user cannot log into it at all; somehow, there seem to be different "stages" of corruption of the account on the external drive - I think that this may help somebody with detailled knowledge to understand the problem, but I am out of the game here... also, all the old names of the external drive keep to be mounted in the "Volumes"-folder on Macintosh HD - although they don't exist anymore.
    I have formatted the external drive to "Mac OS Extended"; is this okay - or should it better be formatted to "Journaled"? The drive is a 500 GB external drive from LaCie - I think it should be okay (I have two of them - one for TimeMachine - the drives themselves work reliably, it appears).
    Is there anybody who can help - or anybody with a similar setup and who could tell me whether or not he ever experienced a similar problem, and what he did against it (if necessary)? Thanks in advance!!!
    With kind regards and greetings from Berlin,
    Björn

    Aside from starting over, losing whatever you've done on the new machine, see Pondini's Transferring files from one User Account to another. If you haven't done much and can afford to lose that data, I suggest starting over, following the steps in Pondini's Setup New Mac guide. That should result in just one user account.

  • Access to my Office 365 third-party app for external user : "a User account is not registered for the account"

    In my third-party web application of Office 365, I want to have access to the contacts, events and emails of all the users from the organizations who installed my app. The thing is I don't want that all these users have to grant me access, I just want one
    admin of the org to grant access for my app and then be able to retrieve the data I need for all the users.
    To test for one organization, I logged in as the admin and proceed to the Oauth2 authentication to retrieve the access token and in the first request (the GET one to retrieve an authorization code) i add the parameter
    prompt=admin_consent.
    With this access token, I can access the data (emails, contact, event) of the admin
    for instance for the contacts
    uri: https://outlook.office365.com/ews/odata/Users(adminemail)/Contacts
    but not the data of the other users of this org with this uri
    uri: https://outlook.office365.com/ews/odata/Users(useremail)/Contacts
    The only thing I can do is retrieve an access token for each user but it supposed that each user has to authorize the access to the app but it's very cumbersome. So, i don't see what enables the parameter prompt=admin_consent and how to use it. Does anybody
    know what it does?
    And my question is: how can I do to access the data of all the users of one organization when the access has been granted by one admin?
    Thank you!

        
    This was answered on StackOverflow by Dushyant Gill.  http://stackoverflow.com/questions/25316175/access-to-my-office-365-third-party-app-for-external-user-a-user-account-is-n/25316678#25316678
    You are sending the OAuth request to a tenant specific endpoint of Azure AD. Note the {key_provided} part of your Url - that part represents the tenantid or a registered domain name of an Azure AD tenant. Azure AD throws this error is the user signing in
    is not a user in that tenant.
    Multi-tenant applications like yours have two options:
    Perform home realm discovery yourself and send the SSO request to the correct tenant-specific endpoint of Azure AD: when a new Azure AD organization signs-up for your application, record its tenant ID, and registered domain names. On your login page, ask
    the user for their email and try to discover what Org they belong to using the suffix the email.
    Use the common endpoint of Azure AD. Instead of the {key_provided} part of the URL, use 'common'. In this case Azure AD will determine the user's tenant and sign-in the user. The token that your application will receive will still be from the user's tenant
    (iss claim).
    2 is more convenient for apps. However #1 has an advantage when the user's Organization has customized their sign-in page with the company logo etc - in the case of #1 the user will directly be taken to the customized and familiar sign-in page.
    I recommend a combination of the two: try determining the user's organization and sending them to the tenant specific SSO endpoint. If you're not able to - send them to the common endpoint.

  • 10.7 install to external drive results in only "user" account

    There is a problem which I have had couple of times when installing OS X Lion onto an external drive while running 10.7 off of the internal drive. The problem is that the OS install on the external drive gets created with only one user account, the same user account as what's running on the internal drive during install, except on the external drive the user account does not have admin privileges. So when booted off the external drive, there's no way to act as administrator, including upping the only account's privileges you have access to!
    The only way to get an admin account on the OS instance on the external drive is to delete the hidden AppleSetupDone file on the external drive and then boot and let the OS go through its first run procedure.
    Obviously the design team for OS X Lion one of the install as streamlined with the user being presented with the fewest choices and questions during the install is possible. However, not being presented with choices about the number and types of user accounts that will be set up during such an install clearly has its downside.
    If the install on the external drive is going to duplicate the account that's currently running during the install, then it should at least copy those privileges as well. Ending up with an OS instance with no account with admin privileges is obviously not acceptable.

    takoateli wrote:
    Wrong again.
    Have you ever installed to an external drive while booted 10.7 from the internal? I have, multiple times, and always the same result. I end up with the same account I was booted into on the internal at the time of install, duplicated on the external drive. Same account name, same password, and it's a *user* account. Not admin.
    Here's what I do:
    While booted on my MBP 13" internal hard drive, I open and run the 10.7 installer contained in "InstallESD", with the installation target being my external USB drive. The install finishes, the computer reboots off the external drive. No "Bienvenue, Welcome, Aloha etc.", no catchy music, no setup steps or installation completion. Just a login screen. I put in the login info for my account on the internal hard drive, and there I am, booted into the external drive, as *user*.
    Greg
    Right YOU ARE DOING IT WRONG!!!!!
    Sorry but I am not wrong.
    Boot the system from either the Recovery HD partition or if you have a Lion Install USB thumb drive boot from that. Then select Re-Install OS X and point it to the external drive. Do not start the Install from inside the OS installed on the internal drive.
    I thought that would be apparent, but I guess not.
    If you have not made a Lion install USB thumb drive I suggest you do that using LionDiskMaker.
    Serial Serveur » Lion DiskMaker (US)

Maybe you are looking for

  • Rebinding datasource to system matrix

    Hi, is it possible in SBO to rebind in system form system matrix with another datasource? For example order items are shown in system matrix and I would like to bind this system item to my recordset. The only solution I found is to hide all columns i

  • Cleaning up after a call to OCIAttrGet

    In the code below, I call OCIAttrGet to get a session handle from the Service Context handle svchp. After I am done with the session handle in sh_ptr, I think I should do something to clean it up as it looks like something gets allocated. That being

  • How do I turn off the iSight camera?

    I've checked earlier discussions here on this and am not getting help with my specific question. The problem is that periodically, seemingly randomly, I notice that the iSight camera is on. At the moment it appears that no iSight-using application is

  • Delete   TCode

    Hi I have created a new Tcode using se93. But now I need to delete. But Ërror" " Changes to Repository or cross-client Customizing are not permitted Choose 'Display object' or 'Cancel'." Pls advise how this can be deleted.

  • Access Connections - Autostart Programs - Always Twice

    Hi, I'm using AC for automatically starting programs (Outlook, Firefox) in my work environment. It's done by a cmd file that works great. But: It really often happens (maybe always), that the cmd file is beeing executed twice, so I'm seeing two windo