Error message in making program in SE38

Dear Sir ,
When I making a Z program in Tcode SE38, system through following messge
You are not registred as a developer , please enter in the OSS (online service system),In the OSS you will recieve an access key .
How can I solve this problem , plese provide some suggestion to me.
thanks & Regards
Shailendra

Hi Shailendra,
You are not authorized to work in transaction SE38, generally developer will have the access for this transaction to work on coding part.
Consult Basis person, who are authorized to give u developer access.
Regards,
Nani.

Similar Messages

  • A way to display error messages from the program

    Dear all,
    I am looking forward to display a set of error messages(in a internal table) during the execution of the program to the user.
    I wanted to know the better way of displaying error messages from my program with more options.
    Well I tried out using displaying errors as ALV list/Grid or as simple list processing.
    But I found some  stanadard transactions (Like in MM and FI  where errors are shown in a better way, but failed to find out how they are done.
    Please guide me.
    Thanks in advance
    Aryan

    Try to use application logging it has a very good way to display a set of messages.
    [http://abap4.tripod.com/Using_Application_Logging.html|http://abap4.tripod.com/Using_Application_Logging.html]
    Run this report in se38 an example sap report to understand logging way to show a set of messages
    Report Name  :  SBAL_DEMO_01
    Edited by: Vighneswaran CE on Dec 19, 2010 3:01 PM
    Edited by: Vighneswaran CE on Dec 19, 2010 3:11 PM

  • While making a backup copy in Itunes of my Iphone I receive the following error message: While making a backup copy of this Iphone (-35) an error has occurred.  Do you want to continue with altering this Iphone? When you continue al the material on this I

    While making a backup copy in Itunes of my Iphone I receive the following error message: While making a backup copy of this iPhone (-35) an error has occurred.  Do you want to continue with altering this Iphone? When you continue al the material on this Iphone will be lost.
    I reinstalled iTunes but that dit not help. After synching iTunes with my iPhone it also asks to authorize my pc and when i Click on ok, it says it is already authorized.
    Please can somebody help me, so I can make backup.
    Greetz,
    Derk

    It's likely that your backup is corrupt. Try deleting the backup, then right click on the name of the phone in iTunes and choose "back up". To delete go to iTunes Preferences, Devices tab. Highlight and delete the most recent backup. Note that sometimes deleting this way leaves some garbage around that can still interfere with a new backup, so you should verify that the backup folder is empty.
    from: http://support.apple.com/kb/HT4946
    The folder where your backup data are stored varies depending on the computer's operating system.   Make sure the backup folder is included in your periodic data-backup routine.
    iTunes places the backup files in the following places:
    Mac:  ~/Library/Application Support/MobileSync/Backup/
    Windows XP:  \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Note: To quickly access the Application Data folder, click Start, and choose Run. Type %appdata% and click OK.
    Windows Vista and Windows 7:  \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Note: To quickly access the AppData folder, click Start. In the search bar, type %appdata% and press the Return key.

  • All of a sudden my iTunes stopped working, and I get the following error messages:   1. the program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem   and   2. iTunes was not installed correct

    All of a sudden my iTunes stopped working, and I get the following error messages:
    1. the program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem
    and
    2. iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 126).
    Now I've checked the forums and followed the advice of uninstalling all Apple applications, rebooting, and reinstalling iTunes.
    This is not working. I've tried installing as Administrator but doesn't make any difference at all.
    There must be a way to fix this? I'm not a tech geek but I want to avoid having to take my laptop back to factory settings to sort this out.
    Thanks

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99192)

  • Error messages in ABAP program are stored in which table

    hi all,
    Can anyone tell
    error messages in ABAP program are stored in which table??

    Hi Sir ,
    Please have a look below .Hope it is suitable and simpler solution for your question.
    Please do reward if useful.
    Thankx.
    Fuction module for storing error messages  ->'format_message'
    for example...
    data : v_message(100) type c.
    call transaction NNNN mode A update S messages into it_messages.
    loop at it_messages where msgty = 'E'.
    call function 'format_message'
    exporting
    *it_messages details
    importing
    v_message.
    write :/ v_message.
    clear v_message.
    endloop.
    Anothe method - ->
    Here is a sample of the program code for that:
    LOOP AT it_messtab.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
    id = it_messtab-msgid
    lang = it_messtab-msgspra
    no = it_messtab-msgnr
    v1 = it_messtab-msgv1
    v2 = it_messtab-msgv2
    IMPORTING
    msg = g_msg
    EXCEPTIONS
    OTHERS = 0.
    IF it_messtab-msgtyp = 'S'.
    it_sucess-sucess_rec = g_msg.
    it_sucess-lifnr = it_header-lifnr." Based on your field
    it_sucess-tabix = v_lines.
    APPEND it_sucess.
    ELSEIF it_messtab-msgtyp = 'E'.
    it_error-error_rec = g_msg.
    it_error-lifnr = it_header-lifnr.
    it_error-tabix = v_lines.
    APPEND it_error.
    ELSE.
    it_info-info_rec = g_msg.
    it_info-lifnr = it_header-lifnr.
    it_info-tabix = v_lines.
    APPEND it_info.
    ENDIF.
    ENDLOOP.

  • How to keep the field open for input with error message in report program

    Hi,
      Need a help in solving the below issue.
    "How to keep the field open for input with error message in report program"
    Regards,
    C.Shasiraj.

    Hi...
    you have to use the event:
    <b>AT SELECTION-SCREEN ON <FIELD> EVENT.</b>
    u have to give an error message in this event.
    Consider the following <b>Example:</b>
    <b>PARAMETERS : NUMBER TYPE I.
    AT SELECTION-SCREEN ON NUMBER.
      IF NUMBER = 10.
        MESSAGE 'Number vakue is 10' TYPE 'E'.
      ENDIF.
    START-OF-SELECTION.
      WRITE NUMBER.
    </b>
    in this if u give the value of number = 10, it will not proceed further, if u give some other value other than 10 you will proceed further...
    Execute this program once u will understand....
    also Consider the following links :
    <b>Regarding events:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a237d9b511d1950e0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a23ad9b511d1950e0000e8353423/frameset.htm
    <b>Regarding messages:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    This is very useful.......
    Reward points if useful....
    Suresh....

  • Is there anyone who can help me? my Photoshop CC is keep crashing, it doesn't show any error message. Suddenly " program stop responding" after few seconds of launch.

    Is there anyone who can help me? my Photoshop CC is keep crashing, it doesn't show any error message. Suddenly " program stop responding" after few seconds of launch.

    If Photoshop crashes the should be a System crash report generated by your OS. For example Windows

  • Could not complete your request because of a program error" message when opening program

    Hello,
    Same here with the message and I'm on a brand new system:
    new macpro, new mavericks, new photoshop CC and havent done a thing yet.
    Tried all found solutions:
    -generator on/off
    -sniffer on/off
    -GPU on/off
    -300x exit prefs etc
    -re-install PS
    -list-view
    -pushing my belly button
    But nothing helps.
    I tried a little work in PS (render/save etc) and that all seems to work
    BUT....sniffer states:
    2014-02-07 16:23:50.885 sniffer[522:303] invalid display
    ContextOffscreen exception caught and ignored.
    2014-02-07 16:23:50.886 sniffer[522:303] invalid display
    ContextOffscreen exception caught and ignored.
    And dont know what to do about it and/or if that causes it. Thank you. & regards

    I was able to follow your directions and delete almost everything. I couldn't find a PSE 4 path folder. I deleted the com.adobe.Photoshop.Elements.plist and opera preferences. Repaired permissions and restarted computer.
    Still had the same error message when trying to "Save As" a PSD to a jpg. I can save for the Web which is a jpg (but not good enough for printing.)
    Maybe I'll reinstall.
    I'm not having trouble with any other programs. Can't recall having added anything to PSE recently, though if this is the culprit, it might be something I did months ago (though I don't know what) because I haven't tried saving as a jpg in a long time.
    I've been saving my documents as a tiff file. Could that be a cause? I've converted some of these tiff files to PSD and still get the error message.

  • Error message from originating program when clicking on weblink to open FF4

    FF4 is now my default browser on my WinXP netbook. (Instead of FF3.6.)
    If FF is not open and I click on a weblink in Outlook or other programs, FF4 opens the webpage but I also get an error message in the originating program saying the system cannot find the file. If FF4 is already open I do not get the error message. FF3.6 did not generate this error message even though it took significantly longer to open than FF4.

    Hi Srikar,
    It depends.
    Generally though you display a message in SAPGUI it does not display automatically in BSP.
    Some times you have to manually write some code to populate and display a message in BSP.
    First you need to find the BSP page and write some code to display error messages in the same..
    Regards,
    Sreekanth

  • Error Message from BDC program

    Hi all,
    I'm facing the following situation: when i run a call transaction program for VL01:
      DATA:   MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
      CALL TRANSACTION 'VL01N' USING bdcdata MESSAGES into MESSTAB.
    sometimes when an item has no stock, i get the error message:
        MSGTYP = E
        MSGID = VL
        MSGNR = 643
        MSGV1 = '1'
        MSGV2  = 'UN'.
        MSGV3 = ''
        MSGV4 = ''
      the problem: when i compose this message with FM - FORMAT_MESSAGE, i dont get the material code, to wich the loss os stock error referes to, since is not returned from call transaction execution (in messtab). How can i determine to which material code the error refers to ?
      As anyone faced the same situation ?
       Best regards,
    Pedro Castro

    If you know the material number which you passed to the BDC, you can simply use that, if you are passing mulitple materials for one call of the BDC, then I don't think you can know which material it is erroring on if the message does not bring it back.
    Regards,
    RIch Heilman

  • Trying to open iTunes I got a error message of msvcr80.dll can not be found. I thought that it was an iTunes program problem. I tried reloading iTunes and then got an error message of a program is trying to acces a library file incorrectly. How can I reso

    When trying to open ITunes, I got an error message of msvcr80.dll can not be found.
    Assuming that it was an iTunes file, I reinstalled iTunes.
    Trying to open again, I got an error message of an appication is trying to open a library file incorrectly.
    How do I resolve this problem.
    Neither my PC with Vista nor my my laptop with windows 7 will work?
    Thanks

    Hello Msvcr80.dll,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Check for .dll files
    Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
    If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
    Reboot your computer.
    Note: Depending on your operating system, you may only have one of the listed paths.
    Uninstall and reinstall iTunes
    Uninstall iTunes and all of its related components.
    Reboot your computer. If you can't uninstall a piece of Apple software, try using the Microsoft Program Install and Uninstall Utility.
    Re-download and reinstall iTunes 11.1.4.
    Best of luck,
    Mario

  • Error message in dialog programming

    hi folks,
    I need some help in anaylzing the error while saving the data on the screen. The error message reads 'Status COP of the user interface ZMP40000 screen missing' This is a custom screen. It is in relation to a task of hiding a particular screen from display, hence i need to modify the module pool.
    Any idea what it is??
    Thanks in advance. Any thoughts to this will really be helfpul.
    Vinu

    Yes, I have because I am doing the testing in QAS.  The error showed up when I copied one of screens for standard module pool program (MP400000) to custom pool program (ZMP400000) in se51. when I run the transaction pb40 for that screen  it is stauts (green) message shwoing in the status bar.
    Thanks for responding.
    vinu

  • I keep getting the itunes has stopped working error message and the program keeps closing itself everytime I atry to access the store

    Every time that I attempt to open the store in my iTunes program, I receive and error message and it states ITunes has stopped working and needs to close the program. How do I fix this?

    Restart your computer then try iTunes.

  • Need help with an error message when making changes to an IMAP account

    I have several IMAP accounts in my Mac Mail. Today when I tried to edit the, "Full Name" associated with the account I got an error message that said:
    Invalid Directory
    The account path /Users/kristen/Library/Mail/[email protected]@host365.ISPhost.com is already being used by the account "Silver"
    Did I somehow corrupt something? I'm not sure why making this small change to the full name would cause such an error. Please help.
    Thanks!!

    stop() forcibly kills a thread. You shouldn't use this method because if the thread is in a critical section of code, you can cause data corruption or deadlock.
    Instead, if you need to stop execution from another thread, invoke the interrupt() method.
    Good luck.

  • C7280 - Cannot scan. Error message says another program has control over the device

    I opened the HP Device Manager to do a scan. I accepted the settings and the scan started. But part way through the scan, I stopped the scan as I realized that I wanted to change the resolution. I quit the Device Manager  and restarted it but when I did, I got an error message saying:
    "The function you have requested cannot be performed because another program has control over the device".
    I don't have anything else open and so I can't work out what program has control over the printer.
    C7280 Prtinter. Mac OSX 10.7.
    This question was solved.
    View Solution.

    I was thinking that if you stopped the process in mid-scan that there may be some background processes still running. Rebooting usually stops those processes.
    No, you will not have to do this each time.  Next time, though, it may be easier to just let the scan complete and the do another scan at whatever setting you want.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

Maybe you are looking for