I just do not very understand..Why inbound ASN would do PGI??

Hi,
Inbound Delivery doesnt meas that the Goods should be received into the warehouse? Why matters with the PGI????
I have read an document which describe an Function Module how to processing an Inbound ASN IDOC.
     The function module has to carry out the following:
1.     GR against the SAP PO
2.     Packing for the Delivery Order
3.     Update the serial numbers/ Asset Tag ID
4.     PGI
Why step 4. PGI also needs to be carried out?????
Thanks!!

Hi Sail,
Thanks, but i know that is outbound Delivery processing to ship the goods out..
But in my case, they are handling with the inbound ASN processing delivery...It's kind of inbound processing...Should be PGR, why PGI at the end for inbound ASN processing??
Thanks

Similar Messages

  • How much ram can I add to my late 2008 MacBook Pro? I run Mavericks and just got a new inexpensive hard drive. RAM is not very expensive so Thought I would bump it up from the current 2MB of 1067 Mhz DDr3

    How much ram can I add to my late 2008 MacBook Pro? I run Mavericks and just got a new inexpensive hard drive. RAM is not very expensive so Thought I would bump it up from the current 2MB of 1067 Mhz DDr3

    Maximum Memory
    8.0 GB (Actual) 4.0 GB (Apple)
    Memory Slots
    2 - 204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMM

  • TS1702 Tried downloading F-Keys by MTB Development Utilities for my IPad but it won't load. Not very computer literate, any help would be appreciated.

    I tried downloading F-Keys by MTB Development Utilities for my IPad but it won't load. Not very computer literate, any help would be greatly appreciated.

    You'll need to provide some specifics before anyone can help you.  Simply saying it "won't load" tells us nothing.

  • Multithreadded applet just will not die. Why?

    Hi!
    The applet code is below. In short, it
    has four classes:
    Mulka - a simple graphic object to draw (basically
    a cross)
    DaThing - a Thread class which draws many many
    Mulkas
    AnotherThing - a thread class which draws a
    string on top of mulkas.
    And, of course, the main applet class.
    The main applet class create two objects: one
    instance of DaThing and on instance of
    AnotherThing then starts them both. So, they
    are drawing at the same time. After that
    the applet does not do a thing. However, it
    handles mouseDown event and if the mouse
    got down 5 times the applet stops the
    threads and stops itself.
    The problem is that IT DOES stop the
    threads but continues to execute itself, so,
    clicking the mouse will still draw a box and
    repaint the applet graphics area. Why is that?
    How do i completely stop the applet?
    Regards,
    Artem
    import java.applet.*;
    import java.awt.*;
    import java.util.*;
    // graphics object to draw
    public class Mulka {
           private int x,y;
           private int hx,hy;
           private final int width=16;
           private final int height=16;
           private Color bgcolor;
           private Color color;
           public void setcolor (Color c){
                  color=c;
           public void setxy(int x, int y) {
                  this.x=x;
                  this.y=y;
           public void sethotspot(int x, int y) {
                  hx=x;
                  hy=y;
           public void setbgcolor (Color c){
                  bgcolor=c;
           public void draw(Graphics g) {
                  // a simple cross
                  g.setColor(color);
                  g.drawLine(x+hx,y+hy,x+width-1+hx,y+height-1+hy);
                  g.drawLine(x+width-1+hx,y+hy,x+hx,y+height-1+hy);
           public void undraw(Graphics g) {
                  g.setColor(bgcolor);
                  g.drawLine(x+hx,y+hy,x+width-1+hx,y+height-1+hy);
                  g.drawLine(x+width-1+hx,y+hy,x+hx,y+height-1+hy);
           public Mulka (int x, int y){
                  hx=0;
                  hy=0;
                  color=Color.black;
                  bgcolor=Color.white;
                  this.x=x;
                  this.y=y;
           public Mulka (){
                  hx=0;
                  hy=0;
                  color=Color.black;
                  bgcolor=Color.white;
                  this.x=0;
                  this.y=0;
    public class AnotherThing extends Thread {
           Graphics g = null;
           String text;
           AnotherThing (String name){
                        super(name);
                        text=name;
           public void setg (Graphics g){
                  this.g=g;
           public void run (){
                  Random rand = new Random();
                  while (true){
                        try{
                            g.setColor(                                      new Color(
                                               (int)(rand.nextFloat()*255),
                                               (int)(rand.nextFloat()*255),
                                               (int)(rand.nextFloat()*255)
                            g.drawString(text,50+(int)(rand.nextFloat()*5),50);
                        catch(InterruptedException e) {
                          this.stop();
    public class DaThing extends Thread {
           Graphics g = null;
           Mulka mulkas[] = new Mulka[10];
           String text;
           DaThing (String name){
                        super(name);
                        text=name;
           public void setg (Graphics g){
                  this.g=g;
           public void run (){
                  int i;
                  Random rand=new Random();
                  while(true){
                              try{
                                for (i=0;i<10;i++){
                                    mulkas=new Mulka();
    mulkas[i].setxy(
    (int)(rand.nextFloat()*300),
    (int)(rand.nextFloat()*200));
    mulkas[i].setcolor(
    new Color(
    (int)(rand.nextFloat()*255),
    (int)(rand.nextFloat()*255),
    (int)(rand.nextFloat()*255)
    for (i=0;i<10;i++){
    mulkas[i].draw(g);
    catch(InterruptedException e) {
    this.stop();
    public class OffScreen extends Applet {
    DaThing draw_thread = null;
    AnotherThing thing= null;
    int waitforclicks=5;
    public void init () {
    System.out.println("Applet inited");
    waitforclicks=5;
    resize(320,240);
    public void start() {
    System.out.println("Applet started");
    if (draw_thread == null){
    draw_thread = new DaThing("First thread");
    draw_thread.setg(getGraphics());
    draw_thread.start();
    if (thing == null){
    thing = new AnotherThing("Another thread");
    thing.setg(getGraphics());
    thing.start();
    public void stop() {
    if (draw_thread != null){
    draw_thread.stop();
    draw_thread=null;
    if (thing != null){
    thing.stop();
    thing=null;
    System.out.println("Applet finished");
    public boolean mouseDown(Event evt, int x, int y){
    Graphics g=getGraphics();
    System.out.println("Clicked mouse");
    g.fillRect(x,y,50,50);
    repaint();
    waitforclicks--;
    if (waitforclicks<1){
    System.out.println("This was the last click");
    stop();
    return true;

    Thanks for replies.
    As for exit then I think is should be done like
    Runtime rt=getRuntime();
    rt.exit(0);But it works only in debugger :( In a browser exit()
    is just ignored.
    So, basically, the only way to at least emulate
    visually the death of an applet i should do something
    like below (notice the isActive flag). Is it so?
    import java.applet.*;
    import java.awt.*;
    import java.lang.*;
    public class DieTest extends Applet {
           int count=5;
           int x=0;
           boolean isActive=true;
           public void init() {
                  System.out.println("Applet inited");
           public void stop() {
                  System.out.println("Applet Stopped");
           public boolean mouseDown(Event evt, int x, int y){
                  Runtime a = Runtime.getRuntime();
                  Graphics g=getGraphics();
                  if (isActive==true){
                     count--;
                     System.out.println("Clicked mouse: "+x);
                     g.drawString(count+"",x,y);
                     if (count<1){
                        System.out.println("Clicked last time");
                        stop();
                        isActive=false;
                  return true;
    }

  • I have a single song that is on my iPod Classic 7 but the artist does not appear and under "artists" in the music it doesn't appear, nor does it in albums. All the information on the song is correct the artist just will not appear. Why is this?

    All the information is correct and filled correctly, I have chacked seven times, but it still will not appear, why?

    Any funny characters in the artist or album names? I take it that it is not hiding for the reasons given in Missing Artist or Album not with others by same artist? Sort fields can sometimes cause items to be listed in a different place within the list. Can you find it using search on the device?
    tt2

  • Sound NOT Very Loud-why?

    I love my new MacBook. However, they put the 2 speakers in the back facing out and the sound volume is VERY low. Watched a DVD in my lap with the volume all the way up and could hardly hear the movie. Everything is hard to hear on this machine. Don't know if it's the location of the speakers or not. Of course I didn't buy it for the sound BUT I never have had a laptop this hard to hear before.

    I think quite a number of people, myself included, are having this problem. I sincerely hope Apple fixes this - and soon. My previous computer, a Powerbook G4 15", would never win any awards for fidelity but it was plenty loud enough.
    In all environments other than a quite room, the volume on my machine, even set to near maximum, is not acceptable.
    Macbook 1.83 Ghz - 2 Gig RAM   Mac OS X (10.4.6)  

  • HT4623 i updated my IOS on my i[hone and now i cannot use my iphone again. i just dont understand why u guys would make something to add more problems to users

    My iphone is not working anymore, I cannot see anything i once had on it after uodating it via itune when connecting it to my laptop.
    If I had known, i would never have downloaded the update.
    You guys are causing more problem than help.
    Guess its time for me to go and buy samsung. You guys are making your product more difficult to use and causing more harm than good. How can I get back all my data now?

    If you are so unhappy, leave. No one here cares.
    There are no Apple employees here, we are all users like yourself.
    Now if you would like to drop the attitude and clearly explain the issue that is occurring, we will do our best to help get the device functional again.

  • I have been billed for services I did not buy or I did not fully understand that how I would be billed.

    I have been billed some USD 5,000 worth of credit card bill. It was by itune app's. Most are because of my son's games, which I was thought it was $.99 a piece, but before I know it, I have chalked up thousands of dollar in credit card. I cannot believe it.
    I have a very different understanding of what update means. I thought update was free, because I already pay for the original app. It turns out the update is sometimes $10.00, without me knowing. I also found out app that I have already deleted still charge me by the monthly basis.
    This is getting out of hand. I have to make a report but I did not know how. I felt I was sucked into a hole by iPad. iPad is a good device, but this model has been absued. Consumers should not be punished by all these merchants.
    EH

    See Here for
    iTunes Customer Service Contact
    http://www.apple.com/support/itunes/contact.html

  • The photos that I better (improves automatic) are saved on the iphone, but when I transfer them to my PC improvements appear no more, only on iphone. I do not understand why the improvements are just the iphone, and not continue when I transfer the photos

    The photos that I better (improves automatic) are saved on the iphone, but when I transfer them to my PC improvements appear no more, only on iphone. I do not understand why the improvements are just the iphone, and not continue when I transfer the photos to my PC.
    Thanks.

    Chicky, I have searched my computer for "iPod Photo Cache" and 51 folders pop up, plus 3 files (iPodInfo.plist, Photo Database and Image DB Temp.tmp). How do I know which to delete and which to keep? The Apple website page tackling this issue doesn't go into any detail. Thanks yet again.

  • I want to use QuickBooks for my very snmall bussinesso the recommendation from my accountant was QuickBooks (Windows). I just do not understand enough to decide whether to buy QuickBooks for Apple or Windows and use it in the Parallels world?

    I want to use QuickBooks for my very small bussiness, the recommendation from my accountant was QuickBooks (Windows). I just do not understand enough to decide whether to buy QuickBooks for Apple or Windows and use it in the Parallels world?

    QuickBooks for Mac has been available again since at least 2004 (Intuit before that had done nothing with it for years). The current version is QB for Mac 2014. It's pretty much the same price no matter where you look.
    The Mac version data is not directly compatible with the Windows version. Sending your data out to your business tax accountant and getting it back in is not at all easy. It's such a pain, our accountant comes here to finalize the books at year end.
    There is still also a lot of Windows features for QB Pro which have never been added to the Mac version. They're all on the higher end side that larger businesses would need. I've never run into anything with the Mac version I couldn't do.
    If your accountant wants ease of data transfer, then you'd be better off purchasing Snow Leopard Server and run that in Parallels. Then run the Windows version of QB in that.

  • I have an ipad 2, ios7 will not download. I keep getting an error message that just tells me ios wont install, however it does not tell me why. Any suggestions? Thanks

    I have an ipad 2, ios7 will not download. I keep getting an error message that just tells me ios wont install, however it does not tell me why. Any suggestions? Thanks

    I find the Air easier to work with if I need a keyboard if, for no other reason, that's more compact to carry around than the iPad and a keyboard, even one that is part of an iPad case.  I also often have to access data from one application when using another, and iOS is not at its best when having to do rapid application switching (Command-Tab switching is a lot faster than the double press home, scroll the icons at the bottom and swap).
    As well, for editing I find the lack of sandboxing on OSX allows for efficiency enhancing utilities across applications, something you don't get in iOS.  I understand the reason for that, but while more secure it also creates issues of its own in terms of usability in a number of situations.
    I prefer the iPad for totally single application focused situations where little or no input is required.  I use my iPad to hold copies of manuals when I'm doing a full day continuing education presentation for CPAs.  A MacBook Aire can't really fill in very easily for that usage.
    I see them each as tools appropriate for different jobs.

  • In the attached VI I dont understand why data from the inner case structures are not being transmitted to the array.

    In the attached VI I don't understand why data from the inner case structures are not being transmitted to the array.
    Thank you.
    Solved!
    Go to Solution.
    Attachments:
    TEMP.vi ‏25 KB

    It took me some time to figure what you are trying to do but I think I have it now.
    The SR is still required.
    What is happening is your "Bundle By Name" is replacing all of the fields of the cluster, not just the value coming out of the case structure. So to maintain the cluster stuff you do in earlier iterations you can either...
    1) Put the "Index array, Bundle by name, and Replace array" inside the case structure and ONLY bundle the value you are setting in that iteration. (as you will see Tim post shortly)
    OR
    2) Move the Index array before the Case, unbundle all of the fields and feed teh case structure and run them across the case so that ALL of your output tunnels come from the coresponding input tunnel EXCEPT for the filed you are trying to set.
    Ben
    Message Edited by Ben on 05-05-2010 01:31 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still emtire days are missing...

    Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still entire days are missing...

    I noticed an entire series of its always sunny in philadelphia is missing from my apple tv "purchased" section where i can stream it directly from itunes...I just purchased the new season and not showing at all

  • Why cant apple track my stolen iphone if it connects to the internet after reset. the IMEI number stays the same so i dont understand why they just dont shut it off and call me and the police to inform me about the whereabouts of the phone

    Hi, my iphone was stolen around a month ago. After the phone popped up on find my iphone in central london the police decided to be really helpful and instead going to get it they closed my case. Since then it has been offline because the "lovely" individual who stole it obviously reset it. I was just wondering why doesnt apple track phones through the IMEI number. The number stays the same, so if the phone connects to the network they should be able to know that its my stolen iphone. I just dont understand why they dont do that. They have a huge ecosystem, and if someone signs in to my iphone with their itunes account (which they pretty much have to in order to use most of the phones features) the IMEI number gets associated with that perticular account. Would it not be possible for them to realize that its my stolen phone?
    Thanks to anyone that answers.

    Your carrier can lock the IMEI number, try contacting them. At least you'll have the satifsaction of knowing the theif can't use it anymore. My guess is Apple doesn't block IMEI numbers because they don't want someone selling a phone without record, and then reporting it stolen and causing problems that way. But that's just a guess, I feel for ya. Good luck either way, if it's a locked phone you should be able to call the carrier it's locked to and have the IMEI blocked.

  • MacBook stuck with shift key enabled and numbers not working - even the keyboard app in languages wont type lowercase nor numbers?!  Anyone know whats up?  no spillage...cant understand why the keyboard app wont do anything.

    Anyone have a clue?  I can understand the keyboard being broke / shift key being stuck but why in the world would I not be able to type the numbers on the language keyboard app on the operating system?  Numbers show up on the app but when I press them I still get the special characters like #^&#* and it wont type lower case. Nothing has ever been spilt, just stopped working one day.  Rebooted from Time Capsule restore dated a month ago and its still doing it. (problem started two weeks ago).  Only way to get lower case or numbers to actually show up is the copy and paste.
    Any help would be amazing!
    Details on computer:  13 inch MacBook6, 1  (Late 2009) / Intel Core 2 DUO /  2.26GHZ / 2GB /  Memory running Mac OS X Lion 10.7.5

    If you can afford it, I would recommend replacing the topcase and keyboard as Apple suggests. If like me, you can't afford it or are open to a hack fix, then read on.
    The problem
    Yesterday, a little water spilt on my 13" MBP keyboard. I turned it around immediately, drained out the water and used tissue to suck it all up but the keyboard was still acting funny. I turned it off and left it out in the sun for a couple of hours and turned it on again but problems remained. Like Rickdubya, my warranty had run out just a month ago and I knew Apple would not cover this under warranty. I tried to clean the shift keys and left it overnight with some rice on them with hopes that the moisture might get sucked out. Nothing worked. (The rice bit is an urban legend that seems to work with some electronics). Went to the Apple Store this morning and was told that they wouldn't even take out the key and clean it, and that the entire top case would have to be replaced. A total bill of 156 Euros which I cannot afford. I had a USB keyboard that would let me use the Mac for the moment so I decided to try to work out a fix.
    Symptoms
    - Boots in safe mode everytime (which I later found out was because the shift key is pressed)
    - Cannot login because password is in lower case or has numbers
    - Cannot boot in super user mode and try to disable keys or override password as some commands won't work in uppercase (I wouldn't recommend this anyway because its super user mode)
    - All text is in caps and numbers are symbols as though shift key is always pressed
    - Audio doesn't work
    - Keyboard viewer would not always show the shift key pressed. The key seemed to get pressed at random
    Fix
    1. Hold the Option button down on boot to bypass the Safe Mode ensure a normal boot
    2. At the login screen, plug in a USB keyboard and enter your password to login
    3. Change your password to one that uses all caps and no numbers
    4. Download and install KeyRemap4MacBook .
    5. Use a combination of the functionalities of the Keyboard Viewer and KeyRemap4MacBook to figure out which shift key is the problem. In my case, I found out that it was only my left shift key.
    6. Disable the left/right shift key on KeyRemap4MacBook and click on the 'Reload XML' button to make that take effect.
    If only one shift key was the problem, then you are done. If both shift keys were shorted, then its likely other keys are too. In which case you should probably just replace the entire thing. If you think other keys are not affected, then you can use KeyRemap4MacBook itself to remap the shift functionality to a lesser used key like the Left Option key.
    7. Under System Preferences > Users & Groups > Login Items , add KeyRemap4MacBook as an application that should start on login. This will ensure that your disable/remap of the shift key is active everytime you login.
    Usage change/Things to remember
    1. Remember to hold down the Option key everytime the computer boots or reboots to bypass safe mode. The fix above is at the software level. The key is physically still shorted at the hardware level and will affect boot.
    2. Remember that at the login screen, the disable/remap is not active. So your password now has to be all caps and only letters.
    As soon as I can save some money, I will get my topcase and keyboard replaced but until then this solution works great with minimal change. Hope this helps!

Maybe you are looking for