ME9F - Prints only one message

Hi all,
I'm having a problem when printing more than one purchase order message in ME9F.
When I select all messages to be printed, only one is going to printer, and the other ones stay in spool list with status "-" (not yet sent to the host system).
Any idea why this is happenning?
Thanks in advance.
Best regards,
Sónia Gonçalves

Hi,
After some conversations with SAP support and basis team, I still don't have an answer for this.
I discover if I use standard SAP settings in the processing routines configuration (Program "SAPFM06P", form routine "ENTRY_NEU" and form "MEDRUCK") this will work. The problem seems to be that I'm using a customized smartform, so in my processing routines configuration I have:
- Program: /SMB40/FM06P
- Form routine: ENTRY_NEU
- PDF/Smartform: ZZZZZZ
- Type: Smartform.
I already debug the program and the field "DIMME" in NAST table is set in every message, so I really don't have any idea why this is happening.
Any help is precious!
Thanks in advance.
Best regards,
Sónia Gonçalves

Similar Messages

  • Palm Desktop 6.2.2: Can't print only one category in Month View

    I recently upgraded my palm desktop to 6.2.2 when I got a new PC with windows vista.  When I am in the month view of the calendar and I choose to print, it prints all categories regardless of which category I have selected in the onscreen display.  In my previous version of palm desktop running on windows XP I was able to print only a single category of appointmenets in the month view.  I think of this as a bug.  Is there any way to fix this? 
    Post relates to: Treo 650 (Sprint)

    I have the similar problem.  I have three separate calendars but when I try to print only one, the outcome is that the information in all three calendars gets printed as one.  I cannot find a fix.  HELP.
    Post relates to: Treo 755p (Sprint)

  • HP Photosmart all in one C309a printing multiple copies when its set to print only one copy.

    having issues with my C309a its now printing multiple copys when its set to print only one copy.it started doing this 4 days ago and its happening on both my Windows 7 64 bit computer and my Vista 32 computer that both have the latest release drivers already installed need help.HP please sort this issue out.still under warranty do i have to return it? 

    I am using a Motorola SBG900 Wirless Surfboard Gateway - supplied with Bigpond Cable. It is set to be using WPA security and have never had a problem with it before whilst connecting any wireless devices such as a laptop, PDA etc.
    My feeling is that the wireless functionality of this printer needs some serious work before the next release. And furthermore they should never have released it the way it is as it wouldn't pass 5% of user acceptance tests if using wireless. There are too many complaints on this forum and others about similar problems to suggest that I am not by myself here. Dissapointing considering this is the feature that would be at the top of the list of most purchasing this model. It lets down what could of been a vg printer.
    I agree, I think if I want to get this printer working on a wirless network, I will have to set the IP address manually. The problem is the printer refuses to connect to the router now even after it connected a few days ago with no intervention. I have powered down both the router, PC, and printer without any luck yet. I will set the IP address manually first on the printer and see how it goes, then if it connects will see if the PC/router can see the printer during the SW install procedure which has failed >10 times to date.
    For now I think I will stick with Ethernet as it is no doubt much faster anyway and will try the wirless setup again in a few days when my patience grows back. Does anyone know differences in speed between USB/Wireless/Ethernet? I know this is dependant on a number of things but just interested in ball park figures here.

  • Printing only one line record with total of all items through alv

    hi experts,
    i am facing a problem while printing a list through alv.
    requirement is, suppose i have 3 line items under one document no.
    i have to print only one record with total amount of all items.more clearly...
    1001  10  1000/-
    1001  20    234/-
    1001  30   540/- these records in internal table then i am passing it to reuse_alv_grid_display.
    i need to display only 1001  1774/-(means sum of all the items)
    please tell me how to do this.
    thanks in advance,
    manasi

    hi ansari,
    contains in itab
         3000000004     02.11.2000     5550     27.95     27.95     0
         3000000004     02.11.2000     5550     10.95     10.95     0
         3000000005     02.11.2000     5550     27.95     27.95     0
         3000000005     02.11.2000     5550     10.95     10.95     0
         3000000006     02.11.2000     3020     52.99     52.99     0
         3000000006     02.11.2000     3020     64.99     64.99     0
         3000000006     02.11.2000     3020     49.5     49.5     0
         3000000007     02.11.2000     3730     2,228.00     2,228.00     0
         3000000007     02.11.2000     3730     1,698.00     1,698.00     0
         3000000007     02.11.2000     3730     532     532     0
    now please tell me how to print the data
    output will be
    3000000004     02.11.2000     5550     38.90     38.90       0
    3000000005     02.11.2000     5550     38.90     38.90       0
    3000000006     02.11.2000     3020     117.19     117.19     0
    like that
    please help me out
    manasi

  • How to configure my MDB serve only one message at a time?

    Hi All,
    I have requirement where I need to develope a MDB iin weblogic. This MDB has to serve only one message at a time. If the send second message is sent while the first one is running the second message has to sit in queue and start processing once the first message is finished.
    Is there any way to configure via annotations or in weblogic server settings ?
    Any help would be really appreciated...
    Thank you,
    K.

    Here is my client code to send the message
    Connection connection = null;
    javax.jms.Session session = null;
    MessageProducer producer = null;
    try
    connection = lpConnectionFactory.createConnection();
    session = connection.createSession(false, javax.jms.Session.AUTO_ACKNOWLEDGE);
    // Create a MessageProducer from the Session to the Validation Queue
    producer = session.createProducer(myQueue);
    ((WLMessageProducer)producer).setUnitOfOrder();
    // Create a message
    ObjectMessage message = session.createObjectMessage();
    message.setObject(params);
    message.setStringProperty(MyServiceConstants.OPERATION, operation);
    // Send the message to the queue
    producer.send(message);
    finally
    if (producer != null)
    producer.close();
    if (session != null)
    session.close();
    if (connection != null)
    connection.close();
    Following is the weblogic-ejb-jar.xml
    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC
    "-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN"
    "http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd">
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>TestMDB</ejb-name>
    <message-driven-descriptor>
         <pool>
              <max-beans-in-free-pool>1</max-beans-in-free-pool>
              <initial-beans-in-free-pool>1</initial-beans-in-free-pool>
         </pool>
    </message-driven-descriptor>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>

  • How to configure my JMS QUEUE serve only one message at a time?

    Hi All,
    I have requirement where I need to develope a JMS QUEUE in weblogic. This MDB has to serve only one message at a time. Is there any way to configure via annotations or in weblogic server settings ?
    Any help would be really appreciated...
    Thank you,
    K.

    I'm not aware of any way to configure the max pool size via annotations, you might try posting to the EJB newsgroup (please post back the answer). Of course you can set the size via an EJB descriptor, as per the MDB chapter of the Performance and Tuning guide in the edocs.
    By the way, if you have ordered message processing requirements, I highly recommend taking a look at the WebLogic JMS "Unit-of-Order" (UOO) feature as per the UOO chapter of the JMS programmer's guide. For a variety of reasons, the UOO features is often, by far, the best option for handling such requirements. If this feature applies to your use case, then there would be no need to force single threaded message processing in some sort of manual fashion (the feature enforces this for you).
    Tom

  • Do you copyemail from a PC running windows live mail? I have attempted to use Thunderbird and was successful in converting the live mail files to Mbox format but when I tried to import these files to the Mac only one message from each file was shown.

    I am having a problem trying to migrate some old email messages from a PC running Windows live mail.
    I downloaded Thunderbird to the PC and imported the email messages and folders into Thunderbird and was able to create Mbox files for all the folders and messages. I  copied these files to a usb stick and then tried to export the folders and messages to my iMac running Lion. It appeared  to copy the folders to the Mac but only one message per folder was placed on the computer. Does anyone have any ideas on how I should proceed to copy these email messages over? Thanks.

    I am having a problem trying to migrate some old email messages from a PC running Windows live mail.
    I downloaded Thunderbird to the PC and imported the email messages and folders into Thunderbird and was able to create Mbox files for all the folders and messages. I  copied these files to a usb stick and then tried to export the folders and messages to my iMac running Lion. It appeared  to copy the folders to the Mac but only one message per folder was placed on the computer. Does anyone have any ideas on how I should proceed to copy these email messages over? Thanks.

  • Page breaks in form - can't print only one page?

    Hi guys
    This might be a really simple question - but how do I insert page breaks into my form?
    I have 8 pages in my document, and it is showing me this, so there seems to be no issue until I try to print only one page, and the whole document prints out.
    Is there an easy fix to this?
    Cheers
    Jess

    Hi,
    how are you printing? Control+P? File > Print? or a Print button?
    In any case the print command should bring up a print dialog, where you can set the pages that you want Acrobat to print. By default it is set to 'All' pages.
    Hope that helps,
    Niall

  • Contact print , prints only one picture ??

    I am using Iphoto 08 , 7.1.3
    The contact sheet print , prints only one picture per page, although I chosed 4 rows .
    Help

    Ali:
    Can you describe, step by step, how you're setting up iPhoto to print in the contact sheet mode?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Only one Message Driven Bean

    hi
    i have some heavy calculating beans and i want that only one EJB is calculating at one time. can i do this by using Message Driven Beans? is it possible that the server creates only one Message Driven Bean at one time and gets the next one out of the queue when the old one finished calculating?
    thanks, jo

    It is possible to set up that there should be only one mdb in the pool, but it's not quite what mdbs are intended for. Remember that this is an asynchronous message service, and you will not receive a reply after you put a message on the queue.

  • Printing only one page problem

    Hi,
    I have a printable class that needs to print some text only on 1 page.
    The thing is that when I hit print the printer prints 3 pages:
    page 1 - with correct content
    page 2 - empty page
    page 3 - page with content translated some how
    then the printing stops.
    Here is the code:
    private static final double FACTOR = 2.83;
    private double width, height;
    private void setupJob(){
              // page width and height
              width = 75*FACTOR;
              height = 50*FACTOR;
              job = PrinterJob.getPrinterJob();          
              pf = new PageFormat();
              //PageFormat pf =job.pageDialog(job.defaultPage());
              aset = new HashPrintRequestAttributeSet();
              // Create a letter sized piece of paper with one inch margins
              paper = new Paper();
              // resize the paper and the imageable area
              paper.setSize(width, height);
              paper.setImageableArea(0, 0, width, height);
              // set paper for the pageFormat
              pf.setPaper(paper);
              // set the job printable by calling the painter of this object with the pf pageFormat
              job.setPrintable(this, pf);
              job.setCopies(1);          
              // set the media printable area in mm
              aset.add(new MediaPrintableArea( 0f, 0f, 75f, 50f, MediaPrintableArea.MM));          
              try {
                   job.print(aset);
              } catch (PrinterException e) {
                   e.printStackTrace();
    @Override
         public int print(Graphics g, PageFormat pf, int page)
                   throws PrinterException {     
              if (page > 0) { // We have only one page
                   return NO_SUCH_PAGE;
              }else{          
                   Graphics2D g2d = (Graphics2D)g;
                   // no translation needed
                   // g2d.translate(11.34f, 0);
                   // scale to fit page size
                   double sx = 0, sy = 0;
                   sx = width/(75*4);
                   sy = height/(50*4);
                   double scale = Math.min(sx, sy);
                   g2d.scale(scale,scale);
                   // draw the elements
                   for (int i=0; i<4; i++){
                        texts.drawText(g);
              return PAGE_EXISTS;
    Any help would be appreciated!
    Thanks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Solved myself

  • Problem with printer HPLJ 2430N (Printing only one copy)

    Hi Gurus,
    Here is my problem,
    When we are printing to a printer (AAAA) from SAP it is printing out only one copy, even after mentioning to print N number of copies. It is happening only with this printer (AAAA) with all the users.
    It is working fine with word & other excel documents
    OS :UNIX (AIX)
    SAP: 4.6c
    Printer model: HPLJ 2430N
    I am using access method: U
    Devuce type: ZHP2200: HP LajestJet2200  R.4x+
    Please help me out to resolve this issue,

    Hi Manu,
    Goto SPAD. Select the concerned printer in change mode. Goto its Output Attributes. Under Output request processing you will find several options. There will be a dropdown allowing you to pass number of copies to host spool system. Select that and save. After this check again.
    Regards.
    Ruchit.

  • How to setup a four page PDF in Adobe Acrobat 9 Pro to print only one of four pages?

    Hello,
    I have a request from a end-user to setup a four page PDF in Adobe Acroat 9 PDF to only allow printing of one specific page of the four page PDF.
    The end-user will abe able to view the four pages in the PDF - however - the PDF would only allow printing of one page.  The PDF would need to be pre-set for the end-user.  Is there a setting Adobe Acrobat 9 Pro to allow this type of specific pre-set printing.
    I appreciate your help.  I hope to hear from you soon.

    No, Acrobat can't do that.

  • Photosmart C7280 locks up after printing only one page

    Recently, my Photosmart C7280 has started locking up after printing only about one page of any document. The LCD display just says, "printing....", and the only way I've found to clear it is to unlug the printer from the mains. It happily prints multiple copies of single page documents, but the only way to print muli-page documents is to do them one page at a time.
    I have the same problem from both my desktop and laptop.

    Thank you for the suggestion. unfortunately, it did not help with this problem. I ran the utility and it indicated that there were no problems with the printer.
    it seems likely to me that this is some sort of memory or buffering problem within the printer itself. However, I can't find any options on the printer's menu to clear the buffer or internal memory. I have tried 'restore factory settings' but this made no difference.
    The problem appears to be getting worse - while printing multiple copies of a single page document today, the printer locked up after just 3 copies. I had to rpint 20 copies by printing 3 copies several times over.
    Thanks,
    Anne

  • How can I print only one or two pages, not the whole article?

    I just want to print one page not the whole article.  There is no provision for what pages to print.

    I don't know where they are in Word but the print dialog is standard throughout OSX and this seems logical enough.
    The only problem is the Paper Handling is hidden under Layout. But sort of makes sense.
    Peter

Maybe you are looking for

  • Explicitly server trusting needed to connect to enterprise WLAN

    My iOS 6.1.3 devices always asks to trust the server certificate, when connecting for the first time to an enterprise WLAN with PEAP-MS-CHAPv2 authentication. Even when the server certificate is issued by a trusted publisher. Is this a documented beh

  • Math on real values in a cell

    In Excel =300-200 How to do same in Numbers?

  • Compiling an old linux code on a new mac

    Hello, I am trying to compile an old Linux program on my new macbook pro (Intel + 10.6). The program uses a mix of fortran and c source codes. On the Linux environment where it works I have gcc(f77) 3.2.3 installed. The only external library called f

  • PLM550 SAP Resource- und Portfoliomanagement – RPM 5.0

    Für Berater und Projektteammitglieder, die vor der Einführung von SAP RPM 5.0 stehen, bieten wir im Q1/2011 wiederum den PLM550 an. In diesem Training werdenFunktionen, Prozesse und Integrationsmöglichkeiten von SAP Resource and Portfolio Management

  • Upgrading 10.10.2 to 10.10.3 is taking over 1 hour 30 mins

    Why should that be???? Each MB takes approx 2 seconds, (timed by my watch!), the download size is 2 GB, so overall download time will be approx 4000 sec I have a fast internet connection, multi-MB photos download in milliseconds.