PO Text to be printed in GR-Slip.

Hi
There is a requirement wherein i have to print the Texts(For ex Quality instructions....) that are communicated to my vendor in the time of Goods receipt at my GR slip.
Is there any way to print such texts which i feed in PO creation at the time of GR to communicate to Quality person.
- In their legacy system they are feeding the text in PO and get it printed at GR slip with which the Quality person can follow the instructions mentioned by purchaser.
Thanks in advance.
R.Kannan.

If you are printing the material document for the goods receipts then my answer would be Yes  it can be done.
The determination of the text needs to be performed in the Script or smart form aatched to the Out put type
You need to include the Text Object EKPO and the Text ID whcih needs to get printed on the Material document.
As all the GR's are performed with ref to PO, you can determine the details for each line item and put the details.
Please take help from abaper.
Thanks & Regards
KK

Similar Messages

  • Print Material Issue Slip in IW32

    Hi,
    How can I print Material Issue Slip in IW32? is there any process or steps i will do first before i can print Material Issue Slip?
    thanks.
    james

    Hi    TNQs for ur responce.
      i want to get the item text in the  main window beside to material description column .
    i think u got my point actually we'll have item texts for each item , i want to get the text of each item  in that row only
    i used include text and i gave following attributes
    Text Object :      EKPO
    Text ID         :  A03
    Language     :     EN
    just tell me ,should i need to give any code for this.
    thanks and regards,

  • Multiple text fields in Print Module

    Allow multiple text fields in Print Module with flexible editing.

    I'm with you on this. LR 3 has come along way on the print module but placing text anywhere on the page at any angle using any system font would go long way in making a great looking album page. If you are in the senior market you could add the customers name to a wallet sized image.

  • Adobe Acrobat Pro text box not printing and is hidden under box highlight.

    Adobe Acrobat Pro 10.1.13.  I am completing a form with text box throughout the document. I can no get the text box to printing and the text is hidden under box highlight.  I have tried printing with the print feature 'Comments & Forms/ Document and Markups' with no luck.

    It's doing that because you have field highlighting enabled. YOu can either turn it off or make the field read-only (if it's only used for display and not entry).

  • Cannot get text file to print in jtable. Using text file as a database

    Instead of doing JDBC i am using text file as database. I cant get data from text file to print into JTable when i click find button. Goal is to find a record and print that record only, but for now i am trying to print all the records. Once i get that i will change my code to search desired record and print it. when i click the find button nothing happens. Can you please take a look at my code, dbTest() method. thanks.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.util.*;
    import java.io.*;
    public class GUIdirectory extends JFrame
    implements ActionListener {
    // Define the components and the layout
    JLabel inputLabel_lastname = new JLabel("Last Name");
    JTextField inputText_lastname = new JTextField("Last Name",15);
    JLabel inputLabel_firstname = new JLabel("First Name");
    JTextField inputText_firstname = new JTextField(" ",15);
    JLabel inputLabel_middleinitial = new JLabel("Middle Initial");
    JTextField inputText_middleinitial = new JTextField(" ",4);
    JButton inputButton = new JButton("Find");
    JPanel inputLayout = new JPanel(new FlowLayout(FlowLayout.CENTER,5,5));
    JButton jButton1 = new JButton();
    //create a new table and scrollpane
    JTable dataTable = new JTable();
    JScrollPane dataTableScrollPane = new JScrollPane();
    public static void main(String args[]) {
    GUIdirectory gui = new GUIdirectory("Telephone Directory");
    gui.show();
    gui.pack();
    //TokenTest tt = new TokenTest();
    //gui.dbTest();
    public GUIdirectory(String Title) {
    super(Title);
    // Add ourselves as a listener for the window closing
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent we) {
    exitWindow(1); }
    inputLabel_lastname.setLabelFor(inputText_lastname);
    inputText_lastname.setHorizontalAlignment(JTextField.RIGHT);
    inputText_lastname.addActionListener(this);
    inputLabel_firstname.setLabelFor(inputText_firstname);
    inputText_firstname.setHorizontalAlignment(JTextField.RIGHT);
    inputText_firstname.addActionListener(this);
    inputLabel_middleinitial.setLabelFor(inputText_middleinitial);
    inputText_middleinitial.setHorizontalAlignment(JTextField.RIGHT);
    inputText_middleinitial.addActionListener(this);
    inputButton.addActionListener(this);
    inputLayout.add(inputLabel_lastname);
    inputLayout.add(inputText_lastname);
    inputLayout.add(inputLabel_firstname);
    inputLayout.add(inputText_firstname);
    inputLayout.add(inputLabel_middleinitial);
    inputLayout.add(inputText_middleinitial);
    inputLayout.add(inputButton);
    getContentPane().setLayout(new BorderLayout(5,5));
    getContentPane().add("North",inputLayout);
    dataTableScrollPane.setViewportView(dataTable);
    getContentPane().add("Center",dataTableScrollPane);
    // A default method, primarily used for testing.
    public void actionPerformed(ActionEvent evt) {
    GUIdirectory gui = new GUIdirectory();
    gui.dbTest();
    void dbTest() {
    DataInputStream dis = null;
    String dbRecord = null;
    String hold;
    try {
    File f = new File("customer.txt");
    FileInputStream fis = new FileInputStream(f);
    BufferedInputStream bis = new BufferedInputStream(fis);
    dis = new DataInputStream(bis);
    Vector dataVector = new Vector();
    Vector headVector = new Vector(2);
    Vector row = new Vector();
    // read the record of the text database
    while ( (dbRecord = dis.readLine()) != null) {
    StringTokenizer st = new StringTokenizer(dbRecord, ",");
    while (st.hasMoreTokens()) {
    row.addElement(st.nextToken());
    System.out.println("Inside nested loop: " + row);
    System.out.println("inside loop: " + row);
    dataVector.addElement(row);
    System.out.println("outside loop: " + row);
    headVector.addElement("Title");
    headVector.addElement("Type");
    dataTable = new JTable(dataVector, headVector);
    dataTableScrollPane.setViewportView(dataTable);
    } catch (IOException e) {
    // catch io errors from FileInputStream or readLine()
    System.out.println("Uh oh, got an IOException error!" + e.getMessage());
    } finally {
    // if the file opened okay, make sure we close it
    if (dis != null) {
    try {
    dis.close();
    } catch (IOException ioe) {
    } // end if
    } // end finally
    } // end dbTest
    // Exits the program upon closing the window
    public void exitWindow(int i) {
    System.exit(i);
    public GUIdirectory() {
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    jButton1.setText("jButton1");
    this.getContentPane().add(jButton1, BorderLayout.CENTER);

    Nothing happens because in the actionPerformed() method you are creating a new version of GUIdirectory. You just want to execute the dbTest() method of the current instance of GUIdirectory.
    The code should be:
    public void actionPerformed(ActionEvent evt)
    //GUIdirectory gui = new GUIdirectory();
    //gui.dbTest();
    dbTest();

  • Cant get data from text file to print into Jtable

    Instead of doing JDBC i am using text file as database. I cant get data from text file to print into JTable when i click find button. Goal is to find a record and print that record only, but for now i am trying to print all the records. Once i get that i will change my code to search desired record and print it. when i click the find button nothing happens. Can you please take a look at my code, dbTest() method. thanks.
    void dbTest() {
    DataInputStream dis = null;
    String dbRecord = null;
    String hold;
    try {
    File f = new File("customer.txt");
    FileInputStream fis = new FileInputStream(f);
    BufferedInputStream bis = new BufferedInputStream(fis);
    dis = new DataInputStream(bis);
    Vector dataVector = new Vector();
    Vector headVector = new Vector(2);
    Vector row = new Vector();
    // read the record of the text database
    while ( (dbRecord = dis.readLine()) != null) {
    StringTokenizer st = new StringTokenizer(dbRecord, ",");
    while (st.hasMoreTokens()) {
    row.addElement(st.nextToken());
    System.out.println("Inside nested loop: " + row);
    System.out.println("inside loop: " + row);
    dataVector.addElement(row);
    System.out.println("outside loop: " + row);
    headVector.addElement("Title");
    headVector.addElement("Type");
    dataTable = new JTable(dataVector, headVector);
    dataTableScrollPane.setViewportView(dataTable);
    } catch (IOException e) {
    // catch io errors from FileInputStream or readLine()
    System.out.println("Uh oh, got an IOException error!" + e.getMessage());
    } finally {
    // if the file opened okay, make sure we close it
    if (dis != null) {
    try {
    dis.close();
    } catch (IOException ioe) {
    } // end if
    } // end finally
    } // end dbTest

    Here's a thread that loads a text file into a JTable:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=315172
    And my reply in this thread shows how you can use a text file as a simple database:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=342380

  • My Canon MP620 just stopped printing text: it can print photos etc but when I send a word document (with a picture) it only prints the picture. Any ideas?

    Hi Everyone:
    I have a  Canon MP620 printer connected directly into my Airport base station. So far it has worked perfectly - I can print any type of document over the network from my MacBook Pro.
    Yesterday something weird happened. I have a resumé (as a word document) I was always printing but this time all that was printed was a photo and no text. I did a print preview and it looked fine. I converted to PDF and nothing was printed. I then created a brand new word document and again nothing was printed. I have no problem with images but for some strange reason no text  can be printed. All that happens is that the paper goes through and comes out blank.
    Any ideas?????
    Thanks a lot in advace!

    Hi,
    Tried all the cleaning programmes and it still will not print...I am lost.

  • Item text of PO print output is not generatiing but text is updated  in PO

    Hello ,
    I am changing the PO through IDOC. When ever there is change in the quantity ,net price and delivery date the print out put is generated autoamtically and changes are appearing the print output.
    when ever there is change in the item text of PO print output is not generatiing but item text is updated in the PO.
    If i change manually print out is generating for item text also but through IDOC print output is not generated . please help to slove this isuue.
    i am passing the value as :
    idoc_data-segnam = 'E1BPMEPOTEXT'.
    e1bpmepotext-po_item = Po line item number .
    e1bpmepotext-text_id = txtid.
    e1bpmepotext-text_form = textform.
    e1bpmepotext-text_line = line item text .
    idoc_data-sdata = e1bpmepotext.
    APPEND idoc_data.
    CLEAR idoc_data.
    CLEAR e1bpmepotext.
    please help me it is urgent
    Thanks
    Venkatesh

    Hi,
    For triggering the output for changes you have to make some changes.
    - Go to SM30
    - Enter view name "<b>VV_T161M_EF</b>".
    - Hit 'maintains' view.
    - Now let's say your outpu type is 'NEU'. For this there will be one entry like this.
    Operat.  Ctyp.  Name            Short text  Update
    1        NEU    Purchase order  New
    Now with this entry add one more entry like this.
    Operat.  Ctyp.  Name            Short text  Update
    2        NEU    Purchase order  Change      X
    You just need to enter Operat. = 2 and  Ctyp = NEU. The 'name' and 'short text' will come automatically.
    - Save your entry and create.
    After doing this, your PO will trigger output on change.
    Let me know if you have any other information.
    Regards,
    RS

  • Issue : Read a text file and print the same

    Hi, My requirement is to read a text file and print it the same way.
    import java.io.BufferedReader;
    import java.io.FileReader;
    public class CatFile {
    public static void main(String[] args) throws Exception
         FileReader file = new FileReader("D:/Test/Allfiles.txt");
         BufferedReader reader = new BufferedReader(file);
         String text = "";
         String line = reader.readLine();
         while (line != null)
              text += line;
              line = reader.readLine();
         System.out.println(text);
    The text file i used contains
    A
    B
    C
    but my output is ABC.
    What change should be made to print it the same way in the txt file ?

    Hi EJP,
    I modified the code based on your suggestion and now its working as expected. Thanks
    Modified code :
    import java.io.BufferedReader;
    import java.io.FileReader;
    public class CatFile {
    public static void main(String[] args) throws Exception
         FileReader file = new FileReader("D:/Test/Allfiles.txt");
         BufferedReader reader = new BufferedReader(file);
         String text = "";
         String line = reader.readLine();
         while (line != null)
              System.out.println(line);
              line = reader.readLine();
              text += line;
    }

  • Printing Employee Pay Slip using HRFORMS

    Hello Experts,
    I am working on a smartform for printing employee pay slips/remuneration statments using HRFORMS config.
    I am trying to print the payslip checks using this and in the smartform, I have a problem with printing the check footer data using MICR font.
    I read the Note 94233 - Support of MICR font. I have both MICR_C 10.0 Point Bold=Off, Italic=Off
    MICR_E 10.0 Point Bold=Off, Italic=Off configured, and it does not work. I also have the required setting for the output device in SPAD.
    While I try to print C &bank number&C A&bank_account_number&A, it literally prints C and A instead of the special MICR characters for C and A.
    Anybody came across any such problem before and found any solution to this?
    I appreciate if you can reply with your solution, will realy appreciate it.
    PS: I am using Smartforms for printing the forms here.
    Thanks in advance.
    Shivani.
    Edited by: Rob Burbank on Sep 22, 2009 4:03 PM

    Hi,
    The problem is resolved .
    Regards,
    Tanuja

  • I can't print selected text in a Print dialogue box in Yahoo mail or my bank site. I used to, now I can't.

    I am having this problem both in my online banking site and when using Yahoo Mail. When I click on Print on either of these sites and then close the Print dialogue box that automatically comes up, highlight just the text I want printed, then hit Ctrl+P and choose Selection, Print Preview shows me a blank page. When I try printing the selection using either of the 2 printers I have, it prints a blank page. And yet when I do the same thing in Internet Explorer, I have no trouble printing the text I want. I tried doing the prefs.js troubleshoot, deleting everything in that file that starts with print, but it made no difference. I used to be able to print this way in Firefox no problem, but now it doesn't work. Why not, and how do I get it to work again? I'm using Windows XP and Firefox 11.

    A bug was introduced in the latest version of Firefox that affects printing selections that are inside a table. Because many pages use tables for general layout (without displaying the borders), this may appear to strike at random.
    A fix is expected in Firefox 12. More information: [https://support.mozilla.org/en-US/questions/923294 how to get print selection to work | Firefox Support Forum | Firefox Help]
    If you expand your selection to include some content outside the table, then the feature should work, but of course it would include some unnecessary information.

  • PDF looks fine on screen but text does not print

    PDF created from Word looks fine on screen but text does not print (graphics do). Alos loses text on FTP or Email.  Windows 8.1 64bit. Acrobat XI Std. Word2013. Print to PDF from Word 600dpi, use doc fonts, download as softfont. Arial, calibrai - all fonts lost. Same issue as Phillipio61 and alacker2?.

    Problem not with all fonts.  Problem with arial and calibri fonts - maybe others.  Times New Roman, gil sans, viner are OK for example.

  • Standard text / Text module not printed correctly in Adobe forms

    Hi All,
    I need to print the dunning level text which is static. I have created text module and standard text with the same static text.
    In the content I have created the text with text module tyoe and given the text module name. Similarly I created the include text as well.
    But the text is getting printed continously, eventhough I have maintained as paragraphs.
    For Example: I have maintained text as    TEST1
                                                                       TEST2
                                                                       TEST3
    Now the same format shud be printed in the output. But  TEST1 TEST2 TEST3 is printed.
    Can anyone help me out how to print the text as in the above case and what is the reason for not printing in paragraphs.
    Thanks and Rewards,
    Karthik Ganti.
    Message was edited by: Dezso Pap - Moderator

    Hi Kartik,
    1. ead standard text by FM READ_TEXT.
    2. Read text lines content Read internal table LINES into wa_lines.
    Concat wa_lines-tdline into string separated by as CL_ABAP_CHAR_UTILITIES=>CR_LF.
    Bind that String to variable to text.
    That will display text as you create.
    Santosh

  • Print just what is typed in the text field without printing the text fields

    Hello,
    I'm trying to print a form after I filled in the text fields, but would like it to print just what I typed in the field, not the text field and the color in the text field. I use CS3.
    Any help would be appreciated!

    Hello Teddy and wellcome to the group!
    If you want to change fonts or other things then you might need to use the PrePrint method. What I normally do is select PrePrint from the "Show" section in the Script Editor (If you do not have it go to the toolbar at the top, Windows, and select Script Editor). After you select PrePrint you can now either type the name of the subform and field you want to change (or you can put your cursor in the Scripting Dialog box, hold CTRL and then select the field with your mouse) and then type in the JS to change the font. it is something like TextField1.fillcolor = "255, 255, 255"; (that changes the background fill to white). You can also replace fillcolor with font or border to change the color of the font or the border. I put a link to an Adobe website that goes over JS color changes below. You just need to add a PrePrint method for each field that you wish to remove the necessary highlighting on. Then once the user either hits a Print button that you have on the form or uses CTRL+P to print the form it will remove any highlighting.
    Now On the Text Field not printing itself that I am not sure what you are asking for. Are you asking for the caption not to print or for there not to be a box around the data that is entered? If you do not want to have a box surround the text field that is in the Object section of the field (see image below). You just need to select None if you just want the text. If you want to change that with JS I put another link below that has the code to change the border color to white and the user cannot see it. If you do not want the caption to print the only method is to delete the caption from the text field and replace it with static text that can be hidden, but I am assuming that is not what you are talking about (correct me if I am wrong though).
    http://partners.adobe.com/public/developer/en/livecycle/designer/pdfs/ChangingFieldAndSubf ormBGColors.pdf
    https://forums.adobe.com/thread/1409617

  • Marking text as non-printing

    I read that in ID CS4 it's possible to mark text as non-printing (while still including it in a TOC). However, I can't find where this command is ...
    Can anyone help?

    What I'm trying to do is this.
    My (inherited) ID CS4 document has 5 chapters. On each chapter title page, there are two separate header styles (with very different formatting). One says,for instance, 'Chapter 1' and the other provides a description, such as: 'Managing Applications'
    I want the TOC to show: 'Chapter 1: Managing Applications'.
    If I tell the TOC to pull in both styles, I get (on two lines):
    Chapter 1
         Managing Applicaitons               7
    My thought, based on Sandee Cohen's text, was to insert a second 'Chapter 1' in front of the 'Managing Applications' and mark the former as hidden. But ID can't do this...
    Is it possible to put the second 'Chapter 1' on a second hidden layer, inside the same frame?
    Even if you can do this, it probably isn't worth the effort in this instance. But I'd just like to know for future reference.

Maybe you are looking for

  • While stop and resume movie have problem

    Hi everyone, I am created a movie player with JMF. While playing movies when i stop my movie and again resume playing then my movie starts from another point. Suppose i stop my movie after playing 5.30 minute and stop, When i resume playing then it s

  • Byte to Char ...

    Hi, I have written an encryption function in PHP which at a certain point uses the built in chr() function to convert a byte back to a character. This works fine, however when I do the same thing in Java ( by casting the byte as a char ) I have probl

  • ABAP Trace - How To ST12

    Hi gurus, I've red two very useful blogs about how to use ST05 and SE30 Trace Tools: /people/siegfried.boes/blog/2007/11/13/the-abap-runtime-trace-se30--quick-and-easy /people/siegfried.boes/blog/2007/09/05/the-sql-trace-st05-150-quick-and-easy Thank

  • MSI P55GD 85 Blue PCIe 1x not working

    I have added a sound card to my pc. Discover that the sound card is not found if I used the blue pcie 1x slot. However, if I shifted to the black pcie 1x, it is working fine. Is the blue slot spoil or there is a need to do some tweaking?

  • SetStartDate() and setEndDate() applet methods not working

    I am Using setStartDate() and setEndDate() applet methods to set Start and End Date of my XACUTE output. But its not working. document.<appletname>.getQueryObject().setStartDate(<Start Date>); document.<appletname>.getQueryObject().setEndDate(<End Da