Change DSO setting affect the error when activate it

Hi Experts,
My problem is when I change setting for Data Store Object named
0FIAP_O03 to make it automatic activated data by checking the option
for Activate Data Automatically, then I got the short dump screen
saying
Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC
Except.                CX_SY_OPEN_SQL_DB
Date and Time          21.05.2009 14:17:39
Error analysis
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
in
procedure "_UPDATE_DIRECTORY_TABLES" "(METHOD)", nor was it propagated by a
RAISING clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
If you use an ABAP/4 Open SQL array insert to insert a record in
the database and that record already exists with the same key,
this results in a termination.
Could anybody give me the solution?
Thank you in advance.

Hi Sreekanth,
Thank you for your reply,
I have executed program RSDG_ODSO_ACTIVATE and I got the same error as normal activation process.
And I have executed the function module RSDRO_GENERATE_PROGRAMS and I got the error message "No suitable namespace available".
Do you think this may be from Database problem?
Because sometimes I can delete objects in system but sometimes it's not working. I ask the basis guy to check this but don't get the answer yet. I also check DB02 and found not anything alert.
Thank you,
Sukanya

Similar Messages

  • I am trying to find out if I can change a setting of the calendar in my iPhone.   When I view calendar, in month, I would like to view it with the starting day of the week being Monday, not Sunday.  Is it possible to make this change? SS

    I am trying to find out if I can change a setting of the calendar in my iPhone. 
    When I view calendar, in month, I would like to view it with the starting day of the week being Monday, not Sunday.  Is it possible to make this change?

    Hello SMEvans32
    You can use iCloud to share the Calendar, that way she will always be up to date on that particular section of your work calendar. If you want to use iCloud, I would recommend backing up so you have a safe copy of your data.
    iCloud: Calendar sharing overview
    http://support.apple.com/kb/PH2689
    iCloud Setup
    http://www.apple.com/icloud/setup/
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    Click on the Hot Corners..  button and look at the four definitions.  In the picture below, if you moved the cursor to the right top of the screen, it would slide all the applications off the screen as you describe and show the desktop.  Set it to "-" to deactivate.

  • I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    I am getting a error IO when trying to upload multiple images within wordpress using the flash uploader. I do not get the error when uploading using explorer. The error only appears if I try uploading using firefox....any ideas?

    Logged the call with SAP who directed me to 'Define settings for attachments' in IMG and setting the 'Deactivate Java Applet' & 'Deactivate Attachment versioning' checkboxes - problem solved.

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

  • I inadvertedly changed a setting where the top of my screen no longer shows the apple logo in the top left or the clock and wifi status and strength on the top of the screen, how can I get it to show both of these things again like it used to?

    I inadvertedly must have changed a setting where the apple logo and files and things that used to be in the top left corner of the screen are no longer there as the clock and wifi status and other installed settings used to show up in the top right hand corner of my screen.  When I move my mouse to the very top of the screen they drop down but when I move my arrow away from the very top of the screen they both disappear again.  So I was wondering how can I get it to revert back to the way it used to be?  I hope this isnt confusing.

    I tried the zoom thing but it still didnt resolve my issue   Im gonna try to clarify my issue a little bit more, before the change, my screen when I would surf the web would have the apple logo and safari and file and edit and view buttons at the top left hand of the screen and the upper right hand screen would have the time and the wifi strength and my name and the spotlight box and a volume control but now they dont show while Im browsing the web unless I take my arrow and move it to the very top of the screen then those boxes will drop down like it used to be but when I take my arrow and move it from the top of the screen it disappears again and ll I get is a back and forward arrow and the url input bar.  Anyone else have any ideas of what I did to mess this up?

  • Severa years ago I purchased online Adobe Creative Suite, I recently had to change computers, and lost the program, when i attempted to restore from a cd i received a notice that my serial number was incorrect??? I paid a lot of money for this program I w

    severa years ago I purchased online Adobe Creative Suite, I recently had to change computers, and lost the program, when i attempted to restore from a cd i received a notice that my serial number was incorrect??? I paid a lot of money for this program I want this corrected.@

    Hi gutturnio,
    Kindly provide the below mentioned details in a "Private Message" so that we can assist you appropriately.
    Product your are trying to install:
    OS version:
    Order #:
    Serial #:
    Email Id on which you have registered the serial number:
    There could also be an issue with the compatibility of the software and operating system you are using.
    Kindly check system requirements:
    CS 6: System requirements | Adobe Creative Suite 6
    System requirements | Photoshop 
    Meanwhile, try:
    Error "The serial number is not valid for this product" | Creative Suite 
    Invalid serial number error
    Thanks,
    Atul Saini

  • I did set up the password when I got the phone and iPad months ago but never turned it on. Now it is asking for the passwords for both my iPhones and iPad and I cannot select not the have the passwords active.  ???

    I did set up the password when I got the phone and iPad months ago but never turned it on. Now it is asking for the passwords for both my iPhones and iPad and I cannot select not the have the passwords active.

    If you do not want to use passcodes, why don't you just go to Settings > General > Passcode Lock and delete the passcode and set the lock to OFF.  That will eliminate the problems all together.

  • Received the error when updating to inDesign 2014 "Unable to extract to temp directory."  c

    Received the error when updating to inDesign 2014 "Unable to extract to temp directory."  Anyone have a fix for this?

    Tjshannonhigg you will want to ensure that the User account you are logged into has proper access to the temp directory and that there is sufficient disk space available.

  • I received the error when downloading, An unkown error occurred (-50), but it is not my network, that is working properly

    I received the error when downloading, it says An unknown error occurred (-50), which seems to indicate a network fault but my network is fine.

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023"section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • While downloading the free trial for Final Cut Pro X my internet has dropped out many times. It does however seem to continue ok each time it reconnects. Will this affect the software when it finishes? Is this a problem? Any advice please?

    While downloading the free trial for Final Cut Pro X my internet has dropped out many times. It does however seem to continue ok each time it reconnects. Will this affect the software when it finishes? Is this a problem? Any advice please?

    This has happened to me with a few downloads without any upsets.
    You should be OK.
    As I recall the download is around 1.2 gig so it takes a bit of time and effort to get it to your system.
    Al

  • Why can't I change file ownership in the Finder when logged in as root?

    Why can't I change file ownership in the Finder when logged in as root?
    I can change it in the Finder if logged in as admin or via the terminal as root.
    Xserve   Other OS  

    N8 Thomas wrote:
    I then went into my finder preference section and changed my "New finder window show" to my computer's name.  At that point I could view and find anything within it.  this part got the job done. 
    "You don't, they only appear in open file dialogs and in tool panels like in iMovie, iPhoto.
    To view your media, you open the app that you use to manage that type of media." this on the other hand was zero help
    What you did doesn't show the Media Browser. It just shows the folders where your media is stored. You may be correct that was all that cobacc wanted. 
    The Media Browser shows the actual media in thumbnails so that you can preview the media.
    However, neither requires any Sharing services to be enabled.

  • The question is what that makes me the error when ...

    The question is what that makes me the error when downloading.

    The question is what that makes me the error when downloading.

  • HT2470 The Finder toolbar, by default, has Previous and Next buttons that let you navigate back and forth in folders. I somewhat change that setting and can't go back and foreward. How do I change this setting to the original one? I tried everything!

    The Finder toolbar, by default, has Previous and Next buttons that let you navigate back and forth in folders. I somewhat change that setting and can't go back and foreward. How do I change this setting to the original one? I tried everything! Help!

    Select a Finder window, Finder->View->Customize Toolbar…, and add it back.

  • I like the new version of Firefox 4, but have slowest problem with the company bluecoat proxy. I have change different setting in the about:config. Any Ideas how to to fix the slowest.

    I like the new version of Firefox 4, But have slowing problem with the bluecoat proxy. I have change different setting in the about:config with no luck. Any ideas why it's moving so slow would help?
    network.automatic-ntlm-auth.trusted-uris = proxysg
    network.negotiate-auth.delegation-uris=proxysg
    network.negotiate-auth.trusted-uris=proxysg
    network.negotiate-auth.allow-proxies = True
    network.ntlm.send-lm-response = True
    network.automatic-ntlm-auth.allow-proxies=True

    You can also look at Tab Mix Plus.
    Tab Mix Plus: https://addons.mozilla.org/firefox/addon/1122

Maybe you are looking for

  • Cannot delete reports, unless I close and open Eclipse/Tomcat

    Please can someone help me. I cannot delete reports. I have not worked out all the details yet but this is what I got so far... First I thought it was a problem with my tomcat setup, I would deploy my WAR and run the app. After viewing the report and

  • Why can't I upgrade from SL 10.6.8 to Mavericks?

    I recently inherited a Mac Pro (I believe it's 2009) with Snow Leopard 10.6.8 installed, Configuration is 16 GB RAM,  2.66 CPU, 500-plus GB of free hard drive space. I downloaded Mavericks and tried to install. Mac lPro starts updating but after 24 h

  • Oracle Cheat Sheet

    I made this Oracle cheat sheet as I see so many questions about starting and stoping Oracle: Oracle URL Links Oracle Enterprise Manager: http://host.domain:5500/em/ Oracle IsqlPlus Manager: http://host.domain:5560/isqlplus Oracle IsqlPlus Manager DBA

  • I'm going absolutely crazy

    I've finished a project in FCE. The whole thing was shot at 1920x1080. No matter what I do, I cannot get FCE to output this as a 16x9 HD file. It keeps adding letterbox borders onto a file that is already letterboxed. In other words, it's as if it's

  • ILife missing after fresh install - no option to accept in App Stoer

    Hi I recently replaced my HDD with a SSD, and installed Mountain Lion fresh from a bootable USB stick that I made with Lion Dismaker. The install all went fine, however I now have no iLife suite (iPhoto, Garageband and iMovie). I have checked the App