Using samaccountname together with userprincipalname

Hi,
we are using the userprincipalname (user at domain.com) to uniquely identify users on the UME. Is there a way however, to have users logon with just the username and to have the portal add the at_domain.com? This prevents a lot of typo's......
Note that samaccountname cannot be used
Marcel

Hi Tom,
thank you for replying to an very old message. We've found a work around for our problem, but to explain why samaccountname could not be used: our portal is connected to two domains and some identical sammaccount names exist in both domain, so the portal cannot decide which sammacountname to use when a user logs on.
Our solution was technically simple, but an organisational hazzard......replace all duplicates
cheers
Marcel

Similar Messages

  • Hi, i am wondering if i use 4g together with wifi in the same time will this increase the internet speed ?

    Hi, i am wondering if i use 4g together with wifi in the same time will this increase the internet speed ?

    The iPad has a micro-SIM card slot - nothing special or unique about it.
    The iPad is not sold as carrier locked.

  • Using iPhoto together with Adobe Lightroom

    I use Adobe Lightroom for my image organizing/tagging needs, since it's way more powerful than iPhoto in this area. I would however like to use iPhoto for my daily image browsing, syncing with my iPhone and for ordering prints/books ++. The way I do this now, is I let iPhoto scan the folder where I have my images. After a while when it gets outdated, I delete the database and rescan in iPhoto. Kinda cumbersome...
    So:
    1. Is there a way I can make iPhoto rescan my image folder? Maybe some script or something that can do it for me?
    2. When I rate images in LR, the ratings are stored in the IPTC Urgency field. When I import to iPhoto it doesn't import this as rating. Any way I can convert IPTC Urgency to iPhoto rating?
    3. Would Aperture be a better choice for working together with iPhoto, or would it be just as cumbersome?

    In reverse order:
    3. Would Aperture be a better choice for working together with iPhoto, or would it be just as cumbersome?
    It’s a lot better. You can grab your previews from Aperture right into iPhoto using a Media Browser, but given that Aperture will do all those things - books, syncing with iPhone etc - you’ll probably need to do it less. Like iPhoto, Aperture is integrated throughout the OS, in every Open... Dialogue, through Media Browsers to integrate with other apps and so on. The primary advantage of using Aperture is that +at least the two apps know each other exist+.
    2. When I rate images in LR, the ratings are stored in the IPTC Urgency field. When I import to iPhoto it doesn't import this as rating. Any way I can convert IPTC Urgency to iPhoto rating
    I don’t think so. There is no real way to move ratings between any apps that I know of. This area of metadata is still in its infancy.
    1. Is there a way I can make iPhoto rescan my image folder? Maybe some script or something that can do it for me?
    No. However there are apps out there that can watch that folder for you and execute specific actions on events occurring. You may be able to cook up an Automator action or Folder Action script that will import to iPhoto when a file is added to the Folder. Or use an app like Hazel to do it for you.
    Update: I’m not sure what this Lightroom plug-in brings to the party, but it may help.
    Regards
    TD
    Message was edited by: Terence Devlin

  • Does someone use FCE together with Sony SR10, SR11 or SR12?

    I've tried to get a YES or NO in some discussions here and since I'm not alone with the FCE/AVCHD rendering issue, I'm kind of hoping that someone using Final Cut Express (or any other good Mac software) have got this to work. I've just tried FCE together with my camcorder once in a Mac store and the person working in the store, who showed me the new Macbook Pro didn't know anything about this either. The problem I noticed was that after import of the media from camera everything looked just fine but once I dragged one clip down on the timeline FCE had to render the clip before I could watch the project. This is not news but I wonder what settings one should use in FCE together with the Sony SR12 camcorder. Is there a way to setup the project so that FCE doesn't have to render all the time using full quality AVCHD clips? If it's not possible, is there any other Mac program that will work with AVCHD natively? Maybe the solution is to switch the camera to SD instead? What happens if I do that? If I shoot in highest MPG quality, does FCE handle those clips on the timeline without rendering the clips after every change I do?
    My thoughts about this is to get a howto/check-list from someone who know and then visit this Mac store once more with my camera and try it out.
    Regards
    Robert Nilsson
    (PC owner who really would like to use the new Macbook Pro)

    When you say import, did you mean the Import command in the menus? You don't use Import with AVCHD, you use the Log and Transfer command in the File Menu. That bring up another window which looks for your camera which it calls No Name and thn begins logging in each clip. From there you have to select the clips you want to load into the editor. Each of those clips must then be "rendered" by a HD Apple Intermdiate Codec, which is the rendering you see. Once "rendered" in Final Cut, when you drag them in the timeline, they are ready to go. There is no Mac Program that natively uses AVHCD, but Sony makes a product called Vegas for Windows that edits native AVCHD, though as I understand, it isn't as powerful as Final Cut.

  • Issue using Photoshop together with Lightroom - "Could not save because..."

    I have a really annoying issue with Lightroom and Photoshop CS3. When I use Photoshop as my external editor for Lightroom, Photoshop opens up nicely and I am able to edit. However when I go to save I get the following message "Could not save because the file is already in use or was left open". The only way I'm able to save then is to shut down Lightroom. Then I can save in Photoshop and after that I launch Lightroom again to continue working in there.
    I don't know if this has anything to do with this issue, but I do have all my images on a network drive which I access exactly the same way as any external drive.

    Online chat with Adobe staff member helped solve the issue.
    A corrupted preferences folder was removed, a new one automatically created solved the issue.
    New folder was then deleted and old folder reinstated with the original name (if that makes sense).
    Sorted.
    THANK YOU Gokul!

  • Using JavaCompiler together with a Library

    Currently I am developing a tool in which Java Source Files are created based on a XSD file with help of a tool named Castor.
    After the generation of the files the files need to be compiled in order to be used by the program. This used to be done with a Library named XMLBean, however I do not wish to use this library anymore.
    As a alternative I ended up using the Java compiler that comes with the JDK in the tools.jar file. This resulted in a problem, which made me search for a other solution. This way I ended up working with the javax.tools.JavaCompiler. However compilation still failed due to the same problem.
    So what is this problem?
    Initially I tested my code generation logic and compile logic in a normal application. The Java code got generated fine using castor, the compilation using both methods I described also went fine.
    The problem occurs when I attempt to use the same logic in a web application I am developing to run on Tomcat. The Code generation goes fine (since the castor library is included in the project) however the compilation goes wrong and results in the following error:
    "package org.exolab.castor.xml does not exist"
    In other words, the compiler does not understand one of the imports of the source file (refering to a namespace in Castor, a library that was used to generate the file, and is included in the web project).
    Does anyone know why compilation fails in a web application but goes well in a normal application? Does anyone know how this problem can be solved, or does anyone know better component for compilation?
    Thanks a lot.
    This is the code I currently use for compilation:
    public void compileJavaSource(String[] sourceFilePaths)
              System.out.println("Begin Compiling of Source Files");
              JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); // Line 1.
              DiagnosticCollector<JavaFileObject> diagnosticsCollector = new DiagnosticCollector<JavaFileObject>();
              StandardJavaFileManager fileManager  = compiler.getStandardFileManager(diagnosticsCollector, null, null); // Line 3.
              Iterable<? extends JavaFileObject> fileObjects = fileManager.getJavaFileObjectsFromStrings(Arrays.asList(sourceFilePaths)); // Line 5
              CompilationTask task = compiler.getTask(null, fileManager, diagnosticsCollector, null, null, fileObjects); // Line 6
              Boolean result = task.call(); // Line 7
              List<Diagnostic<? extends JavaFileObject>> diagnostics = diagnosticsCollector.getDiagnostics();
              for(int i=0; i < diagnostics.size(); i++){
                   Diagnostic<? extends JavaFileObject> d = diagnostics.get(i);
                   System.out.println(d.getMessage(null));
              if(result == true) {
                   System.out.println("Compilation has succeeded");
              else {
                   System.out.println("Compilation fails.");
              System.out.println("Done Compiling of Source Files");
         } Initially I used this:
    com.sun.tools.javac.Main.compile(sourceFilePaths);

    Cross posted. (Sorry about that)
    To avoid people spending time looking for an answer, here is the solution I found myself:
    First off all, for ANT to work, 2 libraries have to be imported in the web project.
    The libraries are: ant.jar and ant-launcher.jar
    Next to that, the library's Xerces (xercesImpl.jar) and xml-apis.jar (also included in ANT). There Library's are also needed to get Castor to work.
    To compile the code of my generated Java Classes I use the following ANT Build file code:
    <project default="build" basedir=".">
         <path id="classpath">
            <fileset dir="WEB-INF/lib" includes="**/*.jar"/>
        </path>
         <target name="build">
            <javac srcdir="src" destdir="WEB-INF/classes" debug="true" includes="**/*.java" classpathref="classpath"/>
         </target>
    </project>The file basically reads every .java file from my "src" folder. Which is the folder I choose to put my generated class files, and compiles them to the WEB-INF/classes folder. This is the folder were Tomcat stores all its classes.
    What went wrong with the compilation I attempted in the opening post, is that javac could not find the Castor Library, even after I added it in my classpath environment variable. Fortunately, with ANT I can define a classpath for the application, which is the WEB-INF/lib folder. This is the folder where Tomcat stores its Library's. Hence, javac can find the Castor Library from then on.
    Finally I call the ant task using the following Java Code:
    public void compileJavaSource(String buildFilePath)
              System.out.println("Start Compilation");
              File buildFile = new File(buildFilePath);
              Project p = new Project();
              p.setUserProperty("ant.file", buildFilePath);
              p.init();
              ProjectHelper helper = ProjectHelper.getProjectHelper();
              p.addReference("ant.projectHelper", helper);
              helper.parse(p, buildFile);
              p.executeTarget(p.getDefaultTarget());
              System.out.println("Compilation Finished");
         }This took care of the problem pretty nicely.

  • Do others have a some problems using Firefox together with Charter? Mine is with my search.

    I have used and enjoyed Firefox for years. I have Charter cable and my homepage is Charter.net. When I try to use the Google search on that homepage screen, the results are terrible, giving me nothing more than Google search box (its entry) and a blank white screen.
    Is there a way I can take care of this problem?
    I don't have this problem when I try using Internet Explorer, but I'd much rather use Firefox. Thanks.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Using GB together with Reason

    I'm just about to get back into mac-based music creation after much time away. I have not used GB except to poke around and see (a little of) what's there. I have Reason 2.5 but have not spend more than a few hours in it.
    Since I'll be up against a lot of new things I'd like to know if I can use Reason and GB together from someone who has both apps. I'd like to avoid trying to figure out how if it's not possible. If it is and I can't get it working I'll know it's me being stupid.
    Thanks.

    Yes, GB supports Rewire, in a somewhat limited way. Open Reason after GB, and it'll play as GB's slave.

  • Using RadioButton together With BasicArrowButton

    Hi there
    I've created an interface using a radiobuttons and basicarrowbuttons. I have 3 radiobuttons in a radio group. Then I also have a text area displaying some value. What I would like to do is, when I click on the first radiobutton, and then click the basicarrowbutton(which direction is north/up), I would like to change the value of the text are by 10. If I click the second radiobutton, and the basicarrowbutton is clicked, I want the value to change by 100. Does anyone know how to do this?
    Thanking you in advance
    Candace

    Right. I've tried the code too, and it doesn't work. Use this instead for the actionPerformed method :
    basicarrowbutton.addActionListener(
    new ActionListener(){
    public void actionPerformed(ActionEvent e){
    if( myFirstRadioButton.isSelected() ){
    //Change your text by 10
    return;
    if( mySecondButton.isSelected() ){
    //Change your text by 100
    return;
    The buttonGroup allows only one selected item.
    This time I have tested the code so I am SURE it works...

  • Using generics and J2SE together with JSF

    Hi
    Has anybody experience with using JSF together with J2SE 1.5? Especially generics? I would like to use generics and other improvements from J2SE in the model objects.
    Thnaks in advance ... Rick

    JSF 1.1 is specified for J2SE 5, and the new specification (JSF 1.2 and JSP 2.1) does not include generics.
    If you are talking in terms of ValueBindings or MethodBindings, there really isn't any point since the implementation could only make the cast for you; and it would still not be able to garuantee type safety (the only reason to use generics).
    That's not to say you couldn't use generics in your own development, but I don't think you will see generics incorporated into the specification any time soon.
    Jacob Hookom (JSR-252 EG)

  • Student licens for one program together with other licens

    I have the "light version" of Adobe Suite through my work place (psd, indd, ai, bridge). Now I need AfterEffects wich is not covered in my work licens. How can I add a licens for After Effects without having to pay for all the programs I already have? I am also a student, can i have a student licens for a single program and use it together with my work licens?

    Moving this discussion to the Adobe Creative Cloud forum.
    Danielajuvall are you wishing to utilize your own membership to After Effects on the same computer you are utilizing a Creative Cloud for Team/Enterprise membership?

  • Help! Plug-In SLL_PI 720_46C needed to use GTS 72 together with R/3 4.6C?

    Hi together,
    maybe anybody can help me with my question:
    We want to use GTS 7.2 together with ERP 4.6C. Do I have to install additionally the plug-in SLL_PI720_46C in my feeder system? Or is it ok if I have only the standard plug-in PI2004_1_46C, SP14 installed? Do I need both?
    Thanks very much for your help and answers.
    Cheers,
    Andreas

    Andreas,
    I believe in your case it would be sufficient to install the GTS7.2 plug-in.  SAP changed its plug-in strategy for GTS 7.2 and went from the plug-in that comes pre-installed with ECC 6.0 to a separate GTS plug in for 7.2.
    I also have used GTS 7.2 with the "old" plug-in which you're referring to.  This will work for the basic Compliance and Customs functionality but I am guessing that you would run into issues when trying to use functionality that is new in GTS 7.2.
    Sascha

  • Using CSS class together with CSS Rule

    Hi,
    I design my web site in Dreamweaver and then use Web
    Developer 2005 Express for the dynamic stuff. I amalgamate all the
    work I have done in Dreamweaver into 2005 Express. However with the
    new server side controls I do not know how to add a CSS class
    together with a CSS rule.
    In the normal client side control in Dreamweaver I have -
    <input name="txtPassword" type="password" class="Input"
    id="SpacerBottom" />
    In the server side controls the ID keyword is used now -
    <asp:TextBox ID="txtPassword" runat="server"
    Style="z-index: 107" CssClass="Input" ></asp:TextBox>
    I have tried to use the name="txtPassword", but it ignores
    this.
    I would really like to know how I can use a class and an id
    selector with the new server side controls and would really
    appreciate some help on this.
    Many thanks,
    Polly Anna

    the explicit " match-any" will do just that.So, a nested ACL can be configured for multiple criteria.
    The alternate is a "match-all" where all nested options in your acl MUST be met. Hope this helps.
    T

  • Using the Image Processor together with an action - original files won't get closed

    Hi,
    I just made an action to position my website's name at the bottom left of my photos and to use it then together with the  Image Processor.
    When I tried it out, I realized, that my whole pc slowed extremely down. Then I saw that the original files didn't get closed during the image processing process ...
    Then I made some tests and the result was, that the Image Processor doesn't close the original files if the action in use has more than 26 steps.
    Could someone please check out if its the same with his/her Photoshop? I use Photoshop CS6 on Windows 7.
    Thanks a lot!

    Hi,
    The problem is caused by your project not 'knowing' about the
    picture. Robohelp will automatically include all images that are
    embedded in HTML docs, but if they are only displayed via a link,
    they do not form part of the files list that is created in the
    resulting .HHP file.
    A remedy: to resolve this in the past, I've created a 'dummy
    page' that is not indexed or included in the TOC, and contains
    embeds of all of these pictures that aren't directly set in the
    HTML. Make sure it is included with the correct conditional build
    tags and recompile, you should find that the linked image now shows
    up in the CHM okay.

  • Using transaction activation policy together with TOPLINK Java object/relational mapping "commit and resume" transaction?

    Has any one has experience using WLE transaction context together with TOPLINK Java
    version of "commit and resume" context?

    Has any one has experience using WLE transaction context together with TOPLINK Java
    version of "commit and resume" context?

Maybe you are looking for

  • Is there any way to prevent misbehaving solved by refreshing the browser?

    When I play my published Captivate 6 file in the browser (in this case Google Chrome), it sometimes gets "stuck" --- rollovers don't  work properly or buttons don't show up when they are supposed to. Sometimes I get the audio echo problem where audio

  • Output *.csv or *.txt

    Hi @ all, this may is a easy question - but not to me today I tried to put out a *.csv file over Fileadapter (File Content Conversion)... But somehow this doesn't work. I'm on SP 16 and in my File Receiver Adapter I configured following: Recordset St

  • TA48312 OS X version 10.8.0 where can i download it ?

    I'm trying to download 10.8.2 but it says this update requires OS X version 10.8. but I can't find it if someone could help it would be great thank you

  • Missing Account?

    I'm posting this in the hopes that I really didn't mess things up here. My Mac Pro at work is on a Windows-based network. My machine has been joined to the AD Domain, but I just use my local account to log in. I'd access the shared network resources

  • Sending TOO many jobs to the Xserve

    I am writing an algorithm to for a Monte Carlo simulation that will be run on Xgrid. We bought an Xserve for this reason. We are contracted with the government, so i need to document a list of possible errors or crashes that could occur. My main ques