BBP_Start - forgot Password link needs a user

Hi there,
I've got just a short question.
Everytime when I click on the link <forgot user or password? help!> The service needs a user to acces the next page.
Can I customize a general user for this? And if so, where do I have to make these settings.
Thanks a lot for your help.
Kind regards
Christian Rodemeister

Hi @ all,
thanks for this very helpful answers! This problem is solved.
But another question is, do I need the same specification for the up- and dowload of documents? Because there I get also a seperate logon screen to get an acces to the server. Isn't it the ticketing wich handels this service for the logged on user?
Again, thanks for your help!
Kind regards Christian

Similar Messages

  • Resolved 'forgot password' link

    Just wanted to see if anyone knows if the 'forgot password' link thing has been fixed. I am currently signed in on my husband's Apple ID...I called Apple yesterday because I got one email to reset my password but the link was invalid and i tried to get a different email several times, and i never received another one. They told me they were having trouble with the site. Just wanted to see if there was anyone here from Apple that could help me. I have still been trying to get my password reset today, and still no emails. Wanted to see if I need to call back. Thank you.

    We are fellow users here on these forums.
    If you still aren't receiving them emails then Support in your country should be able to reset the password for you : http://support.apple.com/kb/HT5699

  • "Forgot Password" link doesn't generate an e-mail ...

    Hi, I've been trying for five days to get access to a Skype account I set up but have not used for a few months. I apparently have the password wrong. I've used the "Forgot Password" link on the login page. That link should automatically generate an e-mail to me, but I've gotten no e-mail, despite multiple attempts. There is no e-mail in my spam folder either. So I've sent in two support requests. The only thing I got in response to the first one was an e-mail asking me to fill out a survey about the service I got. Which would make sense, except that I never got any service. At all. The second support request has produced no results. I know I'm using the correct e-mail address, because I initially couldn't remember my Skype name either, and managed to recover it using the "Forgot Skype Name" link. At this stage, the only option I can think of is calling my credit card company and telling them that I no longer approve of any further charges from Skype and they should be rejected. Does anyone on this list have any other suggestions of how I might get some service, any service, to get access to this account? Thanks for any advice you might offer.

    twocoasts wrote:
    Hi, I've been trying for five days to get access to a Skype account I set up but have not used for a few months. I apparently have the password wrong. I've used the "Forgot Password" link on the login page. That link should automatically generate an e-mail to me, but I've gotten no e-mail, despite multiple attempts. There is no e-mail in my spam folder either. So I've sent in two support requests. The only thing I got in response to the first one was an e-mail asking me to fill out a survey about the service I got. Which would make sense, except that I never got any service. At all. The second support request has produced no results. I know I'm using the correct e-mail address, because I initially couldn't remember my Skype name either, and managed to recover it using the "Forgot Skype Name" link. At this stage, the only option I can think of is calling my credit card company and telling them that I no longer approve of any further charges from Skype and they should be rejected. Does anyone on this list have any other suggestions of how I might get some service, any service, to get access to this account? Thanks for any advice you might offer.
    if you have a billing or transaction history in the last 6 months, you can request for a new password without the need to your registered email address.    Just copy and paste the link below to your browser to open the password automation page;
    login.skype.com/account/password-automation
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Forgot password for client 000 user DDIC

    We forgot password for client 000 user DDIC & SAP*
    please suggest any one how to recover the password
    Thanks in advance

    Hi,
    Pls refer below link explaining step by step details of activating SAP* user login.
    [http://forums.sdn.sap.com/thread.jspa?threadID=1497131]
    [http://www.sap-img.com/basis/changing-the-default-password-for-sap-user.htm]
    Regards,

  • Forgot password  link

    How to personalize Confirmation page of Forgot Password link functionality?
    Click Forgot your password?
    was able to personalized this one but want to personalize the NEXT one after this.
    Enter username and click submit
    How do we personalize the following message on the page below:
    “An email has been sent to the email address on file. Contact the system administrator if you do not receive your password within the next few hours. “

    Hi,
    You have to find out that file path,
    The first page is
    /oracle/apps/fnd/umx/password/webui/ForgotPasswordPG
    You can use functional administrator responsibility and user personalizatin tab to personalize this page.
    The controller for the above page is oracle.apps.fnd.umx.password.webui.ForgotPasswordCO.
    Since we dont have about this page and personalize option in that page, you have to open the ForgotPasswordCO and check where the control is redirecting .
    Then use functional admin and personalize.
    If somebody knows the result page path, please update here.
    With Regards,
    Kali.
    OSSI.

  • Forgot Password link and Templates.

    I configured the Forgot Password Link in PT85212.
    When i click i go futhur to the page where it asks for the USerID.
    When i provide it and Continue ,my browser pops an error message like
    "Object Doesn't support this property or method
    PT_HNAV_TEMPLATE_JS_1.js
    Code=0
    URI:https://..../cd/uat_pwd/cache/PT_HNAV_TEMPLATE_JS_1.js"
    Any idea what could be going wrong?
    Edited by: mmaller0319 on May 1, 2013 9:33 PM

    that reset_pw api call is a pl/sql procedure just
    like any other. sure you could call it from a link,
    but you'd probably want your user to end up somewhere
    after they click it. a nice way to do it would be to
    have your link pop up a confirmation window. when
    your user confirms the desire to reset his password,
    you should have that window call our api and close
    itself. you can find tips/directions for
    implementing that kind of popup functionality all
    over this forum an in how-to docs like...
    http://otn.oracle.com/products/database/htmldb/howtos/
    how_to_create_custom_popups.html
    ...or you could simply code a wrapper around our api
    that redirects your users to a URL of your choosing
    like so...
    create or replace procedure my_logout_link as
    begin
    wwv_flow_fnd_user_API.reset_pw('SCOTT',:WORKSPACE_ID,'
    personalized message to scott about his password');
    htp.init;
    owa_util.redirect_url
    ('f?p=&APP_ID.:&APP_PAGE_ID:&APP_SESSION.');
    end;
    ...and then you'd just grant execute on that
    procedure to htmldb_public_user. after that, you
    could have your reset url link go to a target like
    "my_schema.my_logout_link", and things should work
    fine.
    hope this helps,
    rajI tried using wwv_flow_fnd_user_API.reset_pw and I keep getting an error message telling me that it doesn't exist or it must be declared etc. Am I missing something here?
    Thanks in advance.
    Ami

  • External forgot password link not working

    Hi,
    I am trying to reset the password using the Forgot password link on the External site page, after I click on the forgot password link and enter the username in the textbox and click on the submit button, it displays the error below.
    Error:cannot display page.
    You cannot complete this task because one of the following events caused a loss of page data:
    Your login session has expired.
    A system failure has occurred.
    The EBS version is 11.5.10.2 , OS version is Linux 64 bit.
    Thanks
    H.S

    Please see if these docs helps.
    Random error Your login session has expired when using Load Balancing [ID 387306.1]
    Random error Your login session has expired when using Big IP F5 DMZ Loadbalancing [ID 361397.1]
    Intermittently Receive "Error: Cannot Display Page" Across Multiple Products In RAC [ID 427931.1]
    When using a Load Balancer Oprocmgr Fails To Keep Session After Implementing JServ Load Balancing ACROSS Multiple Middle Tiers [ID 469690.1]
    11i/R12 How to Debug "Transaction Context Is Lost" or "You are trying to access a page that is no longer active" [ID 456906.1]
    Thanks,
    Hussein

  • 11.5.10.2 - How to personalize Confirmation page of Forgot Password link

    We have implemented the Forgot Password functionality in our 11.5.10.2 system. We need to personalize the Confirmation screen message.
    How do we personalize the following message:
    "An email has been sent to the email address on file. Contact the system administrator if you do not receive your password within the next few hours."
    Reason:
    Our help desk is getting calls from our users because they think that they will have to wait for a few hours to receive their temporary password. Our goal was to eliminate calls to our help desk regarding forgotten passwords but this message is causing more calls than necessary.
    We need to change the message to read as follows:
    "An email has been sent to the email address on file. You should receive the email within a few minutes. Please contact the Support Center if you do not receive your password within an hour."
    I have accessed the CommonMessagePG that appears to control the Confirmation screen (/oracle/apps/fnd/umx/util/webui/CommonMessagePG) but I cannot find where to change the actual text of the message.
    Any advice?

    Try this:
    Go to "Application Developer" responsibility
    Select "Messages" from the menu
    Query the message name and then enter your message text in the "Current Message Text" field
    Save changes and exit
    Clear cache and bounce Apache to see the change.
    Also, the metalink article below might help:
    How to open customized page when click on "Forgot Password" URL ? [ID 556454.1]
    Kristofer Cruz

  • Want to customise the message display by adding extra text in Logon Help forgot password link

    Dear All,
      I am implementing Forgot Password functioanlity or link in my Portal ( SAP EP7.0).I am getting "Logon Problem ? Get Support " link in my Portal welcome page.When I am clicking this link ,I am getting pop up asking me to enter user id and mail id.Everything is working fine.
    But my real concern is I want to customise the message display in case wrong user id or mail id or wrong question answer.
    The current message displaying as "User information incorrect. Cannot send e-mail with new password" and I want to display it as
    "User information incorrect. Cannot send e-mail with new password ,Please contact your Administrator"
    If I will tell in one sentence ,I want to customise the message display by adding extra text
    For example: "User information incorrect. Cannot send e-mail with new password"
    Requirements:"User information incorrect. Cannot send e-mail with new password ,Please contact your Administrator "
    Kindly help em out  how to do it ................
    Thanks,
    Sanjay Mohanty

    Hi,
    Until you have only played around with the layout of the logon page and not the actual code then you will be able to use this property. There are bits of code in the logon par which retreives these values.
    For eg you can see the below if statement in the logon page to determine if logon help has to be displayed. This is part of standard logo page so if you have not removed this in your custom one everything should work just fine.
    <% if ( logonBean.getLogonHelp() ) { %>
    Also check this link:
    http://help.sap.com/saphelp_nw70/helpdata/en/45/7e6313d8780dece10000000a11466f/frameset.htm
    Regards,
    Vijith

  • Forgot password - Mail to the user (change mail text)

    Hi,
    we are using SRM 5.0. I have the following problem/question:
    If a user forgot its password he can use the link <forgot user or password? help!>. If the user entered his user name the system sends an email to the user.  In this case the text from the form bbp_um is not used.  How can i change the mail text for this notification? 
    Thanks for your assistance.
    Christian

    I have got an answer from SAP Support:
    22.01.2007 - 15:27:17 CET    SAP    Antwort 
    Um den Meldungstext zu ändern gehen Sie bitte wie folgt vor:
    Im Workflow WS10000192 wird der Sub-Workflow WS10000199 und hier die
    Aufgabe TS10008120 ausgeführt. In der hier zugehörigen Methode
    resetpasswordandmail wird der Funktionsbaustein
    'BBP_GENERATE_PASSW_MAIL' gerufen.
    Im FB BBP_GENERATE_PASSW_MAIL wird u.a. aus den Texten (text-001 bis
    text-005) die Mail zusammengebaut:
    mail_data-obj_name = 'NewPassword'.
    move text-001 to mail_data-obj_descr.
    mail_data-obj_langu = sy-langu.
    move text-002 to mail_content-line.
    append mail_content.
    move text-003 to mail_content-line.
    append mail_content.
    concatenate text-004 password into mail_content-line
    separated by space.
    append mail_content.
    move text-005 to mail_content-line.
    append mail_content.
    Diese Textsymbole können über die Transaktion SE32 im zum Programm
    SAPLBBP_AT_USER_MANAGEMENT gepflegt werden.
    That means:
    You must change the text elements of the programm SAPLBBP_AT_USER_MANAGEMENT in Transaction SE32.
    That is from my view a very bad solution

  • Forgot password, tried randomly guest user, now nothing happens

    Dear community,
    Today i tried logging Ón my MacBook Pro when i found out that ive forgot my password..
    While panicking i clicked ón guest user (1. Time)
    Afterwards it just kept thinking like if it was setting something up. After 1-2 hours i held Down the turn ón/turn off-Button to restart so i could get back to my Own login-start page.. When i turned it ón again it started "setting up" the guestuser.. So now i am stuck!!! I Cant get back to my Real start-login-page......
    Andy solutions? Shall i try to put an internetcable to my MacBook Pro?

    lotekpat:
    It's rather odd that you need an admin password when you are the only user on it. This leads me to something malicious. Just to be safe, Do a malware check with some malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How do I get into my trophy if I forgot password?  Need to use it because my iPhone face cracked and I need to use my Trophy until my new iPhone comes in, but I forgot the passcode, as I haven't used it for over a year.  Help???

    I need to use my old Trophy phone for a couple of days until I get my new iPhone, but I forgot my passcode, as I haven't used it in over a year.  How do I get in?

        Let's get your phone unlocked, pb1441! When the passcode is forgotten on the HTC Trophy, a Factory Data Reset would need to be done. Here is a link with the steps http://vz.to/1ofEiHx. Be sure to follow the ones listed under Alternate Reset Method.
    TanishaS1_VZW
    Follow us on Twitter @VZWSupport

  • Forgot Password link not working

    I was trying to add the sync to the new installation of windows 7. But i have forgot the password for the user account. I have tried so many times to reset the password but never received any emails from you guys.
    Help

    You are right. Sync's reset password feature is broken at the moment.
    I found a bug where the issue is being tracked and as soon as a fix is posted there I'll update this post. It looks like the server that sends the emails is offline or having some other sort of technical issue. I can't say for sure b/c I don't work for Mozilla.
    Anyway, even the Mozilla employees themselves are unable to get their password reset emails. So take comfort in knowing that you aren't the only one with this problem. :) As far as how soon you can expect a fix? I didn't see any timetable for that. I'll let you know if that changes.

  • TS2771 forgot password?  need help grand-daughter's

    my grand daughter forgot her password.  does anyone know how to unlock?

    You'll need to connect it to the iTunes library you normally sync it with and restore it.  If iTunes asks you for this passcode before it will let you proceed, connect the iPod to iTunes in recovery mode instead using the instructions in this Apple support document.
    iOS: Unable to update or restore
    B-rock

  • Forgot Password link isn't  working  in the iRecruitment visitor page

    Hi All,
    Whenever I click on "Did you forget your password?" in the external iRec page , enter the email id whose password I want to reset and submit , I do not receive any mail.Please help me in fixing it.
    Thanks in advance.

    Is your mailer up and working ?
    Workflow Java Mailer & Notifications FAQ (Doc ID 562551.1)

Maybe you are looking for

  • Cannot read a scanned file

    I scan a file on my hp photosmart, to PDF, send tmy laptop and try to open with adobe.  I get a file corrupted message.  I can open the pdf with nitro pro.  WHAT GIVES, CAN ANYONE HELP?

  • How to retrieve project assets into file?

    Hi All, I wanted to retrieve all the assets which are present in a project through startSQLRepository. Can I do this? How to do it? If No, is there any way I can do this? Thanks in Advance. Regards, Ashish.

  • Nokia pc suite keeps trying to install

    Hey i done a system restore the other day and now when ever i try to move a file or open a picture, video ect nokia pc suite try's to install even if it is already installed. I have uninstalled everything nokia related and done a registry cleanup and

  • Unable to update iTunes track information

    So I recently got an iPod, and I decided to take my existing MP3's I have ripped over the years from my CD's and import them into iTunes and get my iPod loaded up. Upon doing this, everything worked fine... I dragged and dropped my MP3's straight ont

  • Display mirroring not working with my TV once I installed Yosemite. Any help?

    I just installed OSX Yosemite v 10.10.1 onto my 2012 MacBook Pro. I have been using the mini port to use an adapter so that I can display my screen onto my TV. Once I installed Yosemite, it is no longer working. Any suggestions? Is there a plug-in? T