Results Print out--export

Hi
I  want to export Inspection results print out to excel format .
I am getting results print out using QGA3.. same i want to export.
Regards,
srihari.M

Dear Srihari,
After executing QGA3,once you will be getting the pop up for print and here goto print preview--->then in
the next page in the top menu click on Goto-> List Display->in the next screen click on system in
the top menu System -> List--->Save --->local file.
Check and revert back,.
Regards
Mangalraj.S

Similar Messages

  • Inspection Result Print out

    Hi experts,
    I am getting error "Text element does not exist" while printing the Inspection Result Print out. The form being used is the standard SAP form QM_INSP_RESULT.
    Have any one encountered any such issues ? My version is ECC 6.0 with Logistics and Accounting release 603.
    Thanks in advance,
    JMG

    Hi All,
    There is some problem with the standard SAP delivery of this form for ECC 6.0
    SAP is working on it
    Regards

  • UD results print out

    Hi all
    Can anybody tell me T_code or report for printing UD results for a inspection lot no.
    Thanks in Advance
    Sandeep Patil

    Hi Sandeep,
                      Certificate profile can be created in QC01 & then it is assigned to the material in QC15...
    I will suggest you to refer the below link for comprehensive understanding
    [Quality certificate profile|http://help.sap.com/saphelp_47x200/helpdata/en/55/a8b43446a1c564e10000009b38f83b/frameset.htm]
    Do let me know if you have any specific query on this further........
    Reward points if you find it useful...
    Regards
    Kaushik

  • Directly print out a report

    I make a form and a report.I try to directly print out it.but before the result print out,a html coding print out. How to print only the result of the report?
    The below is the procedure in the Form.
    PROCEDURE sendparam1 IS
         report_id                              Report_Object := FIND_REPORT_OBJECT('SHSEL_DAILY_FUNCTION');
         report_server_name     varchar2(100) := 'repfodbopera';     --Report Server Name (repseokyooperawebopera/repfodbopera)
         report_format                    varchar2(20)     := 'PDF';                              --Report Type
         report_destype_name     number                    := PRINTER;
         report_file_name          varchar2(100)     := 'SHSEL_DAILY_FUNCTION';     --Report File Name
         report_otherparam          varchar2(2000):= 'paramform=yes';     
         report_servlet               varchar2(100)     := '/reports/rwservlet';
         report_folder                    varchar2(100)     := 'M:\micros\opera\production\runtimes\';     --Real Report File folder(http://fodb/webtemp/opera/)
         pdf_folder                    varchar2(100)     := 'M:\micros\opera\operaias\webtemp\opera\';     --Real Report File folder(http://fodb/webtemp/opera/)
         report_message               varchar2(100)     := '';
         rep_status                         varchar2(100)     := '';
         vjob_id                                   varchar2(4000):= '';
         hidden_action                    varchar2(2000):= '';
         v_report_other               varchar2(4000):= '';
         report_user                         varchar2(100)     := 'OPERA/OPERA@OPERA';     --Opera DB
         resort                                   varchar2(20)     := 'SHSEL';                    --SEOKYO               
         PMS_ID                                   varchar2(20)     := 'OPERAREP';
         PMS_PW                                   varchar2(20)     := 'OPERAREP';
         v_time varchar2(10) :='';
         v_pdf_name varchar2(200):='';
    Begin
         --message(to_char(sysdate,'mmddhhmiss'));
         v_time:=to_char(sysdate,'mmddhhmiss');
         v_pdf_name:=report_file_name||     v_time||'.PDF';
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
    -- SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,report_folder || report_file_name);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,report_server_name);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,report_destype_name);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,report_format);
         --SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,report_folder ||report_file_name||     v_time||'.PDF');
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'OfficePrt'); --프린터 이름
         hidden_action := hidden_action || '&report=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME);
         hidden_action := hidden_action || '&destype=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE);
         hidden_action := hidden_action || '&desformat=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT);
         hidden_action := hidden_action || '&userid=' || report_user;
         hidden_action := hidden_action || '&desname=' || GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME);
         v_report_other := v_report_other || 'P_REPORT_DATE=' || :TXTREPORTDATE;
         v_report_other := v_report_other || '&P_END_DATE=' || :TXTREPORTDATE;
         v_report_other := v_report_other || '&P_RESORT=' || resort;
         v_report_other := v_report_other || '&P_USER=' || PMS_ID;
         v_report_other := v_report_other || '&P_PASSWORD=' || PMS_PW;
         v_report_other := v_report_other || '&P_REPORT_NAME=' ||report_file_name;
         v_report_other := v_report_other || '&P_BUSINESS_DATE=' || :TXTREPORTDATE;
         hidden_action := hidden_action || '&' || v_report_other;
         hidden_action := report_servlet || '?_hidden_server=' || report_server_name || hidden_action;
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'pfaction=' || hidden_action || ' ' || report_otherparam);
         report_message := run_report_object(report_id);
         rep_status := report_object_status(report_message);
    While Rep_Status In ('RUNNING','OPENING_REPORT','ENQUEUED') Loop
    Rep_Status := Report_Object_Status(report_message);
    message('status : '||Rep_Status);
    End Loop;
         if rep_status = 'FINISHED' then
              --message(rep_status);
              vjob_id := substr(report_message,length(report_server_name)+2, length(report_message));
              Web.Show_Document(hidden_action,' _blank');
              --Web.Show_Document('../../webtemp/opera/'||v_pdf_name,' _blank');
              --Web.Show_Document(report_servlet || '/getjobid' || vjob_id || '?server=' || report_server_name, ' _blank');
         else
              message('Error');
         end if;
    end;

    I can print out the report but the html page as the below is printed before the report.
    Why is the html page printed ? and I don't want to print out the html page.
    <html>
    <body dir=LTR bgcolor="#ffffff">
    <form method="hidden_run_parameters" type=hidden value="server=repfoopera&rep......
    Message was edited by:
    asterika

  • SQL Server 2012 Management Studio:In the Database, how to print out or export the old 3 dbo Tables that were created manually and they have a relationship for 1 Parent table and 2 Child tables?How to handle this relationship in creating a new XML Schema?

    Hi all,
    Long time ago, I manually created a Database (APGriMMRP) and 3 Tables (dbo.Table_1_XYcoordinates, dbo.Table_2_Soil, and dbo.Table_3_Water) in my SQL Server 2012 Management Studio (SSMS2012). The dbo.Table_1_XYcoordinates has the following columns: file_id,
    Pt_ID, X, Y, Z, sample_id, Boring. The dbo.Table_2_Soil has the following columns: Boring, sample_date, sample_id, Unit, Arsenic, Chromium, Lead. The dbo.Table_3_Water has the following columns: Boring, sample_date, sample_id, Unit, Benzene, Ethylbenzene,
    Pyrene. The dbo.Table_1_XYcoordinates is a Parent Table. The dbo.Table_2_Soil and the dbo.Table_3_Water are 2 Child Tables. The sample_id is key link for the relationship between the Parent Table and the Child Tables.
    Problem #1) How can I print out or export these 3 dbo Tables?
    Problem #2) If I right-click on the dbo Table, I see "Start PowerShell" and click on it. I get the following error messages: Warning: Failed to load the 'SQLAS' extension: An exception occurred in SMO while trying to manage a service. 
    --> Failed to retrieve data for this request. --> Invalid class.  Warning: Could not obtain SQL Server Service information. An attemp to connect to WMI on 'NAB-WK-02657306' failed with the following error: An exception occurred in SMO while trying
    to manage a service. --> Failed to retrieve data for this request. --> Invalid class.  .... PS SQLSERVER:\SQL\NAB-WK-02657306\SQLEXPRESS\Databases\APGriMMRP\Table_1_XYcoordinates>   What causes this set of error messages? How can
    I get this problem fixed in my PC that is an end user of the Windows 7 LAN System? Note: I don't have the regular version of Microsoft Visual Studio 2012 in my PC. I just have the Microsoft 2012 Shell (Integrated) program in my PC.
    Problem #3: I plan to create an XML Schema Collection in the "APGriMMRP" database for the Parent Table and the Child Tables. How can I handle the relationship between the Parent Table and the Child Table in the XML Schema Collection?
    Problem #4: I plan to extract some results/data from the Parent Table and the Child Table by using XQuery. What kind of JOIN (Left or Right JOIN) should I use in the XQuerying?
    Please kindly help, answer my questions, and advise me how to resolve these 4 problems.
    Thanks in advance,
    Scott Chang    

    In the future, I would recommend you to post your questions one by one, and to the appropriate forum. Of your questions it is really only #3 that fits into this forum. (And that is the one I will not answer, because I have worked very little with XSD.)
    1) Not sure what you mean with "print" or "export", but when you right-click a database, you can select Tasks from the context menu and in this submenu you find "Export data".
    2) I don't know why you get that error, but any particular reason you want to run PowerShell?
    4) If you have tables, you query them with SQL, not XQuery. XQuery is when you query XML documents, but left and right joins are SQL things. There are no joins in XQuery.
    As for left/right join, notice that these two are equivalent:
    SELECT ...
    FROM   a LEFT JOIN b ON a.col = b.col
    SELECT ...
    FROM   b RIGHT JOIN a ON a.col = b.col
    But please never use RIGHT JOIN - it gives me a headache!
    There is nothing that says that you should use any of the other. In fact, if you are returning rows from parent and child, I would expect an inner join, unless you want to cater for parents without children.
    Here is an example where you can study the different join types and how they behave:
    CREATE TABLE apple (a int         NOT NULL PRIMARY KEY,
                        b varchar(23) NOT NULL)
    INSERT apple(a, b)
       VALUES(1, 'Granny Smith'),
             (2, 'Gloster'),
             (4, 'Ingrid-Marie'),
             (5, 'Milenga')
    CREATE TABLE orange(c int        NOT NULL PRIMARY KEY,
                        d varchar(23) NOT NULL)
    INSERT orange(c, d)
       VALUES(1, 'Agent'),
             (3, 'Netherlands'),
             (4, 'Revolution')
    SELECT a, b, c, d
    FROM   apple
    CROSS  JOIN orange
    SELECT a, b, c, d
    FROM   apple
    INNER  JOIN orange ON apple.a = orange.c
    SELECT a, b, c, d
    FROM   apple
    LEFT   OUTER JOIN orange ON apple.a = orange.c
    SELECT a, b, c, d
    FROM   apple
    RIGHT  OUTER JOIN orange ON apple.a = orange.c
    SELECT a, b, c, d
    FROM   apple
    FULL OUTER JOIN orange ON apple.a = orange.c
    go
    DROP TABLE apple, orange
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Printing out-poor results

    Hi there,
    i´m a new user of Aperture. I use a canon 400D, take pictures in RAW and L jpgs (store it on external HD). I use a Canon Pixma IP 5300 for printing out. I wasn´t ever happy with the results whenever I print out on my own. So I exported a picture to the (now empty) Iphoto library and..., way better results! Much more natural and easier to handle.
    My question:
    What am I´m doing wrong? Is it color settings in Aperture? What settings should I use to get the most natural out of my prints?
    thanks for your help in advance
    Bob
    Powerbook G4   Mac OS X (10.4.9)  

    Aperture really wants to manage colour during printing.
    One common problem seems to be having your printer (driver) set to colour management, and then Aperture doing it as well. (This is probably not the only problem...)
    One of the O'Reilly Inside Aperture Podcasts, with Joe Schorr, covers this very issue.

  • How can I print out all notes or export the entire file?

    I have around 300 notes that include a variety of information. I would like to print out a hard copy. I don't want to open and print out each one individually. Is there a way to print out all of them at once. Also, is there a way export the file so I can open it in another application like Excel or Word?

    It's not a file, so you can't "open" one file. Every message (and note) is a single file on the computer.
    This Applescript will grab all the notes in the selected mailbox (i.e. the selected Notes item in Mail) and put them in a textEdit document.
    Note that Mail doesn't differentiate between a note and an email message, so if you run this while a normal email mailbox is selected, it will gather all of your email messages.
    tell application "Mail"
    set theMailboxes to the selected mailboxes of message viewer 0
    repeat with aMailbox in theMailboxes
    set theNotes to the messages of aMailbox
    set theText to ""
    repeat with aNote in theNotes
    set theText to theText & content of aNote & return
    end repeat
    end repeat
    end tell
    tell application "TextEdit"
    set myDocument to make new document at end of documents with properties {text:theText}
    end tell
    Copy and paste this into a new AppleScript Editor Document, select the Notes mailboxes you want to print the notes from, and click the Run button (Green button with arrow).
    This may take a while.

  • Printing out results in case of object-relational table (Oracle)

    I have made a table with this structure:
    CREATE OR REPLACE TYPE Boat AS OBJECT(
    Name varchar2(30),
    Ident number,
    CREATE OR REPLACE TYPE Type_boats AS TABLE OF Boat;
    CREATE TABLE HOUSE(
    Name varchar2(40),
    MB Type_boats)
    NESTED TABLE MB store as P_Boat;
    INSERT INTO House VALUES ('Name',Type_boats(Boat('Boat1', 1)));
    I am using java to print out all the results by calling a procedure.
    CREATE OR REPLACE package House_boats
    PROCEDURE add(everything works here)
    PROCEDURE results_view;
    END House_boats;
    CREATE OR REPLACE Package.body House_boats AS
    PROCEDURE add(everything works here) AS LANGUAGE JAVA
    Name House_boats.add(...)
    PROCEDURE results_view AS LANGUAGE JAVA
    Name House_boats.resuts_view();
    END House_boats;
    However, I am not able to get Results.view working in case of object-relation table. This is how I do it in the situation of relational table.
    CALL House_boats.results_view();
    House_boats.java file which is loaded using LOADJAVA:
    import java.sql.*;
    import java io.*;
    public class House_boats {
    public static void results_view ()
       throws SQLException
       { String sql =
       "SELECT * from House";
       try { Connection conn = DriverManager.getConnection
    ("jdbc:default:connection:");
       PreparedStatement pstmt = conn.prepareStatement(sql);
       ResultSet rset = pstmt.executeQuery();
      printResults(rset);
      rset.close();
      pstmt.close();
       catch (SQLException e) {System.err.println(e.getMessage());
    static void printResults (ResultSet rset)
       throws SQLException { String buffer = "";
       try { ResultSetMetaData meta = rset.getMetaData();
       int cols = meta.getColumnCount(), rows = 0;
       for (int i = 1; i <= cols; i++)
       int size = meta.getPrecision(i);
       String label = meta.getColumnLabel(i);
       if (label.length() > size) size = label.length();
       while (label.length() < size) label += " ";
      buffer = buffer + label + " "; }
      buffer = buffer + "\n";
       while (rset.next()) {
      rows++;
       for (int i = 1; i <= cols; i++) {
       int size = meta.getPrecision(i);
       String label = meta.getColumnLabel(i);
       String value = rset.getString(i);
       if (label.length() > size) size = label.length();
       while (value.length() < size) value += " ";
      buffer = buffer + value + " ";  }
      buffer = buffer + "\n";   }
       if (rows == 0) buffer = "No data found!\n";
       System.out.println(buffer); }
       catch (SQLException e) {System.err.println(e.getMessage());}  }
    How do I print out the results correctly in my case of situation?
    Thank you in advance

    I have made a table with this structure:
    I am using java to print out all the results by calling a procedure.
    However, I am not able to get Results.view working in case of object-relation table. This is how I do it in the situation of relational table.
    How do I print out the results correctly in my case of situation?
    There are several things wrong with your code and methodology
    1. The code you posted won't even compile because there are several syntax issues.
    2. You are trying to use/test Java in the database BEFORE you get the code working outside the DB
    3. Your code is not using collections in JDBC properly
    I suggest that you use a different, proven approach to developing Java code for use in the DB
    1. Use SIMPLE examples and then build on them. In this case that means don't add collections to the example until ALL other aspects of the app work properly.
    2. Create and test the Java code OUTSIDE of the database. It is MUCH easier to work outside the database and there are many more tools to help you (e.g. NetBeans, debuggers, DBMS_OUTPUT windows, etc). Trying to debug Java code after you have already loaded it into the DB is too difficult. I'm not aware of anyone, even at the expert level, that develops that way.
    3. When using complex functionality like collections first read the Oracle documentation (JDBC Developer Guide and Java Developer's Guide). Those docs have examples that are known to work.
    http://docs.oracle.com/cd/B28359_01/java.111/b31225/chfive.htm
    http://docs.oracle.com/cd/E11882_01/java.112/e16548/oraarr.htm#sthref583
    The main issue with your example is #3 above; you are not using collections properly:
    String value = rset.getString(i);
    A collection is NOT a string so why would you expect that to work for a nested table?
    A collection needs to be treated like a collection. You can even treat the collection as a separate result set. Create your code outside the database and use the debugger in NetBeans (or other) on this replacement code for your 'printResults' method:
    static void printResults (ResultSet rset) throws SQLException {
        try {
           ResultSetMetaData meta = rset.getMetaData();
           while (rset.next()) {
               ResultSet rs = rset.getArray(2).getResultSet();
               rs.next();
               String ndx = rs.getString(1);
               Struct struct = (Struct) rs.getObject(2);
               System.out.println(struct.getSQLTypeName());
               Object [] oa = struct.getAttributes();
               for (int j = 0; j < oa.length; j++) {
                  System.out.println(oa[j]);
        } catch  (SQLException e) {
           System.err.println(e.getMessage());
    That code ONLY deals with column 2 which is the nested table. It gets that collection as a new resultset ('rs'). Then it gets the contents of that nested table as an array of objects and prints out the attributes of those objects so you can see them.
    Step through the above code in a debugger so you can SEE what is happening. NetBeans also lets you enter expressions such as 'rs' in an evaluation window so you can dynamically try the different methods to see what they do for you.
    Until you get you code working outside the database don't even bother trying to load it into the DB and create a Java stored procedure.
    Since your current issue has nothing to do with this forum I suggest that you mark this thread ANSWERED and repost it in the JDBC forum if you need further help with this issue.
    https://forums.oracle.com/community/developer/english/java/database_connectivity
    When you repost you can include a link to this current thread if you want. Once your Java code is actually working then try the Java Stored procedure examples in the Java Developer's Guide doc linked above.
    At the point you have any issues that relate to Java stored procedures then you should post them in the SQL and PL/SQL forum
    https://forums.oracle.com/community/developer/english/oracle_database/sql_and_pl_sql

  • If you develop an image in lightroom then export to your hard drive after finishing, is it the right resolution to print out?

    Im learning how to use it, and i love using it, but if i develop then export the image which i have imported as a fine jpeg from my camera, will it be the right resolution to print out as a photograph or do i have to do anything else to the image. thanks

    When you are configuring your export options in the export dialogue, you have the option to specify the size in pixels. If you are going to print to a certain dimension, first of all I suggest that you crop the image to that aspect ratio. Then, export an image that will be big enough to support that print size. If the image has enough pixels the PPI setting is meaningless (actually, it's meaningless anyway as far as printing is concerned). For example, assume you want to order or print an image that is 16 and 20 inches at 240 PPI. Here are the steps I would follow.
    1. Crop the image using the 4 x 5 - 8 x 10 aspect ratio setting.
    2. In the export options specify in the image sizing options, choose long edge 4800 pixels (20"x240 PPI).
    3. You can change the PPI setting to 240 if you want, it isn't going to matter.
    4. Set any other printing options as required, then export the image.

  • CR10 Exported MS word doc file not print out

    My application (CR10, VB6, Oracle10.2) exports MS word doc file to disk, But when I try to print out, not print out at some printer and print out legal size (8.5x14) at some printer. It set up as Letter (8.5x11) I think in CR, page footer is wrong place. How I can change page footer location to move up in the report?
    one more thing...
    When I try to open this MS doc file, always prompt pop up and ask "You want to convert to RTF?" I don't understand.
    Thank you.

    Sachiko,
    You might want to try exporting to MS Word from within the Crystal Reports Deisgner and see if you get the same behaviour. If it appears correctly from the Designer then it would suggest an issue with the coding in your application and the issue would be better answered in the BO SDK Application Development forums.
    I think the footer is in the wrong place due to the incorrect paper size and don't believe that any formatting of the report itself will correct it.

  • I used stationery in mail, but now i want to export that email to pages OR print it out without the email headers printing out.  any solutions?

    i used stationery in mail, but now i want to export that email to pages OR print it out without the email headers printing out.  any solutions?

    Hello carolsuz,
    I was researching ways you might be able to save that email to a picture or export it and found this little gem in the iPhone Users Guide, found here: http://manuals.info.apple.com/en_US/iphone_user_guide.pdf about how to take a screenshot.
    Its on page 12 toward the middle:
    Take a screenshot: Press and release the Sleep/Wake button and the Home button  at the same time. The screenshot is added to your Camera Roll album.
    Take care,
    Sterling

  • How do I print out the results of a "search" or "find"?

    I used ical's "find" or "search" field to look up all calendar entries for a project I was working on. How do I print out this result? This is basically the information in the lower right box after you do a search.

    Dear Bri81,
    Thank you for your reply.
    I tried the coding as you suggested
    while(i.hasNext())
    System.out.println( i.next() );
    but the error message reads:
    "CD.java": Error #: 354 : incompatible types; found: void, required: java.lang.String at line 35
    Your help is appreciated
    Norman
    import java.util.*;
    public class TryCD
       public static void main(String[] args)
         Vector cdVector = new Vector();
         CD cd_1 = new CD("Heavy Rapper", "Joe", true);
         CD cd_2 = new CD("Country Music", "Sam", true);
         CD cd_3 = new CD("Punk Music", "Mary", true);
         cdVector.add(cd_1);
         cdVector.add(cd_2);
         cdVector.add(cd_3);
         Iterator i = cdVector.iterator();
         while(i.hasNext())
           System.out.println( i.next() );
    public class CD
       private String item;
       private boolean borrowed = false;
       private String borrower = "";
       private int totalNumberOfItems;
       private int totalNumberOfItemsBorrowed;
       public CD(String item,String borrower, boolean borrowed)
         this.item = item;
         this.borrower = borrower;
         this.borrowed = borrowed;
       public String getItem()
         return item;
       public String getBorrower()
         return borrower;
       public boolean getBorrowed()
         return borrowed;
       public String toString()
          return System.out.println( getItem() + getBorrower());

  • When I print out photo thru iPhoto, the result is too dark.

    Hi all,
    I have a problem with printing a photo via iPhoto recently.
    I remember when I used iPhoto 9 to print out some of my photos but at that moment the result was pretty OK to me.
    However, I don't know exatly when but I guess it could be since I upgraded to iPhoto 10...
    Everytime I tried to print out some of my photos from my iPhoto library, the result is way too dark than its original color.
    I am using HP Photosmart device(C410ㅁ) with fuji photo papers.
    I tried to change several options like color sync or printing quality but NO use!!
    Strange thing is that if I use airprint with my iPhone or iPad, color level seems to be OK.
    But again, iPhone airprint doesn't give any options to manage printing quality level, it couldn't mitigate my problem, either.
    Is there anyone out there who has the same or similar problem just like me?
    Please share your knowledge to solve this issues.
    Thanks in advance
    Luke.

    What is the color profile of the photo?
    LN

  • HT204088 export or print out list of all iTunes purchases?

    is there a way to export or print out a list of all iTunes purchases so I can see them all at one time?

    Wish i knew that!!!!

  • After EHP6 Upgarde Picking list print out is resulting format & overlapping issues

    Hi All,
    We have recently upgraded our system from ECC 6.0 to EHP6 .Now when user trying to print a Picking list document then Print out is overlapping with content .
    But when we check the spool the Print Priview looks good but when trying to print the content is overlapping & observed the font size is chaned i.e. the content is displayed in Bold format .
    But for those spools which were created before upgarde & when we give a print then Print out is fine. So some thing happend after upgrade that causing us the Print out problem .
    we are using device type HPLJ4  & try to print Picking list output and it is causing problem.
    Kindly provide your suggestions.
    Thanks and regards,
    Dilip

    Hello Peng Wen,
    Thanks for your reply and yes the issue got resolved . Actually we are using a custom device type ZHPLJ4 which is a copy of HPLJ4 . But as part of Upgrade ZHPLJ4  HELVE with scalablity is no longer supported. So we have removed the entry from SE73 as it even doesnt exist in HPLJ4 . Now it is working as expected.
    Thanks a lot for your replay.
    Thanks and regards,
    Dilip

Maybe you are looking for

  • Pdf pack will not create a pdf from a tiff file    conversion failure    Why

    pdf pack will not create a pdf from a tiff file    conversion failure    Why

  • Connecting Apple TV to home theater

    My home theater AV receiver (Denon) is HDMI compatible but the Pioneer plasma HD tv it's connected to is not. I have it connected by component cables.  Is there a way to connect my Apple TV with this configuration?

  • How to create a screen field of 1000 characters

    hi i am writing a module pool program i have a requirement like  i need to get a field in the screen which is capable of storing 1000 characters . as far as i know the maximum permissible screen field length is 255 chars. how can i get this 1000 char

  • Choosing block size for RAID 0 & Final Cut

    Hi. I now have 3 500GB internal Seagate drives in bays 2/3/4 and want to make a striped 1.5TB RAID to use with Final Cut Studio 2. The help page talks about choosing a "large" data block size for use with video, but makes no specific size suggestion.

  • Can the network have an influence if TTL is 0 ?

    Hi, We are using Coherence 3.5.3 and have 3 windows services running that form 1 cluster on a single windows 2008 machine. The TTL is set to 0 since there is no need to leave the physical machine as the 3 JVMs run on the same pc. Could it be that the