Problem in the lock management

Hi All,
I have a problem with the shipment. when i was doing the shipment confirmation i am getting below error tied with the CRM Server.
CSL:QRACLNT200:SALESDOCUMENT:0000161945 IS LOCKED BY EBP8506(QRACLNT200-01)
MSG NO : CSL_TOKENMGMT022
Thanks for your guidence.
Best regards
sudhakar

If no user locks the document in R3 or CRM, did you check  OSS
- [Note 954107 - Scenario A: Document remains locked with immediate delivery|https://service.sap.com/sap/support/notes/954107]
- [Note 802577 - Scenario A: SYSFAIL in inbound queue of CRM|https://service.sap.com/sap/support/notes/802577]
- [Note 718214 - Scenario A: Document locked by activated postprocessing|https://service.sap.com/sap/support/notes/718214]
- [Note 703086 - Scenario A: Problems with activated filter|https://service.sap.com/sap/support/notes/703086]
Regards,
Raymond

Similar Messages

  • Problem with the GridBagLayout Manager

    Hello i am new to Java Swing and i am facing a problem with the GridBagLayout layout manager . the code in question is attached. First compile and run the code. It will execute w/o probs . Then go to the "Console" tab. There the diff components (6 buttons and 1 text area) are haphazardly arranged where as all measures where taken to prevent it in the code. The GridBagLayout manager for this tab is not working properly please help.
    The code in question:-
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class MainForm extends JFrame{
         JTabbedPane jtp = new JTabbedPane();
         Container generalContainer; // container for the general pane
         Container consoleContainer; // container for the console pane
         GridBagLayout consoleLayout = new GridBagLayout(); // GridBagLayout for the console
         GridBagConstraints consoleConstraints;// GridBagConstraints for the console
         public MainForm()
              super("Welcome to Grey Griffin -- Network Simulator");
              setSize(700,600);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JPanel generalPane = new JPanel();
              generalPane.setLayout(new BoxLayout(generalPane, BoxLayout.Y_AXIS));
              JPanel consolePane = new JPanel();
              consolePane.setLayout(new BoxLayout(consolePane, BoxLayout.Y_AXIS));
              JPanel designPane = new JPanel();
              designPane.setLayout(new BoxLayout(designPane, BoxLayout.Y_AXIS));
              JPanel outputPane = new JPanel();
              outputPane.setLayout(new BoxLayout(outputPane, BoxLayout.Y_AXIS));
              //Setting up Layout for all the tabs
               //for general tab
               FlowLayout layout= new FlowLayout();
               generalContainer = generalPane;
               layout.setAlignment(FlowLayout.CENTER);
               generalContainer.setLayout( layout );
               //for  console tab
               consoleContainer = consolePane;
               consoleConstraints = new GridBagConstraints();
               // *******Finished********
              //********** All buttons text areas are declared here**********
                //*******for the general tab**********
              JButton generalCreate = new JButton("Create a New Network");
              JButton generalOpen = new JButton("Open an Existing Network");
              JButton generalSave = new JButton("Save the Network");
              JButton generalSaveAs = new JButton("Save As..........");
              JButton generalExit = new JButton("Exit");
              //******END******
             //*******for the console tab
                 //text area          
              JTextArea consoleCode = new JTextArea();
              consoleCode.setEditable(true);
              consoleCode.setMaximumSize(new Dimension(700,400));
              consoleCode.setAlignmentX(0.0f);
                   //text area complete
                 //*******for the Console tab**********
              JButton consoleCompile = new JButton("Compile Code");
              JButton consoleSimulate = new JButton("Simulate Code");
              JButton consoleReset = new JButton("Reset");
              JButton consoleOpen = new JButton("Open script files");
              JButton consoleSave = new JButton("Save script files");
              JButton consoleConvert = new JButton("Convert Script files to graphical form");
              //***************END****************
         //Adding buttons and text areas to there respective tabs
              // for the general tab
              generalContainer.add(generalCreate);
              generalContainer.add(generalOpen);
              generalContainer.add(generalSave);
              generalContainer.add(generalSaveAs);
             generalContainer.add(generalExit);
             //****END****
              // for the console tab          
              consoleConstraints.fill = GridBagConstraints.BOTH;
              addComp(consoleOpen,0,0,1,1);
              consoleConstraints.fill = GridBagConstraints.BOTH;
              addComp(consoleSave,1,1,1,1);
              consoleConstraints.fill = GridBagConstraints.BOTH;
              addComp(consoleConvert,1,2,1,1);
              consoleConstraints.fill = GridBagConstraints.BOTH;
              addComp(consoleCode,1,0,3,1);
              consoleConstraints.fill = GridBagConstraints.BOTH;
              addComp(consoleCompile,2,0,1,1);
              consoleConstraints.fill = GridBagConstraints.BOTH;
              addComp(consoleSimulate,2,1,1,1);
              consoleConstraints.fill = GridBagConstraints.BOTH;
              addComp(consoleReset,2,2,1,1);
              //****END****
              // adding the tabs
              jtp.addTab("General",null,generalPane,"Choose General Options");
              jtp.addTab("Design",null,designPane,"Design your own network!!");
              jtp.addTab("Console",null,consolePane,"Type commands in console for designing");
              jtp.addTab("Output",null,outputPane,"View output");
              getContentPane().add(jtp, BorderLayout.CENTER);
              //****END****
         //This method is used to ad the buttons in the GridBagLayout of the Console tab
         private void addComp( Component c,int row,int column,int width,int height)
            // set gridx and gridy
            consoleConstraints.gridx=column;
            consoleConstraints.gridy=row;
            //set gridwidth and grid height
            consoleConstraints.gridwidth=width;
            consoleConstraints.gridheight=height;
            //set constraints
            consoleLayout.setConstraints(c,consoleConstraints);
            consoleContainer.add(c);     
         class TabManager implements ItemListener
              Component tab;
              public TabManager(Component tabToManage)
                   tab = tabToManage;
         public void itemStateChanged(ItemEvent ie)
              int index=jtp.indexOfComponent(tab);
             if (index!=-1)
                  jtp.setEnabledAt(index,ie.getStateChange()== ItemEvent.SELECTED);
             MainForm.this.repaint();
    public static void main(String args[])
         MainForm form = new MainForm();
         form.setVisible(true);
    }

    Thanks for the suggestions. I did away with the GridBagLayout Altogether :-D
    and put all the buttons in a seperate JPanel and added that JPanel into the Console tabs container which was using a BorderLayout this time. Take a look
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class MainForm extends JFrame{
         JTabbedPane jtp = new JTabbedPane();
         public MainForm()
              super("Welcome to Grey Griffin -- Network Simulator");
              setSize(800,600);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JPanel generalPane = new JPanel();
              generalPane.setLayout(new BoxLayout(generalPane, BoxLayout.Y_AXIS));
              JPanel consolePane = new JPanel();
              consolePane.setLayout(new BoxLayout(consolePane, BoxLayout.Y_AXIS));
              JPanel designPane = new JPanel();
              designPane.setLayout(new BoxLayout(designPane, BoxLayout.Y_AXIS));
              JPanel outputPane = new JPanel();
              outputPane.setLayout(new BoxLayout(outputPane, BoxLayout.Y_AXIS));
              //Setting up Layout for all the tabs
              //**for the general tab
               Container generalContainer;
               FlowLayout layoutGeneral= new FlowLayout();
               generalContainer = generalPane;
               layoutGeneral.setAlignment(FlowLayout.CENTER);
               generalContainer.setLayout( layoutGeneral );
               //**for the console tab
                Container consoleContainer;
                consoleContainer = consolePane;
                consoleContainer.setLayout(new BorderLayout() );
               //Creating buttonpanel for adding the buttons
                JPanel buttonPanel1 = new JPanel();
                buttonPanel1.setLayout(new GridLayout(1,3));
                JPanel buttonPanel2 = new JPanel();
                buttonPanel2.setLayout(new GridLayout(1,3));
              // All buttons / text areas / images are declared here
              //**Buttons for the general tab**//
              JButton generalCreate = new JButton("Create a New Network");
              JButton generalOpen = new JButton("Open an Existing Network");
              JButton generalSave = new JButton("Save the Network");
              JButton generalSaveAs = new JButton("Save As..........");
              JButton generalExit = new JButton("Exit");
              //declaring the buttons
              JButton consoleCompile = new JButton("Compile");
              JButton consoleRun = new JButton("Run");
              JButton consoleReset = new JButton("Reset");
              JButton consoleOpen = new JButton("Open script files");
              JButton consoleSave = new JButton("Save script files");
              JButton consoleConvert = new JButton("Convert Script files to graphical form");
              //declares the textarea where the code is written
              JTextArea consoleCode = new JTextArea();
              consoleCode.setEditable(true);
              consoleCode.setMaximumSize(new Dimension(500,600));
              consoleCode.setAlignmentX(0.0f);
              //Adding buttons and text areas to there respective tabs     
              //**Buttons and text pads for the general tab**
                   generalContainer.add(generalCreate);
              generalContainer.add(generalOpen);
              generalContainer.add(generalSave);
              generalContainer.add(generalSaveAs);
                 generalContainer.add(generalExit);
              //adding buttons to the button panel 1
              buttonPanel1.add(consoleOpen);
              buttonPanel1.add(consoleSave);
              buttonPanel1.add(consoleConvert);
              //adding buttons to the button panel2          
              buttonPanel2.add(consoleRun);
              buttonPanel2.add(consoleReset);
              buttonPanel2.add(consoleCompile);
              //adding button panels and textarea
              consoleContainer.add(buttonPanel1,BorderLayout.NORTH);
              consoleContainer.add(consoleCode,BorderLayout.CENTER);
              consoleContainer.add(new JScrollPane(consoleCode));
              consoleContainer.add(buttonPanel2,BorderLayout.SOUTH);
              //adding the tabs          
              jtp.addTab("General",null,generalPane,"Choose General Options");
              jtp.addTab("Design",null,designPane,"Design your own network!!");
              jtp.addTab("Console",null,consolePane,"Type commands in console for designing");
              jtp.addTab("Output",null,outputPane,"View output");
              getContentPane().add(jtp, BorderLayout.CENTER);
         class TabManager implements ItemListener
              Component tab;
              public TabManager(Component tabToManage)
                   tab = tabToManage;
         public void itemStateChanged(ItemEvent ie)
              int index=jtp.indexOfComponent(tab);
             if (index!=-1)
                  jtp.setEnabledAt(index,ie.getStateChange()== ItemEvent.SELECTED);
             MainForm.this.repaint();
    public static void main(String args[])
         MainForm form = new MainForm();
         form.setVisible(true);
    }

  • Connection problem to the OVM Manager 3.0.3 Console

    My OVM Manager 3.0.3 installation was smooth on top of Oracle Linux 6.0, not even with a single error after taking care of some prerequisite warning stuff at the beginning.
    After the installation, it displayed some info on how to connect to the OVM Manager Console.
    http://ovmmanager:7001/ovm/console
    https://ovmmanager:7002/ovm/console
    But, not only neither address seems to work but also the server opens neither port.
    I have no problem remotely logging into the shell via ssh.
    Trying "telnet ovmmanager 7001" and "telnet ovmmanager 7002" isn't connecting.
    Also, Oracle is up and running.
    # ps -ef |grep XE |wc -l
    31
    # ps -ef |grep pmon
    oracle 1610 1 0 02:28 ? 00:00:02 xe_pmon_XE
    I rebooted it couple of times but the same thing.
    Could someone please let me know where I should start?
    Thanks.
    - Young

    Hi,
    The reason is the /etc/rc.d/init.d/ovmm shell script. It tries to start the weblogic with oracle user. The oracle user doesnt have permission and it fails with a timeout
    if [ $action = run ]; then
    logger "Starting the Oracle VM Manager application."
    echo -n "Starting Oracle VM Manager"
    nohup su - oracle  -c "$USER_MEM_ARGS DOMAIN_PRODUCTION_MODE=true JAVA_OPTIONS=\"-Djava.awt.headless=true -Xdebug -Xrunjdwp:transport=dt_socket,address=127.0.0.1:8453,server=y,suspend=n -da:org.apache.myfaces.trinidad\" /u01/app/oracle/ovm-manager-3/machine1/base_adf_domain/startWebLogic.sh &" > /dev/null
    RETVAL="$?"
    fi
    change it to
    if [ $action = run ]; then
    logger "Starting the Oracle VM Manager application."
    echo -n "Starting Oracle VM Manager"
    nohup su -  -c "$USER_MEM_ARGS DOMAIN_PRODUCTION_MODE=true JAVA_OPTIONS=\"-Djava.awt.headless=true -Xdebug -Xrunjdwp:transport=dt_socket,address=127.0.0.1:8453,server=y,suspend=n -da:org.apache.myfaces.trinidad\" /u01/app/oracle/ovm-manager-3/machine1/base_adf_domain/startWebLogic.sh &" > /dev/null
    RETVAL="$?"
    fi
    Thanks,
    With Regards,
    Sudhir Koneru
    Edited by: 926503 on Apr 17, 2012 12:38 PM

  • I ave some problems with the right management for files in the movie folder

    There are saome files with toe records of everyone in the right. I can't delete or copy this files without  my Admin password. The folder movies where displayed without the triangel in the list option. I have copied all files an folders to an external drive. The Folder Movies have i delete ove my root account. Then I have all files copied zo the new folder who was created automatical when i locked in. Now the problem with the list view ist solved but the rights of the files are not solved. I can change the rights vor the everyone manually for each file. But for more than 1000 files this is not usable.

    drwx------+  18 onlymac  staff    612 24 Okt 12:52 .
    drwxr-xr-x+ 134 onlymac  staff   4556 24 Okt 12:44 ..
    -rw-r--r--@   1 onlymac  staff  43012 24 Okt 12:54 .DS_Store
    -rw-rw-rw-    1 onlymac  staff      0 18 Okt 13:33 .fcplock
    -rw-r--r--@   1 onlymac  staff     30 24 Okt 12:52 .fcpuser
    -rw-r--r--    1 onlymac  staff      0 18 Okt 11:53 .localized
    drwx---r-x@   4 onlymac  staff    136 18 Okt 12:18 Aiseesoft Studio
    drwx---r-x+   4 onlymac  staff    136  5 Jun  2010 DivX Movies
    drwx---r-x+   4 onlymac  staff    136  7 Jun 00:20 Eye-TV
    drwx---r-x@  12 onlymac  staff    408 22 Sep 23:43 Final Cut Events
    drwx---r-x+   9 onlymac  staff    306 24 Okt 10:06 Final Cut Projects
    drwx---r-x+   3 onlymac  staff    102 23 Okt 23:49 Handbrake
    drwx---r-x@   9 onlymac  staff    306 31 Jul  2010 Kamerafilme
    drwx---r-x+   3 onlymac  staff    102  6 Okt 14:19 MAC The Ripper
    drwx---r-x+  10 onlymac  staff    340 24 Okt 12:51 Motion Templates.localized
    drwx---r-x+   7 onlymac  staff    238  2 Feb  2011 iMovie Events.localized
    drwx---r-x+   8 onlymac  staff    272 21 Aug 01:18 iMovie Projects.localized
    drwx---r-x+   4 onlymac  staff    136 21 Apr  2011 iMovie-Kamera-Archive.localized

  • Camera problem from the locked screen

    I am using an iphone 5s and having problems with the camera from the locked screen.
    When i flick up the locked screen to use the camera, i am given a blank screen. When i press the home button the camera quickly appears before returning me to the locked screen.
    If i want to use the camera i have to unlock the phone.

    Try resetting your device (nothing will be lost): Hold down the Home and Power buttons at the same time and continue to hold them down until the Apple appears (up to 30 seconds). Once the Slide to Unlock screen redisplays, see if the camera will now come up with you slide up.
    Cheers,
    GB

  • I have problem with the Exchange managment shell

    The error is:
    Connecting to remote server failed with the following error message : Access denied. For more information, see the about_Remote_Troubleshooting Help topic. 
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportException 
        + FullyQualifiedErrorId : PSSessionOpenFailed

    Hi,
    Firstly verify that the user name and password you're using are correct.
    If you are the Exchange Administrator, then the account you are using should be a member of the Organization Management group.
    To add the user as a member of the Organization Management role group, follow these steps:
    In the Exchange Management Console (EMC), navigate to
    Toolbox in the console tree.
    In the work pane, double-click
    Role Based Access Control (RBAC) User Editor to open the user editor in the Exchange Control Panel (ECP).
    Sign in as an administrator.
    Click the
    Administrator Roles tab.
    Select Organization Management group, then click
    Details.
    In the
    Members section, click Add.
    Select the your account and then click
    OK.
    Click
    Save to save the changes to the role group.
    If there are any other problem to accesss EMS, please check this blog.
    http://blogs.technet.com/b/exchange/archive/2010/02/04/3409289.aspx
    Best Regards.

  • Problems using the Workgroup Manager(10.4.4.)

    I am currently using and OS X 10.2 server and have been using version 1.2 of the Workgroup Manager to remotely modify FTP users on the 10.2 server. I have recently updated to version 10.4.4 on a separate workstation, and I am having trouble using the newer version of the WGM (Workgroup Manager). The problem starts after I have created the FTP folder on the server, and linked the folder with a new FTP user, all that works just fine. I get stone walled when I go to changing the read/write privileges of the newly created user. I log into the 10.2 server through either WGM as a user that has been set as an “admin” user, and with WGM version 1.2 these permissions works perfectly fine. With WGM 10.4.4 I do not have sufficient privileges to modify ANY those setting, or even look at the dialog boxs. The only solution I have been able to find thus far is to log in to the 10.2 server with WGM 10.4.4 as the supper-user of the 10.2 server. That has been the only way I can make the WGM 10.4.4 work. Dose any one out in forum land have any ideas on how I can remedy this situation? The solution I see is to make another user that has similar privileges as the super-user (but please give me other ideas if anyone has them).
    G4s   Mac OS X (10.2.x)   OSX 10.2 Server
    iMac, G4s, G5s   Mac OS X (10.4.10)   we have a lot off macs, so ask about a specific one

    Never use WGM from a different OS X server version than what you have on your server - they are incompatible.
    Use ARD/VNC (maybe over VPN) instead if you can't use/install the correct WGM on the remote admin machine.
    And/or use SSH (maybe over VPN) and CLI/Terminal.

  • Problem with the Enterprise Manager

    Hi!
    I have a problem with the webbased EM (Port 1811). After restarting emctl I don't have any diagram (e.g. for the cpu usage) in the EM. It seems as if there is no picture...
    Are there any services which collect these information from AIX?
    Any ideas?

    Hi!
    I have a problem with the webbased EM (Port 1811). After restarting emctl I don't have any diagram (e.g. for the cpu usage) in the EM. It seems as if there is no picture...
    Are there any services which collect these information from AIX?
    Any ideas?

  • Why? Why does it do this? Why? (problem with the lock thing)

    I always lock my ipod mini and then put it in my bag while I'm using it, but as soon as it touches something in my bag it pauses. Should it pause with the lock on? It's really annoying as I have to unlock it to unpause it, and then it just pauses itself again. Grrrr.

    If you are using an third-party headphone set, or your headphone minijack connection is slightly loose, then every time it moves, the iPod senses that and pauses the music.
    It is a 'feature' to stop the music playback should you remove the headphones from the iPod. It can be a bit sensitive given the 'wrong' conditions.
    No way to turn off this feature, so you'll need to experiment with keeping the jack from being jostled.

  • Problem starting the Oracle Management Server service

    Hi
    I have configured the Oracle Management Server (since I need to use the Jobs functionality) in an Oracle 9i home installed in my desktop. Then I have tried to put the service to work; it always starts and stops at once; the message also states that some services are automatically shutted down when they are not in use...
    Also, I noticed that I cannot use the typical option when creating the repository for OMS because it does not accept the domain my computer is in (dgsaude.min-saude.pt) since it seems to be an invalid domain name...
    I am a little under pressure here...Please help

    Thank you very much; I will take a look at documentation; anyway, just a question I am in doubt about..the tasks I need to automate have to do with deleting the contents of some local tables, then run some SqlPlus queries to fill those tables again (I run them locally by using a database link to another database); final tables will be connected to an www site and refreshed. As I have understood, I can do this using DBMS_JOBS (for which, I think, I would need to learn some PL/SQL...) or configure the OMS to do it (which, as you said, can be a bit of a pickle in the start...). Given the situation, which one of these tools would you advise me to use?
    Thank You
    Andre

  • 4.2 OS problem with the lock button

    when you switch on the lock button on the side , ipad goes silent :)) and flip function does not lock try and seee :))need an upgrade , am ı late or did the upgrade came??

    The screen lock function has moved to the MT bar which you would know if you had looked around here or done a search. There have been many posts on this subject.
    Double tap the home key, swipe to the right, and there is your new lock function on the left!

  • Problem using the copy managent in LIS info structures

    We want create a copy management’s program to consolidate registers fromone version to another in a LIS info estructure.
    But we need that a specific key-figure (is a fist date) is not be
    consolidate, but that it is conserved the oldest date.
    Is there a way to know the previous copied registers in the program to
    determine which value to conserve?.
    I can't read the original version because some characteristics are redeterminated. And the target version aren't write yet.
    thanks
    best regards

    We want create a copy management’s program to consolidate registers fromone version to another in a LIS info estructure.
    But we need that a specific key-figure (is a fist date) is not be
    consolidate, but that it is conserved the oldest date.
    Is there a way to know the previous copied registers in the program to
    determine which value to conserve?.
    I can't read the original version because some characteristics are redeterminated. And the target version aren't write yet.
    thanks
    best regards

  • Problems with the Enterprise Manager...

    I´m installing oracle9ias Business Intelligence and Forms in Linux AS,
    I have a development enviroment where I don´t have a domain, but I need to write a valid domain in /etc/hosts or I can´t continue with the installation.
    Ok, I wrote two lines in this file:
    127.0.0.1 myhost.local myhost localhost
    192.168.0.121 myhost.local myhost localhost
    Then I can continue with the installation of the infrastructure succesfully, but after when I try to navigate in the OEM, I have a lot of references to armagedon.local and I can only see a few pages.
    How can I make an installation without write a domain in /etc/hosts?
    (because I don´t have one)
    Thanks a lot,
    Sergio Castro

    srvc.log
    16:06:38 Received exitCode 1 from emctl istatus
    02/23/09 16:06:43 Timedout while tracking process to start. Terminating..
    emdctl.trc
    2009-02-23 16:06:38 Thread-3544 ERROR ssl: nzos_Handshake failed, ret=29024
    2009-02-23 16:06:38 Thread-3544 ERROR http: 1728: Unable to initialize ssl connection with server, aborting connection attempt
    emagent.trc
    2009-02-23 16:06:32 Thread-1904 ERROR http: 672: Unable to initialize ssl connection with server, aborting connection attempt
    2009-02-23 16:06:32 Thread-1904 ERROR pingManager: nmepm_pingReposURL: Cannot connect to https://server:1158/em/upload/: retStatus=-1

  • Lock in lock manager could not be set - long text

    Hi Experts,
    We have a issue with the 124002 ID request for the ODS ZSDOD005 (request number REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX).
    It has green status, but if you open the monitor, the status is red.
    If you search for more detail,  you can see the following message:
    “Lock in lock manager could not be set -> long text”
    The error refers to a lock in lock manager
    Lock in lock manager could not be set -> long text
    Message no. RSENQ009
    Diagnosis
    The lock in the lock manager could not be set.
    An attempt is being made to set the lock in include LRSENQF00 in the form set_enqueue.
    The lock table is table RSENQ_PROT_ENQ.
    An attempt was made to lock the following object:
    User/Object  = BWREMOTE/ZSDOD005
    Object_typ/Action = ODS/UPD_ODS
    Subobject  = REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX
    SubSubObject = 000001
    This problem affects subsequent loads.
    The InfoPackage ZPAK_6K641H103XV0MTRBAV9Q788IS loads data to three ODS ZSDOD001, ZSDOD003 and ZSDOD005.
    None of the other ODS generated InfoPackage for 09.25.2013.
    Our BASIS support team couldn’t see locks that impact in the procedure.
    The InfoPackage ZPAK_6K641H103XV0MTRBAV9Q788IS is part of the Process Chain ZCP01 - Ventas (SD) Transaccional
    If we tried to repeat the step we had obtained the following message:
    02.10.2013 16:44:04 Job started
    02.10.2013 16:44:04 Step 001 started (program RSPROCESS, variant &0000000032648, user ID BWREMOTE)
    02.10.2013 16:44:04 Start process LOADING ZPAK_6K641H103XV0MTRBAV9Q788IS in run 7PZGWSRZS6GJGB093B9W72U5H of chain ZCP01
    02.10.2013 16:44:04 Delta request REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX is incorrect in the monitor
    02.10.2013 16:44:04 A repeat needs to be requested
    02.10.2013 16:44:04 Data target ZSDOD005 still includes delta request REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX
    02.10.2013 16:44:04 If the repeat is now loaded, then after the load
    02.10.2013 16:44:04 there could be duplicate data in the data targets
    02.10.2013 16:44:04 Request the repeat?
    02.10.2013 16:44:04 Last delta incorrect. A repeat must be requested. This is not possible.
    02.10.2013 16:44:05 Performing check and potential update for status control table
    02.10.2013 16:44:05 Could not set request REQU_6ROBVFEQ9SSOIJY5MDF2W9BTX in DTA ZSDOD005 to red; terminated with error 5
    02.10.2013 16:44:05 Job finished
    This issue prevents subsequent loads of data.
    It is abnormal that there is a green external status and a red one internal.
    Could you, please check why are we having this lock error?
    What are the steps to follow to avoid losing information or having it duplicated in this case?
    Thanks,
    Kiran

    Hi,
    Make sure the DSO is not changed mode when u r trying perform your activity in production system.
    if the DSO is in change mode..it will be locked for further activities to be happend on it unless again it comes back to active status.
    if it locked..you can see all the locked Objects in SM12 Tcode and proceed accordingly.
    hope this is clear for you.
    Regards
    Ramsunder.

  • Too many columns to be shown in the Enterprise Manager 11g?

    Hello,
    we are having some problems with the Enterprise Manager 11g. When we want to VIEW DATA of a specific table, we get this exception. We think that our table has too many columns to be displayed. If we delete some of the columns, the data is shown in the enterprise manager. But this cannot be a solution for us. Can you help us with this point?
    2009-08-03 10:07:04,210 [EMUI_10_07_04_/console/database/schema/displayContents] ERROR svlt.PageHandler handleRequest.639 - java.lang.ArrayIndexOutOfBoundsException: -128
    java.lang.ArrayIndexOutOfBoundsException: -128
         at oracle.sysman.emo.adm.DBObjectsMCWInfo.getSqlTimestampIndexes(DBObjectsMCWInfo.java:194)
         at oracle.sysman.emo.adm.schema.TableViewDataBrowsingDataSource.executeQuery(TableViewDataBrowsingDataSource.java:167)
         at oracle.sysman.emo.adm.DatabaseObjectsDataSource.populate(DatabaseObjectsDataSource.java:201)
         at oracle.sysman.emo.adm.DatabaseObjectsDataSource.populate(DatabaseObjectsDataSource.java:151)
         at oracle.sysman.emo.adm.schema.DisplayContentsObject.populate(DisplayContentsObject.java:369)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onDisplayAllRows(DisplayContentsController.java:303)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onDisplayContents(DisplayContentsController.java:290)
         at oracle.sysman.db.adm.schm.DisplayContentsController.onEvent(DisplayContentsController.java:136)
         at oracle.sysman.db.adm.DBController.handleEvent(DBController.java:3431)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:577)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:205)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:121)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:781)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:318)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:109)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:153)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)When we select the table via SQL, everything works fine.

    Hi,
    I'm Galit from the QE team of VIN.
    All the things that you've described are correct.
    It is actually an edge case where the only VM, that the manual App can be managed from its Map view, was removed from the App.
    The Manual App management is as designed, and may be changed in the future.
    There are 2 ways to overcome this situation:
    1.You can, as you stated, create another Manual App with similar name and remain with the "Zombie App".
    2. To run a specific command that will remove the Zombie App from the DB.
    Please note that option no. 2 involves using an API that we do not publish.
    If you would like to use option no. 2 contact me in private and we will see about supplying the relevant commands to run in order to delete the "zombie" application.
    Thanks,
    Galit Gutman

Maybe you are looking for

  • Issue Putting Data from ArrayCollection into List

    I'm having trouble getting data that has been pulled from a textArea and put into an ArrayCollection to be displayed in a List.  The data is being saved and then read as a file from local storage.  When I run the application, nothing appears in the c

  • ITunes library.itl - Im going crazy! Help

    I am trying to get my iTunes appl up and running.I never had issues before 7.0 I tried with 7.02.16, i tried with 6.x versions...same result: I store my mp3's (45,000+) on an external HD. I import the files (which takes considerable time;-() and when

  • Password Protecting Pages

    I am unable to click on the plus sign in order to add a server behavior that password protects a page. What am I missing?

  • Do I need camera raw upgrade?

    This text box appeared when I opened Lightroom today Any suggestions on what I should do based on my spec:   can I download use cameraraw 5.7 for Lightroom or wont this work? iMac - 1 year old - Intel processor Lightroom v 2.7 Photoshop v CS3 Mac OS

  • WEBI based on BW Query has no Data

    Hi Experts,, I have created a WEBI report based on a BW Query Universe. After the WEBI finishes execution, it places the output to a FTP Location nicely. The problem is : If the selection for WEBI reports NO DATA even then it places the output files