Invalid Developer Access key while editing FM Exit_SAPLRRS0_001

Hi,
I want to create a new user exit variable for reporting. I created a proj in CMOD and included the component RSR00001 which
includes the FM - Exit_SAPLRRS0_001. I try editing the function module, its asking me to enter the Developer Access key. System is not accepting the key which I pass even though there is a proper entry against my id in the table DEVACCESS.
Any possible solutions

Hi,
When you reach the exit EXIT_SAPLRSAP_001, dont try to go in edit mode into it. There would be a Include in it. Double click on this include.
INCLUDE ZXRS**.
You would reach this include. Now, go in change mode of this include. It would allow you to go in change mode with your access key.
If there is no such include inside this function module, then follow the below steps to create a new include.
What you are trying to do is changing the standard function module EXIT_SAPLRSAP_001. If you want to change any standard objects, you will need specific access keys for these objects based on their Object Directory Entry from your BASIS guys.
e.g. for EXIT_SAPLRSAP_001 you can find this info from Menu bar-> Goto -> Object Directory Entry.  If your provide this info to BASIS, they would give you unique access key which would work only on this function exit. Then you can change this function exit.
Edited by: Rahul K Rai on Oct 28, 2010 4:50 PM

Similar Messages

  • Developer access key question

    Hello,
    I am trying to create some domains per a OSS note. the domains are FILE_APPL and FL_EXTN. when I create the first domain, the system prompted me for the developer access key. The BASIS person sent me the key and I entered and created the first domain. I am trying to create the second domain and again it asked me for the developer access key. I typed the same number and I am getting a "incorrect entry" box. when I clicked on the information button, it states that I should only have to enter this key once.
    why does the invalid entry box appear when I am entering the same key?
    why do I have to enter the key again?
    am I doing something wrong in the process?
    thanks in advance for the help

    Basically, if you are referring to a developer key, you only have to enter this once, but if you are referring to an object registration key, then these are specific to each object, which would be the reason why the key doesn't work for the second object.  It appears that the first is ok, so you now need a second object registration key for the second domain,  have your basis person register this object and get the other key.
    Read the dialog carefully, it probably says about registering the object and not entering the developer key.
    Regards,
    Rich Heilman

  • ABAP developer access key

    How can i get the ABAP developer access key?

    Thanks you all!!
    I tried so many times but i got the error
    Authorization Error!  Currently you do not have authorization to use this function. To request the authorization, please contact one of the administrators at your company:
    Then I reported my administrator, but unfortunately he also got the same Authorization Error!!
    I don't know, the correct way for getting the access key.

  • Developer access key

    Hi there!
    I understand that one needs to be registered as a developer in the system before changing/creating any object.
    However, system prompted me for developer access key when I tried changing some custom program in SE38 and system allowed me to change SAP script form without prompting anything about developer access key.
    Any information on why system never prompted for developer access key when changing SAP script form in SE71?
    G@urav

    Thanks for all the replies!
    Still the question remain same..
    Why system allows to change a custom SAP Script form to a user who is not registered as a developer in the system?
    G@urav

  • Where to enter developer access key

    Hello gurus,
       By logging on through the OSS login have created developer key. But how to register it with the R/3??? Which is the T-code and what are the steps involved???
    Thanks and Regards,
    Rahul

    Hi Rahul,
    First i  requested you to get in touch with ABAP moulde lead and get confirmation
    mail from customer, then only we can create Developer Access key.
    Procedure explains how to obtain a developer key:
    a) Log into OSS.
    b) Click on the Registration button and then click the Register Developer button.
    c) Select appropriate customer installation.
    d) Enter the user ID in the user box,.
    e) Click on the Register button.
    f) Copy the KEY (by highlighting and using ctrl/c for copy and ctrl/v for paste) and email the user
    of his key. The ctrl/c, ctrl/v ensures that the complete key is copied since it is a very long
    number.
    g) Click the Cancel button when done or click the Register button to register another developer.
    h) Click the green '¬ ' to exit.
    Thanks.

  • How to delete developer access key

    Hi Experts,
    How can i delete developer access key from SAP user,
    Regards

    The user is registered as a developer for a certain system at SAP. I do not know if there is a way for deregistering a user. If the user has a developer role AUTHORIZATION OBJECT, he can enter the key received from SAP. Once entered, it is stored in DEVACCESS.
    Just remove the DEVELOPMENT  AUTHORIZATION OBJECT from the user and the key is useless because it can not be entered again..
    Regards,
    Clemens

  • Default behaviour of the Escape key while editing a cell in JTable??

    Hi all,
    i have a Jtable which get its data from an own model object which extends DefaultTableModel.
    If i overwrite the isCellEditable(row, col) method within the tablemodel object and set a specific column to editable, then i notice while editing a cell in that column that the default behaviour of the Escape key is that independet from what you have entered before in to the cell the editing stops and the cell gets the value it had before editing.
    This is the case for me even if i apply a custom editor to a column (one that extends DefaultCellEditor). It is just a JTextField that limits the number of digits a user can enter. Everything works fine. If the user edits the cell and presses ENTER or the "down arrow key" i can check what he has entered with the help of the getCellEditorValue() method. But if the user hits the ESC key after editing a cell this method is not invoked!!!
    My question is :
    is there any way to detect that the user cancels editing with the ESC-key.
    this is very important for me because if the user goes editing the cell i lock the related record in the database, if i cannot detect this it is locked till the application terminates.
    Thanks for any help in advance

    I try override the JTable editingCanceled() ==> does not work.
    I try the addCellEditorListener( CellEditorListener l ) ==> does not work.
    Finally, I try the addKeyListener ==> it works.
    Here is a quick demo. program:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    public class Test {
    public static void main(String[] args){
    JFrame f = new JFrame();
    String[] colName = {"a", "b"};
    String[][] rowData = {{"1", "2"}, {"3", "4"}};
    JTable table = new JTable(rowData, colName);
    JTextField t = new JTextField(10);
    t.setBackground(Color.red);
    t.addKeyListener(new KeyAdapter() {
    public void keyPressed(KeyEvent e) {
    if (e.getKeyCode() == KeyEvent.VK_ESCAPE) {
    // do what ever you want ex. un-lock table
    System.out.println("ESCAPE");
    DefaultCellEditor editor = new DefaultCellEditor(t);
    TableColumnModel colModel = table.getColumnModel();
    for (int i = colModel.getColumnCount()-1; i >= 0; i--) {
    colModel.getColumn(i).setCellEditor(editor);
    f.setContentPane(new JScrollPane(table));
    f.pack();
    f.setVisible(true);

  • How to get access key while creating database view in R3

    Hi all experts,
    I am new to SAP so please forgive my ignorance.
    From R3, I am trying to create a new database view named ZVENDOR_ATTR  which will be based on LFM1.
    When i go to SE11 -> chose view and click create then it shows a pop up window that says "you are not registered as a developer. Please register in the Online Service System (OSS). In the OSS you will receive an access key."
    I don't know how can i get the access key and proceed now. Please note that i have installed this BW3.5 and R3 on my laptop. From the default user ddic, i have copied and created a new user 'sapuser1'. I am now using the sapuser1 to logon  and attempting to create the above mentioned Database view. It seems like this sapuser1 as it is copied from ddic is not a developer.
    So anybody can please help  how to create/get this access key to proceed  further.
    I will give full points. Please help.
    Thank you so much in advance
    ak

    Thanks All,
    Does it mean that i can not create any database object without the access key from service.sap.com? As i told that i installed this BW3.5 / R3 on my laptop to train myself but i don't have an account on service.sap.com.
    However i can login to R3 system as admin (i have access to the system using ddic or spcpic). Is there a way that a new user with deveoper role can be created by the admin without going to service.sap.com.
    Please advise.
    Thanks.
    ak

  • About ABAP developer ACCESS KEY

    Hi guys:
       I have installed IDES 4.6c successfully,When I created ABAP program using SE38,system prompted "You are not registered as a
    developer.Please register in the Online Service System (OSS).In the OSS you will receive an access key."
    My question: How can I login OSS?Tcode,Could you please tell me detail operation? thanks

    OSS is not a tcode , check the site  service.sap.com
    consult your basis for that...
    also check the table DEVACCESS for the access key by giving ur user id if there is one already created for u

  • NSP NW04s - Sneak Preview Developer Access Key -- NOT WORKING !!!!!!

    Folks,
    I have installed the NW04S NSP ABAP system. Everything went fine with the installation. The key which is given in the installation document '29671482393151224771' is not working for developer BCUSER.
    I see many other folks facing the same issue in the forum and I tried all the ways posted in the forum... creating Z and Y program Se38 and tried with SE80, but no luck.
    I would highly appreciate if any one have a crack on this issue. Infact I reinstalled the system thinking there could be a flaw in my fisrt installation... but the result is same.
    Thanks much.
    -Guru

    I tried 00000000000000000000 and that is also NOT working. My trial version is now licensed for 90 days on a Windows XP professional laptop. I do not know if I had the problem before I renewed the INITIAL 4-weeks licence to the 90-day license. 
    Everything else works fine. I can create and run various programs using the trial version. However when I attempted to modify an implementation method in the ABAP class -  BCALV_TREE_EVENT_RECEIVER, I am asked for an Access Key. 
    Is anybody from SAP looking into this? I believe it is clear that there is a problem with Access Key for a number of us. That the default 29671482393151224771 is NOT working for everybody.
    Any help in solving this Access Key issue is greatly appreciated.
    Thanks!

  • New licence and developer access key

    Hi all,
    i wanted to extend my licence, process is ok but now BCUSER are not registred as a developer, before extending licence it was the case.
    How can i do please ?
    Regards,

    Solution on http://www.sap.com/solutions/netweaver/minisap.epx
    Developer license key  : 29671482393151224771

  • Access key error for ABAP  user in Development

    Hi,
    I am getting the following error while entering the development access key for Development client 103

    Syed Amir Ijaz Bukhari wrote:
    i get this key from SAP Market place my basis administrator generated it at front of me but still it is not working as if i place it in IDES it worked but not in Development.
    Compare the installation number of your IDES system with that of your development system. Do you see? They're different. Different installation requires a different key. Go and have another chat with your basis friends.

  • ACCESS-KEY (add developer)

    Hello!
    I have installed Netweaver testdrive for Suse Linux for teach myself in ABAP-Programming.
    After starting TA SA38 and trying to generate the program Z_HELLO i get a input prompt where i should type the access-key. Is it really necessary to registrate a developer in service market place to program ABAP on the demosystem?

    Hi Bjorn
    log on into the Web AS 6.4 system
      User:      DDIC
      Password:  DDIC (or ur DDIC password)
      Langugage: EN
      The SAP Easy Access desktop is displayed.
    - create a user for developing
      Select:                  SAP standard menu
                                   -> Tools
                                -> Administration
                                         -> User Maintenance
                                            -> Users
      Enter user:              DDIC
      Select from menu:        User names -> Copy
      Copy the user from DDIC to DEVELOPER.
      Enter an initial password for the new user DEVELOPER.
      Save the user by clicking the diskette symbol.
    - log out of the system and log on as user DEVELOPER
      Select from menu:        System -> Log off
      Log in as user DEVELOPER (the system will ask for a new password for
    this user).
    - create new ABAP program
      Double click:            ABAP Editor
      Enter program name:      ZZ_HELLO_WORLD
      Click the button:        Create
      (ZZ is a reserved name space)
    - enter the access key to add the new developer
      User name:    DEVELOPER
      Access key:   35408798513176413512  
      Installation: DEMOSYSTEM
    - set program attributes
      Enter title:             Hello World
      Select type:             Executable program
      Save the attributes.
      Save as local object.
    - enter the ABAP source and test the program
      REPORT ZZ_HELLO_WORLD .
      WRITE  'HELLO WORLD' .
      Save this ABAP source by clicking the diskette symbol.
      Press the button:        Activate
      Select from menu:        Program -> Test
    regards,
    kaushal

  • Disabling Access Keys in Safari

    Access keys in Safari tend to interfere with the Emacs-style shortcuts used in text-boxes. So, it can happen that while your editing you accidentally press some access key, thus losing all your changes.
    So is there a way to at least disable access keys while in a text-input focus? Or to assign a different key, instead of ctrl to it? Or something more complex?

    c) something more complex.
    you can strip out the accesskeys with a few lines of javascript. i wrote a pithHelmet script for this you can download here.
    if you just want to look at the code, search for accesskeys at userscripts.org.
    iBook g4     OS X.4.x

  • Access key requested when creating new program in abap editor

    I am trying to create a new program in sap netweaver 7.01 trial version. netweaver promts me for creating object confirmation but after that I get a register object dialog box requesting an access key on the demosystem installation. where can I find such a key.
    please note that I am not a SAP customer. Its a trial version of netweaver 7.01 on a stand alone pc. Furthemore I know that naming my programs starting with Z will bypass the object registration key.

    Hi ,
    when you are using the first time se38 it will ask developer access key 
    u will get that from the service market place 
    take the help of u r basis consultant 
    regards,

Maybe you are looking for

  • Ver.9.5 The volume for file name cannot be found

    HI, My work Mac Book pro was recently upgraded to Mavericks from 10.6.8, with iPhoto 11 (ver. 9.5) also an included upgrade. One album of photos is no longer accesible - clicking on each thumbnail provokes the following window "The volume for <file n

  • Hub3 and Inf.2 - I had to use workaround to connec...

    Engineer installed Infinity 2 and was up and running no problem with wired connection.  Super fast :-) When we tried to connect a wireless device it would not connect and engineer advised disconnecting all the wired connections (I have 4 RJ45 connect

  • UsageTracker Folder in preventing C7-00 software ...

    Have attempted to upgrade my C7-00 from Symbian Anna 024.001 to Nokia Belle on Nokia Suite 3.8.30 without any success.  When Nokia Suite backs up the phone, a folder called UsageTracker, found on all three memories (phone, mass & memory card) prevent

  • Date Presentation variable

    Hi, If Date presentation variable (with between operator) returning two values, how to call the first value specifically... thanks in advance. Siva Prasad

  • Audiobooks only partially synced

    I synced my Ipad2 with my Macbook Pro but my audiobooks on iTunes only got partials on many of the audiobooks. I know I can't redownload the audiobooks. And unfortunately I didn't notice this error and have deleted the audiiobooks from my Ipad.  Is t