Inital Logon - Change Password Form

Hi all,
I am new to EP , I am working on logon page customization. I need to add more fields (firstname,lastname,email) to initial changepassword jsp page.
Can anybody help me ?
I have an idea, Don't know whether it is right?
Create an IUser in jsp page and using form input element displayed these values.
In form submission now it is calling SAPMLogonLogic.performChangePasswordAction, which is defined inside umelogonbase.jar file.
I have to create one more method inside SAPMLogonLogic class file (say performChangeProfile) and specify that event on form submission.
Is it a right way? Is there any problem for editing SAP provided jar files?
Points will be awarded.
Thanks
Eldose

This is a good starting <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4716">Blog</a> and also the <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/e5/618a3eacd49076e10000000a114084/content.htm">UME Configuration Settings</a> can be helpful. Good luck.
Another interesting blog: https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/6920
null

Similar Messages

  • Display FirstName and Last Name on change password form

    Hi,
    I have to display FirstName and Last Name in change password form instead of DN of the user the below syntax is displaying complete DN.
    resourceAccounts.currentResourceAccount[$(name)].accountDisplayName, would appreciate if anybody can guide me on this.
    Thanks

    Hi,
    For anyone searching how to do this, I've modified the Change User Password Form to contain a user's first and last names. As the User view is not accessible from this form, I added the following:
          <Field name='fullname'>
            <Display class='Label'>
              <Property name='title' value='Full Name'/>
              <Property name='value'>
                   <rule name='EndUserRuleLibrary:getRealName'>
                       <argument name='accountId' value='$(resourceAccounts.id)'/>
                   </rule>
              </Property>
            </Display>
            <Disable>
              <or>
                <ref>answersVerified</ref>
                <isnull>
                  <ref>resourceAccounts.id</ref>
                </isnull>
              </or>
            </Disable>
          </Field>      I'm not at all sure this is the best way of accomplishing this, but I couldn't find forum search results that would allow me to display additional user attributes on this form.
    Hope it helps!
    Nick.

  • Capture data from Change Password form

    Hi All,
    I am trying to capture an error in the "Change Password Form". This error gets generated because of a custom java API call I make in the form. I want to show the error on the "Change Password Results" page. I tried to set the error message as a request attribute, but it seems the attribute is lost somewhere during the transit to changePasswordResults.jsp. I even tried to get the request attribute from "Change Password Workflow", but that didn't work either.
    Could anyone suggest me if we can set a variable/attribute/parameter from the "Change Password Form" so that I can use it in a later form/workflow/JSP?
    Thanks
    Edited by: bibs22 on Jun 12, 2008 5:46 PM

    It's not very well documented but have a look at http://docs.sun.com/app/docs/doc/820-5821/bvbih?l=en&a=view&q=baseContext in the section at the very bottom titled "Using the variables Attribute".
    You can define a baseContext in your form that will allow you to get access to the workflow variables.
    For example:
    <Form name="My Form" baseContext='variables'>
      <Field name=":variables.myworkflowvariable">
      </Field>
    </Form>

  • How get recent call back (because of I change password form other device)

    I use iphone 5 and ipad2
    all devices use same apple id
    I change apple id(password) on ipad
    my recent calls in iphone are lost      but  i cant remember one important number
    How get recent call back ?  i sign in my apple id on my iphone too but it not work.

    If you have previously employed Create and delete iPhone, iPad, and iPod touch backups in iTunes - Apple  Support, then restoring using iTunes should do the trick.
    From the above article (emphasis is mine):
    What iTunes backs up
    SNIP
    Contacts* and Contact Favorites. (You should regularly sync your contacts to a computer or cloud service, such as iCloud.)
    SNIP
    *Your contacts are part of the backup to preserve recent calls and favorites lists. To avoid any potential contact data loss, back up your contacts to a supported personal information manager (PIM) or another cloud-based service (such as Gmail or Microsoft Exchange). You can also make a copy of contacts that are in iCloud. Learn about backups in iCloud.
    ÇÇÇ

  • Please expose the employee ID field in ADUC in this version, also add a field for data of birth, and present both on the change password form so we can validate a user's identify when they ring up for a reset.

    Considering Active Directory is supposed to be all about business, corporations and enterprises, I find it staggering that in 2015 the ADUC console STILL does not expose the Employee ID field in the default UI without having to dig into the attribute editor.
    And then only if you browse to the user in their OU, the Attribute Editor tab is missing when you just search for the user. This isn't really helping our organisation. I've just setup the tech preview version of the new server version, and that doesn't expose
    it either.
    I'm not sure how other organisations handle this (suggestions please?), but when a user rings up the service desk for a password reset, we either have to keep them on the phone while we dig into their user account and look for the Employee ID for them to
    then confirm on the phone, or just take it on blind faith that they are who they say there are.
    Please for the love of all deities, can you expose the Employee ID field on the main user panel without having to dig into attribute editor. It would also be useful to show this information directly on the reset password dialog box so there's no looking
    up required. While you're at it, please can you add a date of birth field (if it isn't already there, I never seen one), and expose this on the main screen for the user, as well as the reset password box. This would give us two pieces of information to verify
    the identity of the user on the phone.
    All that being said, if anybody has a better way of identifying users on the other end of the phone, I'm all ears.
    Thanks in anticipation.

    Personally we use the AD selfservice plugin for manageengines service desk plus.

  • Extracting password during change password

    I am trying to extract the password that is set during the "Change Password" process via the change password form. When I try to look for the information in the options in the "Provision with retries", I can not locate the information. The comments in the "Change Password Workflow" are also cryptic and refer to a WSUser object which I have not been able to locate.
    Any help on how to extract the password during the "Change Password" process will be appreciate. I have successfully been able to extract the password from the User creation, modification process via user.password.

    Hello,
    in change password user form, its using the password view. So, if you tried using user.password it wont work. You should retry to use password.password
    regards
    Sankara

  • How to trigger and change password for AD user after form based login

    Hello,
    We are authenticating against Active Directory with Weblogic 10.3 using FORM based security. Everything is working. I need to now change a password for an authenticated user. For example, I have set a user to have their password expire on next logon from the AD side. The user logs in but somehow I need to trap some info from Active Directory (or an LDAP conversation) to figure out if I need to force the user to change password.
    Do I need to start looking at custom code with LDAP Java SDK's or can I use a canned MBean from Weblogic Server.
    I am looking at http://www.mozilla.org/directory/ for LDAP.
    Can I set/reset an AD user's password with an MBean like the following link?
    http://download.oracle.com/docs/cd/E13222_01/wls/docs92/javadocs/index.html?weblogic/management/security/authentication/UserPasswordEditorMBean.html
    If anyone has any experience with this or can point me in the right direction let me know.
    If anyone else is interested please add to the tread and I'll be sure to keep the found solution(s) updated here.
    Thanks...........
    JJ Everett

    Hello JJ
    Please see document ID 403484.1 in http://metalink.oracle.com. This may help to understand what you are aiming to do. Cheers
    -- Nathan

  • TMG 2010 publishing Exchange 2010 OWA cannot change password if user must change password at first logon is set

    Hi,
     I have an odd issue whereby if I set "user must change password" on an AD account, the end user cannot logon, they're simply taken back to the OWA login page as if their password is incorrect.
    My setup is as follows:
    outer TMG -- uses a listener for email.contoso.com and is configured for no authentication.This uses a publishing rule to publish the inner TMG server. This server is not a domain member.
    inner TMG - uses a listener for email.contoso.com and is configured for NLTM\kerberos negotiation with forms authentication (Windows Active Directory). This server is a domain member and use a publishing rule to publish the internal CAS. Allow users to change
    password is selected in the publishing rules.
    Exchange 2010 SP1 - uses integrated windows and basic authentication. Has the appropriate registry key configured to allow users to change their AD password on first logon.
    I've registered an snp for "http/email.contoso.com mailserver-dc1", all SSL certificates being used are valid and my configuration used to allow users to login and change their password with "user must change password on first login"
    set in AD.
    If I launch a web browser on an internal server and point it to email.contoso.com I'm immediately presented with a generic Windows authentication request (similar to what's seen in ADFS) rather than the standard OWA page. No matter what I do, I cannot login
    and change my password using the correct URL. However if I point my browser at
    http://192.168.4.10/owa I'm prompted to login and I can change my password using the sam credentials.
    The only recent changes made are:
    - Disabling SSL 3.0 and enabling TLS  (http://www.isaserver.org/articles-tutorials/configuration-security/improving-ssl-security-forefront-threat-management-gateway-tmg-2010-published-web-sites.html)
    - Replacing the TMG listener certificates so that they now use SHA2 rather than SHA2 (certificates are trusted on each TMG server)
    Looking on the outer TMG and the DC logs I can see schannel errors which I believe are related to the problem. TMG monitoring also shows "Failed connection attempt: 1907 The user'spassword must be changed before logging on for the first time"
    I've checked that my inner TMG and DC are using the same certificate for server authentication and gone through this guide:
    http://blogs.technet.com/b/keithab/archive/2012/02/29/setting-up-and-troubleshooting-ldaps-authentication-in-forefront-tmg-2010.aspx
    If I try to use ldp.exe on the inner TMG, I get the error in the pic below
    Thanks
    IT Support/Everything

    Hi,
    You could try to analyze the TMG tracing and try the troubleshoot steps in the blog below.
    TMG 2010 – FBA, troubleshooting the change password feature 
    http://blogs.technet.com/b/isablog/archive/2012/05/07/tmg-2010-fba-troubleshooting-the-change-password-feature.aspx
    Best Regards,
    Joyce

  • OIM AD Integration - 'User must change password at next logon'

    Hi,
    These are the issues in OIM AD integration that we are stuck up on:
    Issue:
    1. When OIM Admin resets the password for User1 in OIM, the password is propagated to AD but the ‘User must change password at next logon’ attribute is not updated in AD. As a result, if the User1 logs into AD account (i.e. computer), there is no prompt to change the password.
    2. When AD Admin resets the password for User1 in AD and checks the ‘User must change password at next logon’ flag, the password is propagated to OIM but the ‘obpasswordchangeflag’ attribute (of oblixPersonPwdPolicy class) is not updated in OID. As a result, if the User1 logs into OIM account, there is no prompt to change the password.
    Research:
    1. For case 1 above: When OIM Admin resets the password for User1, the ‘User must change password at next logon’ attribute on the AD process form itself is not getting updated. So the AD Connector doesn’t propagate the attribute to AD.
    2. For case 2 above: When the AD Admin resets the password for User1 in AD, the AD Password Sync connector only sends the password to OIM and not other attribute. So, there is no way to fetch the ‘User must change password at next logon’ attribute and then copy it into ‘obpasswordchangeflag’ attribute in OID.
    Environment Details:
    1. OIM-OAM-OAAM 11.1.1.5 BP02 integrated using OVD-OID 11.1.1.5
    2. AD on WIN 2008 R2.
    3. OIM AD Connector 9.1.1.7.2
    4. AD Password Sync Connector 9.1.1.5
    Any help would be highly appreciated!
    Thanks,
    Kulesh...

    Thanks for your reply again.
    I did not get you completely here. Can you please elaborate on the "process task on the AD Process which passes along the USR_PWD_MUST_CHANGE and immediately sets it to 0 this should work". How many total additional tasks would be needed here?
    what all targets are you provisioning the password to?
    - AD and OID (through LDAPSYNC)
    where are end users allowed to change their passwords on (OIM,AD....??)
    - Both OIM and AD.
    Where can admins change the passwords?
    - Currently they use ARS for such purposes but this is something we need to clearly define. The thing is, they use ARS for whole lot of purposes and we can't dictate/restrict them to use OIM only for password resets. So they may use ARS or OIM.
    What do you suggest?
    Edited by: Kulesh Kane on Nov 8, 2012 11:43 AM

  • Unable to change password while first logon on windows server 2008 R2 SP1 system

    Hi Team,
    Ad team has created new account for me with change password on first logon setting
    When I logged in on Windows Server 2008 r2 SP1 system with my new credentials I get a error message stating that
    "You must change your password before logging on the first time. For assistance, conatct your system administrator or technical support" 
    Concern:
    I do not get password change screen on first logon on the server. How should I change my password on first logon?

    Hi,
    I got resolution for above issue
    Run ==> type "tsconfig.msc" ==> double click "RDP-TCP" ==> change security layer to
    RDP Security layer ==> Apply ==> OK

  • I have a Mac Pro using Lion, with a SSD for system.  Restored drive from backup.  Now logon password doesn't work.  Account password still works.  Changing password in user group preferences no longer works to change logon password.

    I have a Mac Pro using Lion, with SSD for system drive.  Drive stopped booting, but otherwise appeared healthy.  Restored from system backup.  Now drive seems to work properly, BUT my logon password no longer works.  Password OK for account; can access system preferences, and change user password there BUT logon still refuses to accept password.  No luck changing password for that account after adding new administrator account and logging on from that account.  Suggestions?  Thanks.

    If you redirect Accounts to another location (not on the Boot Drive) you need to direct them back there again after a restore.
    SystemPreferences > Accounts/User&Groups > ...
    ... Unlock the lock, then hold down Control as you click on an Account to get access to the Advanced Options pane.

  • ISE 1.1 'Change password on next logon' fails on iPhone / iPad

    Hello -
    We're in the process of implementing an ISE 1.1 server for Guest Wireless Access / BYOD at our company and ran into an issue with authenticating from iPhones / iPads when the account is set with 'change password on next logon' (it's a local account created on the ISE server - not AD). It fails and displays 'unable to join network' on the iPhone. The ISE log shows a '5411: No response received in 120 seconds'. We're able to authenticate from Windows devices and are prompted to change the password during the authentication process. Has anyone else encountered this? If we uncheck the 'change password' box we can authenticate from iPhones & iPads without any issue but we need to have a way for users to set their own password.
    Thanks!
    Bill

    Hi,
    I am encountering the exact same issue in our lab environment, but with AD accounts (We would like customers to be able and connect to the dot1x network with their AD credentials, and based on machine authentication they will or will not get restricted access).
    Just to be clear: the change password functionality works perfect on laptops, but on ipad/android we just cannot connect to the dot1x (PEAP) network when the "change password on next login" checkbox is on.
    Anyone else who can shed some light on this?
    Thanks
    Tom

  • How to disable change password at next logon field

    Hello,
    I want to disable change password at next logon field,so could anyone tell me how to do that & what is
    the column name in USR table for change password at next logon field.
    Thank-You
    Rahul Shah

    For 9.x
    Open FormMetaData.xml and comment the below lines
    <Attribute name="-31" label="createuser.label.changePwdAtNextLogon" displayComponentType="CheckBox" variantType="String" dataLength="1" map="Users.Change Password At Next Logon" />
    <AttributeReference editable="true" optional="true">-31</AttributeReference>
    Now open design console go to Administration->>System Configuration and search for keyword XL.ForcePasswordChangeAtFirstLogin. Set this value to FALSE.
    Dont forget to restart the server.

  • RSOP: Interactive logon: Prompt user to change password before expiration

    Hi,
    I am trying to implement a GPO so that users are prompted to change their password 5 days before it expires. I have done this via -
    Computer Configuration > Windows Settings > Security Settings > Local Policies > Security Options > Enabled
    Interactive Logon: Prompt user to change password before expiration
    Despite doing the above the GPO does not seem to be taking effect. I have run RSOP on my machine and a few users machines and can see that there is a red circle with an X next to
    Interactive Logon: Prompt user to change password before expiration.
    Below is my winlogon.log file but I am not really sure what I am supposed to be looking for. Can anyone help?
    Make a local copy of \\**************.co.uk\sysvol\**************.co.uk\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkSite GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\sysvol\**************.co.uk\Policies\{91EDC47D-AACF-4DFE-B044-5D29500CECBE}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkDomain GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\SysVol\**************.co.uk\Policies\{DDE2DDB7-9802-415B-819E-1ADA496DC3E6}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkDomain GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\sysvol\**************.co.uk\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkDomain GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\SysVol\**************.co.uk\Policies\{6422C1A4-D958-4F4B-A8AA-EBACC567BD19}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkOrganizationUnit GPO_INFO_FLAG_BACKGROUND )
    No template is defined in GPO \\**************.co.uk\SysVol\**************.co.uk\Policies\{43F654AA-56D5-4F2C-B357-1AFEE03D37F2}\Machine.
    Process GP template gpt00000.inf.
    This is not the last GPO.
    08 March 2015 23:06:35
    Copy undo values to the merged policy.
    ----Un-initialize configuration engine...
    Process GP template gpt00001.dom.
    This is not the last GPO.
    08 March 2015 23:06:36
    ----Un-initialize configuration engine...
    Process GP template gpt00002.dom.
    This is not the last GPO.
    08 March 2015 23:06:36
    ----Un-initialize configuration engine...
    Process GP template gpt00003.dom.
    This is not the last GPO.
    08 March 2015 23:06:36
    ----Un-initialize configuration engine...
    Process GP template gpt00004.inf.
    08 March 2015 23:06:36
    ----Configuration engine was initialized successfully.----
    ----Reading Configuration Template info...
    ----Configure User Rights...
    Configure S-1-5-32-544.
    Configure S-1-5-21-778002760-1239436532-1307212239-1002.
    Configure S-1-5-21-778002760-1239436532-1307212239-1016.
    Configure S-1-5-21-778002760-1239436532-1307212239-4078.
    Configure S-1-5-21-778002760-1239436532-1307212239-512.
    Configure S-1-5-21-778002760-1239436532-1307212239-500.
    Configure S-1-5-21-778002760-1239436532-1307212239-513.
    User Rights configuration was completed successfully.
    ----Configure Group Membership...
    Configure **************\Local Admins for Users.
    old memberof tattoo list: *S-1-5-32-555,*S-1-5-32-544,
    object already member of Administrators.
    object already member of Remote Desktop Users.
    new memberof tattoo list: *S-1-5-32-555,*S-1-5-32-544,
    Group Membership configuration was completed successfully.
    ----Configure Security Policy...
    Configure password information.
    Configure account force logoff information.
    System Access configuration was completed successfully.
    Configure machine\software\microsoft\windows nt\currentversion\winlogon\passwordexpirywarning.
    Configure machine\software\microsoft\windows\currentversion\policies\system\enableinstallerdetection.
    Configuration of Registry Values was completed successfully.
    Audit/Log configuration was completed successfully.
    ----Configure available attachment engines...
    Configuration of attachment engines was completed successfully.
    ----Un-initialize configuration engine...
    this is the last GPO.
    Make a local copy of \\**************.co.uk\sysvol\**************.co.uk\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkSite GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\sysvol\**************.co.uk\Policies\{91EDC47D-AACF-4DFE-B044-5D29500CECBE}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkDomain GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\SysVol\**************.co.uk\Policies\{DDE2DDB7-9802-415B-819E-1ADA496DC3E6}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkDomain GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\sysvol\**************.co.uk\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkDomain GPO_INFO_FLAG_BACKGROUND )
    Make a local copy of \\**************.co.uk\SysVol\**************.co.uk\Policies\{6422C1A4-D958-4F4B-A8AA-EBACC567BD19}\Machine\Microsoft\Windows NT\SecEdit\GptTmpl.inf.
    GPLinkOrganizationUnit GPO_INFO_FLAG_BACKGROUND )
    No template is defined in GPO \\**************.co.uk\SysVol\**************.co.uk\Policies\{43F654AA-56D5-4F2C-B357-1AFEE03D37F2}\Machine.
    Process GP template gpt00000.inf.
    This is not the last GPO.
    09 March 2015 16:26:51
    Copy undo values to the merged policy.
    ----Un-initialize configuration engine...
    Process GP template gpt00001.dom.
    This is not the last GPO.
    09 March 2015 16:26:51
    ----Un-initialize configuration engine...
    Process GP template gpt00002.dom.
    This is not the last GPO.
    09 March 2015 16:26:51
    ----Un-initialize configuration engine...
    Process GP template gpt00003.dom.
    This is not the last GPO.
    09 March 2015 16:26:51
    ----Un-initialize configuration engine...
    Process GP template gpt00004.inf.
    09 March 2015 16:26:51
    ----Configuration engine was initialized successfully.----
    ----Reading Configuration Template info...
    ----Configure User Rights...
    Configure S-1-5-32-544.
    Configure S-1-5-21-778002760-1239436532-1307212239-1002.
    Configure S-1-5-21-778002760-1239436532-1307212239-1016.
    Configure S-1-5-21-778002760-1239436532-1307212239-4078.
    Configure S-1-5-21-778002760-1239436532-1307212239-512.
    Configure S-1-5-21-778002760-1239436532-1307212239-500.
    Configure S-1-5-21-778002760-1239436532-1307212239-513.
    User Rights configuration was completed successfully.
    ----Configure Group Membership...
    Configure **************\Local Admins for Users.
    old memberof tattoo list: *S-1-5-32-555,*S-1-5-32-544,
    object already member of Administrators.
    object already member of Remote Desktop Users.
    new memberof tattoo list: *S-1-5-32-555,*S-1-5-32-544,
    Group Membership configuration was completed successfully.
    ----Configure Security Policy...
    Configure password information.
    Configure account force logoff information.
    System Access configuration was completed successfully.
    Configure machine\software\microsoft\windows nt\currentversion\winlogon\passwordexpirywarning.
    Configure machine\software\microsoft\windows\currentversion\policies\system\enableinstallerdetection.
    Configuration of Registry Values was completed successfully.
    Audit/Log configuration was completed successfully.
    ----Configure available attachment engines...
    Configuration of attachment engines was completed successfully.
    ----Un-initialize configuration engine...
    this is the last GPO.
    Jeet S

    ******UPDATE******
    I think I have managed to get this working. I changed the source of the policy to a different GPO. I then did the following -
    From a command prompt run gpupdate (without the force parameter)
    Ran rsop.msc and checked the policy and this time there was no red circle with an X
    Have done the same on a few users machines and it appears to apply successfully. I say this because when you go into the properties for the policy you see the following -
    The policy XYZ was correctly applied
    Just have to wait and see if it actually does what it says on the can.
    Jeet S

  • User must change password at next logon?

    Hello,
    We have an XMII / LDAP connection to AD. (Both read and write). But when ever we set a user in our AD to change password at next logon, they get block from logging into Xmii.
    The funny part about this is if we do the following:
    1: User login into Xmii
    2: Administratator on AD controller, sets the flag  "User must change password on next logon"
    3: User selects Logout.
    Now the user gets promt of changing his/her password.
    Anyway to fix this?

    Well we have some clients that doesn't use the same login to MII and for their workstation.
    Basicly i want so whenever i set the flag "User must change password at nextlogon" in AD, I want MII to see that and make the user change his or her password in the portal.

Maybe you are looking for

  • Dvd from iMac to wifi tv

    Can I play a dvd on my iMac to watch on my wifi tv? Can built in Airport send dvd to tv? I actually have an external router connected now, and can stream Netflix on my tv, but not everything is offered streaming. Also, we own some dvds that we'd like

  • My Hp Pavilion x2 10-020nr is showing a "Battery Alert" and will not start.

    I've recently purchased the Hp Pavilion x2 10-020nr about a week ago, and have used it moderately everyday since. I have not over-charged it or downloaded any malicious apps/software (as far as I know) but today I tried to turn it on after charging a

  • Ipod Nano skipping songs... IPod or ITunes issue?

    I purchased an IPod Nano and signed up for ITunes. I purchased a CD from ITunes and synced it with my IPod. That worked fine except for one huge issue - the IPod skips right over 5 out of the 12 songs on the CD! The songs play fine through my compute

  • Regarding creation of node element

    Hi i hav a doubt regarding creation of node element. u can create new node element using method create(cn)Element available either directly from wdContext or from wdContext.node(cn) where cn is any context node. can any one plz explain me what's the

  • Error using XSLT mapping

    Hi, I am using an XSLT mapping during the response processing for a sync interface. I have performed the following steps: 1. Created Translation.xsl and added to a .zip archive 2. Imported the archive file into the same namespace as the interface map