Log in help for ePrint Center

I have created a log in for my ePrint. but after I logged out it doesn't recognize my e-mail. can anyone tell me why. so I can't log in to manage my account.
Thanks
This question was solved.
View Solution.

It might be as your eprint account was associated with Snapfish during its registration, therefoer retrieving the password via ePrint Center fails.
Try going to Snapfish and reset the password from there by clicking Log In > Forgot your password, then try using the same details to access the ePrint Center.
Please let me know if that helps,
Shlomi
Say thanks by clicking the Kudos thumb up in the post.
If my post resolve your problem please mark it as an Accepted Solution

Similar Messages

  • Search Help for Cost center

    Hi All,
    I have 2 questions
    1) we dont have any default cost center maintained any where in the org-structure (PPOMA_BBP), howeverwhenever I go for shopping I can see a cost center  along with GL account, ( I know GL acct is coming from "determine GL account for prod-cat" settings in IMG), but what about cost center where is it coming from ??
    2) second, when we do search help for cost center's in shopping application, we are able to see all cost centers from the back end which I guess is good, but we can see even those cost centers which are blocked!!!, why is this happening ??,
    Thanks.

    Hello,
    For First::
    In general the CO Area (here: cost center) is derived from R/3 Backend Enterprise
    Structure and should be re-determined if another acc. objects is
    entered that belongs to a different CO Area. Please also check the
    settings in R/3 Backend IMG, path:
    ->Enterprise Structure ->Assignment ->Controlling
    ->Assign company code to controlling area
    The company code is assigned to the CO Area through the following
    assignment:
    ->Materials Management
    ->Assign purchasing organization to company code
    The CO Area is in general the organizational object in
    highest (CO) level. Assignments to other MM/CO objects are located
    in lower Enterprise hierarchy level. Hence, the CO Area does not
    change if a different CO object of a lower level (here: cost center)
    is assigned to a SRM document.
    For Second::
    The only possibility I see is to set the message to error message in
    the customizing in the backend. The message number is KI 170. When you
    look at the long text of this message in transaction SE91 in the
    backend, you will find the description where to look in the customizing.
    When you have set this message to ERROR, then no purchase order will be
    created in the backend. Instead the shopping basket gets the status
    'ERROR' and the administrator will recieve a work item in his inbox.
    Then he can check the backend and either post the purchase orders again
    after solving the problem, or he can delete the shopping baskets.
    Please check the note for more infos or the documentation.
    Setting the message KI 170 to error message will solve your problem.
    See note 333136.  I would think that if you create
    a PO directly in the backend if you do not have the message configured
    as and error you will be able to create the PO.
    I hope this information helps.
    Kind regards,
    Gaurav

  • Input help for cost center & WBS element not working

    Hi ALL
    We are using SRM 4.0 with backend ECC 5.0.
    Input help for attributes cost center (CNT), WBS element (PRO) are not functioning.
    When tried to search for input help (F4) on the above attributes, I am getting message "Display not possible (Inconsistency in the input help)".
    I even applied SAP note 746788 for cost center search help.
    Can you tell me if I have missed any config settings?
    Thanks in advance
    Jagdish

    Hi,
    Did you managed the transactional RFC destination in the customizing (where you define all your log. systems it is an additional field in the table control).
    Regards.
    Vadim

  • F4 help for Cost Center in SRM 7.0

    Hi,
      My requirement is to display customized F4 help for the Cost Center(i.e. user specific search help maintained in Z table) field during the creation of the Shopping Cart.
      I've created my own Search Help, and I'm looking for a BADI which will fit in my reuirement.
      So far I've tried BADI 'BBP_DRIVER_DETREMINE ' for the same, but it's not getting called for providing F4 help. 
      Thanks in advance.
    Thanks & Regards,
    Amit

    Hello all,
    This is to correct my posting on Nov 16, 2009 8:20 AM. I have done further research and testing and finally got the multiple GL working. I have to remove the authorisation for object BBP_FUNCT on activity BE_FE_HELP to disable the serach help function. This way, the user will see the allowed list of GLs instead of a search help.
    Regards
    SF

  • Search help for cost center does not work after SP upgrade

    Hi,
    Create a shopping cart in SRM and go to the cost assignment tab. When click on the search help to enter a costcenter, we don't get any search help screen.
    Thanks

    Kindly check note: 1259735 Search help of generic account does not work
    Additionally Check the 5th question/answer of note 815849.

  • Print Apps. ePrint center App

    Is there a App.for eprinting center? If yes how do you download the app? Thank you for any help you can provide me with.

    Hi post_it,
    Here is a link to what I believe you are looking for:
    http://www8.hp.com/us/en/products/smart-phones-handhelds-calculators/mobile-apps/app_details.html?ap...
    If I have helped in any way, just click the Kudos star on the left. Also, if your issue has been resolved, don't forget to select Accept as Solution

  • F4 HELP  for the field

    HI all,
    in the report selection screen i have one field for which F4 HELP  doesnt exits, even in the table for that field F4 HELP is not there but the user requests me to get the F4 HELP for that field in the selection screen .
    please help how to get F4 HELP  for the field
    thanks in advance.

    The following are the options for F4 help
    Code:
    PARAMETERS: p_ccgrp LIKE rkpln-ksgru. "Cost Center Group
    *Input help for Cost Center Group
    AT SELECTION-SCREEN ON VALUE-REQUEST   FOR p_ccgrp.
    TYPES: BEGIN OF ty_ccenter_group,
    setname TYPE setnamenew,
    descript TYPE settext,
    END OF ty_ccenter_group.
    DATA: it_ccenter_group TYPE TABLE OF ty_ccenter_group.
    CLEAR it_ccenter_group.
    SELECT a~setname
    b~descript
    INTO TABLE it_ccenter_group
    FROM setheader AS a INNER JOIN
    setheadert AS b ON
    asubclass EQ bsubclass AND
    asetname EQ bsetname
    WHERE a~setclass EQ '0101' AND
    b~langu EQ sy-langu.
    CALL FUNCTION 
    'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    ret field        =  'SETNAME'
    dynpprog     =  v_repid
    dynpnr         =    SY-DYNR
    dynprofield = 'P_CCGRP'
    value_org    = 'S'
    TABLES
    value_tab   = it_ccenter_group.
    F4IF_FIELD_VALUE_REQUEST:
    This FM is used to display value help or input from ABAP dictionary. We have to pass the name of the structure or table (TABNAME) along with the field name (FIELDNAME). The selection can be returned to the specified screen field if three
    parameters DYNPNR, DYNPPROG, DYNPROFIELD are also specified or to a table if RETRN_TAB is specified.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
    TABNAME = table/structure
    FIELDNAME = 'field name'
    DYNPPROG = SY-CPROG
    DYNPNR = SY-DYNR
    DYNPROFIELD = 'screen field'
    IMPORTING
    RETURN_TAB = table of type DYNPREAD
    Getting F4 help based on other  field  .
    Suppose  if there  are  2 fields on selection screen  user name and Purchasing Document  and  the case is getting values of  Purchasing Document Number  based on  user name
    Code:
    TYPES:   BEGIN OF ty_match_nast,
                    objky TYPE na_objkey,
                    END OF ty_match_nast.
    Data: it_match_nast   TYPE STANDARD TABLE OF ty_match_nast.
    Data: it_dypr_val   TYPE STANDARD TABLE OF dynpread.
    DATA: wa_dypr_val  TYPE dynpread.
    DATA: it_return TYPE STANDARD TABLE OF ddshretval.
    Case when only username value is entered.
           SELECT objky
            FROM   nast
            INTO  TABLE it_match_nast
             WHERE kappl  = c_ef
             AND   kschl = c_neu
             AND   usnam = wa_dypr_val-fieldvalue.
          ENDIF.
    *Read User name  on  selection screen field value
      CLEAR wa_dypr_val.
      REFRESH it_dypr_val.
      wa_dypr_val-fieldname = 'P_UNAME'.      "User name
      APPEND wa_dypr_val TO it_dypr_val.
    *FM to get the value
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname             = sy-repid
          dynumb             = sy-dynnr
          translate_to_upper = 'X'
        TABLES
          dynpfields         = it_dypr_val_h.
    *Pass the values to f4 table
       CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
            retfield     = u2018OBJKY'
            dynpprog    = sy-repid
            dynpnr      = sy-dynnr
            dynprofield = 'P_EBELN'
            value_org   = 'P'
         TABLES
            value_tab   = it_match_nast
            return_tab  = it_return.

  • Search help for Acct Assignment not working

    Hi,
       When I create a PO and go into the account assignment tab at the item level and try to bring up the search help by clicking on the Binoculars , nothing happens. The backend has been upgraded to ERP2005. We are on SRM 5.0
    Any thoughts on why this could happen?
    Can you shed some light on how I could investigate this issue.
    Your help is appreciated.
    Joe

    Hi
    This is a bug in the System.  Are you talking of customer fields / standard fields - search help ?
    You need to raise an OSS message with SAP on this.
    Meanwhile, try these SAP OSS notes.
    <u>Note 739509 BBPPO01: SEARCH FOR ACCOUNT ASSIGNMENT CATEGORY DOESN'T WORK
    Note 746788 - Back-end system search help for cost center
    Note 656633 - Search help requires dialog users
    Note 907016 - Error when you select search help</u>
    Also ensure, proper authorization objects are provided by BASIS team.
    Let me know incase you need any assistance.
    Regards
    - Atul

  • Can't log into eprint center for my photosmart 210b

    I can't log on to eprint center for my photosmart 210b and there is no place to select "forgot password" . My password doesn't work.

    WHY AM I HAVEING TROUBLE SIGNING INTO MY ACCOUNT CAN SOMEONE HELP

  • Help with logging into ePrint Center

    I created an account to sign in to the ePrint Center, but received reply - "email already in use", tried signing in with my email, but received reply "password entered invalid", When I asked for new password, system would not accept my email for a forgotten password - stated need email associated with account. Can someone help me reset my password for "eprint centre".

    Hi mevalerie, take a look at this post and see if this solution works for you http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile/No-longer-able-to-acces-account/td-p/1782829
    Feel free to post back if you're still having problems.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • I try to log into ePrint Center or Connected and get invalid email

    When I try and log in it tells me invalid email.  I tried logging into eprint center as well as connected.  I've reset my password so it knows me.

    Hi @CAACAA
    Welcome to the HP Support Forums.  I understand that you are unable to log into your HP ePrintCenter or HP Connected account.
    For the error that you are receiving, please call HP’s Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside the USA/Canada region please click here to find the Technical Support number for your country/region.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Problem logging into ePrint center - can't retrieve password

    I set up an ePrint account recently and now I can't log in to my account.
    I tried using the forgot password link but it does not send me anything. I sent a test email to my printer and it worked. I also tried to re-register using my email address and it says there is an existing account.
    Is the system down?

    More likely you have used Snapfish to create your ePrint Center account for the first time, therefore you will have to use the Snapfish Login:
    From the Sign In page, click the Snapfish icon:
    Try logging in from the popup screen.
    If the logon still fails, Click the Forgot password link withing the Snapfish popup window.
    You will be redirected to the Snapfish forgot password page. provide the email address and click OK.
    Now try logging in using the Snapfish logon using the newly provided password.
    Please let me know if that helps,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Trouble logging into eprint center to set up account

    having trouble logging into eprint center.
    I enter email and then password and its says password invalid
    I ask to reset password in the forgot password box and it asks for email address. When I type in email it keeps asking for email associated with account as if the box is blank. It keeps saying type in email.
    Any help or ideas would be greatly appreciated.

    The issue you're experiencing is most likely due to an old Snapfish account registered under your email address. ePrintCenter and Snapfish account information is stored in the same place and I've seen this conflict before. You will need to go to http://www.snapfish.com/snapfish/welcome, click the "Sign In" in the top right hand corner of the page and then click the "forgot password" link and enter the email address that is causing your problems, you should receive an email from Snapfish that will let you create a new password there. Once you've created a new password for Snapfish, try to Sign In on ePrintCenter (http://www.eprintcenter.com/) using your email address and the new password you created for Snapfish.
    Let me know if you have any further issues, Thanks!
    If I have SOLVED your issue, please feel free to provide KUDOS and make sure you mark this thread as SOLUTION PROVIDED!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Change log for work center data

    Hi,
    I was looking for the table where the change header document for the work center is stored.I was able to find a transation CR10 which shows the changes and also the database table CDHRD.
    When I am trying to view the changes that were made to the work center I find that the data does not exist in the tables.
      I was curious to know this as for some transaction the data is being logged in their respective change table but not for Work Center changes.
      Can anyone tell me as to why this is happening.
    What I think is that some changes to the configuration are required in order to log the changes in the database.
    Kindly help.
    Regards
    Varun

    Hi Wolfgang,
    Thanks for the information.
    However i have another question.
    The change table will have data only when it is activated in the configuration menu.
    However is there any other way by which we can capture the previous data for the work center e.g. the changed by field. I want that the names of the users who has changed the wrok center currently and the name of the person who previously made changes to it.
    See if you can help me on that.
    Regards
    Varun

  • Incorrect email address for my HP ePrint Center email account

    downloaded  HP ePrint for my blackberry and my email address for my HP ePrint Center email account is wrong, need to change

    Hi pjbodor1,
    I can definitely understand why that would be so frustrating.  It can be a bit confusing as to which email you need at different points.
    The email address you need to enter into the activation screen on the HP ePrint app, on any device (Android, Apple, Blackberry) is your personal email address.  You will receive an email from HP ePrint with the pin code  that you need to activate your app.  Please remember that each app needs to be activated individually, therefore if you have multiple devices with the HP ePrint app installed, you will need multiple pin codes.  The easiest way I found not to get them mixed up is to activate each device/app one at a time.  Once the app has been successfully activated on the device, delete the pin code email and move onto the next device. 
    For reference I have included 2 documents.  The first is getting started with HP ePrint mobile apps and the second one is dedicated to FAQ's for HP ePrint mobile apps.
    Getting Started with HP ePrint Mobile Apps
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01616126
    HP ePrint Mobile App FAQs
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01923321
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for