Error in printing Inventory list (LI04)

Hi Experts,
I am printing inventory list using Tcode LI04. I have entered the WH number, Inventory record and select the print list.
However I am getting a runtime error. I would like to ask if there is a limit in the quants to be processed using the transaction?
Many thanks for your help.
Mylene

Hi Mylene
With this you need to give List name and Print report name also to make output come.
Amol

Similar Messages

  • User default format in printing inventory list

    Hi experts,
    I have a question about the user default print format.
    When I try to print out a output for inventory list, the print format turn to be a format that I donu2019t want to use, I have to change the format manually everytime. Is there any method that I can set the user default print format for a specific output?
    Thanks,
    Nadali

    The SAP form is INVENT
    But you can create your own form.
    You need to assign your own form to RM07IDRU in OMBU
    Then you can use MI21 to print you own physical inventory document

  • Error printing pick list from IW32

    Hi all,
    When trying to print pick list from transaction IW32, I get this error message:
    Express document "Update was terminated" received from author ...
    When I checked out this error message in SM13, I found this:
    Transaction code: IW32
    Module name (function): PM_ORDER_PRINT_CONTROL
    Status: Update was terminated
    Raise exception: KEY_NOT_FULLY_SPECIFIED (Complete key not entered)
    The shop paper (pick list) is customer defined (Z*) under application area O (Maintenance orders). This shop paper is set up to print to a certain printer, P1, and printing other PLM documents on this output device works fine.
    Does anyone have an idea what can be causing this error?
    All helpful answers will be rewarded.
    Best regards,
    MV

    Hi,
    I have tried to print the pick list several times, in development, test, and production systems. It fails with the same error each time.
    Do you have any ideas why this error occurs, is there any special IMG activity or PLM configuration that I could check to see if some printer settings are wrong?
    Regards,
    MV

  • Print ALV List error

    Hello,
    We have a custom ALV report which is very wide (more than 1000 chars).
    Now, when I try to print the list the field with the number of columns is grey (for some users it is grey and for some users it is editable). The format is set to X_65_255.
    When I don't change the number of columns to 255 and trigger the printout I receive the gui error "The memory could not be read blablabla" and the GUI closes. When I change the number of columns to 255 the printout is ok.
    Do you know why for some users the field is grey (user profiles are the same)? What I can do not to receive the gui error while printing.
    Regards,
    Piotr

    Hi,
    See this thread ALV Program errors
    Regards,
    Flavya

  • Format of Inventory List

    Hi Experts,
    I have a problem when printing LI04 inventory list, after I print an inventory list and go to SP02 to check the output request, I found the print format was set to X_PAPER, can someone tell me where I can make the settings to make the print format always default to X_65_80?
    Thanks,
    Emily

    Inventory list in WM is not a SAPscript form, it is just a report RLLI0400.
    If a spool request is generated without an allocated format,   format X_PAPER is used at printing.
    For more background I recommend to read Oss-notes 25549 and 2374

  • "Error while printing" error in Address Book

    When I attempt to print a list of address book contacts in Address Book.app (both as a PDF or to a printer), I receive an error message simply stating "Error while printing." I've repaired my permissions and tried deleting the preferences for Address Book. How can I fix this and print out the list?

    After discovering that my problem was more general (affecting the whole system, and not just Address Book), I looked in the Printer forum here in the discussions and referred to this one:
    http://discussions.apple.com/thread.jspa?messageID=1264657&#1264657
    I attempted to do as one user suggested and replace the 'libConverter.dylib' file. It did not work, and I returned the original 'libConverter.dylib' file to its folder. Magically, printing works now. Seems like it just needed to reset itself.

  • Printing a list

    Hi
    I'm trying to write a method to print a list containing a music records details.an empty string should be used if certain information is not available. this information should then be excluded from the printing i.e. the method should print all non empty strings.
    class recordDetailsClass
    String recordName;
    String recordArtist;
    String recordLabel;
    public recordDetailsClass(String a, String b, String c)
    recordName=a;
    recordArtist=b;
    recordLabel=c;
    public void printDetails()
    recordDetailsClass next;
    System.out.println("Record Name: " + recordName);
    System.out.println("Record Artist: " + recordArtist);
    System.out.println("Record Label: " + recordLabel);
    } Any ideas?
    Thanks
    Message was edited by:
    jclegs

    import java.util.*;
    class AssessedPracB1
         public static void printList(List L)
          contactDetailsClass nextContact;     
              for (int i=0; i<L.size(); i++)
              nextContact = (contactDetailsClass) L.get(i);
              System.out.println(nextContact);
              System.out.println("=============");     
         public static void main(String[] args)
              List contacts = new LinkedList();
              contacts.add (new contactDetailsClass("M Collin John", "84 Gleban Close", "Super Parcels LTD, Spain" , "02890376198","",""));
              contacts.add (new contactDetailsClass("J Gilbraithe", "1 Gilford Street", "Ian&Sons Tilers LTD, Vietnam" , "02890376198","",""));
              contacts.add (new contactDetailsClass("K Pressman", "92 Glen Avenue", "Tesco LTD, Belfast" , "","02840987392",""));
              contacts.add (new contactDetailsClass("B Strain", "95 Orchard Close", "Mighty Parcels LTD, Portglnone" , "02890376198","",""));
              contacts.add (new contactDetailsClass("M McCanning", "8 The Square", "Patton Road Services, Crossmaglen" , "02890376198","",""));
              contacts.add (new contactDetailsClass("K O'Hare", "19 The Olde Cuff Links", "" , "02838356118","","07778282738"));
              printList(contacts);
    class contactDetailsClass
         String name;
         String home;
         String workAddress;
         String homeTel;
         String workTel;
         String mobileTel;
         public contactDetailsClass(String a, String b, String c, String d, String e, String f)
              name=a;
              home=b;
              workAddress=c;
              homeTel=d;
              workTel=e;
              mobileTel=f;
         public void printDetails()
         if(name != null && name.length() >0){
        System.out.println("Name: " + name);
         if(home != null && home.length() >0){
        System.out.println("Home: " + home);
         if(workAddress != null && workAddress.length() >0){
        System.out.println("Work Address: " + workAddress);
         if(homeTel != null && homeTel.length() >0){
        System.out.println("Home Tel: " + homeTel);
         if(workTel != null && workTel.length() >0){
        System.out.println("Work Tel: " + workTel);
         if(mobileTel != null && mobileTel.length() >0){
        System.out.println("Mobile Tel: " + mobileTel);
    }This is another one i need to fix which gives the same error, more detailed code so could be easier to fix
    Message was edited by:
    jclegs

  • Issue during printing Pack List

    Hello,
    I am getting the below error (in the Processing Log) when I am printing the Pack List from the Outbound Delivery.
    "No handling units exist" Message no. VL490
    I am using the standard output type PL00 and the standard program.
    Can anyone tell what the issue is ASAP
    Thanks
    SAP FAN

    Hi Vinod,
    I am not using HUM or packaging material but I still need a Pack list(PL00) for the item that is going out.
    Isnt it standard to print a Pack List whether or not HUM is being used.
    Do we have any other output type or a way to print pack List.
    Thanks
    SAP FAN...

  • Customize Inventory List in xMAM

    Hi,
    I am working on customising the Inventory Management Screen in xMAM (version 3.0 SR4 PL0) where I am facing some issues.
    The standard Inventory Screen has following fields: Material, Equipment, Serial No, Stge Loc, Qty and Unit as shown [here|http://img512.imageshack.us/my.php?image=capture0103pu5.png]
    When I click on the material field information regarding that material pulls up.
    We have done the Customer Enhancement (BADI changes) by referring to the xMAM Enhancement guide so the Manuf Part Number gets displayed as shown [here|http://img512.imageshack.us/my.php?image=capture0102no6.png].
    This means the complete data is in Inventory SyncBO (Mam070) and Manuf Part NUmber is Mam070Item010.
    Now my requirement is to have this field in first Main Inventory List so that users can see first hand and give them alternative so that can search by Manuf part Number as well.
    So is it possible to have an Inventory list which displays data from Mam070 and Mam070Item010 at the same time?
    Any suggesstions / help will be appreciated.
    Chintan

    Oliver,
    I am using MAM3.0 SR4 and on Patch Level 0.
    I am able to get Manuf PArt Num from MAM070Item010 now. There was a typo at my end. All becuase classic Copy-Paste error. I was looping in second for loop with i instead of j and hence the error. I have corrected it and the code is attached.
    By the way there is no method elementAt for BOList class hence I am using get(int) method. Here is what I wrote for  Controller.
    ZInventoryList.java
         public Forward onLoad(Forwards forwards)
              System.out.println(">>>>>>>> ZInventoryList : onLoad called <<<<<<<<<<<<<<<");
              InventoryCustomController custom = getInventoryCustomController();
              Context context = getContext();
              try
                   Mam070Manager manager = (Mam070Manager) naming.lookup(Mam070Manager.class.getName());
                   BOList temp = manager.getMam070s();
                   Mam070 inv = null;
                   if (temp != null)
                        for (int i = 0; i < temp.size(); i++)
                             inv = (Mam070) temp.get(i);
                             String strInvKey = inv.getKey();
                             custom.setSelectedInventory(strInvKey);
                             Mam070 inventory = getInventoryCustomController().getSelectedInventory();
                             Mam070Item010 item = null;
                             BOList itemList = manager.getMam070Item010s(inventory);
                             if (itemList != null)
                                  for (int j = 0; j < itemList.size(); j++)
                                       item = (Mam070Item010) itemList.get(j);
                                       if (inv.getMaterial().equalsIgnoreCase("000000000000000865"))
                                            System.out.println("ZInventoryList : Material                : " + inv.getMaterial());
                                            System.out.println("ZInventoryList : Enhancement Flag      : " + inventory.getEnhancementFlag());
                                            System.out.println("ZInventoryList : Mfr Part Num           : " + item.getFieldValue());
                                       ZInventoryListBO bo = new ZInventoryListBO(inventory,item);
                                       bo.setInventory(inventory);
                                       bo.setItem(item);
                                       context.setValue("InventoryList", "true");
                                       context.addValue("inventory", inventory);
                                       context.addValue("item", item);
              catch (BOException e)
                   e.printStackTrace();
              return super.onLoad(forwards);
    Well Mam070Item010 is the standard BO class and not just for Customer Enhancement. When the value is displayed on Item Detail screen this class has the Customer Enhancement data I mean.
    So now I get to see the data I want to (i.e Manuf Part Number) on System Console.
    Next thing was to create a new BO class to hold the data as suggested in the Guide.
    Here it is : ZInventoryListBO.java
    public class ZInventoryListBO extends AbstractBO implements BusinessObject
         public ZInventoryListBO(Mam070 inventory, Mam070Item010 item)
              System.out.println("++++++++++ ZInventoryListBO called ++++++++++ ");
              Hashtable bos = new Hashtable();
              bos.put("inventory",inventory);
              if (item !=null)
                   bos.put("item",item);
    Am I on right track???? Question is how to show up the values I am getting on System consoles in the Inventory List??
    PS: Some screenshots :
    [MAM070|http://img162.imageshack.us/my.php?image=capture0103fq3.png]
    [MAM070Item010|http://img292.imageshack.us/my.php?image=capture0104zz0.png]
    Chintan
    Edited by: Chintan Virani on Feb 18, 2008 8:44 PM

  • Error in printing parameter

    when i compile this page i got in the user_id field null but it's available in the url which means that it send it but there is an error in the printing code.the code of this page is below:
    <!--
         Project Name: CMS
         File name: listArticles.jsp
         Description:This is a jsp page to list articles
         Data: 23423
    -->
    <html>
    <head>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*"%>
    <%@ page import="java.util.*"%>
    </head>
    <body bgcolor="#fdfcdd">
    <form name="article" action="saveedited.jsp">
    <%
    Statement createStatement = null;
    ResultSet rs = null;
    Connection con = null;
    String article_id= null;
    int category_id=0;
    String category_name = null;
    String headline = null;
    String summary = null;
    String body = null;
    String keywords = null;
    String user = "cms_onf";
    String password = "cms1234";
    String url = null;
    String user_id=request.getParameter("user_id");
    try{
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         url = "jdbc:oracle:thin:@172.16.50.66:1521:csdb";
         con = DriverManager.getConnection(url,user,password);
         createStatement=con.createStatement();
         article_id=request.getParameter("article_id");
         rs=createStatement.executeQuery("select * from articles,categories where articles.category_id=categories.category_id and article_id="+article_id);     
    }catch(SQLException e){      /*if any error ocurred print error*/
         out.println("Error in connection");
    catch(Exception e){
         out.println("Error in your connection");
    %>
    <%
    while (rs.next()){
         headline = rs.getString("headline");
         category_id= rs.getInt("category_id");
         category_name = rs.getString("category_name");
         summary = rs.getString("summary");
    body = rs.getString("body");
    keywords = rs.getString("keywords");
    %>
    <table width="100%">
         <tr>
         <td>
         user_id
         </td>
         <td>
              <input type="text" name="user_id" size="4" value="<%=user_id%>">
         </td>
         </tr>
         <tr>
         <td>
         Article Id
         </td>
         <td>
              <input type="text" name="article_id" size="40" value="<%=article_id%>">
         </td>
         </tr>
         <tr>
         <td>
         Headline
         </td>
         <td>
              <input type="text" name="headline" size="40" value="<%=headline%>">
         </td>
         </tr>
         <tr>     
         <td>
              Category
         </td>
         <td>
              <select name="category name">
              <option><%=category_name%>
              <option>Sports
              <option>Technology
              <option>Science
              <option>History
              <option>Geography
              <option>Computer
              <option>Media
         </td>
         </tr>
         <tr>
         <td>
              Summary
         </td>
         <td>
              <textarea><%=summary%></textarea>
         </td>
         </tr>
         <tr>
         <td>
              Body
         </td>
         <td>
              <textarea><%=body%></textarea>
         </td>
         </tr>
         <tr>
         <td>
              Keywords
         </td>
         <td>
              <input type="text" name="keywords" size="40" value="<%=keywords%>">
         </td>
         </tr>          
    <%
    %>     
    </table>
    <br><input type="submit" value="save">
    <input type="hidden" name="article_id" value="<%=article_id%>">
    </form>
    </body>
    </html>

    don't you need a method="post" in your form tag?

  • Error in printing Spools

    Dear Experts,
    While printing Cheques in SAP my user is getting error in
    OUTPUT CONTROLLER LIST OF SPOOL REQUESTS
      Spool no.  Type User     Date       Time  Status Pages Title                                                                               
    12767      GJAILANI 15.10.2009 15:23 Compl.    1  Error log 
           12764      GJAILANI 15.10.2009 15:19 Compl.    1  Error log 
           12762      GJAILANI 15.10.2009 15:17    -      1  Error log 
    Onclicking "Type" Icons
    It gives error i.e.
    Error log                                                                               
    F2371                    No authorization to display general data                                                                               
    =============================
    While checking Authorization check ie through SU53 it shows no authorization error.
    Please help
    Regards

    On Further research it is found that backgroud job which is sending spool is giving error logs are
    Date       Time     Message text                                                                           Mes
                                                                                    15.10.2009 15:23:24 Job started                                                                               
    15.10.2009 15:23:24 Step 001 started (program SAPFPAYM_SCHEDULE, variant &0000000000593, user ID GJAILANI)   
    15.10.2009 15:23:25 Step 002 started (program RFFOUS_C, variant &0000000000591, user ID GJAILANI)            
    15.10.2009 15:23:25 Check number status at beginning of processing: 0000002761997                            
    15.10.2009 15:23:25 Program RFFOUS_C: No records selected                                                    
    15.10.2009 15:23:25                                                                               
    15.10.2009 15:23:25 No authorization to display general data                                                 
    15.10.2009 15:23:25 >                                                                               
    15.10.2009 15:23:25 > Overview of the lists generated                                                        
    15.10.2009 15:23:25 > Name / Dataset / Spool number                                                          
    15.10.2009 15:23:25 >                                                                               
    15.10.2009 15:23:25 > Error log / LISTFS / 0000012767                                                        
    15.10.2009 15:23:25 Job finished                                                                               
    Program RFFOUS_C: No records selected
    How can this be resolved?
    Edited by: Waqas Ahmad on Oct 15, 2009 1:17 PM

  • Help - Receive message "an error occurred printing this document" when using airport express and Ipad

    Hi, I am trying to set up an airport express hub to work with a Star tsp100 receipt printer and IPad 2. The IPad is being used to accept credit card payments and I was hoping to print receipts out wirelessly using the airport express and receipt printer. I checked to make sure the airport express has the latest firmware and it does. The IPad software is also updated to the latest 7.1.  I then connected the Airport express and IPad and the network setup with no problems. I connected the receipt printer to the airport express using the USB slot available. While the printer comes up as available, when I attempt to print something, I get the error message "An error occurred printing this document" and I can cancel or Try again. No matter how many times I try, I continue to get this message and I lost as to the cause. When I disconnect and reconnect, another instance of the printer appears, but receive the same cryptic error message when I try to print. Totally lost, please help

    Hi kelston3,
    In order to print from an iPad you will need to use a printer that is compatible with AirPrint, which is described in the following article -
    About AirPrint
    http://support.apple.com/kb/HT4356
    AirPrint printers must be wireless on your network - not connected via USB to the base station. There is a list of printers that are known to be compatible with AirPrint in the article.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • In Ical, can you print a list view calendar without notes?

    In Ical, can you print a list view calendar without notes?

    cj,
    After selecting Calendar>File>Print...> I am presented with a Print selection pane which offers among other choices, a "List" selection:
    What do you see?

  • Error while printing.

    Error while printing.

    PowerPC Mac 10.4.11, Print with Safari with: Error while printing.
    Others AP: Printer Setting Utility can't pop up, no effective.

  • When sharing iMovie11 project  with iDVD inmediately message 'the project could not be prepared for publishing because an error occurred (Error in user parameter list).  Finalize issue?

    When sharing my 60 minutes iMovie project with iDVD inmediately message 'The project could not be prepared for publishing because an error  occurred (Error in user parameter list)' appears. Could not find the user parameter list, so I've no more info about this error.
    Option File - Finalize Project gives inmediately the same errormessage.
    Also option Share - Media Browser - Large/Medium/Mobile give the same errormessage.
    Please advise, thank you!

    Additional info: trying to write to internal disk (268 GB Free out of 499 GB)
    Please advise, alko80

Maybe you are looking for

  • My HP Officeject 4620 Won't Scan

    I see multiple posts about different models of all-in-one printers which can print and copy but won't scan. My new printer is a HP Officeject 4620, and it copies and prints fine but won't scan. I tried calling support once, and the tech said Windows

  • How to send sap generated invoice numbers using rffoedi1 program

    Hi all we are generating PEXR2002 IDocs using RFFOEDI1 program . The program is populating the invoice number field in IDoc with the value from reference number field in MIRO screen. Is there any way that we can populate the SAP generated invoice num

  • How to Parse and Tally the Accept/Reject values in the XML file?

    I need to tally the comments & annotations in a document that's under review. What's the Accept/Reject values in the XML file?

  • Audigy 2 6.1 Cr

    Hello, Thank you for reading my message. I'm having a problem with my SoundBlaster Audigy 2. I've had this sound card for over a year and I've never had any problems with it. The problem I'm having is there is no sound coming from the speakers or any

  • Compatibility external hard disk toshiba 1 to with mac book pro?

    Hi dears, je viens d'acquerrir  un disque dur externe toshiba stor.e basics 2.5 1to noir usb 3.0 mais je n'arrive pas a envoyé des données de mon macbook pro sous OS X Mavericks. SVP quelqu'un peut m'aider.