PO order comfirmation and reminders print out

Hi friends please let me know,
PO order comfirmation and reminders print out can we get in sap mm,
Regards,
Balakrishna R.V

Hi Balakrishna ,
It is possible .
Goto Transaction NACE ; Select Application EF and then click on o/p types.
PO Confirmation : -- O/p Type AUFB
Reminders - O/p Type MAHN -- Reminder levels to be maintained in PO
Regards
Ramesh Ch

Similar Messages

  • How do I put a online form on the web to be filled in and then printed out

    I created a pdf form with fields to be completed on our website.  Once the form is completed how do I get the person to print the completed form out as it looks on the website.  Also is there an option to email the completed form as it appears on the website?

    Josh,
    I started it in Forms Central and them kept updating and finalizing the form in Acrobat Pro. What I want is to put the form on our website so can be completed and either printed out by that person or sent to us just as the form appears on the website all filled in. Is that possible?
    Thanks,
    Keith

  • HP4620 will not print black BUT i can scan a copy to the printer and then print out black

    AS soon as i changed the black print cartridge it stopped printing black copies    but i can scan a document to the pc and then print it and it prints out perfect .... this is the third HP printer that i have (different models) where the SAME thing happens... i just sent 105.00 for cartridges that the printer still does not print.  I'm not understanding why i can print out a scanned document but cannot print anything else   PLEASE help me because ive already wasted 105.00 .... i've done everything ... cleaned the printheads 20 times and also reset printer to factory defaultsNOTHING WORKS .......

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Up graded to CS and images print out are green.

    Hello,
    I am using 10.4.11 operating system. I upgraded from Photo shop 7.0 to CS and all my images print out green. The printer is a Epson Stylus C88+. The images on my monitor look the same as 7.0. I do a nozzle check every day.
    Does any body know why this happened?
    Please help!
    Many thanks,
    Diane

    wgross21947 wrote:
    What can I do. Save current photos? Where?
    You should always save your photos on computer like any other digital camera.

  • Hi everyone. I have just started having problems with iCal.  Events that I thought I had deleted are appearing on Print Preview and on print outs. Likewise Events which I have not deleted have disappeared from my calenders, but appear in print preview.

    Hi everybody. I have recently started having problems with iCal (Version 2.05 (1069). Events that I thought I had deleted appear in Print Preview and Print Outs. Likewise Events that I have not deleted have disappeared from my calender (Month View) but appear in Print Preview and Print Outs. I see that there have been similar problems with Events disappearing especially in Month View. I wondered how print preview seemrd to be picking everything up deleted or not, and what the solution may be?. First time of Posting. I hope I haven't embarassed myself.

    Hmmmm.
    At the very least there must be a "com.apple.ical.plist"...iCal would not function without it.
    Click on the Finder icon in the dock
    Click on Go > Home
    Double-click Library
    Double-click Preferences
    Look for a file called "com.apple.ical.plist" and remove it to the trash.

  • This is about recursion and the print out

    Please give me a "HINT" on how to;
    1- Control the way I print the file out, like instead of printing "A, B, C, D, E, F", printthe alphabets in two lines of three alphabets, like;
    "A, B, C"
    "D, E, F"
    2- A hint on writing a recursion method so I can print out from more than one inFile.
    This is what I have so far.import Alphabets;
    import java.util.StringTokenizer;
    import java.io.*;
    public class PrintAlphabets
       public static void main (String[] args) throws IOException
         int n= 100;
          Alphabets[] letters= new Alphabets[n];   //array of numbers
          StringTokenizer tokenizer;
          String line, name;
          String units;     //number of Alphabets available in the file.
              int count = 0;
          String fileout = "c:\\Alpha.txt";
         File file = new File(args[0]);
          FileWriter fw = new FileWriter (fileout);
          BufferedWriter bw = new BufferedWriter (fw);
          PrintWriter outFile = new PrintWriter (bw);
          try
               FileReader fr = new FileReader (file);
               BufferedReader inFile = new BufferedReader (fr);
               line = inFile.readLine();
               while (line != null)
                   tokenizer = new StringTokenizer (line);
                     while (tokenizer.hasMoreTokens())
                       try
                          units = tokenizer.nextToken();
                           if ( units.equals("#include") )
                              tokenizer.nextToken();
                           else
                          letters[count++] = new Alphabets (units);
                       catch (Exception e)
                          System.out.println ("Error in input. Line ignored:");
                          System.out.println (line);
                 line = inFile.readLine();
             inFile.close();
              for (int scan = 0; scan < count; scan++)
                            outFile.print (letters[scan] + " " );
          catch (FileNotFoundException exception)
             System.out.println ("The file " + file + " was not found.");
          catch (IOException exception)
            System.out.println (exception);
                System.exit(0);
               outFile.close();

    I thought I send you te whole code again because I still get the "null" thing.
    import Alphabets;
    import java.util.StringTokenizer;
    import java.io.*;
    public class PrintAlphabets
       public static void main (String[] args) throws IOException
         int n= 100;
          Alphabets[] letters= new Alphabets[n]; ;  //array of numbers
          StringTokenizer tokenizer;
          String line, name;
          String units;    
              int count = 0, printCount=0, scan=0;
          String fileout = "c:\\AlphaResult.txt";
         File file = new File(args[0]);
          FileWriter fw = new FileWriter (fileout);
          BufferedWriter bw = new BufferedWriter (fw);
          PrintWriter outFile = new PrintWriter (bw);
          try
               FileReader fr = new FileReader (file);
               BufferedReader inFile = new BufferedReader (fr);
               line = inFile.readLine();
               while (line != null)
                   tokenizer = new StringTokenizer (line);
                     while (tokenizer.hasMoreTokens())
                       try
                          units = tokenizer.nextToken();
                           if ( units.equals("#include") )
                              tokenizer.nextToken();
                           else
                          letters[count++] = new Alphabets (units);
                       catch (Exception e)
                          System.out.println ("Error in input. Line ignored:");
                          System.out.println (line);
                 line = inFile.readLine();
             inFile.close();
              for (scan = 0; scan < count; scan++)
                            if (printCount == 3)
                               {   outFile.println(); 
                                    printCount = 0;
                             String newLine = System.getProperty("line.separator");
                             outFile.print(newLine + letters[scan] + " " );
                            printCount++;
                            //System.out.println(letters[scan] + " "  );
                            //outFile.print (letters[scan] + " " );
          catch (FileNotFoundException exception)
             System.out.println ("The file " + file + " was not found.");
          catch (IOException exception)
            System.out.println (exception);
                System.exit(0);
               outFile.close();
    }

  • Purchase order price roundedoff in Print out

    Hi
    In purchase order material price is 0.068 USD but in Purchase order print view
    It shows rounded off as 0.07USD
    how to change it as 0.068 in PO print view
    Thanks

    Hello,
    Please check up the ABAPer to see the logica incorporate in PO FORM.
    If necessary you need to incorporate the logic into the FORM.
    Regards,
    Ravi

  • PDF text is unreadable on screen and in print-out

    One of my co-workers brought to me several PDF saves of the homepage of the Chicago Tribune and an article from the Wall Street Journal. The format of the document looks normal, but a portion of the text form the Tribune page and nearly the entire page from the WSJ is unreadable. My guess is that it is just a font issue within Acrobat, however, I tried checking and unchecking the box within preferences that says to "Use local fonts only" to no avail.
    Within the "Fonts Used in this Document" window there are 6 fonts listed (four for WSJ article). Five of them are true-type and have four different lines of information under each of them. The sixth font has an 'a' symbol next to and is called Courier (Embedded Subset) and underneath has the following two lines of information--Type: Type 1; Encoding: Custom. A guess I have is that this font is the problem. My question is how do I get Acrobat to ignore that font and go to something local that I have installed on my computer?

    I looked at the files, but unfortunately I could not tell any more. It is definitely a font issue and it may be that the local fonts I have are not the same as the font used by the person who created the PDF. Keep in mind that just because the name is the same does not mean it is identical. I was able to go to WSJ, but not get into the article (I am not a subscriber). I will look a bit at creating the file later tonight.
    The document properties show
    which is the same results I got from AA9. I just don't know where the fonts are coming from. When I created a print from the CT in my normal browser, all of the fonts showed up as standard Windows fonts. When I printed from IE 10, I got the following font description:
    This screen suggests that IE is trying to provide some substitution. Your file from the CT shows standard Arial fonts, but they don't display correctly. It would appear that the problem is at the creation end, but I am not sure of the problem. At least this may give you some food for thought. Sorry that I can't help more.

  • I have a Dell Inspiron 530S computer and a Dell Photo 926 printer. Using Firefox with the printer, how do I scan a blank form into the computer and fill it out there and then print out the completed form with the printer?

    Basically, the problem arose when I got a package from the Veterans Administration requiring me to fill out some complicated forms. Using my equipment and Firfox, I have been unable to do it.
    == This happened ==
    Not sure how often
    == I applied for Agent Orange evaluation

    That's not really a Firefox support issue.
    Check with Dell support and ask if the scanner software is capable of saving the form as an actual form, instead of as an image as most scanners do.

  • Purchase Requisition and Reservation Print out - Output Message determinatn

    Dear Experts,
    Can Anybody please explain the process of Output Message determination for Purchase Requisition and reservation.
    Thanks in Advance
    Vijay

    Hi,
    There is not standard message determination, you have to customized the transaction and output for PR & Reservation.

  • Using Reflection to check a value in an Array and then print out the array

    Hi,
    I have a int Array say,
    static final int [] myNumbers = {407,408};
    In the program if the input value is either 407 or 408, the output should be the field name myNumbers.
    I am experiencing problem with arrays. For other types ( like int ),
    I was able to successfully do it.
    Thanks in advance.

    Check the reflection category on esus:
    http://www.esus.com/docs/GetIndexPage.jsp?uid=221

  • ERROR ON PURCHASE ORDER PRINT OUT

    hi gurus, i need your help. i have a purchase order that i copied from the standard , i haven't modified it and when i print preview it , it looks ok, but when i send it to the printer the format is black and white, my boxes are are not printing , as in box outlines for my windows. i copied the same standard form and used it as an RFQ and its printing out correctly. what could the problem be?
    i am using an HP office Jet 9000 colour printer. My purchase order is in sapscript, which i copied standard medruck.

    Hi Kirti,
    Notes are seen on service.sap.com not R/3.  Please go to service.sap.com ->in SAP Support Portal click on link SAP Note search then in front of number, give the note number and  click on ">>" button.
    In R/3 you can see whether these notes are implement or not. Basis people see it in transaction SNOTE and the in note browser, you give note number and press F8. If this note is avl, it means it is already implemented.
    I still suggest to change config to standard to suspect your programs too. Notes would help to solve problem in standard objects only.
    - Sanjeev

  • Contacts does not print out in alphabetical order

    Has something happened to printing lists from Contacts? Don't know if it is Contacts or Mountain Lion.
    I have not printed a listin in ML before, but in former versions, an alphabetical listing was generated in alpha order. Now printing a list gives the names out of alpha order. This is the case of a group or All Contacts. This is not just my machine, but another computer in the house running the lastest software.
    I find nothing in the printing details to select alpha order. The Contacts is set up to view in last name-first name order.
    I also checked all boxes in atributes to see if there was a strange happening there, but the sorted order is identical. It is not sorting by first name either.
    Contact preferences is at show first name before last name andsort by last name. I have changed those parameters and there is no effect of the order of names in printing.
    Pocket address book prints in alpha order. Mailing labels prints out of order and left off some of the first of the listing. Listing all contacts is also out of order.

    Ocalamarilyn ....You are a genius!!!!!  Finally I was able to print the complete contact's book alphabetically....  I've been trying to figure that one out since I installed Mountain Lion!!!!........ of course you can only print a list this way but it doesn't matter with lables or envelopes cause they don't have to be in any sort of order.  You don't get a chance to select the items you want to show but who cares for now.  thank you, thank you thank you.....  I hope everyone who has written to this feed sees your reply.....  You made my day!!!!!  by the way, do you live in Fl cause I'm in Summerfield.

  • Hello, I would like to download my contacts from icloud to a flash drive in order to print out.  Can anyone help with this?  Many thanks

    Hello, I would like to download my contacts from icloud to a flash drive in order to have them printed out as I have over 4,000 contacts.  Could anyone help with this?  Thank you

    This  this discussion >  https://discussions.apple.com/message/24150181#24150181

  • Print out

    Helo SAP Experts,
    Kindly help me for the following Print outs in SAP. Tell Me how to do in SAP?
    1) Purchase Requisition
    2) Request For Quotation
    3) Purchase Order
    3) Price Comparison Print out
    4) Goods Receipt Note
    It is very urgent requirement for our client.
    Thanks and regards,
    Ramanar

    Dear,
    Purchase requisition is an internal documentso ,so no use of taking printout.
    For purchase order out put can be taken nthrough T-code ME9F,Prior to this you need to create condition record through MN04.
    For Quotation  out put can be taken through T-code ME9A,Prior to this you need to create condition record through MN01.
    For Material document out put can be taken through T-code MB02 or MB90,Prior to this you need to create condition record through MN21.
    Regards

Maybe you are looking for

  • Connecting ethernet disk

    I have a small network in my home consisting of an ADSL-modem (-> internet) to which I have an airport Xpress connected (ie the ethernet port of that unit is occupied). I have set the network to DHCP and PW-protected thru WAP. I have extended the NW

  • Hi i just bought a wireless router and i cannot get it to...

    hi i just bought a wireless router and i cannot get it to work. it is a wrt54g v6. the power light keeps flashing. I tried talking with linksys to get it fixed, but nothing is working. it says to disconnect from the modem and update my firmware, but

  • Unknown error (-124) HELP!!!!!!!!!!!!!!!!

    I'd had some troubles with my ipod software so I downloaded itunes again and the ipod worked perfectly, then midways it stopped and said "unknown error (-124)" and now, the computer won't recognize it. It's a 4G black ipod... I don't know if it makes

  • CS 4 and DNG Converter

    Hi, 1) I'm trying to get my CS 4 work with DNG Converter but it seems hopeless. I've downloaded the ARC 5.7 and DNG Converter from the site but when I try to import a raw file via Bridge using the "Convert to DNG" function, it fails only saying "Conv

  • How to find my network key

    none of my  roomates remember the network key to the router. they  are all on  but my PC. i run xp.  is there a place in my computer to find it?  if not what is the easiest way out of this mess ( without messing with my roommates current ability to a