Generating using the entity name

My earlier post would not have made make any sense as the entity names got interpreted! I'll try leaving out the & from the entity names this time.
My xsl was:
<xsl:template match="ROW">
<xsl:value-of select="COLUMN_NAME"/>:
lt;INPUT NAME="<xsl:value-of select="COLUMN_NAME"/>"gt;
</xsl:template>
although 'gt;' is generated as '>' 'lt;' is generated as '#60;'. How do I generate the "<" character?
Kumar
null

Using & did not make any difference.
I'm using & other places, and it works fine .. it's just this one ... very strange!

Similar Messages

  • A cmr-field and a cmp-field on the bean are using the same name. The names

    Hi:
    I am using weblogic 8.1 and MyEclipse 5.1.1. I am deploying my ear application through MyEclipse 5.1.1 as an ear file.
    When I ran the following EJB QL:
    SELECT OBJECT(p) FROM Product p.category = ?1
    I get the following error:
    n relation Category-Product, a cmr-field and a cmp-field on the bean are using the same name. The names of cmr and cmp fields must be unique.
    It is basically complaining that I have a field
    <cmr-field>
                             <cmr-field-name>category</cmr-field-name>
                        </cmr-field>
    in my ejb-jar.xml and also the same category in the
    <cmp-field><field-name>category</field-name></cmp-field>
    field. The problem is that if I changed the value of the cmr-field, I have to add a get and set in my productLocal.java and when you do that you have to do the same in the ejb-jar.xml.
    Here is my ejb-jar.xml:
    <?xml version="1.0"?>
    <!DOCTYPE ejb-jar PUBLIC
    "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
    "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
    <ejb-jar>
    <enterprise-beans>
    <entity>
    <ejb-name>CategoryEJB</ejb-name>
    <local-home>com.CategoryHomeLocal</local-home>
    <local>com.CategoryLocal</local>
    <ejb-class>com.CategoryBean</ejb-class>
    <persistence-type>Container</persistence-type>
    <prim-key-class>java.lang.Integer</prim-key-class>
    <reentrant>False</reentrant>
    <cmp-version>2.x</cmp-version>
    <abstract-schema-name>Category</abstract-schema-name>
         <cmp-field><field-name>categoryId</field-name></cmp-field>
    <cmp-field><field-name>categoryName</field-name></cmp-field>
    <cmp-field><field-name>picture</field-name></cmp-field>
    <cmp-field><field-name>pictureWidth</field-name></cmp-field>
    <cmp-field><field-name>pictureHeight</field-name></cmp-field>
    <cmp-field><field-name>labelOn</field-name></cmp-field>
         <cmp-field><field-name>labelOff</field-name></cmp-field>
         <cmp-field><field-name>button</field-name></cmp-field>
    <primkey-field>categoryId</primkey-field>
    <security-identity><use-caller-identity/></security-identity>
              <query>
                   <query-method>
                        <method-name>findCategory</method-name>
                        <method-params></method-params>
                   </query-method>
                   <ejb-ql>
                        SELECT OBJECT(c) FROM Category c
                   </ejb-ql>
              </query>
         </entity>
         <entity>
    <ejb-name>ProductEJB</ejb-name>
    <local-home>com.ProductHomeLocal</local-home>
    <local>com.ProductLocal</local>
    <ejb-class>com.ProductBean</ejb-class>
    <persistence-type>Container</persistence-type>
    <prim-key-class>java.lang.Integer</prim-key-class>
    <reentrant>False</reentrant>
    <cmp-version>2.x</cmp-version>
    <abstract-schema-name>Product</abstract-schema-name>
         <cmp-field><field-name>productId</field-name></cmp-field>
    <cmp-field><field-name>brandName</field-name></cmp-field>
    <cmp-field><field-name>productDescription</field-name></cmp-field>
    <cmp-field><field-name>purchasePrice</field-name></cmp-field>
    <cmp-field><field-name>category</field-name></cmp-field>
    <primkey-field>productId</primkey-field>
    <security-identity><use-caller-identity/></security-identity>
              <query>
                   <query-method>
                        <method-name>findProduct</method-name>
                        <method-params>
                        <method-param>com.CategoryLocal</method-param>
                        </method-params>
                   </query-method>
                   <ejb-ql>
                        SELECT OBJECT(p) FROM Product p.category = ?1
                   </ejb-ql>
              </query>
         </entity>
    </enterprise-beans>
    <relationships>
                   <ejb-relation>
                   <ejb-relation-name>Category-Product</ejb-relation-name>
                   <ejb-relationship-role>
                        <ejb-relationship-role-name>
                             Category-has-many-Product-numbers
                        </ejb-relationship-role-name>
                        <multiplicity>one</multiplicity>
                        <relationship-role-source>
                             <ejb-name>CategoryEJB</ejb-name>
                        </relationship-role-source>
                        <cmr-field>
                             <cmr-field-name>productNumbers</cmr-field-name>
                             <cmr-field-type>java.util.Collection</cmr-field-type>
                        </cmr-field>
                   </ejb-relationship-role>
                   <ejb-relationship-role>
                        <ejb-relationship-role-name>
                             Product-belongs-to-Category
                        </ejb-relationship-role-name>
                        <multiplicity>many</multiplicity>
                        <cascade-delete/>
                        <relationship-role-source>
                             <ejb-name>ProductEJB</ejb-name>
                        </relationship-role-source>
                        <cmr-field>
                             <cmr-field-name>category</cmr-field-name>
                        </cmr-field>
                   </ejb-relationship-role>
              </ejb-relation>
    </relationships>
    <assembly-descriptor>
    <security-role>
    <role-name>Employees</role-name>
    </security-role>
    <method-permission>
    <role-name>Employees</role-name>
    <method>
    <ejb-name>CategoryEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    </method-permission>
    <container-transaction>
    <method>
    <ejb-name>CategoryEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    <method>
    <ejb-name>ProductEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>     
    Here is my weblogic-cmp-rdbms-jar.xml:
    <!DOCTYPE weblogic-rdbms-jar PUBLIC
    '-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB RDBMS Persistence//EN'
    'http://www.bea.com/servers/wls810/dtd/weblogic-rdbms20-persistence-810.dtd'>
    <weblogic-rdbms-jar>
    <weblogic-rdbms-bean>
         <ejb-name>CategoryEJB</ejb-name>
    <data-source-name>ShoeStore</data-source-name>
         <table-map>
              <table-name>category</table-name>
              <field-map>
              <cmp-field>categoryId</cmp-field>
              <dbms-column>categoryID</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>categoryName</cmp-field>
              <dbms-column>categoryName</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>picture</cmp-field>
              <dbms-column>Picture</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>pictureWidth</cmp-field>
              <dbms-column>PictureWidth</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>pictureHeight</cmp-field>
              <dbms-column>PictureHeight</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>labelOn</cmp-field>
              <dbms-column>LabelOn</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>labelOff</cmp-field>
              <dbms-column>LabelOff</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>button</cmp-field>
              <dbms-column>Button</dbms-column>
              </field-map>
    </table-map>
    <automatic-key-generation>
    <generator-type>SQL_SERVER</generator-type>
    </automatic-key-generation>
    </weblogic-rdbms-bean>
    <weblogic-rdbms-bean>
         <ejb-name>ProductEJB</ejb-name>
    <data-source-name>ShoeStore</data-source-name>
         <table-map>
              <table-name>PRODUCT</table-name>
              <field-map>
              <cmp-field>productId</cmp-field>
              <dbms-column>productId</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>brandName</cmp-field>
              <dbms-column>brandName</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>productDescription</cmp-field>
              <dbms-column>productDescription</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>purchasePrice</cmp-field>
              <dbms-column>purchasePrice</dbms-column>
              </field-map>
              <field-map>
              <cmp-field>category</cmp-field>
              <dbms-column>categoryId</dbms-column>
              </field-map>
    </table-map>
         <!-- Automatically generate the value of ID in the database on inserts using sequence table -->
    <automatic-key-generation>
    <generator-type>SQL_SERVER</generator-type>
    </automatic-key-generation>
    </weblogic-rdbms-bean>
    <weblogic-rdbms-relation>
         <relation-name>Category-Product</relation-name>
    <weblogic-relationship-role>
    <relationship-role-name>Product-belongs-to-Category</relationship-role-name>
              <relationship-role-map>
    <column-map>
    <foreign-key-column>categoryId</foreign-key-column>
    <key-column>categoryID</key-column>
    </column-map>
              </relationship-role-map>
    </weblogic-relationship-role>
    </weblogic-rdbms-relation>
    </weblogic-rdbms-jar>
    Here is my productLocal.java:
    package com;
    import javax.ejb.CreateException;
    import javax.naming.NamingException;
    import java.util.Date;
    import java.util.Vector;
    import java.util.Collection;
    public interface ProductLocal extends javax.ejb.EJBLocalObject
         public Integer getProductId();
         public void setProductId(Integer productId);
         public String getBrandName();
         public void setBrandName(String brandName);
         public String getProductDescription();
         public void setProductDescription(String productDescription);
         public Double getPurchasePrice();
         public void setPurchasePrice(Double purchasePrice);
    public CategoryLocal getCategory();
         public void setCategory(CategoryLocal category);
    Here is my ProductBean.java:
    package com;
    import javax.naming.InitialContext;
    import javax.ejb.EntityContext;
    import javax.ejb.CreateException;
    import javax.naming.NamingException;
    import java.util.Date;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.Vector;
    import java.lang.Integer;
    public abstract class ProductBean implements javax.ejb.EntityBean
         public Integer ejbCreate(Integer id)
              this.setProductId(id);
              return null;
         public void ejbPostCreate(Integer id)
         //public abstract Integer getCategoryId();
    //     public abstract void setCategoryId(Integer categoryId);
         public abstract CategoryLocal getCategory();
         public abstract void setCategory(CategoryLocal category);
         public abstract Integer getProductId();
         public abstract void setProductId(Integer productId);
         public abstract String getBrandName();
         public abstract void setBrandName(String brandName);
         public abstract String getProductDescription();
         public abstract void setProductDescription(String productDescription);
         public abstract Double getPurchasePrice();
         public abstract void setPurchasePrice(Double purchasePrice);
         public void setEntityContext(EntityContext ec)
              System.out.println("ProductBean setEntityContext");
         public void unsetEntityContext()
              System.out.println("ProductBean unsetEntityContext");
         public void ejbLoad()
              System.out.println("ProductBean ejbLoad");
         public void ejbStore()
              System.out.println("ProductBean ejbStore");
         public void ejbActivate()
              System.out.println("ProductBean ejbActivate");
         public void ejbPassivate()
              System.out.println("ProductBean ejbPassivate");
         public void ejbRemove()
              System.out.println("ProductBean ejbRemove");
    What do I needed to do to fix this problem.
    Any hint or help would be greatly appreciated!!!
    Yours,
    Frustrated

    cmr field which is "category" in ur mapping , u can't use as cmp field in abstract schema mapping. just remove category from cmp field . and every thing is fine

  • The entity name must immediately follow the '&' in the entity reference.

    Hello Group,
    I have been receiving below such org.xml.sax.SAXParseException exceptions.
    Could you anyone please advise me what could be the reason for these issues and any probable solution thereby.
    NOTE:
    Eg1: Below string is causing error:
    USER Given: funnicity is funny. isn't it. true. well go to "funnicity" today.
    Escaped String : funnicity is funny. isn&#039;t it. true. well go to "funnicity" today.
    Eg2: Below string successfully generated spell suggestions:
    USER Given: funnicity is funny. isn ' t it. true. well go to " funnicity " today.
    Escaped String : funnicity is funny. isn &#039; t it. true. well go to " funnicity " today.
    The difference between above two example strings is, characters to be escaped were separated from other chars with a single whitespace.
    In the below notes "TEXT:" is the string sent by ERXGoogleSpell to org.w3c.dom.Document.parse(InputStream) method and "ERROR:" is the error received from ERXGoogleSpell:
    TEXT:
    funnicity is funny. isn't it. true. well go to " funnicity " today.
    ERROR:
    The entity name must immediately follow the '&' in the entity reference.
    00:43 DEBUG text is : funnicity is funny. isn t it. true. well go to "funnicity" today.
    [Fatal Error] :1:244: The reference to entity "quot" must end with the ';' delimiter.
    er.extensions.ERXGoogleSpell$CorrectionException: Failed to correct spelling of 'funnicity is funny. isn t it. true. well go to "funnicity" today.'.
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:172)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:114)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:99)
    at com.mtj.DirectAction.checkSpellingAction(DirectAction.java:1872)
    at sun.reflect.GeneratedMethodAccessor68.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.webobjects.appserver.WODirectAction.performActionNamed(WODirectAction.java:128)
    at com.webobjects.appserver._private.WOActionRequestHandler._handleRequest(WOActionRequestHandler.java:240)
    at com.webobjects.appserver._private.WOActionRequestHandler.handleRequest(WOActionRequestHandler.java:145)
    at com.webobjects.appserver.WOApplication.dispatchRequest(WOApplication.java:1306)
    at com.mtj.Application.dispatchRequest(Application.java:669)
    at com.webobjects.appserver._private.WOWorkerThread.runOnce(WOWorkerThread.java:173)
    at com.webobjects.appserver._private.WOWorkerThread.run(WOWorkerThread.java:254)
    at java.lang.Thread.run(Thread.java:613)
    Caused by: org.xml.sax.SAXParseException: The reference to entity "quot" must end with the ';' delimiter.
    at org.apache.xerces.parsers.DOMParser.parse(DOMParser.java:267)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:201)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:98)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:148)
    ... 14 more
    TEXT:
    funnicity is funny. tell me isn't it true.
    ERROR:
    07:29 DEBUG text is : funnicity is funny. tell me isn't it true.
    [Fatal Error] :1:187: The entity name must immediately follow the '&' in the entity reference.
    er.extensions.ERXGoogleSpell$CorrectionException: Failed to correct spelling of 'funnicity is funny. tell me isn't it true.'.
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:172)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:114)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:99)
    at com.mtj.DirectAction.checkSpellingAction(DirectAction.java:1872)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.webobjects.appserver.WODirectAction.performActionNamed(WODirectAction.java:128)
    at com.webobjects.appserver._private.WOActionRequestHandler._handleRequest(WOActionRequestHandler.java:240)
    at com.webobjects.appserver._private.WOActionRequestHandler.handleRequest(WOActionRequestHandler.java:145)
    at com.webobjects.appserver.WOApplication.dispatchRequest(WOApplication.java:1306)
    at com.mtj.Application.dispatchRequest(Application.java:669)
    at com.webobjects.appserver._private.WOWorkerThread.runOnce(WOWorkerThread.java:173)
    at com.webobjects.appserver._private.WOWorkerThread.run(WOWorkerThread.java:254)
    at java.lang.Thread.run(Thread.java:613)
    Caused by: org.xml.sax.SAXParseException: The entity name must immediately follow the '&' in the entity reference.
    at org.apache.xerces.parsers.DOMParser.parse(DOMParser.java:267)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:201)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:98)
    at er.extensions.ERXGoogleSpell.suggestions(ERXGoogleSpell.java:148)
    ... 15 more
    Please let me know, if this email is not clear or need any information.
    Thanks in advance.
    Thank You,
    Shravan

    Thanks so much for all your responses.
    I have actually passed-in properly escaped text to document parser, but it is behaving vaguely.
    I see the text I have posted in my initial post is parsed by forum.
    Here is the text that is reported as error:
    Actual Text: Hello "World"
    Escaped Text passed to parser: Hello & quot;World& quot; (note: & and quot are indeed not separated)
    Here is the text that is working fine:
    Actual Text: Hello " World "
    Escaped Text passed to parser: Hello & quot; World & quot; (note: & and quot are indeed not separated)
    The difference in above two versions of text input is: quotes and word are separated by a space to work fine.
    Please advise a solution.

  • How do I get Mozilla to use the page name for the actual bookmark name instead of the URL when I bookmark a page

    I just noticed this (in comparison to Internet Explorer): In IE, when you favorite a webpage, it uses the actual name of the webpage (for example, for this page, it would be "Ask a Question Firefox Help" as the bookmark name), but in Mozilla it uses the URL address as the bookmark name. I was wondering if it was at all possible to change my Mozilla settings in order to make it use the webpage name as the bookmark name instead of the URL address? I hope everyone understands what I'm getting at? If anyone can help me, I would really appreciate it. Thanks.

    Does this happen with each bookmark?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Problems with bookmarks and history not working properly can be caused by a corrupted places.sqlite database file.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can try to check and repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/

  • I want to use the same name for my icloud email address as my .mac name

    My name for all of my yahoo, gmail, .mac email accounts are al the same.  I'd like to use the same name for my icloud account.  It tells me that the name is not available but I'm pretty sure no one else would have chosen it.  Is the fact that I've used it for my .mac email address somehow blocking it's availability?  Please help.  Thanks.

    There is some confusion in my mind about your post.  Let me describe what I think you mean, let us know if I misunderstood...
    I'm assuming you already have an Apple ID that you used to define an iCloud account (or an older dot mac account), and the iCloud account has "[email protected]" as its email address.  But the Apple ID for this account is not the same as the email address I just listed, perhaps your apple ID is something like "xyz@???.com" and what you want is to use the ID, "mySpecialName@???.com".   [the "???" could be mac, icloud, or something else]
    If I've got it right so far, then  when creating a **new** Apple ID, you must now use @icloud.com.  If you are trying to define "[email protected]", then that is the problem - "mySpecialName" is already associated with @icloud.com, because your current @mac.com also has [email protected] as an alias, so that name is no longer available.
    Also, you cannot change the current ID from "xyz" to "mySpecialName" on an existing account.  So either way, you can't get the ID that you desire.
    Let us know if this is not what you mean.

  • Can two bands use the same name on iTunes?

    Hi, I'm in a band that uses the same name as another band listed on iTunes.
    Can two bands with the same name be listed on iTunes? We hope to eventually have an album for sale on the site and I'd like to know now if it's going to be a problem.

    Of course it will be a problem. You simply can not have two bands with the same name. I can think of MANY bands that had to change their names (either completely or just for certain countries) because the name was already taken. Blink (Blink-182), Bush (Bush X), The Beat (The English Beat), Yazoo (Yaz), and the list goes on and on.
    Your band better start brain storming for a new or modified name.
    Patrick

  • How do I download the music from iTunes onto an old iPhone 3gs? I have reset the iPhone to factory settings and when I plug it in it wants to use the device name for my current iPhone 5 and I don't want to change anything on my old iPhone.

    How do I download the music from iTunes onto an old iPhone 3gs without affecting my iPhone 5? I have reset the iPhone to factory settings and when I plug it in it wants to use the device name for my current iPhone 5 and I don't want to change anything on my current iPhone. iTunes won't let me change the device name for the 3gs. I just want to use the old iPhone like an touch.

    Hi littlemansa,
    If I am understanding you correctly, it sounds like you are returning to an old iPhone that has been erased and you would like to set it up as a new device without restoring from a backup which would affect the name of your iPhone, as well as the contents therein. I have an article for you that can help you set up your iPhone as a new device, and that information can be found below:
    How to erase your iOS device and then set it up as a new device or restore it from backups - Apple Support
    http://support.apple.com/en-us/HT4137
    Basically, it seems like you may be stuck on a screen that is asking if you would like to restore your device from the backup that is filed under the name of your new iPhone, or if you would like to set up the device as a new device. I would suggest that you set it up as a new device to achieve your desired results. 
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Error while using the variable name "VARIABLE" in variable substitution

    Hi Experts,
      I am using variable substitution to have my output filename set as a payload field value. It is working fine when I am using the variable name as fname, subs etc but channel goes in error when I am using the variable name as "VARIABLE". This is probably a reserved word but i would like to know where i can find a detailed documentation on this. Say things to note / restrictions while using variable substitution.
    This is the error in the channel:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error during variable substitution: java.text.ParseException: Variable 'variable' not found in variable substitution table: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: Error during variable substitution: java.text.ParseException: Variable 'variable' not found in variable substitution table
    Thanks,
    Diya

    Hi Zevik,
    Thanks for the reply. The output file is created correctly by merely changing the variable name to something else and hence the doubt.
    Below is the configuration:
    Variable Substituition
    VARIABLE    payload:interface_dummy,1,Recordset,1,Header,1,field1,1
    Filename schema : TEST_%VARIABLE%.txt
    Output xml structure:
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:interface_dummy xmlns:ns="http://training.eu.unilever.com">
    - <ns:Recordset xmlns:ns="http://training.eu.unilever.com">
    - <Header>
      <identifier>HDR</identifier>
      <field1>001</field1>
      <field2>001</field2>
      <field3>R</field3>
      </Header>
    - <Detail>
      <identifier>A</identifier>
      <field1>000000002</field1>
      <field2 />
      <field3>Doretha.Walker</field3>
      </Detail>
    I thimk my configuration is correct as it is working correctly with the variable name change, However, maybe i missed something !

  • Can I script the changing of creation date, using the file name?

    Normally people are doing this in reverse, but let me paint the picture.
    I pulled 204 video files from an old HDD based JVC camera.  JVC records in .MOD format which iPhoto won't import.  I imported them into iMovie just fine, and iMovie even set the file name to clip-2007-11-04 04;42;29.mov which is great, but it now has a new creation date of whatever date I imported it.  Which then causes problem when I want the videos stored in iPhoto and sorted appropriately by creation date.
    I've used the application "A Better Finder Attributes 5" to individually edit the creation and modify, but I'm sure I don't want to do this 203 more times, as you can't just type in the date and time, you have to type in each part of the date/time, or select it on a calendar.
    I've used the application "Name Changer" to batch convert the file names to the format YYYYMMDDhhmm which would be helpful if I were going to use the terminal command touch -t, but again I don't want to have to type it in 203 more times, plus drag and drop the file into finder to populate the location.
    Now, if I were more handy with automator, or maybe some (any) scripting language this would be easy peasy.  I'd batch rename all the files to the YYYYMMDDhhmm.mov and then have a script that just took the file name, passed that to touch -t along with the file location, and a few seconds later, they would all be done!
    Anybody have any suggestions to how I can do this, and tips to what commands to use or ANY advice?  I'm more than happy to RTFM, but I have no idea which manual to read!
    Thanks

    If your file names are precisely as you have written, this script will do what you want.
    Copy the script into an AppleScript Editor document, select one or more files in a Finder window, return to the AS Editor and press Run.  Note: you will need to provide your password when the script runs.
    Make sure you have a backup of any files you are working on (try using duplicates first, perhaps). The script has no error handling.
    tell application "Finder"
              set FileList to selection
              repeat with theFile in FileList
                        set fileName to name of theFile
                        set filePath to quoted form of (POSIX path of (theFile as alias))
                        set crYear to text 6 thru 9 of fileName
                        set crMonth to text 11 thru 12 of fileName
                        set crDay to text 14 thru 15 of fileName
                        set crHour to text 17 thru 18 of fileName
                        set crMins to text 20 thru 21 of fileName
                        set crDate to crYear & crMonth & crDay & crHour & crMins
                        set shellString to "touch -t " & crDate & " " & filePath
      do shell script shellString with administrator privileges
              end repeat
    end tell

  • Contacts uses Facebook names after connecting to iTunes everytime, what to do, that it always uses the iCloud names?

    When friends use a different name in Facebook, than what the real name is, I told my iPhone to use the name like I entered it for the iCloud contact.
    Anytime I connect my iPhone with iTunes it automatically changes back the names to the Facebook ones, and I have to change it again manually for like 50 contacts, that is very very annoying! How can I change it that the iPhone should use the iCloud names for every contact or at least for the one with different Facebook/real names as default?

    I would use iTunes Home Sharing to share the song you have and she can then add it to her library. Although, it seems as if she has never had a library since the phone was never connected to iTunes. My understanding of using iCloud is that for her to use a song that isn't in iTunes, you have to use iTunes Match, and there is a cost involved in this. If her phone was synced to her own iTunes library on a computer, you could use the Home Sharing as I indicated earlier.

  • Why can I not use the channel name, which is obtained from the function of DAQmx Task, as the input of the channel name for the function of Get Channel Information of DAQ?

    Why can I not use the channel name, which is obtained from the function of DAQmx Task, as the input of the channel name for the function of Get Channel Information of DAQ?

    Not a lot of details here, but my guess is this isn't working for you because you are wiring in the task to the Active Channels Property and not the actual Channel Name. I have attatched a screenshot of what I believe you are trying to do. The Task has 2 channels in it, so I need to index off one of the channels and wire it into the active channels input of the Channel Property node. Then I can read information about that channel
    Attachments:
    channel_name.JPG ‏69 KB

  • What are the pros and cons of using people keywords, given that my catalogue is already uptodate with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular

    What are the pros and cons of using people keywords, given that my catalog is already up to date with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular keyword in the same photo?

    What are the pros and cons of using people keywords, given that my catalog is already up to date with regular keywording of all subjects?  e.g., will the people keyword transfer to other programs?, can I use the same name for a people keyword and regular keyword in the same photo?

  • Use the User name than e-mail (SMTP) in broadcasting

    Hi all.
    I try to send some report using the broadcasting. It`s work fine, but I want use the User name and not e-mail address to do this. In BW SU01 I create e-mail address to user but its not work.
    How can I mapping this.
    Thx!
    Edited by: BW Team on Nov 27, 2008 10:14 AM

    why do get this message when i try to send e mail on my 4s
    Just what it says...you're not using the correct username and password for your outgoing mail server.

  • Error - The deployment cannot use the ReservedIP Name that belongs to a region.

    hi experts,
    I created a ReservedIP in North Central US. IF i deploy a project containing below config on anexisting Cloud
    Service in North Central US it gives error. 
    <NetworkConfiguration>
        <AddressAssignments>
          <ReservedIPs>
            <ReservedIP name="name"/>
          </ReservedIPs>
        </AddressAssignments>
      </NetworkConfiguration>
    it is throwing this error after uploading to the portal
    "The deployment cannot use the ReservedIP name that belongs to a region."
    But then if i try creating a new cloud service from scratch and deploying it works fine. Can you let us know what might be the issue with the old cloud service. The old Cloud service also shows North Central US
    With Regards,
    Amit
    With Regards, Amit

    Hi,
    As far as I know, the reserved IP is belong to azure IP space, You can enable all azure services to access your database (which whitelists the whole azure IP space, essentially), if you set azure service to true, I think it is unnecessary to set allow IP
    address.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Joining a computer to the domain using the netbios name VS the FQDN

    Where I work we must join computers to the domain using the netbios name (ex: mycomp) vs the FQDN mycompany.tx.com or else problems occur and the computer must be rejoined to the domain again with the netbios name- it can be joined to the domain initially, but after about 15 - 30 mins we'll get an error message when trying to logon.
    The error message I believe is:
    "The system cannot log you on to this domain because the system's computer account in its primary domain is missing or the password on the account is incorrect."
    I haven't seen it happen in a while, but if I remember correctly this is the error message we get -I could be wrong though.
    It may also have just been a "domain is not available" message.
    Some additional info:
    The netbios domain name is diffent then the DNS name ie: "mycompany.tx.com" was not made "mycompany" for netbios, but "mycomp" instead.
    Our DFL is mixed mode with some 2000 and some 2003 servers
    We used to use WINS, but now we do not.
    And lastly we usually add a WINS address along with the dns address in each workstation via "advanced TCP/IP settings" (why I do not know) and occationally I will not be able to join a computer to the domain until I add this WINS address. I know what your thinking, and I will say that I am not 100% all of our WINS server were deactivated. 
    Any info on how to figure this out or troubleshoot this would be greatly apprieciated. Thanks a lot. 

    Well this happened again.
    As a test before I deployed a PC to one of our branches I joined it to the domain via the FQDN: mycompany.tx.com instead of the netbios name: mycomp prior to shipping. It spent a few days in transit and when it arrived a user plugged it in and tried to logon, but recieved this message:
    "The system cannot log you on to this domain because the system's computer account in its primary domain is missing or the password on that account is incorrect"
    I realize this error message maybe unrelated, but if I recall correctly this is what happened last time.
    I pretty sure I was thorough in removing the computer account from the nessesary DCs (it failed and needed to be replaced) before I joined the replacement to the domain with the same name.
    Rejoining to the domain via "mycomp" corrected the issue.
    Netlogsetup.log:
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpValidateName: checking to see if 'BR021WS025' is valid as type 1 name
    01/06 15:24:01 NetpCheckNetBiosNameNotInUse for 'BR021WS025' [MACHINE] returned 0x0
    01/06 15:24:01 NetpValidateName: name 'BR021WS025' is valid for type 1
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpValidateName: checking to see if 'BR021WS025.mycompany.tx.com' is valid as type 5 name
    01/06 15:24:01 NetpValidateName: name 'BR021WS025.mycompany.tx.com' is valid for type 5
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpValidateName: checking to see if 'FGYJ' is valid as type 2 name
    01/06 15:24:01 NetpCheckNetBiosNameNotInUse for 'FGYJ' [ Workgroup as MACHINE]  returned 0x0
    01/06 15:24:01 NetpValidateName: name 'FGYJ' is valid for type 2
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x4
    01/06 15:24:01  OS Version: 5.0
    01/06 15:24:01  Build number: 2195
    01/06 15:24:01  ServicePack: Service Pack 4
    01/06 15:24:01 NetpUnJoinDomain: status of getting computer name: 0x0
    01/06 15:24:01 NetpApplyJoinState: actions: 0xb803a
    01/06 15:24:01 NetpDsGetDcName: trying to find DC in domain 'mycomp', flags: 0x1020
    01/06 15:24:01 NetpDsGetDcName: failed to find a DC in the specified domain: 0x54b
    01/06 15:24:01 NetpApplyJoinState: initiating a rollback due to earlier errors
    01/06 15:24:01 NetpApplyJoinState: actions: 0x40000
    01/06 15:24:01 NetpGetLsaPrimaryDomain: status: 0x0
    01/06 15:24:01 NetpUnJoinDomain: status: 0x54b
    01/06 15:24:01 -----------------------------------------------------------------
    01/06 15:24:01 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x0
    01/06 15:24:01  OS Version: 5.0
    01/06 15:24:01  Build number: 2195
    01/06 15:24:01  ServicePack: Service Pack 4
    01/06 15:24:01 NetpUnJoinDomain: status of getting computer name: 0x0
    01/06 15:24:01 NetpApplyJoinState: actions: 0xb003a
    01/06 15:24:02 NetpApplyJoinState: status of stopping and setting start type of Netlogon to 16: 0x0
    01/06 15:24:06 NetpApplyJoinState: status of stopping and setting start type of TimeSvc to 16: 0x0
    01/06 15:24:06 NetpGetLsaPrimaryDomain: status: 0x0
    01/06 15:24:06 NetpLsaOpenSecret: status: 0x0
    01/06 15:24:06 NetpLsaOpenSecret: status: 0x0
    01/06 15:24:06 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/06 15:24:06 NetpApplyJoinState: status of setting LSA pri. domain: 0x0
    01/06 15:24:07 NetpApplyJoinState: status of removing from local groups: 0x0
    01/06 15:24:07 NetpApplyJoinState: NON FATAL: status of removing DNS registrations: 0x0
    01/06 15:24:07 NetpUnJoinDomain: status: 0x0
    01/06 15:24:12 -----------------------------------------------------------------
    01/06 15:24:12 NetpDoDomainJoin
    01/06 15:24:12 NetpMachineValidToJoin: 'BR063WS014'
    01/06 15:24:12 NetpGetLsaPrimaryDomain: status: 0x0
    01/06 15:24:12 NetpMachineValidToJoin: status: 0x0
    01/06 15:24:12 NetpJoinWorkgroup: joining computer 'BR063WS014' to workgroup 'FGYJ'
    01/06 15:24:12 NetpValidateName: checking to see if 'FGYJ' is valid as type 2 name
    01/06 15:24:12 NetpCheckNetBiosNameNotInUse for 'FGYJ' [ Workgroup as MACHINE]  returned 0x0
    01/06 15:24:12 NetpValidateName: name 'FGYJ' is valid for type 2
    01/06 15:24:13 NetpSetLsaPrimaryDomain: for 'FGYJ' status: 0x0
    01/06 15:24:13 NetpJoinWorkgroup: status:  0x0
    01/06 15:24:13 NetpDoDomainJoin: status: 0x0
    01/07 10:49:50 -----------------------------------------------------------------
    01/07 10:49:50 NetpValidateName: checking to see if 'mycompany.tx.com' is valid as type 3 name
    01/07 10:49:50 NetpValidateName: 'mycompany.tx.com' is not a valid NetBIOS domain name: 0x7b
    01/07 10:49:50 NetpCheckDomainNameIsValid [ Exists ] for 'mycompany.tx.com' returned 0x0
    01/07 10:49:50 NetpValidateName: name 'mycompany.tx.com' is valid for type 3
    01/07 10:49:59 -----------------------------------------------------------------
    01/07 10:49:59 NetpDoDomainJoin
    01/07 10:49:59 NetpMachineValidToJoin: 'BR021WS025'
    01/07 10:49:59 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:49:59 NetpMachineValidToJoin: status: 0x0
    01/07 10:49:59 NetpJoinDomain
    01/07 10:49:59  Machine: BR021WS025
    01/07 10:49:59  Domain: mycompany.tx.com
    01/07 10:49:59  MachineAccountOU: (NULL)
    01/07 10:49:59  Account: mycompany.tx.com\myUserName
    01/07 10:49:59  Options: 0x27
    01/07 10:49:59  OS Version: 5.0
    01/07 10:49:59  Build number: 2195
    01/07 10:49:59  ServicePack: Service Pack 4
    01/07 10:49:59 NetpValidateName: checking to see if 'mycompany.tx.com' is valid as type 3 name
    01/07 10:49:59 NetpValidateName: 'mycompany.tx.com' is not a valid NetBIOS domain name: 0x7b
    01/07 10:49:59 NetpCheckDomainNameIsValid [ Exists ] for 'mycompany.tx.com' returned 0x0
    01/07 10:49:59 NetpValidateName: name 'mycompany.tx.com' is valid for type 3
    01/07 10:49:59 NetpDsGetDcName: trying to find DC in domain 'mycompany.tx.com', flags: 0x1020
    01/07 10:50:00 NetpDsGetDcName: found DC '\\br041svr.mycompany.tx.com' in the specified domain
    01/07 10:50:00 NetpJoinDomain: status of connecting to dc '\\br041svr.mycompany.tx.com': 0x0
    01/07 10:50:00 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:50:00 NetpLsaOpenSecret: status: 0xc0000034
    01/07 10:50:00 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:50:00 NetpLsaOpenSecret: status: 0xc0000034
    01/07 10:50:01 NetpManageMachineAccountWithSid: NetUserAdd on '\\br041svr.mycompany.tx.com' for 'BR021WS025$' failed: 0x8b0
    01/07 10:50:01 NetpManageMachineAccountWithSid: status of attempting to set password on '\\br041svr.mycompany.tx.com' for 'BR021WS025$': 0x0
    01/07 10:50:01 NetpJoinDomain: status of creating account: 0x0
    01/07 10:50:01 NetpJoinDomain: status of setting netlogon cache: 0x0
    01/07 10:50:01 NetpGetLsaPrimaryDomain: status: 0x0
    01/07 10:50:02 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/07 10:50:02 NetpJoinDomain: status of setting LSA pri. domain: 0x0
    01/07 10:50:02 NetpJoinDomain: status of managing local groups: 0x0
    01/07 10:50:03 NetpJoinDomain: status of setting ComputerNamePhysicalDnsDomain to 'mycompany.tx.com': 0x0
    01/07 10:50:04 NetpJoinDomain: status of starting Netlogon: 0x0
    01/07 10:50:04 NetpWaitForNetlogonSc: waiting for netlogon secure channel setup...
    01/07 10:50:06 NetpWaitForNetlogonSc: status: 0x0, sub-status: 0x0
    01/07 10:50:06 NetpJoinDomain: status of disconnecting from '\\br041svr.mycompany.tx.com': 0x0
    01/07 10:50:06 NetpDoDomainJoin: status: 0x0
    01/11 11:21:08 -----------------------------------------------------------------
    01/11 11:21:08 NetpValidateName: checking to see if 'WK' is valid as type 2 name
    01/11 11:21:20 NetpCheckNetBiosNameNotInUse for 'WK' [ Workgroup as MACHINE]  returned 0x0
    01/11 11:21:20 NetpValidateName: name 'WK' is valid for type 2
    01/11 11:21:20 -----------------------------------------------------------------
    01/11 11:21:20 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x4
    01/11 11:21:20  OS Version: 5.0
    01/11 11:21:20  Build number: 2195
    01/11 11:21:20  ServicePack: Service Pack 4
    01/11 11:21:20 NetpUnJoinDomain: status of getting computer name: 0x0
    01/11 11:21:20 NetpApplyJoinState: actions: 0xb803a
    01/11 11:21:20 NetpDsGetDcName: trying to find DC in domain 'mycomp', flags: 0x1020
    01/11 11:21:56 NetpDsGetDcName: failed to find a DC having account 'BR021WS025$': 0x525
    01/11 11:21:56 NetpDsGetDcName: found DC '\\BR021SVR' in the specified domain
    01/11 11:21:56 NetUseAdd to \\BR021SVR\IPC$ returned 1326
    01/11 11:21:56 Trying add to  \\BR021SVR\IPC$ using NULL Session
    01/11 11:21:56 NetpApplyJoinState: status of connecting to dc '\\BR021SVR': 0x0
    01/11 11:21:57 NetpApplyJoinState: status of stopping and setting start type of Netlogon to 16: 0x0
    01/11 11:22:01 NetpApplyJoinState: status of stopping and setting start type of TimeSvc to 16: 0x0
    01/11 11:22:01 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:22:01 NetpLsaOpenSecret: status: 0x0
    01/11 11:22:01 NetpLsaOpenSecret: status: 0x0
    01/11 11:22:01 SamLookupNamesInDomain on BR021WS025$ failed with 0xc0000073
    01/11 11:22:01 NetpManageMachineAccountWithSid: status of disabling account 'BR021WS025$' on '\\BR021SVR': 0x534
    01/11 11:22:01 NetpApplyJoinState: status of disabling account: 0x534
    01/11 11:22:01 NetpApplyJoinState: initiating a rollback due to earlier errors
    01/11 11:22:01 NetpApplyJoinState: actions: 0x40130
    01/11 11:22:01 NetpDsGetDcName: trying to find DC in domain '(null)', flags: 0x1020
    01/11 11:22:26 NetpDsGetDcName: failed to find a DC having account 'BR021WS025$': 0x525
    01/11 11:22:26 NetpDsGetDcName: found DC '\\br021svr.mycompany.tx.com' in the specified domain
    01/11 11:22:26 NetUseAdd to \\br021svr.mycompany.tx.com\IPC$ returned 1326
    01/11 11:22:26 Trying add to  \\br021svr.mycompany.tx.com\IPC$ using NULL Session
    01/11 11:22:26 NetpApplyJoinState: status of connecting to dc '\\br021svr.mycompany.tx.com': 0x0
    01/11 11:22:26 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:22:26 NetpLsaOpenSecret: status: 0xc0000034
    01/11 11:22:27 NetpSetMachineAccountPassword: NetUserGetInfo on '\\br021svr.mycompany.tx.com' 'BR021WS025$' failed: 0x8ad
    01/11 11:22:27 NetpApplyJoinState: status of setting machine password: 0x8ad
    01/11 11:22:27 NetpApplyJoinState: status of starting and setting start type of Netlogon to 4: 0x0
    01/11 11:22:28 NetpApplyJoinState: status of starting and setting start type of TimeSvc to 4: 0x0
    01/11 11:22:28 NetpApplyJoinState: status of disconnecting from '\\br021svr.mycompany.tx.com': 0x0
    01/11 11:22:28 NetpApplyJoinState: status of disconnecting from '\\BR021SVR': 0x0
    01/11 11:22:28 NetpUnJoinDomain: status: 0x534
    01/11 11:22:28 -----------------------------------------------------------------
    01/11 11:22:28 NetpUnJoinDomain: unjoin from 'mycomp' using '(null)' creds, options: 0x0
    01/11 11:22:28  OS Version: 5.0
    01/11 11:22:28  Build number: 2195
    01/11 11:22:28  ServicePack: Service Pack 4
    01/11 11:22:28 NetpUnJoinDomain: status of getting computer name: 0x0
    01/11 11:22:28 NetpApplyJoinState: actions: 0xb003a
    01/11 11:22:58 NetpApplyJoinState: status of stopping and setting start type of Netlogon to 16: 0x0
    01/11 11:23:01 NetpApplyJoinState: status of stopping and setting start type of TimeSvc to 16: 0x0
    01/11 11:23:02 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:23:02 NetpLsaOpenSecret: status: 0x0
    01/11 11:23:02 NetpLsaOpenSecret: status: 0x0
    01/11 11:23:02 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/11 11:23:02 NetpApplyJoinState: status of setting LSA pri. domain: 0x0
    01/11 11:23:03 NetpApplyJoinState: status of removing from local groups: 0x0
    01/11 11:23:03 NetpApplyJoinState: NON FATAL: status of removing DNS registrations: 0x0
    01/11 11:23:03 NetpUnJoinDomain: status: 0x0
    01/11 11:23:45 -----------------------------------------------------------------
    01/11 11:23:45 NetpDoDomainJoin
    01/11 11:23:45 NetpMachineValidToJoin: 'BR021WS025'
    01/11 11:23:45 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:23:45 NetpMachineValidToJoin: status: 0x0
    01/11 11:23:45 NetpJoinWorkgroup: joining computer 'BR021WS025' to workgroup 'WK'
    01/11 11:23:45 NetpValidateName: checking to see if 'WK' is valid as type 2 name
    01/11 11:23:57 NetpCheckNetBiosNameNotInUse for 'WK' [ Workgroup as MACHINE]  returned 0x0
    01/11 11:23:57 NetpValidateName: name 'WK' is valid for type 2
    01/11 11:23:58 NetpSetLsaPrimaryDomain: for 'WK' status: 0x0
    01/11 11:23:58 NetpJoinWorkgroup: status:  0x0
    01/11 11:23:58 NetpDoDomainJoin: status: 0x0
    01/11 11:33:08 -----------------------------------------------------------------
    01/11 11:33:08 NetpValidateName: checking to see if 'mycomp' is valid as type 3 name
    01/11 11:33:17 NetpCheckDomainNameIsValid [ Exists ] for 'mycomp' returned 0x0
    01/11 11:33:17 NetpValidateName: name 'mycomp' is valid for type 3
    01/11 11:34:23 -----------------------------------------------------------------
    01/11 11:34:23 NetpDoDomainJoin
    01/11 11:34:23 NetpMachineValidToJoin: 'BR021WS025'
    01/11 11:34:23 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:23 NetpMachineValidToJoin: status: 0x0
    01/11 11:34:23 NetpJoinDomain
    01/11 11:34:23  Machine: BR021WS025
    01/11 11:34:23  Domain: mycomp
    01/11 11:34:23  MachineAccountOU: (NULL)
    01/11 11:34:23  Account: mycomp\USER1
    01/11 11:34:23  Options: 0x27
    01/11 11:34:23  OS Version: 5.0
    01/11 11:34:23  Build number: 2195
    01/11 11:34:23  ServicePack: Service Pack 4
    01/11 11:34:23 NetpValidateName: checking to see if 'mycomp' is valid as type 3 name
    01/11 11:34:23 NetpCheckDomainNameIsValid [ Exists ] for 'mycomp' returned 0x0
    01/11 11:34:23 NetpValidateName: name 'mycomp' is valid for type 3
    01/11 11:34:23 NetpDsGetDcName: trying to find DC in domain 'mycomp', flags: 0x1020
    01/11 11:34:35 NetpDsGetDcName: failed to find a DC having account 'BR021WS025$': 0x525
    01/11 11:34:35 NetpDsGetDcName: found DC '\\BR021SVR' in the specified domain
    01/11 11:34:35 NetpJoinDomain: status of connecting to dc '\\BR021SVR': 0x0
    01/11 11:34:35 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:35 NetpLsaOpenSecret: status: 0xc0000034
    01/11 11:34:35 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:35 NetpLsaOpenSecret: status: 0xc0000034
    01/11 11:34:36 NetpJoinDomain: status of creating account: 0x0
    01/11 11:34:36 NetpJoinDomain: status of setting netlogon cache: 0x0
    01/11 11:34:36 NetpGetLsaPrimaryDomain: status: 0x0
    01/11 11:34:37 NetpSetLsaPrimaryDomain: for 'mycomp' status: 0x0
    01/11 11:34:37 NetpJoinDomain: status of setting LSA pri. domain: 0x0
    01/11 11:34:37 NetpJoinDomain: status of managing local groups: 0x0
    01/11 11:34:37 NetpJoinDomain: status of setting ComputerNamePhysicalDnsDomain to 'mycompany.tx.com': 0x0
    01/11 11:34:38 NetpJoinDomain: status of starting Netlogon: 0x0
    01/11 11:34:38 NetpWaitForNetlogonSc: waiting for netlogon secure channel setup...
    01/11 11:34:45 NetpWaitForNetlogonSc: status: 0x0, sub-status: 0x0
    01/11 11:34:45 NetpJoinDomain: status of disconnecting from '\\BR021SVR': 0x0
    01/11 11:34:45 NetpDoDomainJoin: status: 0x0
    - I forgot to add when the user experienced this problem I checked for the computer account and found it was not present in the domain on any DCs.

Maybe you are looking for

  • GR price displaying zero

    hi gurus,                 we did the GR AFTER PO BUT THE PRICE IS 40 USD in po, DISPLAYING ZERO AMOUNT   IN GR Please give me the solution for this problem Regards SAP MM

  • Find User Exit in MIR7 to validate Vendor info

    When incoming invoice is being “parked” in transaction MIR7, I need to find user exit to add validation/warning if vendor has multiple PI partners in the vendor master. It has to happen when user types in PO number and hits enter key – this is when v

  • PDF 1st page prints full size but not the rest

    I have one PC that has the following issue when printing PDF's. The first page prints full 8 1/2 by 11, but subsequent pages are scaled down to about 1/3 of the page. I have uninstalled and reinstalled Acrobat Reader, but to no avail. This is the onl

  • How to create programmat​ically a new step type in TestStand (to myTypes.in​i)

    I need to create a new step type to myTypes.ini file programmatically. I have tried to do it with following steps: - Get reference to engine - Load type palette files - creating new step type (engine.NewSteptype() ) - Inserting new type using TypeUsa

  • Full Directory option on auto attendant consoles

    Hi All, I have been following the guide and there is something that isn't clear. Is the full directory setting  mapped to the ldap settings on the cucm? if i have added a local  user manually on cucm will this not show on the full directory of the au