Printing return information

What is possibility in SAP in printing return information on the printed tag such as such as Sending Location, Receiving Destination, materials being shipped. Transaction code,path, steps etc. would be welcomed.

This can be done thru configuring outputs for Returns.
refer t.code NACZ and define a output procedure for Inbound deliveries and assign them to the concerned Inbound delivery.
Regards.

Similar Messages

  • How to print return address labels

    How do I print return address labels

    Hello madrinky,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Contacts: Print contact information
    http://support.apple.com/kb/PH11608
    Mailing labels:
    Click Layout and choose a label type from the Page pop-up menu. To set page margins and gutter space between labels, and how many labels to print per page, choose Define Custom. 
    Click Label and choose the address to print from the Addresses pop-up menu (for example, print a label for each contact’s home address). Use other Label options to specify the print order, include a company for business mailings or a country for international mailings, or add a graphic.
    Best of luck,
    Mario

  • Store+search+view+print inventory,store+search+print rent information

    Good morning,
    I need some help regarding my Java Project. I was told by my lecturer to do one program[probably java applets] to store all informations about CDs and Videos.
    The program should be able to :
    1)store,view,search and print the informations of CDs and Videos.
    2)store,view,search and print the informations of customers
    This are the informations that need to be stored for:
    CDs:
    1. Title of album
    2. artist
    3. number of tracks
    4. total playing time
    5. comments
    Videos:
    1. Title of video
    2. Name of director
    3. total playing time
    4. comment
    For search CDs and Vidoes information, user will key in the artist name(for CDs) and director name (for video)
    For the renting section:
    1)the employee will be able to key in customer transaction.
    2) The customer must be a member to rent the CDs and Videos.If not, he / she must registers first.
    3)The transaction will be recorded in terms of the CDs/Videos informations, date of rent,due date and payments.
    4)The applet must also can identify which customer that has not pay/not return yet. If he or she does not return yet, he or she wont be able to rent .
    Here is some of coding that I have made:
    Name:TestRandomAccessFile[only for Videos]
    *i dont know how to combine CDs.
    *This applet coding only consists of register informations about Videos and View ONLY
    //TestRandomAccessFile.java: Store and read data
    //using RandomAccessFile
    package Store;
    import java.io.*;
    import java.awt.*;
    import java awt.event.*;
    import javax.swing.*;
    import CHapter9.MyFrameWithExitHandling;
    import javax.swing.border.*;
    public class TestRandomAccessFile extends MyFrameWithExitHandling
         //Create a tabbed pane to hold two panels
         private JTabbedPane jtpVideo = new JTabbedPane ();
         //Random access file for access the student.dat file
         private RandomAccessFile raf;
         //Main method
         public static void main (STring[]args)
         TestRandomAccessFile frame = new TestRandomAccessFile ();
         frame.pack ();
         frame.setTitle ("Test Random Access File");
         frame.setVisible ("True");
         //Default constructor
         // Open or create a random access file
         try
         raf=new RandomAccessFile("video.dat","rw");
         catch(IOException ex)
         System.out.print ("Error: " + ex);
         System.exit (0);
         //Place buttons in the tabbed pane
         jtpVideo.add (new RegisterVideo(raf),"Register Video");
         jtpVideo.add (new ViewVideo(raf),"View Video");
         //Add the tabed pane to the frame
         getContentPane().add(jtpVideo);
         //Register video panel
         class RegisterVideo extends Jpanel implements ActionListener
         //Button for registering a video
         private JButton jbtRegister;
         //Video information panel
         private VideoPanel videoPanel;
         //Random access file
         private RandomAccessFile raf;
         //COnstructor
         public RegisterVideo (RandomAccessFile raf)
         //Pass raf to RegisterVideo Panel
         this.raf=raf;
         //Add videoPanel and jbtRegister in the panel
         setLayout Pnew BorderLayout ());
         add (videoPanel= new VideoPanel(),BorderLayout.CENTER);
         add(jbtRegister= new JButton ("Register"),BorderLayout.SOUTH);
         //Register listener
         jbtRegister.addActionListener(this);
         //Handle button actions
         public void actionPerformed(ActionEvent e)
         if (e.getSource()==jbtRegister)
         Video video=videoPanel.getVideo();
         try
         raf.seek(raf.length());
         video.writeVideo(raf);
         catch (IOException ex)
         System.out.print ("Error:" + ex);
         //View video panel
         class ViewVideo extends JPanel implements ActionListener
         //Buttons for viewing video information
         private JButton jbtFirst,jbtNext,jbtPrevious,jbtLast;
         //Random access file
         private RandomAccessFile raf=null;
         //Current Video Record
         private Video video = new Video ();
         //Create a Video panel
         private StudentPanel studentPanel=new StudentPanel ();
         //File pointer in the random access file
         private long lastPos;
         private long currentPos;
         //Contsructor
         public ViewVideo (RandomAccessFile raf)
         //Pass raf to ViewVideo
         this.raf=raf;
         //Panel p to hold four navigation buttons
         JPanel p=new Jpanel();
         p.setLayout(new FlowLayout(FlowLayout.LEFT));
         p.add(jbtFirst=new JButton("First"));
         p.add(jbtNext=new JButton("Next"));
         p.add(jbtPrevious=new JButton("Previous"));
         p.add(jbtLast=new JButton("Last"));
         //Add panel p and studentPanel to ViewPanel
         setLayout(new BorderLayout());
         add(studentPanel;BorderLayout.CENTER);
         add(p,BorderLayout.SOUTH);
         //Register listeners
         jbtFirst.addActionListener(this);
         jbtNext.addActionListener(this);
         jbtPrevious.addActionListener(this);
         jbtLast.addActionListener(this);
         //Handle navigation button actions
         public void actionPerformed(ActionEvent e)
         String actionCommand=e.getActionCommand();
         if(e.getSource() instanceof JButton)
         try
         if ("First".equals(actionCommand))
         if(raf.length()>0)
         retrieve(0)l
         else if ("Next".equals(actionCommand))
              currentPos=raf.getFilePointer();
              if (currentPos<raf.length())
         retrieve(currentPos);
         else if ("Previous".equals(actionCommand))
              currentPos=raf.getFilePointer();
              if (currentPos<raf.length())
         retrieve(currentPos-2*2*Video.RECORD_SIZE);
         else if ("Last".equals(actionCommand))
              lastPos=raf.getFilePointer();
              if (lastPos<raf.length())
         retrieve(lastPos-2*Video.RECORD_SIZE);
         catch (IOException ex)
         System.out.print("Error:"+ex);
         //Retrive a RECORD at specific position
         public void retrieve(long pos)
         try
         raf.seek(pos);
         video.readVideo(raf);
         videoPanel.setVideo(video);
         catch (IOException ex)
         System.out.print ("Error lagi la wei:"+ex);
         //This class contains static method to read and write fixed length      //records
         class FixedLengthStringTo
         //Read fix number of the chracter from DataInput stream
         public static String readFixedLengthString(int size;DataInput in)
         throws IOException
         char c[]=new char [size];
         for (int=0;i<size;i++)
         c=in.readChar();
         return new String(c);
         //Write fixed number of chracter (string with padded space
         //to DataOutput Stream
         public static void writeFixedLengthString (String s,int size, Data.Output out) throws IOException
         char cBuffer[]=new char[size];
         s.getChars(0,s.length(),cBuffer,0);
         for (int i=s.length();i<cBuffer.length;i++)
         cBuffer[i]=' ';
         String newS=new String (cBuffer);
         out.writeChars(newS);
    File name:CD
    package Kedai;
    import java.io.*;
         public class CD
         private String title;
         private String artist;
         private String tracks;
         private String time;
         private String comment;
         //Specify the size of four string fileds in record
         final static int TITLE_SIZE=32;
         final static int ARTIST_SIZE=32;
         final static int TRACKS_SIZE=20;
         final static int TIME_SIZE=10;
         final static int COMMENT_SIZE=40;
         //the total size of the record un bytes,a Unicode
         //character is 2 bytes size
         final static int RECORD SIZE= (TITLE_SIZE+ARTIST_SIZE+TRACKS_SIZE+TIME_SIZE+COMMENT_SIZE);
         //Default constructor
         public CD()
         //Construct with specified data
         public CD (String title,String artist,String tracks,String time,String comment)
         this.title=title;
         this.artist=artist;
         this.tracks=tracks;
         this.time=time;
         this.comment=comment;
         public String getTitle()
         return title;
         public String getArtist()
         return artist;
         public String getTracks()
         return tracks;
         public String getTime()
         return time;
         public String getComment()
         return comment;
    //Write a CD to a data output stream
    public void writeCD (DataOutput out) throws IOException
    FixedLengthStringIO.writeFixedLengthString(title,TITLE_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(artist,ARTIST_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(tracks,TRACKS_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(time,TIME_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(comment,COMMENT_SIZE,out);
    //Read CD from data input stream
    public void readCD(DataInput in) throws IOException
    title=FixedLengthStringIO.readFixedLengthString(TITLE_SIZE,in);
    artist=FixedLengthStringIO.readFixedLengthString(ARTIST_SIZE,in);
    tracks=FixedLengthStringIO.readFixedLengthString(TRACKS_SIZE,in);
    time=FixedLengthStringIO.readFixedLengthString(TIME_SIZE,in);
    comment=FixedLengthStringIO.readFixedLengthString(COMMENT_SIZE,in);
    File name:Video
    package Kedai;
    import java.io.*;
         public class Video
         private String title;
         private String director;
         private String time;
         private String comment;
         //Specify the size of four string fileds in record
         final static int TITLE_SIZE=32;
         final static int DIRECTOR_SIZE=32;
         final static int TIME_SIZE=10;
         final static int COMMENT_SIZE=40;
         //the total size of the record un bytes,a Unicode
         //character is 2 bytes size
         final static int RECORD SIZE= (TITLE_SIZE+DIRECTOR_SIZE+TIME_SIZE+COMMENT_SIZE);
         //Default constructor
         public Video()
         //Construct with specified data
         public Video (String title,String director,String time,String comment)
         this.title=title;
         this.director=director;
         this.time=time;
         this.comment=comment;
         public String getTitle()
         return title;
         public String getDirector()
         return director;
         public String getTime()
         return time;
         public String getComment()
         return comment;
    //Write a video to a data output stream
    public void writeVideo (DataOutput out) throws IOException
    FixedLengthStringIO.writeFixedLengthString(title,TITLE_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(director,DIRECTOR_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(time,TIME_SIZE,out);
    FixedLengthStringIO.writeFixedLengthString(comment,COMMENT_SIZE,out);
    //Read video from data input stream
    public void readVideo(DataInput in) throws IOException
    title=FixedLengthStringIO.readFixedLengthString(TITLE_SIZE,in);
    director=FixedLengthStringIO.readFixedLengthString(DIRECTOR_SIZE,in);
    time=FixedLengthStringIO.readFixedLengthString(TIME_SIZE,in);
    comment=FixedLengthStringIO.readFixedLengthString(COMMENT_SIZE,in);
    I need help in terms of:
    1)store,view,search and print the informations of CDs and Videos.
    2)store,view,search and print the informations of customers
    What should I modify my coding above?What should I do next?Can anyone give me the code since I'm not good enough in creating Java coding.Please. The submission is on 30 September

    You made three mistakes:
    1) You posted to a JSP/JSTL forum when asking about applet code. Maybe you should redirect your thread to a more appropriate forum - Like one for Applets or general Java Programming.
    2) You waited for the last few days to try tosolve your problem. If you spent time working on it little by little you would be closer to a solution.
    3) You begged for someone to do the work for you. Asking for help is one thing. That I was willing to do, even though you posted to the wrong forum, but then you said: "someone do it for me because I am not good enough" which really means: "Someone help me cheat and hand in your work as my own because I am too lazy to do it myself."
    If you can't do the work, maybe you should drop the course.

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • In Contacts version 8, how can I print ALL information in each individual card? When I select the print command the only thing printed is the name and address. I need phone number(s) and all other information in the cards.

    In Contacts version 8, how can I print ALL information in each individual card? When I select the print command the only thing printed is the name and address. I need phone number(s) and all other information in the cards. We enter various pieces of data, other than the standard name address & phone numbers and we print all information on each card so it fits in a 5x7 inch loose binder. We have used InTouch software for many years and it has served us extremely welll, however, the publisher (The Prairie Group) has not, and apparently has no plans to update their software to be compatible with any Mac OSX OS beyond 10.6. Any help will be appreciated!

    You can select what you want included in a list format. In the Print command from Contacts, click the Show Details button. Then in the Style pulldown menu select "Lists" and there you'll be able to select what you want included. You can also select what you wish included if you select the Pocket Address Book style.
    If neither of those options will work for you, then you will need to look to third-party software. Here's one possibility that seems to get good reviews:
    https://www.macupdate.com/app/mac/15485/labels-&-addresses
    I haven't done more than try it to make sure that it works with OS X 10.9's Contacts, which it does, but you can download their demo and try it yourself.
    Regards.

  • How to print all information in the contacts

    does anyone know how to print a concise list of everything in your contacts ?

    Hello emerykt
    You should be able to print a list of contacts and then all you have to do is select the fields that you want to print.
    Contacts (Mavericks): Print contact information
    http://support.apple.com/kb/ht1766
    Regards,
    -Norm G.

  • Is there any way to print return address labels?

    Is there any way to print return address labels in Pages?

    I use Avery Design Pro. It's free, supports all thier templates, and works under Lion.
    http://www.avery.com/avery/en_us/Templates-&-Software/Avery-DesignPro-for-Mac.ht m

  • I cannot print return label because I don't register. Please help me.

    I order iphone5 from Apple online store .
    When I buy, I don't log-in Apple ID
    (I bought in the name of the "Guests.")
    Now I want to print return label.
    It cannot print, Because The website asks for Apple ID
    If I use my Apple ID Website call me "The signed in account does not have access to this order."
    I cannot use my Apple ID to print it.
    Now I have only order code.
    How can I print?

    Hi Leopallo,
    Are the trojan remover and the farbar service scanner
    3rd-party tools?
    We may first take a try with the SFC tool and see if it could fix the errors:
    Open CMD in admin rights, then type:
    SFC /scannow
    Then press enter.
    If we have backup available, please try take a system restore.
    http://windows.microsoft.com/en-hk/windows7/products/features/system-restore
    If we don’t have any backup available, we may consider to do a repair install (upgrade install) with the installation Disk.
    Start your computer from a Windows 7 installation disc or USB flash drive
    http://windows.microsoft.com/en-hk/windows7/start-your-computer-from-a-windows-7-installation-disc-or-usb-flash-drive
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Trying to print Return Address labels using Avery stock 5195

    Using a MacBook Pro - trying to print return address labels from my Contacts.  Where do I look for help?

    Maybe:
    http://www.podfeet.com/blog/tutorials-5/how-to-create-return-address-labelsl-usi ng-apple-contacts/

  • How do we create a custom format for printed contact information?

    We are trying to create a custom family directory for genealogical purposes.  Family members are individually saved as Outlook 2010 contacts with a special number field that (when parsed) designates their generation, birth order,
    and relationship to parents.  The directory listing is by family and needs to indent names, addresses, emails, and other information by generation. In other words, children's names follow parent names and are indented.  Likewise, grandchildren are
    listed under their parents, but also indented from parents.
    Do we need to create a custom display form, some type of custom print template, or do we need to program a merge of some sort?  Any help would be appreciated.

    Hi,
    From the description, you want to print the contacts in Outlook using a custom display form, so that you can use it to create a custom family directory, correct?
    If this is the case, I'm afraid there is no direct way to print forms as they appear on the custom display form. Outlook can only print forms with the options that are available in the Print window. While you can customize the Print Style settings using
    the various options Outlook provides in its user interface, you cannot alter the basic way that Outlook prints by using custom Print Styles.
    To work around this limitation, you can either use another program to print Outlook information, or you can download a ActiveX control or Outlook extension to create a custom form printing solution.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Printing return address labels

    how do i print return address labels of the same address from address book? i can get it to print one, but i need a whole page of labels to use as return address stickers. Thanks for any tips you can offer.

    Use a word processor that has templates for Avery labels. Setup one page of labels with your address copied onto each label segment in the document. Save and print using your Avery blank label sheets.
    Note that Address Book is not the tool for this. AB is designed to allow you to print a return address on envelopes as you address them to selected entries from your AB or AB can print the addresses of your entries onto an Avery labels' sheet.
    A good word processor for the task is Word, but there are probably a number of other choices such as the word processor found in Open Office or NeoOffice (both freeware.)

  • HT2584 HOW DO I PRINT RETURN ADDRESS LABELS FROM MY ADRESS BOOK?

    HOW DO I PRINT RETURN ADDRESS LABELS FROM MY ADRESS BOOK?

    Mail & Address Book Mac OS X v10.7 Lion
    pss: considereed bad form to use CAPS

  • Print Page Information Outside the Bleed? CS3

    Is there any way to print page information outside of the bleed? I know I don't need to have this on the page. But, it makes me feel more comfortable being easily able to check my pagination information (the documents I'm printing don't have page numbers on them).
    CS3 prints page information right across the bleed. So, I have to leave it off with any documents which do bleed.
    Thanks,
    Gary

    Sorry for being such a noob. But, it's not working for me. I add a slug to the page and I place a text box inside it with the page number special character. But, that character doesn't display a page number. Instead, it says "PB" for pasteboard. Only when I move the box onto the page does it display the page number.
    Will I have to manually enter each page number or is there some automatic way to do this?
    Thanks,
    Gary

  • Having trouble finding return information

    Would like to return my ipod touch, it is new and unused however the box has been opened.
    Apple does not provided clear return information for open box items for the UK.
    I would like to know whether I am able to return this item for a refund or store credit, or if I am able to exchange.

    Call Apple and ask.
    I typed "return" in the search bar of the Apple Store online and it explained the process.

  • WMI calls for Printer Tray information?

    Greetings,
    I am doing a print server rebuild to move our printers from a 2003 server to a 2012R2 server.  Please keep in mind that this is not technically a migration since we are not porting over drivers.  We are replacing all printer drivers with the latest
    Universal driver for each manufacturer (HP, Konica-Minolta, Kyocera, Lexmark, etc ...).  The print servers will have approximately 1,500 printers on each.  For reasons I won't get into they cannot be split up.  These print servers handle all
    printing for a broad use application.  Our process for adding these print servers to the application uses a specialized *.exe file that when run does some type of WMI call or other query to get the printer
    tray information and an associated BIN number from the driver/printer, problem is that it can only handle 1 printer at a time and takes several minutes for each one in order to complete.  But I don't know how & I am
    having difficulty coming up with a WMI query that I can run to gather that data, which will then be fed into an SQL database.  I'm not worried about the SQL part, someone else will do that.  What I need is to be able to gather the tray or paper source
    information from each printer.
    Any assistance appreciated.
    # When I wrote this script only God & I knew what I was doing. # Now, only God Knows! don't retire technet http://social.technet.microsoft.com/Forums/en-US/e5d501af-d4ea-4c0f-97c0-dfcef0192888/dont-retire-technet?forum=tnfeedback

    So this is the type of information that I get back
    Queue:Printer001
            UserPrintTicket               :
            IsXpsEnabled                  :False
            Description                   :Printer001,HP Universal Printing PCL 5 (v5.7.0),ThisOnePlace
            Name                          :Printer001
            Priority                      :1
            QueueDriver                   :System.Printing.PrintDriver
            HostingPrintServer            :
            StartTimeOfDay                :0
            SeparatorFile                 :
            QueuePort                     :System.Printing.PrintPort
            QueueStatus                   :None
            Comment                       :DEVICE IP: 192.168.1.1
            QueuePrintProcessor           :System.Printing.PrintProcessor
            DefaultPriority               :0
            UntilTimeOfDay                :0
            NumberOfJobs                  :0
            DefaultPrintTicket            :
            QueueAttributes               :4680
            Location                      :ThisOnePlace
            ShareName                     :Printer001
            AveragePagesPerMinute         :0
    But I don't see anything referring to the tray info
    # When I wrote this script only God & I knew what I was doing. # Now, only God Knows! don't retire technet http://social.technet.microsoft.com/Forums/en-US/e5d501af-d4ea-4c0f-97c0-dfcef0192888/dont-retire-technet?forum=tnfeedback

Maybe you are looking for

  • Is there a way to create a "personal blacklist" in Mail?

    I receive nearly 1000 Junk e-mails daily, and the Junk Filter is doing a great job of filtering them. But what I would like to do is filter my junk mail folder - so that certain specific senders I can automatically delete without deleting everything

  • ITunes put two clone Albums on my iPod Touch

    On my iPod touch their is two albums that countain the same images. I went on iTunes and removed the pictures from being synced thus deleting them off my iPod, I then re synced them on and them came up with two folders Thank you in advance

  • How to Mass Export Attachments in Siebel 5.5.1

    Does anyone have any documentation or guidance on how to mass export attachments out of Siebel 5.5.1 in their original format?

  • To JPG - JPanel(with JTable and g) on JScrollpane

    hi need help on this one, i have a JPanel inside a scrollpane that i want to convert to JPG. This JPanel contains Tables labels and some drawings. everytime i convert it to JPG the only thing that shows up is the one that im seeing in the screen mean

  • [svn:fx-trunk] 7728: Reverting change 7716 after it caused a bunch of test failures.

    Revision: 7728 Author:   [email protected] Date:     2009-06-10 14:58:37 -0700 (Wed, 10 Jun 2009) Log Message: Reverting change 7716 after it caused a bunch of test failures. Modified Paths:     flex/sdk/trunk/modules/compiler/src/java/flex2/compiler