Problem writing to AQ queue

Hi,
I am having a hard time trying to connect to a AQ queue (on oracle 8.1.7)
from a Java 2 client. Can anyone make something out of this? Any help would be
appreciated!
Regards,
-Per
Classpath :
aqapi.jar;jmscommon.jar;classes12.zip;nls_charset12.zip
Error : ("Ikke stxttet tegnsett" means "Encoding not supported")
oracle.jms.AQjmsException: Ikke stxttet tegnsett: oracle-character-set-46
     at oracle.jms.AQjmsProducer.enqueue(AQjmsProducer.java:934)
     at oracle.jms.AQjmsProducer.send(AQjmsProducer.java:469)
     at oracle.jms.AQjmsProducer.send(AQjmsProducer.java:386)
     at aetat.felles.mail_ejb.OracleWrite.write(OracleWrite.java:50)
     at aetat.felles.mail_ejb.OracleWrite.main(OracleWrite.java:23)
My client looks like this :
package aetat.felles.mail_ejb;
import javax.jms.*;
import oracle.jms.*;
import java.util.Properties;
public class OracleWrite {
String ORACLE_CONN_STRING = "jdbc:oracle:thin:@xxx:1522:yyy";
Properties props = new Properties();
String user = "user";
String password = "password";
String greeting = "Hello";
String QUEUE = "QUEUE_NAME";
public OracleWrite() throws Exception {
props.setProperty(user, password);
public static void main(String[] args) {
try {
OracleWrite writer = new OracleWrite();
writer.write();
} catch (Exception e) {
e.printStackTrace();
private void write() throws Exception {
QueueConnection qc = null;
QueueSession qs = null;
AQjmsSession ora_qs = null;
QueueSender sender = null;
try {
QueueConnectionFactory qcf =
AQjmsFactory.getQueueConnectionFactory(ORACLE_CONN_STRING, props);
qc = qcf.createQueueConnection(user, password);
qc.start();
qs = qc.createQueueSession(true, QueueSession.AUTO_ACKNOWLEDGE);
Queue q = ((AQjmsSession)qs).getQueue(user, QUEUE);
sender = qs.createSender(q);
TextMessage m = qs.createTextMessage(greeting);
sender.send(q, om);
qs.commit();
qc.stop();
catch (Exception e)
e.printStackTrace();
qs.rollback();
finally
try { sender.close(); } catch (Exception e) {}
try { qs.close(); } catch (Exception e) {}
try { qc.close(); } catch (Exception e) {}
}

The character set of our database where I tested your program is WE8MSWIN1252.
Another database on our systems has WE8ISO8859P1 as the character set.
Hi,
Thanks for your reply - it's nice to know that the program is working correctly!
When it comes to the database, we are using the following character set : "WE8ISO8859P15". What are you using? Do you know what character sets that
are "allowed"?
Regards,
Per Mengshoel

Similar Messages

  • Problems writing text on Photoshop CC

    I am having problems writing text on Photoshop CC - the image goes black.

    Windows 8?  Update your video card driver from the GPU maker's website. If you cannot update your driver (like on a locked laptop machine), then set the GPU drawing mode in Photoshop to "Basic" and relaunch the app.

  • MessageDriven Bean problem.Working but the queues r not getting cleared

    I have written a simple message driven bean.It just sends a message to an another queue myadapterqueue
    on getting a message .
    It is working. But the problem is if I restart my application server then it again reads the messages which had been sent to it earlier.Also the queue size is
    not getting to 0 bytes after it has consumed messages.
    My application server is JBOSS2.4.3
    I think I have to specify some attributes in the
    descriptor files.But how??????????????
    Here is my code
    import java.util.*;
    import javax.ejb.*;
    import javax.jms.*;
    import javax.naming.*;
    public class MyMessageBean implements javax.ejb.MessageDrivenBean,javax.jms.MessageListener
         private QueueConnection connect=null;
         private QueueSession session=null;
         private QueueSender sender =null;
    private Queue sendQueue=null;
    private MessageDrivenContext ctx = null;
         public void setMessageDrivenContext(MessageDrivenContext mdc){
              System.out.println ("In setMessageDrivenContext--------------");
              this.ctx=mdc;
         public void ejbCreate(){
              try{
                   System.out.println ("Message bean Created--------------");
                   InitialContext jndi=new InitialContext();
                   QueueConnectionFactory queueFactory=(QueueConnectionFactory) jndi.lookup("ConnectionFactory");
                   connect=queueFactory.createQueueConnection();
                   session=connect.createQueueSession (true,Session.AUTO_ACKNOWLEDGE);
                   System.out.println ("After session creation--------------");
                   sendQueue=(Queue)jndi.lookup("queue/myadapterqueue");
                   System.out.println("************ queue/myadapterqueue");
              sender=session.createSender (sendQueue);
              System.out.println ("Before Connection start--------------");
              connect.start();
              }catch(javax.jms.JMSException jmse){
                   System.out.println ("In ejbcreate exception-------------------");
                   throw new javax.ejb.EJBException();
              }catch(javax.naming.NamingException jne){
                   System.out.println ("In ejbcreate exception-------------------");
                   throw new javax.ejb.EJBException();
         public void ejbRemove(){
              try{
              System.out.println("ejbRemove done");
              connect.close ();
                   this.ctx=null;
              }catch (javax.jms.JMSException jmse){
                   System.out.println ("In ejbremove exception-------------------");
                   System.out.println("ejbRemove excetion");
                   throw new javax.ejb.EJBException();
         public void onMessage(Message msg){
              try{
              this.sender.send (msg);
              this.session.commit();
              System.out.println(" Message");
         }catch(javax.jms.JMSException jmse ){
              jmse.printStackTrace();
    here are my descriptors
    ejb-jar.xml
    <?xml version="1.0"?>
    <!DOCTYPE ejb-jar>
    <ejb-jar>
    <enterprise-beans>
    <message-driven>
    <ejb-name>MyMessageBean</ejb-name>
    <ejb-class>MyMessageBean</ejb-class>
    <transaction-type>Container</transaction-type>
    <message-driven-destination>
    <destination-type>javax.jms.Queue</destination-type>
    </message-driven-destination>
    </message-driven>
    </enterprise-beans>
    </ejb-jar>
    and the correspong xml file for the application server here is jboss.xml
    ?xml version="1.0" encoding="UTF-8"?>
    <jboss>
    <enterprise-beans>
         <message-driven>
              <ejb-name>MyMessageBean</ejb-name>
              <configuration-name>Standard Message Driven Bean</configuration-name>
              <destination-jndi-name>queue/MyMessageBeanQ</destination-jndi-name>
         </message-driven>
    </enterprise-beans>
    </jboss>

    it is unclear whether you are commiting on the first queue or second one.
    but it appears like you have created a transactional problem across the two queues. although you commit on the first queue, this commit is not extended to the second queue.
    things will be fine unless you get an exception of shutdown.
    if you shut your message provider down first then you cannot send the message to the second queue. (assuming that queue 2 is also on the same server)
    if you shut your MB app server down then you may be in the middle of accepting a onMessage callback from the first queue.
    do you have another MB that registers this one as a listener, or are you infact sending a message back onto the same queue...
    public void onMessage(Message msg){
    try{
         this.sender.send (msg);
         //your server may shutdown here and leave messages on the first queue. and send extra messages on the second.
            this.session.commit();
            System.out.println(" Message");
    } catch(javax.jms.JMSException jmse ){
            jmse.printStackTrace();
    }

  • Lost all photos on my iPhoto and get the ERROR WRITING TO DISK when trying to reload from Time Machine. iPhoto cannot import your photos because there was a problem writing to the volume containing your iPHOTO LIBRARY  . Looking for solution.

    Lost all photos on my iPhoto and get the ERROR WRITING TO DISK when trying to reload from Time Machine. iPhoto cannot import your photos because there was a problem writing to the volume containing your iPHOTO LIBRARY  . Looking for solution.

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash, if possible.
    Triple-click anywhere in the line below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) 2>&- | wc -l | pbcopy
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign ($) to appear.
    The output of the command will be a number. It's automatically copied to the Clipboard. Please paste it into a reply.
    The Terminal window doesn't show the output. Please don't copy anything from there.

  • Director 12- can't create a windows projector - problem writing file error

    I am trying to create a windows projector of a project. when I get the following error - problem writing file - file name- Can't compress file that has been modified and not saved. The file has not been modified and has been saved. Any help would be great.

    Hi.
    You say you have tried publishing to a new empty folder.  From the video I can see that the folder has table1.app in there (25 secs in) which is a Mac projector that has been published.
    Yet you have Windows Projector checkbox ticked at the start of the video.
    I publish Mac and Windows projectors to entirely seperate folders as a matter of practice.
    I call the folders "Published" and "PublishedMac" and that is where the respective projectors for each piece of software lives.
    Perhaps there is some mix up between Mac and Windows publishing that is going on because
    you are publishing both to the same folder?
    Hope this helps.
    Richie

  • Problem in XI regarding Queue

    Hi,
    I have got problem in XI regarding Queue.
    When i am sending Message to XI if there is some exceptions raised like Invalid Date etc it's status in Q is SYSFAIL n message is in Scheduled mode.
    But the message coming next in to XI is also going to schedule mode N showing Queue entry same as that of previous message.
    And it's not getting processed. If we r deleting the Queue entry manually n reprocessing the message it's successfully processing.
    Can we do something to make that the messages without any exception should process even though there are entries in queue.
    And also can nybdy send me some links relating to this Queue maintenance concepts in XI.
    Appriciate ur help
    Kishore

    Hey,
    chk out this thread
    "Scheduled for Outbound processing" message
    regards
    jithesh

  • Process not writing to JMS queue with non-xa data source

    I have a process reading from a JMS-AQ with non XA, but it does not seem to be performing a commit and writing to the queue. If I use XA all the way ut works, but I don't get the desired error handling which I have built. Anything obvious I am missing? 11.1.1.5 SOA

    Hi,
    Under Weblogic JDBC Datasources select the datasource and then select Transaction tab there you can find Use XA datasource interface.
    and In DB adapter ... go to Configuration Tab ---Outbound Connection Pool--- Unhide the pool group -Select JNDI name ( e.g eis/DB/local ) ---enter the JDBC datasource created earlier in weblogic JDBC datasource against xADataSourceName..
    Now Click on Transaction tab & select Transaction Support: as XA Transaction .
    Regards,
    Abhinav Gupta

  • Cannot import photos from camera, "problem writing to the volume"

    I recently upgraded to iPhoto 09 from iPhoto 5. While everything seemed ok in terms of Faces and Places and Events etc, today I was trying to import some photos from my camera and suddenly iPhoto 09 gave an error *"iPhoto cannot import your photos because there was a problem writing to the volume containing your iPhoto library"* somewhere mid-way through the import. I don't understand why my own internal HD would have a problem writing to.
    Luckily, I had made a bootable backup before upgrading to iLife 09, so I just booted from that external FireWire disk, opened iPhoto 5 and as usual, it imported all the photos without any issues. But I do not want to go back and forth just for importing the photos. So, Apple, please update the iPhoto 09 with necessary bug fixes.
    Has anyone else experienced this issue ? any solutions ?
    Thanks.

    Your stated problem
    I was trying to import some photos from my camera and suddenly iPhoto 09 gave an error "iPhoto cannot import your photos because there was a problem writing to the volume containing your iPhoto library" somewhere mid-way through the import.
    As I stated I have NOT seen this problem before and it is clearly a specific problem with your system not an iPhoto bug
    Then you are not watching enough. There are several reports here itself :
    http://discussions.apple.com/thread.jspa?messageID=8971388
    Issue was user had their iPhoto library on a FAT 32 formated disk - nothing at all like your personal problem
    http://discussions.apple.com/thread.jspa?threadID=1907134&tstart=0
    User was short of disk space - one of the questions I ask you since it can cause similar problems and can corrupt your library
    http://discussions.apple.com/thread.jspa?threadID=1885964&tstart=0
    Even with all of the thread jacks nothing in this long thread is like yours - these are mostly corrupted libraries and are solved by rebuilding
    http://forums.appleinsider.com/showthread.php?p=1372496
    Not on a forum that I follow - but appears to again be a FAT32 formated disk - nothing like your issue
    SInce you are mostly interested in arguing and insulting people and not in solving your problem - if you even have one e - I choose not to deal with peole with your attitude
    LN

  • Problem writing xmltab to application server

    Hi experts ,
    I have problem writing a xmltab to appliction , the file is written to application serever but with some junk at very last record and when I open it in browser I have an error
    "An invalid character was found in text content. Error processing resource 'file:///" in the end of document.
    is that due to the line break ,
    any suggestion on resolution will be great .
    below is the code .
    Thanks
    vinay

    Use the function module
    ARCHIVFILE_SERVER_TO_CLIENT
    Pass the values: as download file and destination in the respective fields.
    File to be downloaded in :(Pass the exact file name)
    PATH :                          
    SDEC01\SAPMNT\INT\HR\OUT\FMLA-20080205-0728
    and
    Destination to download the file in:
    TARGETPATH                      C:\DOCUMENTS AND SETTINGS\JILFEM\MY DOCUMENTS\FMLA-20080205-0728
    Regards,
    Jilly

  • HP Pavillion dv6-1245dx problems writing to MicroSDHC card - errors

    I've purcahsed two different brands of MicroSDHC 32GB cards. They will allow me to write 1-2GB of info before giving me an error code: 0x80070052. I was using Windows 7 and read that this was an issue that was going to be resolved in Windows 8, so I installed Windows 8 on my laptop (It's legitimate through Microsoft's MSDN program).
    I went looking for product specifications for my laptop on the HP site and it just gives this vague answer: 5-in-1 integrated Digital Media Reader for Secure Digital cards, MultiMedia cards, Memory Stick, Memory Stick Pro, or xD Picture cards.
    It doesn't specify SD, MicroSD, MicroSDHC or any variation. I am inclined to believe that the laptop doesn't support cards as large as 32GB. The largest card I've ever tried before this was an standard size 8GB SDHC, so at least I know it will handle the SDHC part. However, I have had issues with 32GB USB drives as well, where the drive gets half full and then starts having problems writing (no error codes though).
    I'd like to know if MicroSDHC cards as large as 32GB are or aren't supported before I commit to purchasing a third card. I've tried multiple adapters as well, so I know it's not 1) Me trying to stick a tiny card in a large hole, 2) poor contact between the adapter and the laptop, or 3) poor contact between the card and the adapter.
    Thank you.

    card readers are prone to problems with the internal contacts, particularly multi-card readers. If you get a card inserted a little  bit wrong it can cause it to go out. HP should warrant the problem but if you can't get relief, the expresscard multi-readers are cheap and work well. My laptop has no built in card reader so that is what I use.

  • Problem to initialize delta queue of datasource from CRM 7.0.

    Hi all,
    I've some problem to initialize delta queue of datasource from CRM 7.0.  After initialize the Init in BW, the delta queue was created but after the user changed data, this changed didn't populated into delta queue.
    I tried the steps below  but without any success. Anybody know how can I correct this issue?
    Suggestion 3: Please check the following.
    Please Check if the services have been generated in transaction GNRWB.
    If they are not active(not marked 'X' before their names) then activate
    the services following the steps here.
    Go to transaction GNRWB
    Select BUS_TRANS_MSG
    Select (on the right, the services) : BWA_DELTA3, BWA_FILL, BWA_queue
    Press Generate.
    Also check for the following:
    1. The delta should have been initialized successfully.
    2. Confirm that all Bdocs of type BUS_TRANS_MSG
    are processed with success in SMW01.
    3. If there are queues in SMQ1 with erroneous status then activate
    these queues.
    In Transaction SMQ1 if there are Queues existing with
    names beginning with CRM_BWAn (n is number) then
    activate these queues in the same transaction.
    4.a)If required activate the datasource
    Go to transaction BWA5 > select the required datasource and
    activate.
    4 b) The Delta may not be active ,activate the delta in BWA7 by
    selecting the name of the datsource and pressing the candle icon for
    'activate delta'.
    5. In BW system
    Go to transaction RSA1 > modeling > infosources > select the
    infosource > right mouse click on the selected
    infosource > choose option replicate datasource
    Activate the infosource.
    6. Go to the scheduler for the infosource > select delta in the
    update >choose the option PSA only (in the Processing tab)

    Hi Peter,
    Thank you for your answer.
    But we need to find out what the reason for this import error is.
    Our customer will not be very pleased to see that all IDocs from CRM system cannot be found in the IDOC folder.
    IDX2 import of metadata is no issue.
    We were successful for standard and customer Idocs here.
    Additional information:
    We are already importing Idocs from a SAP ECC 6.0 system into PI in another SWCV
    successfully. So this is a CRM system specific issue in our environment.
    Regards
    Dirk
    Edited by: Meinhard Dirk on Aug 27, 2010 10:30 AM

  • Problems in the play queue management that have been around forever without having been addressed

    Hey all,
    It's been a while since I last contributed here. Think my last post was around 2011 or so - right around the time when the Spotify team announced they are going to be concentrating on polishing the basic functionalities of the player. It's been around 3 or so years and I still find myself cursing the badly neglected play queue management on a more or less daily basis. This makes me a sad panda.
    As I wrote 3+ years ago, I don't know about anyone else but at least to me the play queue management is like the 3rd most basic functionality in a music player - right after being able to find music in the first place and then being able to actually play it too.
    I just spent mere 15 minutes and came up with this list of issues that are still present in the player:
    Play queue is treated differently depending on whether you choose to "play" some tracks or if you "queue" them. In the former case you can delete the tracks from the play queue, in the latter case you can not.
    If you "queue" up tracks in spotify, the shuffle setting has no effect (okay, this might be intentional, or it might not be, I don't know).
    If you first choose to "play" some tracks and then you "queue" up additional music, the queued tracks are not placed at the end of the current play queue but, rather, immediately after the currently playing song. Sure, this might also be intentional but, to me, it seems counter-intuitive and just plain wrong.
    You can change the order of the "queued" tracks - but only within the confines of the "queued" tracks i.e. if you first choose to "play" tracks and then you "queue" up additional tracks, you can not move a "queued" track to be played in the middle of the tracks you chose to "play".
    As a continuation to the previous point, you CAN, however, make a track you chose to "play" to be played in the middle of the "queued" tracks but, instead of just changing the track's position in the play queue, it is duplicated, or triplicated, or quadruplicated (is that a word?) instead i.e. you get to hear that track in the middle of the "queued" tracks... and then again as part of the tracks you chose to "play". Additionally, once you do that, the duplicated tracks becomes "queued" i.e. you can no longer delete it from the play queue.
    You can not "queue" tracks by right-clicking on a playlist - the only way to do that is to select the playlist so you can see the tracks in it, then click a track, select all, and then "queue" through a right-click.
    Remember folks; it took me all of 15 minutes to come up with all of that.
    -typo
    PS. I know these are not exactly ideas but, since I can't post on the bug board, I didn't know where else to post this.
    PPS. I can't seem to be able to add tags to this post by writing in the text field that tells me to separate the tags by a comma.

    Here's an explanation of my typical behavior when using Spotify, to try and help explain why I consider these points a major problem:
    Quite often, when I launch Spotify, it is to find something new to listen to. To achieve that, I use a number of means, one of which is the absolutely fantastic "Discover" functionality (I love it!). Typically, I listen to some recommended artists/tracks/albums, and when I find an album or artist I like, I click "Play" on top of the track list in the album view and start listening.
    Then I continue browsing and discovering and, when I come across something else that I find interesting, I can no longer choose to "play" it because it would completely override the current play queue, the currently playing track included, and start playing the new album I just found. So the only option is to "queue" it.
    Now, this is where the problems kick in. Instead of being queued up nicely at the end of the play queue like it should do in my view, this new album is like the neighborhood bully, cutting in line straight to the entrance. If I leave things the way they now are, I'm going to hear the currently playing track... and then the entire new album I just "queued" up... and only after that do I get to hear the rest of the tracks I first chose to "play".
    If, at this point, I keep on browsing and discovering and finding more interesting music, I can pretty much only keep on "queueing" them up which means that the rest of the first album just keeps getting pushed back further and further. However, the neighborhood bullies seem to respect one another, so all music added beyond the first "queued" tracks take their place at the end of the queue, like they should.
    Sure, I could just "queue" up the first album as well but I really dislike the way the whole "queue" functionality has been implemented - simply because I want to be in full control of my play queue which means that I want to be able to move any track to any position in the play queue regardless of how it was added there and I want to be able to delete any track I choose from the play queue at any time.
    Also, I would very much like to be able to just add like a 100 tracks in the play queue, one track or one album at a time and then hit "Shuffle" to have them play in a random order. With a vast majority of the tracks being "queued" up this does not happen.
    I hope this helps at least some people see things from my perspective.
    -typo

  • Problem writing to file

    I'm working on a program that asks for the users name. after that its supposed to pull the current date and time and print that into a file along with the users name.
    my problem is when i open the .txt file i get several characters i dont recogize and then my name at the end.
    Thanks for the help:
    public class CIS314Exam1MarkWellsFrame
    private ObjectOutputStream output;
    public void openFile()
    try
    output = new ObjectOutputStream(new FileOutputStream("guestlog.txt"));
    catch(IOException ioException)
    JOptionPane.showMessageDialog(null, "You do not have access to this file");
    System.exit(1);
    public void insertName()
    try
    Date today = new Date();
    //utput.writeObject(today);
    //String name = JOptionPane.showInputDialog("Enter Name");
    String name = "Mark";
    output.writeObject(name);
    catch(IOException ioException)
    JOptionPane.showMessageDialog(null, "Error writing to file");
    return;
    public void closeFile()
    try
    if(output !=null)
    output.close();
    catch(IOException ioException)
    JOptionPane.showMessageDialog(null, "Error Closing File");
    System.exit(1);
    System.exit(0);
    }

    This isnt the correct forum for this question. Use tags when posting code.  Post the contents of the .txt file and what unexpected characters you are getting.                                                                                                                                                                                                                                                                                                                                           

  • Problem writing meta data changes in xmp in spite of enabled settings

    Dear Adobe Community
    After struggling with this for two full days and one night, you are my last hope before I give up and migrate to Aperture instead.
    I am having problems with Lightroom 5 writing meta data changes into xmp and including development settings in JPEG, inspite of having ticked all three boxed in catalog settings.
    In spite of having checked all boxes, Lightroom refused to actually perform the actions. I allowed the save action to take a lot longer than the saving indicator showed was needed, but regardless of this no edits made in the photo would be visible outside Lightroom. I also tried unticking and ticking and restarting my compute.
    Therefore, I uninstalled the program and the reinstalled it again (the trial version both times). I added about 5000 images to Lightroom (i.e. referenced). After having made a couple of changes for one photo in development settings, I tried closing the program. However, then this message was then displayed:
    I left the program open and running for about 5-5 hours, then tried closing the program, but the message still came up so I closed the program and restarted the computer. I tried making changes to another photo, saving and then closing and the same message comes up. The program also becomes unresponsive, and of course still no meta data has been saved to the photo, i.e. when opening it outside Lightroom, the edits of the photos is not shown.
    What do do? I would greatly appreciate any insights, since I have now completely hit the wall.
    Oh yes, that´s right:
    What version of Lightroom? Include the minor version number (e.g., Lighroom 4 with the 4.1 update).
    Lightroom 5.3
    Have you installed the recent updates? (If not, you should. They fix a lot of problems.)
    I installed the program two days ago and then for the second time today.
    What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac".
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36
    What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    JPEG
    If you are getting error message(s), what is the full text of the error message(s)?
    Please see screen dumps above
    What were you doing when the problem occurred?
    Trying to save metadata + trying to open images that it seemed I had saved meta data to
    Has this ever worked before?
    No
    What other software are you running?
    For some time Chrome, Firefox, Itunes. Then I closed all other software.
    Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    4 GB 1333 MHz DDR3
    Has this ever worked before?  If so, do you recall any changes you made to Lightroom, such as adding Plug-ins, presets, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers, or installing/uninstalling any programs?
    No, the problems have been there all the time.

    AnnaK wrote:
    Hi Rob
    I think you succeeded in partly convincing me. : ) I think I will go for a non-destrucitve program like LR when I am back in Sweden, but will opt for a destructive one for now.  Unfortuntately, I have an Olypmus- so judging from your comment NX2 might not be for me.
    Hi AnnaK (see below).
    AnnaK wrote:
    My old snaps are JPEG, but I recently upgraded to an Olympus e-pl5 and will notw (edited by RC) start shooting RAW.
    Note: I edited your statement: I assume you meant now instead of not.
    If you start shooting raw, then you're gonna need a raw processor, regardless of what the next step in the process will be. And there are none better for this purpose than Lightroom, in my opinion. As has been said, you can export those back to Lightroom as jpeg then delete the raws, if storage is a major issue, or convert to Lossy DNG. Both of those options assume you're willing to adopt a non-destructive workflow, from there on out anyway (not an absolute requirement, but probably makes the most sense). It's generally a bad idea to edit a jpeg then resave it as a jpeg, because quality gets progressively worse every time you do that. Still, it's what I (and everybody else) did for years before Lightroom, and if you want to adopt such a workflow then yeah: you'll need a destructive editor that you like (or as I said, you can continue to use Lightroom in that fashion, by exporting new jpegs and deleting originals - really? that's how you want to go???). Reminder: NX2 works great on jpegs, and so is still very much a candidate in my mind - my biggest reservation in recommending it is uncertainty of it's future (it's kinda in limbo right now).
    AnnaK wrote:
    Rob Cole wrote:
    There is a plugin which will automatically delete originals upon export, but relying on plugins makes for additional complication too.
    Which plugin is this?
    Exportant (the option is invisible by default, but can be made visible by editing a text config file). To be clear: I do not recommend using Exportant for this purpose until after you've got everything else setup and functioning, and even then it would be worth reconsidering.
    AnnaK wrote:
    Rob Cole wrote:
    What I do is auto-publish to all consumption destinations after each round of edits, but that takes more space.
    How do you do this?
    Via Publish Services.
    PS - I also use features in 'Publish Service Assistant' and 'Change Manager' plugins (for complete automation), but most people just select publish collections and/or sets and click 'Publish' - if you only have a few collections/services it's convenient enough.
    AnnaK wrote:
    Would you happen to have any tips on which plugins I may want to use together with Photoshop Elements?
    No - sorry, maybe somebody else does.
    Did I get 'em all?
    Rob

  • Problem with initialization Delta queue

    Hi Gurus,
    I have problem with initialization of delta queue when I try load transaction data from R3 (FM) to BI.
    Error message: Deviation of (64 seconds) between qRFC counter (000012365466830000080000) and actual time (08.03.2009 21:10:19).
    I have no idea where is the problem because this problem occurs only in PRD systems. In DEV and QUA system everything is OK.
    System BI: BI 7.0
    Source system: ECC 6.0
    Thank you for all answers!
    mp

    Hi,
    Replicate the DS in BW Prod and then Activate Transfer rules and then try.
    First you delete the DElta quae in RSA7 for the particular datasource in the R/3
    source system then you try to intialize, here you are trying to intialize datasource with
    same selection conditons . thats why it is giving shortdump
    Check
    Business Content and Extractors
    Thanks
    Reddy

Maybe you are looking for