SAP Mentor Space redirect

Anytime I try to go to the SAP Mentor space at SAP Mentors it takes me straight to TechEd Online http://events.sap.com/teched/en/myinfo.aspx and wants profile information.
How can I stay on the SAP Mentor space without immediately getting redirected?  Is there is a bug on the main space page?

Hi Tammy, I can confirm, this happens to me too.
There is widget in the middle of the overview space, when this is finished loading it opens this registration window:
if you are quick and can reach the stop loading button in your browser before it is finished with loading, then you can stay.
Mark Finnern is space editor and can probably fix this

Similar Messages

  • Hi sap mentor

    hello sap mentor ,
    i m mohit i am having some issues with my sap crm6.0 version
    1.LIKE SOME RUNTIME ERRORS WHILE CREATING A MARKETING PLAN ,
    2.SAVE BUTTON NOT APPEARING IN ELM WHILE UPLOADING BP MASTER DATA
    CAN U P,LEASE TELL ME THAT HOW TO ADDRESS THESE ISSUES OR WHETHER I HAVE TO SEND U THE DESCRIPTION OF THE ERROR.
    3.SOME OTHER ISSUES R TTE IS DISABLED BUT STILL IN TELESALES ORDER IT is asking for tax,
    4.another error is enter valid country for business partner in  * crmd_order*
    5.pricing conditions tab page is not appearing in the sales order but it is copying the prcing procedure field in prices tab page but conditiond tab page is blank.
    also tell me whether the way in which i've asked the question is appropriate and also correct me i m wrong
    thanks in advance
    mohit

    y is there no one to help of crm

  • Future of CRM SAP Mentor Public Webinar - August 18th

    Hey folks please join your fellow SAP CRM SAP Mentors for a future of SAP CRM conference call on August 18th at 9AM PST.  You can find the details be reviewing this weblog:
    /people/stephen.johannes/blog/2009/08/04/future-of-crm-public-sap-mentor-webinar--august-18th-9am-pst
    Topics to be covered:
    CRM as a composition canvas
    CRM User Interface
    Social CRM
    If you got questions about this please post these here or shoot me a private message.
    Thank you,
    Stephen
    CRM Topic Moderator / SAP Mentor

    Hey folks - sorry we didn't post the link to this webinar here sooner.
    You're welcome to attend, it will be a highly interactive format and we'd love to have your participation in the active chat and also Q/A.
    If you're not able to make it today (90 minutes from now), if all goes well we should have a replay link to post after the fact.
    - Jon

  • SAP Mentor needed in Fort Collins, Colorado

    Hello SAP Mentors,
    We have a request from Colorado State University for a speaker to discuss SAP ERP, implementation success factors and answer questions about integrated systems.  Do we have a mentor who lives in the Fort Collins, CO area that would be interested in speaking with a university class about these topics?
    Thanks,
    Alex McLeod

    "Once upon a time..." someone created an SAP Mentor Map.  I found it, easily enough, with google (search: sap mentor map).  It's a bit dated, let's just say.  I think Jamie Oswald is the closest, but it's quite a haul.  Vijay is listed in Arizona, which is also far away from Kansas, I mean Colorado, but he's on the Emeritus list.
    See:
    https://maps.google.com/maps/ms?oe=UTF8&client=firefox-a&ie=UTF8&t=h&msa=0&msid=114099648750098689827.00045b1af8a86d810c199&dg=feature
    Public · 4 Collaborators · 761,153 views
    Created on Nov 7, 2008 · By zSAPping · Updated Oct 1, 2012
    Rate this map · 1 comments · KML ·
    The map is curated by @finnern, @steinermatt and @oliver. Please get in contact with any one of them to get added here.

  • What is SAP name space for different objects.

    Hi Guys,
    Kindly let me know the SAP name spaces for different objects.
    Thanks

    hi,
    Naming Conventions in ABAP Objects 
    Global classes and interfaces that you create in the Class Builder are stored in the class library and administered by the R/3 Repository: they therefore have the same namespace as all other Repository objects (database tables, structures, data elements, and so on).
    It is therefore necessary to have naming conventions for object types and their components and to use them uniformly within program development.
    The following naming convention has been conceived for use within the SAP namespace:
    If you do not observe the naming conventions for object types (classes and interfaces), conflicts will occur when the system creates persistent classes, since it will be unable to generate the necessary co-classes.
    Namespace for Components
    A single namespace within a class is shared by:
    All components of the class itself (attributes, methods, events, constructors, interfaces, internal data types in the class, and aliases)
    All public and protected components of the superclasses of the class.
    Method implementation has a local namespace. The names of the local variables can obscure those of class components.
    Naming Convention
    The naming convention has been kept as general as possible to avoid adversely influencing the naming of objects.
    General Remarks
    When you choose names for development objects, you should:
    Use English names
    Use glossary terms when possible
    For example, CL_COMPANY_CODE instead of BUKRS
    In compound names, use the underscore character (_) as a separator. Since names are not case-sensitive, this is the only character that you can use to separate names.
    Example: CL_COMPANY_CODE, CL_GENERAL_LEDGER_ACCOUNT
    Names should describe the action, not the implementation of the action.
    Example: PRINT_RECTANGLE, not RECTANGLE_TO_SPOOL
    Conventions for Object Types
    Class and interface names in the class library belong to the same namespace as data elements, tables, structures, and types. They are maintained centrally in table TADIR.
    Class in the class library
    CL_<class name>
    The class name should be made up of singular nouns.
    CL_COMPANY_CODE, CL_GENERAL_LEDGER_ACCOUNT
    Interfaces in the class library
    IF_<interface name>
    The same naming convention applies to interfaces as to classes.
    IF_STATUS_MANAGEMANT, IF_CHECKER
    Local classes in programs
    (recommendation)
    LCL_<class name>
    The class name should be made up of singular nouns.
    LCL_TREE_MANAGEMENT
    Local interfaces in programs
    (recommendation)
    LIF_<interface name>
    The sane naming convention applies to interfaces as to classes.
    LIF_PRINTER
    Recommended naming conventions are not compulsory. However, if you use prefixes for these class and interface names, you should use those listed above.
    Conventions for Components
    Method name
    <method name>
    Method names should begin with a verb:
    GET_STATUS, CREATE_ORDER, DETERMINE_PRICE
    Events
    <event name>
    Event names should have the form
    <noun>_<participle>:
    BUTTON_PUSHED, COMPANY_CODE_CHANGED, BUSINESS_PARTNER_PRINTED
    Local type definitions within a class
    (recommendation)
    TY_<type name>
    TY_INTERNAL_TYPE, TY_TREE_LIST
    Data definitions (variables)
    <variable name>
    When you name variables within a class (CLASS-DATA or DATA), avoid using verbs at the beginning of the name (to avoid conflicts with method names).
    LINE_COUNT, MARK_PRINTED, MARK_CHANGED, STATUS
    Data definitions (constants)
    (recommendation)
    CO_<constant name>
    CO_MAX_LINE, CO_DEFAULT_STATUS, CO_DEFAULT_WIDTH, CO_MAX_ROWS
    Recommended naming conventions are not compulsory. However, if you use prefixes for these class and interface names, you should use those listed above..
    Concrete Method Descriptions
    Attribute access
    SET_<attribute name>, GET_<attribute name>
    Methods that access attributes of any kind should be prefaced with GET_ or SET_.
    GET_STATUS, SET_USE_COUNT
    Event handler methods
    ON_<event name>
    Methods that handle events should begin with ON, followed by the name of the event that they handle.
    ON_BUTTON_PUSHED, ON_BUSINESS_PARTNER_PRINTED
    Methods that perform type conversions
    AS_<new type>
    AS_STRING, AS_ISOCODE
    Methods that return a Boolean value
    These methods may not return any exceptions.
    Recommendation: Use SPACE and 'X' to represent false and true respectively.
    IS_<adjective>
    IS_OPEN, IS_EMPTY, IS_ACTIVE
    Check methods
    CHECK_<objective>
    CHECK_AUTHORIZATION, CHECK_PROCESS_DATE
    Local Conventions Within Methods
    For parameters
    The parameters are regarded from the point of view of the method that implements them:
    IMPORTING parameters
    IM_<parameter name>
    EXPORTING parameters
    EX_<parameter name>
    CHANGING parameters
    CH_<parameter name>
    RESULT
    RE_<result>
    Using prefixes is NOT compulsory. However, if you do use them, use those listed above.
    For exceptions
    The following table contains a series of possible exception names, that can also be used generically (for example, NOT_FOUND could also be used as DATE_NOT_FOUND)
    EXCEPTION
    Meaning
    ACTION_NOT_SUPPORTED
    The requested action or function code is not supported.
    CANCELLED
    If a method uses a dialog to find out what has to be dome (for example, a list of choices), and the user chooses "Cancel", you can set this exception.
    EXISTING
    A new object that you want to create already exists in the database.
    FAILED
    The method could not be executed because of the current environment. This exception is intended for cases where the method cannot be executed because of variable system circumstances.
    ..._FAILED
    Part of the method could not be completed because of the current environment. (OPEN_FAILED, CLOSE_FAILED, SELECTION_FAILED, AUTHORIZATION_FAILED)
    FOREIGN_LOCK
    Data is locked by another user.
    INCONSISTENT
    Object data in the database is inconsistent.
    ..._INCONSISTENT
    The component data for … of an object in the database is inconsistent.
    INVALID
    The object data entered is incorrect (for example, company code does not exist). Compare NOT_QUALIFIED.
    ..._INVALID
    The component data entered for an object is incorrect. Compare NOT_QUALIFIED.
    INTERNAL_ERROR
    Last resort. Only use this exception if you cannot be more precise about the nature of the error.
    NOT_AUTHORIZED
    The user does not have the required authorization.
    NOT_CUSTOMIZED
    The object requested is not correctly customized.
    ..._NOT_CUSTOMIZED
    The component … of the requested object is not correctly customized.
    NOT_FOUND
    Unable to find the requested object.
    ..._NOT_FOUND
    Unable to find component … of the requested object.
    NOT_QUALIFIED
    The combination of input parameters is insufficient to run the method. Compare INVALID.
    ..._NOT_QUALIFIED
    One parameter of the method is not qualified.
    NUMBER_ERROR
    Error assigning a number.
    SYSTEM_ERROR
    This exception is set if the Basis system returns an unexpected error message.
    regards,
    sudheer.

  • SAP Mentor Nomination

    Hello everyone,
    I would like to highlight that the SAP Mentor nomination is open again. You can read the details here in Mark Finnern's blog (/people/mark.finnern/blog/2010/02/15/who-should-be-an-sap-mentor-please-nominate).
    The link to the SAP Mentor Nomination Form : http://bit.ly/sapmentornomination
    The deadline for the nomination is February 26, 2010.
    I would appreciate if you take the time and think about the people keeping this forum alive and perhaps you think it is worth nominating them to be a SAP Mentor.
    much appreciated.
    Ingo Hilgefort

    David,
    You can "Occupy Walldorf" as much as you want. I would not care as I don't live in Walldorf neither in Germany !   
    Olivier

  • SAP Mentor 2009?

    Hello,
    i was wondering what happend to the SAP Mentor Nominations for 2009?
    Refering to the Mark's blog:
    /people/mark.finnern/blog/2008/11/19/nominate-the-next-sap-mentors
    Therefore we will select the top candidates from your suggestions and announce the new SAP Mentors in January 2009.
    Have i missed this announcement or is the process still ongoing?
    Regards
    Stefan

    As indicated to you already, I have taken up this issue in Moderators forum
    thanks
    G. Lakshmipathi

  • SAP Mentor Backpacks wear out, not just SAP Mentors.

    My old SAP Mentor Backpack is now stitched in two places where the sharp corners of my Alienware pierced the nylon or whatever the fabric is.
    Don't you think that old worn-out SAP mentors should be able to get their old worn-out SAP Mentor backpacks replaced for free, or at least at a significant discount?
    Sincerely,
    Old Worn-Out SAP Mentor

    David,
    You can "Occupy Walldorf" as much as you want. I would not care as I don't live in Walldorf neither in Germany !   
    Olivier

  • SAP Mentors- Help !!!!

    Hi,
    I've gone through the SAP Mentor List.
    I was thinking if there is an option to choose one specific mentor for further guidance on queries. As a certain rapport will be developed between the two it would be a easy and comfortable communication.
    Requesting for inputs on the above.
    Regards
    Tejashree.

    Hi Tejashree:
    You can reach us either by mail or by Twitter...It's your choice -;)
    We all got full-time jobs...But are always willing to help newcomers -:)
    [SAP Mentor Twitter IDs |https://wiki.sdn.sap.com/wiki/display/SAPMentors/SAPMentorTwitter+IDs]
    [List of SAP Mentors|https://wiki.sdn.sap.com/wiki/display/SAPMentors/ListofallSAPMentors]
    Greetings,
    Blag.

  • What happened to the SAP Mentor Initiative / Nominations?

    Hello guys,
    maybe i have overlooked something very obviously - but what happened to the SAP Mentor Nominations of Feb 2010?
    Regarding to this blog of Mark (/people/mark.finnern/blog/2010/02/15/who-should-be-an-sap-mentor-please-nominate) - the nomination should be closed on 26/02/2010, but until now i can not find any announcement with the new SAP Mentors?
    Did i just overlook the announcement? Was nobody nominated or what happened to that initiative?
    Regards
    Stefan

    Hi Mark,
    Thanks for your question.
    I apologize for this but we had a small issue with the sessions.
    They are all back now
    Hope you are enjoing Virtual SAP TEchEd '07
    Adi

  • Vote for SAP mentor

    Just FYI...
    SAP Mentor nomination is open. You can read the details here in Mark Finnern's blog (/people/mark.finnern/blog/2010/02/15/who-should-be-an-sap-mentor-please-nominate).
    The link to the SAP Mentor Nomination Form is here http://bit.ly/sapmentornomination
    The deadline for the nomination is February 26, 2010 (sorry for the short notice)
    Regards,
    Tim

    Just FYI...
    SAP Mentor nomination is open. You can read the details here in Mark Finnern's blog (/people/mark.finnern/blog/2010/02/15/who-should-be-an-sap-mentor-please-nominate).
    The link to the SAP Mentor Nomination Form is here http://bit.ly/sapmentornomination
    The deadline for the nomination is February 26, 2010 (sorry for the short notice)
    Regards,
    Tim

  • Who should be an SAP Mentor? Please nominate! - Deadline 26th. Feb

    Hi all,
    The SCN Team is looking for new Mentors.
    SAP Mentors are the top community influencers of the SAP Ecosystem. Most mentors work for customers or partners of SAP. All of them are hands-on experts of an SAP product or service, as well as excellent champions for product roll-in and roll-out. They have been nominated by their peers on the basis of their passion for the community and their willingness to contribute and share as well as motivate others.
    Please take a look at the Blog here: /people/mark.finnern/blog/2010/02/15/who-should-be-an-sap-mentor-please-nominate
    Or directly
    vote here: http://bit.ly/sapmentornomination
    Deadline for the nomination is Friday the 26th of February
    P.S: Top 3 Contributors, of the last 30 days: 1. Gordon Du (1,730); 2. János Nagy (358); 3. Thanga Raj.K (344)

    But I don´t like the concept of wikis. I don´t understand who, why, when will change my content. And I don´t want anybody to do that. But these are only my personal feelings and I can work on this.
    I am also sceptical about them. I created some wikis, but no one else contributes further to them. It is however the rather "niche" type of wiki.
    If you let the people to create these "personal learning paths", people will try.
    There was a guy in the MM forums who documented every transaction in SAP by asking for link-farms to anything relating to the tcode. We stopped him too late.
    If there were a new mechanism how to do things it would attract people. I can imagine for example Chintan Virani to run his own "Portal school your youngsters" etc.
    Probably I would enrole as a fresher. I like Chintan, and in my free time look up to see his recent posts.
    My offer stands if you want to do anything security related. If you initiate it, I will join for sure. There are also existing initiatives which you can join - see the functionality wishlist.
    One last thing: American presidents ask who should they call to talk with Europe. There is no such number. And there is no such place here on SDN.
    Regarding your reference to the "grouping" notion (BEGRU heh??) - I am currently trying to learn Hindi. Actually, Bollycat Urdu. SDN is for me a natural platform to find such people and I have many friends from India met via SDN. I also need a mentor for this but it is tough to achieve without disturbing others in the public realm.
    If anyone would like to help me, then we can use the non-English playground forum. The background is to attend TechEd Bangalore 2010 and be able to understand (more or less) what is going on around me.
    Cheers,
    Julius

  • SAP Script 'space' check in IF  statement

    Hi,
    I want to check for space in SAP script
    i want to check something like
    /: IF &TS_ITEM-USPOS& EQ SPACE
    ZD ...........
    /: ENDIF
    even if the there is space in uspos field this lines under are not printing.
    your help is appriciated.
    thanks
    surya

    Hi Surya,
    It depends of the type of this field 'USPOS'.
    If it's defined, for eg, like POSNR ( NUMC 6 )so the statement is :
    /: IF &TS_ITEM-USPOS& EQ '000000'
    Hope this helps,
    Erwan

  • How 'bout if SAP mentors "vet" SAP's choices for new ABAP keywords?

    What's prompting this post is the keyword "enhancement spot".
    Really bothers me, unless one thinks of a "spot" as a "gathering-place", as in the English usage "night-spot" for a club or "hot-spot" for a place where a dog's skin allergies flare-up.
    I mean - the only "spot" that an "enhancement spot" defines is a node in a navigation tree underneath a package in SE80.  It's a bureaucratic notion, not a functional notion.  There are no actual "spots" outside of the navigation trees under SE80 packages  ... the "spots" in the code are "points".
    So in my opinion (which as you all know is ALWAYS a "humble" opinion (heh heh heh)), maybe "enhancement node" would have better reflected the true purpose of the construct.
    And even if you don't agree with me in this particular case, I'm sure you can think of other cases where similar semantic problems arise.
    So - it strikes me that it would be easy for ABAP product mgrs to pass new nomenclature past the SDN mentors, to see if an SAP first-draft choice is raising too much semantic noise.
    Disclaimer:
    I have "no dog in this hunt" ... to use Mark Finnern's delightful term, I've been a "sleeping mentor" for almost two years no (i.e. I've been "defrocked" for some time now ...)
    djh

    Or an adhoc Coffee Corner committee which directly advises the board based on recent contributions?
    How about (currently topical):
    enhancement-lbw
    enhancement-duck
    enhancement-silly_mid
    enhancement-howzay. "reserved for WDA
    enhancement-rain. "can only be caught by exiting the main program
    etc...
    Just a thought...
    Cheers,
    Julius
    Edited by: Julius Bussche on Mar 31, 2011 9:25 PM

  • SAP GUI Space requirements

    Hi Everyone,
    Can anyone guide in providing space requirment details for installing SAP GUI 7.1 for hand-held devices (like handy cam, blackberry etc) having 64 MB RAM?
    I want to know what are the requirments to install SAP GUI 7.1 to handheld devices like space, RAM etc.
    Expecting an immediate assitance.
    Regards,
    Siva

    Hi Siva,
    AFAIK the SAP GUI is not installed on any mobile device. There are mobile scenarios with thick and thin clients, where thin client is browser based. I recommend the forum "[Mobile|SAP for Mobile;" for that question.
    Regards, Boris

Maybe you are looking for

  • Adobe Photoshop CS2 Error messages after update to mac os 10.4.6

    After updated to mac os 10.4.6 everytime I use Photoshop CS2 I receive an error message "Could not complete your request because of a program error" I did all the workarounds that were described in document 331627 from Adobe's website and nothing wor

  • Cenvat Code is not allowed

    Hi All, I have created a tax code with the combination of BED and VAT where the rate for BED is 0 and the rate for vat is 4. This tax code is not visible in the purchase or sale document in the list of tax codes. Idf i copy the tax code and paste, it

  • I'm in need of a "container"

    Hi all. In my project there are 2 radio buttons. Each of them gives access to several controls (such as string, listboxes and checkboxes) which differ both in number and in type. What i would like to do is to make these controls visible or invisible

  • Should I delete redundant images in the "All Images" folder?

    Not sure if this is the right place to post this but... The "All Images" folder contains so many redundant images, should I clean up those redundant files? If I do, will it delete them from the individual docs and other files where the images are ass

  • Drag and drop data object  not working in jdev 11.1.1.7

    I am trying to do quote process lab and faced this issue. When defining the user task parameter in jdev 11.1.1.7 i am not able to drag and drop the data object in parameter list section.