What is SSCC(Serial Shipping Container Code)?

Hi Gurus,
Can someone help me understand what is SSCC(Serial Shipping Container Code). We are to use the same in Process Industries.
Regards,
Amol Kale

Hi Amol,
The Serial Shipping Container Code (Handling-Unit-Code) is an 18-digit number used to identify logistics units
(standardized international despatch-code EAN-128)
This code is used for tracking and tracing in electronic commerce transactions in the supply chain.
This reference can be added to the logistical units as a barcode.
The SSCC is used in standard ERP applications and Warehouse Management Systems (WMS), of both suppliers and customers. These applications will exchange the SSCC codes in their EDI-communication.
Upon goodsreceipt of a pallet in the warehouse the barcodes will be scanned and the WMS will display the pallet item-content.
For further reference:
http://help.sap.com/saphelp_em70/helpdata/en/d6/954841861af323e10000000a155106/content.htm
http://help.sap.com/saphelp_46c/helpdata/en/9e/56c8ecaa83d311ae690060b03c9bbe/content.htm
http://www.gs1.org/barcodes/technical/idkeys/sscc
http://mdn.morovia.com/kb/Serial-Shipping-Container-Code-SSCC18-10601.html

Similar Messages

  • How do I go for SSCC(Serial Shipping Container Code) thorough PI sheet

    Hi Gurus,
    How do I go for SSCC(Serial Shipping Container Code) thorough PI sheet.
    Regards,
    Amol Kale

    Hi,
    can you please explain your business case in more details?
    Do you want to enter SSCC codes during PI Sheet maintenance (by user, via bar code scanner etc.)?
    Greetings
    Uwe

  • Serialized Shipping Container Codes - SSCC use for STO

    Does anyone used labels with Serialized Shipping Container Codes [SSCC] to be used for intercompany  STO's, in order to use scanning of SSCC in receiving plant WM to automate the warehouse process.
    Did you have to use EDI / ASN's in order to accomplish this? or how did you do it?
    My client wants to receive and use the same label [on the pallet in the receiving plant WM, since they will be full pallets going to SU managed Storage types.
    Did you accomplish the same any other way. Please Help/explain.  Regards!

    Hello again,
    ok, meanwhile I have found all the answers myself:
    - Several iDoc-types can be used, e.g. DELVRY05.
    - The Idoc-field to be used is EXIDV in segment E1EDL37.
    - The field in the delivery is EXIDV in table VEKP.
    Just in case someone needs this...

  • Serial number contains letters

    When I try to request a free Windows 7 upgrade, Lenovo's form requests a serial number. I click on the link to the instructions on how to find the s/n and follow them. The serial number contains both letters and digits. However, the form complains that the s/n must  contain only digits. What's up ?
    Thanks,
    Jean-Louis

    Does it begin with 1057? If not, it's a redemption code. In which case, see here:
    Redemption Code Help
    If it is a serial number, go to system preferences>security & privacy>firewall>firewall options and be sure that PSE is allowed to call out.

  • What is wrong in this java code?

    Can someone please tell me what is wrong in this java code?
    /* The program is intended to start animating text at the click of a button, pause it at another click and resume at the next click. It should continue like this */
    import javax.swing.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TextAnime implements Runnable
    JFrame frame;
    boolean flag;
    Thread animeThread;
    JLabel label;
    String[] textArray;
    public TextAnime()
    flag = false;
    animeThread = new Thread(this);
    frame = new JFrame("Animate Text");
    GridBagLayout gbl = new GridBagLayout();
    GridBagConstraints gbc = new GridBagConstraints();
    frame.setLayout(gbl);
    JButton button = new JButton("Start");
    label = new JLabel("Stopped");
    textArray = new String[5];
    String textArray1[] = {"Programmer", "SportsMan", "Genius", "Friend", "Knowledgable"};
    for(int ctr = 0; ctr<5 ; ctr++)
    textArray[ctr] = textArray1[ctr];
    gbc.weightx = 1;
    gbc.gridx = 0;
    gbl.setConstraints(button,gbc);
    frame.getContentPane().add(button);
    ButList bl = new ButList();
    button.addActionListener(bl);
    gbc.gridx = 1;
    gbl.setConstraints(label,gbc);
    frame.getContentPane().add(label);
    frame.setSize(200,150);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS E);
    frame.setVisible(true);
    public class ButList implements ActionListener
    public void actionPerformed(ActionEvent evt)
    if(flag == false)
    flag = true;
    animeStart();
    else
    flag = false;
    //animeStop();
    public synchronized void animeStart()
    animeThread.start();
    Thread newThread;
    newThread = Thread.currentThread();
    newThread.notify();
    public void animeStop()
    animeThread.interrupt();
    public void run()
    int i = 0;
    try
    while(i == i)
    if(i==5)
    i=0;
    label.setText(textArray);
    animeThread.sleep(1000);
    i++;
    if (flag == false)
    animeThread.wait();
    catch(InterruptedException ie)
    label.setText("Stopped");
    public static void main(String args[])
    TextAnime ta = new TextAnime();
    Please tell me if this can be written in a more simpler manner. Also please correct this code. I am tired after trying many times.

    When I fix your error, compile and run it, I get this exception:
    Exception in thread "AWT-EventQueue-0" java.lang.IllegalMonitorStateException
         at java.lang.Object.notify(Native Method)
         at cruft.TextAnime.animeStart(TextAnime.java:81)
         at cruft.TextAnime$ButList.actionPerformed(TextAnime.java:63)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    %

  • Please tell me what is the problem with this code

    Hai,
    Iam new to Swings. can any one tell what is the problem with this code. I cant see those controls on the frame. please give me the suggestions.
    I got the frame ,but the controls are not.
    this is the code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ex2 extends JFrame
    JButton b1;
    JLabel l1,l2;
    JPanel p1,p2;
    JTextField tf1;
    JPasswordField tf2;
    public ex2()
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setTitle("Another example");
    setSize(500,500);
    setVisible(true);
    b1=new JButton(" ok ");
    p1=new JPanel();
    p1.setLayout(new GridLayout(2,2));
    p2=new JPanel();
    p2.setLayout(new BorderLayout());
    l1=new JLabel("Name :");
    l2=new JLabel("Password:");
    tf1=new JTextField(15);
    tf2=new JPasswordField(15);
    Container con=getContentPane();
    con.add(p1);
    con.add(p2);
    public static void createAndShowGUI()
    ex2.setDefaultLookAndFeelDecorated(true);
    public static void main(String ar[])
    createAndShowGUI();
    new ex2();
    }

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ex2 extends JFrame
        JButton b1;
        JLabel l1,l2;
        JPanel p1,p2;
        JTextField tf1;
        JPasswordField tf2;
        public ex2()
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setTitle("Another example");
            b1=new JButton(" ok ");
            p1=new JPanel();
            p1.add(b1);
            p2=new JPanel();
            p2.setLayout(new GridLayout(2,2));
            l1=new JLabel("Name :");
            l2=new JLabel("Password:");
            tf1=new JTextField(15);
            tf2=new JPasswordField(15);
            p2.add(l1);
            p2.add(tf1);
            p2.add(l2);
            p2.add(tf2);
            Container con=getContentPane();
            con.add(p1, BorderLayout.NORTH);
            con.add(p2, BorderLayout.CENTER);
            pack();
            setVisible(true);
        public static void createAndShowGUI()
            ex2.setDefaultLookAndFeelDecorated(true);
        public static void main(String ar[])
            createAndShowGUI();
            new ex2();
    }

  • What does the recovery CD contain - Satellite A100-847

    Hello guys
    I had a few questions about the recovery CD:
    1- What does the recovery CD contain? and the other CD which is called Media something?
    2- Does it have Windows in it? So I can format my PC using it? And from where can i find the product key (windows key)
    3- What if i wanted to use the CD without formatting? etc. installing the softwares?
    Sorry for asking too much but my laptop started disturbing me. Just for knowledge my Laptop is satellite A100-847

    Hello
    I will try to answer your question.
    1 Recovery media contains recovery image. Recovery image is a kind of package that contains operating system, all necessary drivers, Toshiba tools and utilities and some additional software like WinDVD or Norton antivir application. Media something is not known to me. Maybe exact description can help.
    2 Yes it has Windows OS. Yes you can format your notebook using it. You do not need product key. Just install it.
    3 I do not know what you mean. The fact is that HDD will be formatted before you start recovery installation. Be sure all your important data are saved on some external device.
    Bye

  • When I see the usage on my iPod touch 4 they have categories for how much space is being used where. What does the "other" category contain? Like what could I delete on my iPod to get rid of the "other" category?

    when I see the usage on my iPod touch 4 they have categories for how much space is being used where. What does the "other" category contain? Like what could I delete on my iPod to get rid of the "other" category?

    What is the Other on my iPhone and How to Remove It
    An "other" larger than about 1 1/2 GB usually indicates that the "other" includes corrupted files.
    First try:
    "First you go settings/general/usage/music/then left swipe over music and press delete and you would think it deletes your music but it doesn't instead it deletes your other but make sure your ipod is connected to a computer while doing this"
    as recommended by:
    How do I get rid of "other" storage: Apple Support Communities
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • What are the difference in transaction codes in 4.6 C and ECC 6.0 HCM syste

    Hi
    What are the difference in transaction codes in 4.6 C and ECC 6.0 in HCM SAP.
    Regards,
    Sanjay

    Believe there will not be any change in Tcodes.
    check these links
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://www.sap.com/solutions/business-suite/erp/pdf/BWP_ERP2006_Upgrade.pdf
    http://service.sap.com/releasenotes
    http://service.sap.com/upgrade for functional
    https://websmp105.sap-ag.de/upgrade

  • What's wrong with the following code?

    What's wrong with the following code?
    Circle cir1;
    double rad = cir1.radius

    The circle Object was never instantiated.
    In other words, you have set a declaring of a Circle, but it has not been created in memory yet.
    You will create it using the " = new Circle( PARAMETERS_HERE ); "
    Or some other method that returns a circle.

  • What's wrong with this simple code?

    What's wrong with this simple code? Complier points out that
    1. a '{' is expected at line6;
    2. Statement expected at the line which PI is declared;
    3. Type expected at "System.out.println("Demostrating PI");"
    However, I can't figure out them. Please help. Thanks.
    Here is the code:
    import java.util.*;
    public class DebugTwo3
    // This class demonstrates some math methods
    public static void main(String args[])
              public static final double PI = 3.14159;
              double radius = 2.00;
              double area;
              double roundArea;
              System.out.println("Demonstrating PI");
              area = PI * radius * radius;
              System.out.println("area is " + area);
              roundArea = Math.round(area);
              System.out.println("Rounded area is " + roundArea);

    Change your code to this:
    import java.util.*;
    public class DebugTwo3
         public static final double PI = 3.14159;
         public static void main(String args[])
              double radius = 2.00;
              double area;
              double roundArea;
              System.out.println("Demonstrating PI");
              area = PI * radius * radius;
              System.out.println("area is " + area);
              roundArea = Math.round(area);
              System.out.println("Rounded area is " + roundArea);
    Klint

  • What is my serial number. the original version?

    what is my serial number?  The original version? the most recent upgrade?  for photoshop.

    Is it requesting your qualifying serial number?  If so then please input the serial number from the product you are upgrading from.

  • What´s wrong in my HTML code

    What´s wrong in my HTML code? I've developed a site that doesn't show up properly when using Safari. Could some expert tell med what errors we've made. Have a look at
    www.scandinaviandesigncenter.com
    We promise to send the person who helps us to fix this a real nice Scandinavian design present as a token of appreciations
    B rgds
    Jorgen B --> [email protected]

    Hi, Jorgan, welcome to Apple's user-to-user discussion forums.
    What version of Safari are you using? I am having no problems on any of the pages I have tried using Safari 2.0.3 under OS X 10.4.4. I have only browsed through the site, I have not tried filling out any forms.
    The first place I would look is at the results of putting your pages through the W3C Validator to see if they meet accepted html/xhtml standards. Your Home Page fails with a number of errors listed. Safari is one of the least forgiving of browsers when it comes to rendering non-standard, bad, or incorrect coding of web pages.
    1 Ghz 15 inch PowerBook G4 Mac OS X (10.4.4) 1984 Macintosh

  • Hi All, I have two questions. First of all my CS3 is saying that it is installed on more than one machine, is there a way of seeing what machines my serial number is registered to? If i want to buy another CS3 serial number how do i go about it? I cannot

    Hi All, I have two questions. First of all my CS3 is saying that it is installed on more than one machine, is there a way of seeing what machines my serial number is registered to? If i want to buy another CS3 serial number how do i go about it? I cannot afford to move to the creative cloud.....

    there's no way for you to identify which machines have or had cs3 activated, and you can no longer purchase a cs3 license from adobe.
    you can request an activation count reset (Contact Customer Care) and deactivate your cs3 on all your computers.  you can then install and activate on up to two computers.

  • What is the Purose of t-code IL06 how to use it....

    hi
    what is the purpose of T-code IL06 AND  how to use it
    regards
    ganesh

    Hi
    refer the following thread
    Plant Maint  t-code IL06
    regards
    thyagarajan

Maybe you are looking for

  • SQL Developer 2.1 no longer allows to edit another granted schemas

    Hello, Just switched from 1.5.5 to 2.1 and going back! In 1.5.5 I was able to logon as me (developer) and edit functions of batch schemas. Guess what! Not any more in 2.1!! Even if my priviliges allows me to do this!! Any ideas how to bypass this pro

  • Iweb photo effect

    Hello, I would like to recreate the same effect as on the photo albums produced by iweb. See here for example http://chalottepulver.de/FallWinter2010.html Is there a software that can easily make this effect ? Thanks,

  • Operation GCY

    Hi All I am trying to understand the syntax for operation GCY.  Please help me understand the following rule. /ZC0      ZERO=&T032 (I guess the syntax(?) to use VARIABLES is & followed by the last three character of the wagtype?)      ZERO=&R032 (Wha

  • Arabic PDf converting

    can i use acrobate x pro to convert arabic PDF to word file without loosing the original format

  • Photoshop Elements 7 to iphoto 11 conversion?

    I'm onsidering switching to iMac from PC (Vista).  I have all my photos organized (tagged) in Photoshop Elements 7.  Will I be able to transfer them, with the corresponding tags into iphoto 11?