Question on posting change

For a movement type 3XX (posting change), can someone explain procedure :
If I make a posting change from "Q" status to "Un-restricted" I want material to go to storage Type XXX
If I make a posting change from "Q" status to "blocked" I want the material to go to storage Type YYY (different from storage type for put away for "un-restricted" stock) using the same movement type 3XX
Can someone please help me with this scenario as soon as possible
Thanks in advance

Please check all relevant settings which you do when new storage type you create & want to do putaway in that storage type. It starts from storage type creation to creating bins,search,storage type indicator etc.
I already done this kind of prototype.
What error you are getting ? 
Regards,
Prashant

Similar Messages

  • Issue with posting change note processing using movement type 309

    while processing Posting change note using transaction LT05, i am getting error 'Available quantity is less than selected quantity'. we need the quantity in posting change note to be picked from same storage bin from where it has been picked during transfer posting using 309. currently, it is showing all storage bins in ascending order for selection while Posting change note posting.
    if we reqwhile mass porcessing of Posting change note using LSMW, it pickes the 1st storage bin. if 1st storage bin quantity is less than selected quantity of PCN then it is showing above error.

    Hi Vishal,
                      The materials are managed by batch? Please check the batches of the material in the different storage bins. SAP asign the storage bin taking into account the material batch number and the oldest quant.
    When the storage bin is not indicated, SAP looks at the batch number, and goes to the storage bin where this batch for the material is allocated. If SAP find more than one storage bin, SAP consumes from the batch that has the oldest quant.
    I really dont understand deeply your question.
    Hope it helps.
    Regards
    Enzo

  • Immediate TO for posting change

    Hi,
    Is it possible to have immediate TO for posting change?
    I have done the following setting in LE-WM Interface to Inventory Management: Assigned the reference movement to WM movement and checked the indicator for Create transfer order immediately -A.
    I am able to manually convert the psoting change notice -> TO without any error. The system also works fine in case of Automatic TO. However the system does not create TO's immediately.
    I have one  more question: During Automatic / Immediate TO creation, how does the system know the affected stock? For ex.
    In case of transfer posting using 321, how will the system  select the source?
    Regards
    Deepak

    Hi,
    I think the following may apply to your issue.
    When you post a material document in IM, and movement types both "with" and "without" automatic transfer order creation exist in that document, the system does not start the automatic transfer order creation program.
    Check out this link: http://help.sap.com/saphelp_47x200/helpdata/en/c6/f85c504afa11d182b90000e829fbfe/frameset.htm

  • Storage bin available when posting change is not confirmed completely

    Dear Gurus, I have a question for you:
    My costumer wants to do a posting change when the material is released from QM with a decision usage from Q to unrestricted use. The process is done in two steps: with LU04 the TO is generated and with LT12 is confirmed. When the TO is generated the position is half confirmed. With LT21 we can see the row for the ST (lets say ST 504 Open Storage type) and a second row 922 TR-ZONE. The first row appears green (as confirmed) and the second row appears red (Not confirmed).
    My costumer says that " beacause of the strategy given for the storage entry, the storage bin released in the TO (not confirmed completely yet)   is available at this moment.
    If the storage bin is still physically full, the carrier will found not space for leaving the goods even SAP is telling him there is space available at this storage bin."
    I have read that once yo start a TO the storage bin is blocked until the transaction is fully confirmed.
    If this is correct I need to demostrate it and I don not find the way to do it.
    I hope you understand my explanation and give me any clue.
    I appreciate very much some help.
    Al

    agmogena wrote:
    Ok, I will tell you the configuration I have. Lets point in a movement 921 quality to unrestricted use.
    > Type Storage origin: 902  EQ and RC flags are set on. (confirmation control for storage type)
    > Type storage TR: 922 are set on.
    >
    > Movement type 921 the flags for Confirm immed and Propose confirm are NOT set.
    >
    > I do a LU01 to create a intruction to change a material from Q to Unrestricted.
    > with LT05 I create the TO.
    > At this time if I look LT21 the TO created I see the tag source with two positions one for TS 902 green color and the second 922 in red.
    > For the tag of target We can see the first position 922 In red and the second position 902 in green color.
    >
    > Perhaps this detailed explanation will help you to fully understand the scenario.
    >
    > Thank you again,
    >
    > Al.
    From the above it isn't entirly clear that the first part of the T.O. is actualy confirmed, my settings are to autoconfirm this so I have no example to look at in my system. Perhaps the display shows the first line green before any actual confirmation..
    I assume the stock status has not changed when you first view the T.O.? If the t.o. is partly confirmed I would expect to see the stock status changed and a neg in 922 until the second part is confirmed. Perhaps there is no confirmation at all yet, in LT21 what is the confirmation status? If you view the transfer order header there would be a partial confirmation showing with a yellow triangle, do you see this or no confirmation indicated at all?

  • Clearing posting change notices

    Hi All,
    I'm trying to close out posting change notices manually by marking the status as U through LU02. Not able to create TO and clear this as the stock is no longer available and these are very old ones.
    The problem is that the source and destination data are the same and its throwing an error.
    Can you suggest any ways to clear these open posting changes
    Regards,
    Ashwin

    Sap provided corrrection program to clear the posting change notices.Develop this program in your system then check.We are using 4.6c version.
    To set the posting change in question to processed (U), please
    implement the following correction program in your system.
    1) Create program 'ZLTEST00' with type '1' and application 'L' with the
    following code:
    report zltest00.
    tables: lubu.
    parameters: w-no like lubu-lgnum, "warehouse number
    post-no like lubu-ubnum, "posting change notice
    status like lubu-statu, "status
    update. "update
    select single * from lubu where lgnum = w-no
    and ubnum = post-no.
    write: / lubu-lgnum,
    lubu-ubnum,
    'Status old >', lubu-statu,
    'Status new >', status.
    if update ne space.
    update lubu set statu = status
    where lgnum = w-no
    and ubnum = post-no.
    if sy-subrc = 0.
    write: / 'Update posting change notice'.
    else.
    write: / 'No update posting change notice'.
    endif.
    else.
    write: / 'No update posting change notice'.
    endif.
    To run above correction program:
    1) You have to indicate warehouse number, posting change number and the
    status which you want to set in the posting change.
    2) Without including the UPDATE-parameter, the program only shows the
    posting change, or
    3) When you mark the parameter UPDATE then the posting change will be
    changed.

  • Cannot have execute_query in post-change but can have it when-radio-changed

    why is it possible to put execute_query in a when-radio-changed trigger but one cannot put it in
    a post-change or post-text-item trigger? (11.1.1.4)
    For example I want to ask for a year, and a month. I don't much feel like creating radio items for all those years. Whenever a year
    or a month is changed I want it to reconstruct the where clause and execute the query. But the year not being a radio group
    is more problematic about how to get execute_query to run. What is thinking here? I think that a text item post-change deserves as much power as a radio_group change! It's unfair.

    Over the years, I have found that the people that complain about Oracle Forms the most are the people that refuse to learn how Oracle Forms works. You can't expect to develop in a any framework unless you learn the rules of the framework. I've seen numerous complaints about the lack of documentation on Forms and yet the single most important form of documentation is the Oracle Forms Help system. The answer to virtually every question you might have can be found in the Forms help system, but it helps to understand a little about how Forms functions so you can ask the right questions in the help system.
    I also find it hard to understand how an employer will throw someone, with little or no exposure to Oracle Forms, into a Forms project and expect them to "Pick it up" along the way rather than take the time and expense to send them to an Oracle Forms class. How can the employer expect the employee to be successful if they are unwilling to give them the resources they need to be successful. If you are one of the unfortunates that are in this situation, then you could at least perform a simple Google search on "Forms Tutorials" and you will find numerous on-line "Free" tutorials. Don't worry about the Forms version used by these tutorials as you are only going through the tutorial to learn how to create a Form and how the Forms tool interacts with the database; which is doesn't matter which Forms version you are using because this part hasn't changed all that much between the Forms versions.
    There are even some really good books (however, quite old) that you can purchase that teach you all the basics of Oracle Forms. Here are just a few:
    Developing Oracle Forms Applications by Albert Lulushi
    Oracle Forms Developer's Handbook by Albert Lulushi
    Oracle Developer: Advanced Forms and Reports by Peter Koletske
    Programming with Oracle Developer by Matthew BennettThese are just a few books and yes they are all for older versions of Oracle Forms. But the concepts you will learn apply to any Forms version.
    While I admit that it is inconvenient that I can't call a Restricted built-in from certain triggers once you understand the reasons why you can't call Restricted built-ins it make sense why Oracle built their event model the way they did. By calling certain restricted built-ins in a trigger, such as the When-Validate-Item trigger, you could very easily cause an an endless loop to occur in your application. For example, if you were allowed to call the GO_BLOCK or GO_ITEM built-ins from a When-Validate-Item trigger you could cause cascading validation events to occur. While this is not a bad thing in and of itself, but what would happen if I sent the Forms Navigation cursor to go to an item before I had completed my validation logic. The item I sent the cursor too also happens to have validation logic assigned to it that just so happens to send the navigation cursor to the item I just left. Understand, the first item has not yet completed it's validation process and the second item sends the cursor right back the first item - which triggers a new validation event on the first item. Now I've got compounding events in the execution stack and I've put my application into a loop that I will never get out of because I've got validation logic that never completes successfully so the validation event never exits - it just keeps running and running.
    At first, you might say that it is the developers responsibility to ensure this does not happen and the developer should be more careful with their code to prevent this from happening and you would be right. We (developers) are responsible for writing safe code. However, after a while, software manufacturers eventually put restrictions in place because there are enough irresponsible developers out there causing problems and the only way to fix the issue is through the use of framework restrictions.
    Having said that, Oracle Forms has certain restrictions for good reasons. Because you don't understand what those reasons are is not a good reason to complain about the restrictions. Rather, I would hope, that your lack of understanding of a particular framework/methodology would encourage you discover the "Why's" and "How come's" of the framework.
    The simple fact of the matter is you cannot be successful with Oracle Forms unless you learn how to program within the Forms Framework. You can't take C++, Java or any other programming language and apply the rules of programming these languages to Forms. You absolutely must learn how Oracle Forms operates and what the rules are for developing successful Forms applications.
    That's my two cents on the topic. I'm trying to start a flame war; I'm just tired of hearing people complain about Forms just because they don't understand or haven't taken the time to understand how Forms operations and what the rules are for developing within Oracle Forms.
    Sincerely,
    Craig...
    Edited by: CraigB on Aug 2, 2011 12:38 PM

  • Post-change trigger problem

    I have problem with post-change trigger, i'm using Forms 10g
    I have two block, one is database block and the other is non-database block for example A is Nondatabase block and B is Database block, I have written commit_form built-in in Key-Next-Item of a item in B(database) block. When it is getting executed commit_form built-in firing the post-change trigger of a item in A(Non-database) block. I dont know why it is firing and I dont want the post-change trigger to fire (we are not assigning any value to that item in A block during commit_form).
    Can anybody help me on this..
    Regards
    Radha

    when you issue a commit_form, forms will validate all items in all blocks which re not valid at that moment. This also occurs for non-database-block.
    The question is why is the item not valid ? Are you putting something in it in some other trigger? If so, you could explicitly set the itemstate to valid with a
    SET_ITEM_PROPERTY('BLOCK.ITEM', ITEM_IS_VALID, PROPETY_TRUE);btw.. you should not use the POST-CHANGE-trigger for validations etc. its better to use the WHEN-VALIDATE-ITEM-trigger.

  • Details for last question I post

    the original code for last question I post(about the DataInputStream& EOFException) is here, thanks if anyone will bother to read it
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.* ;
    public class MasterMindServer
         public MasterMindServer()
              try{
                   ServerSocket serverSocket=new ServerSocket(8000);
                   Socket socket=serverSocket.accept();
                   HandleAClient thread=new HandleAClient(socket);
                   thread.start();
                   }catch(IOException e){System.out.println("Error:"+e.toString());}
         public static void main(String args[])
              new MasterMindServer();
    //inner class
    class HandleAClient extends Thread
         DataOutputStream out;
         DataInputStream in;
         BufferedReader fromFile;
         private Socket socket;
         String line;
         public HandleAClient(Socket socket)
              this.socket=socket;
         public void run()
              int x,o;
              try{
                     out=new DataOutputStream(socket.getOutputStream());
                   in=new DataInputStream(socket.getInputStream());
                   fromFile=new BufferedReader(new FileReader("colorcode.txt"));
                  while((line=fromFile.readLine())!=null)
                    for(int i=0;i<10;i++)
                      String t=in.readUTF();
                      x=check_column(t);
                       System.out.println(x);
                       o=check_color(t);
                       System.out.println(o);
                       out.writeInt(x);
                       out.writeInt(o);
                       if(x==6) break;
                     out.writeUTF(line);
                   socket.close();
                   System.out.println("close");
             }catch(IOException e){
             System.out.println("Error:"+e.toString());}
         public int check_column(String s)
              String str;
              str=s;
              int count=0;
              for(int i=0;i<6;i++)
                   if(s.charAt(i)==line.charAt(i))
                   count++;
              return count;
         public int check_color(String s)
              String str;
              str=s;
              int count=0;
              for(int i=0;i<6;i++)
                   if((line.indexOf(s.charAt(i))!=-1)&&(line.charAt(i)!=s.charAt(i)))
                   count++;
              return count;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.* ;
    public class MasterMindClient extends JFrame implements MouseListener,ActionListener
      /** Default constructor */
      //keep track of the row (or trial) and column number
      int trial_num, col_now ;
      Socket socket;
      int count[]={5,5,5,5,5,5};
    JPanel A[]  = new JPanel[10];
      JPanel B1[] = new JPanel[10];
      JPanel B2[] = new JPanel[10] ;
      JPanel notice = new JPanel() ;
      JPanel sub_notice = new JPanel();
      JPanel D1, D2 ;
      static JTextField [][]color = new JTextField[10][6] ;
      static JTextField [][]Output = new JTextField[10][2];
      static JTextField [][]Answer = new JTextField[1][6] ;
      static JButton []ok = new JButton[10];  
      JLabel L1 = new JLabel("Click the textfield to change color");
      JLabel L2 , L3, L4 ;
      String colorRange="BCGRYW";
      Color colorName[]={Color.black,Color.cyan,Color.green,Color.red,Color.yellow,Color.white};
      String temp ;
    public MasterMindClient() {
        // initialize
        trial_num = 0;
        col_now = 0;
        //sub_notice is Panel where the heading labels are placed
        sub_notice.setLayout(new GridLayout(1,3)) ;
        L2 = new JLabel("  ") ;
        L3 = new JLabel("X");
        L3.setHorizontalAlignment(JTextField.CENTER);
        L4 = new JLabel("O");
        L4.setHorizontalAlignment(JTextField.CENTER);
        L3.setToolTipText("matching color and column");
        L4.setToolTipText("matching color but not matching column" );
        sub_notice.add(L2);
        sub_notice.add(L3);
        sub_notice.add(L4);
        notice.setLayout(new GridLayout(1,2)) ;
        notice.add(L1) ;
        notice.add(sub_notice) ;
        // Get the content pane of the frame
        Container c = getContentPane();
        // Set GridLayout, 4 rows, 3 columns, and gaps 5 between
        // components horizontally and vertically
        c.setLayout(new GridLayout(12, 1, 5, 5));
        c.add(notice);
         JPanel Display = new JPanel() ;
         Display.setLayout(new GridLayout(1,2,5,5)) ;
       //create a Panel for each row to accept use input
       // color[][] textfield is where the user input
       // Output[][] is where to display the number of X and O
        for (int i = 0; i <= A.length-1 ; i++)
        A[i] = new JPanel() ;
        A.setLayout(new GridLayout(1, 2,10,10));
    B1[i] = new JPanel();
    B1[i].setLayout(new GridLayout(1,6,5,5)) ;
    B2[i] = new JPanel();
    B2[i].setLayout(new GridLayout(1,3,5,5)) ;
    for (int j = 0; j <= color[i].length-1 ; j++)
    color[i][j] = new JTextField() ;
    color[i][j].setHorizontalAlignment(JTextField.CENTER);
    if (i == 0)
    {color[i][j].setEditable(true) ;
    else
    {color[i][j].setEditable(false);
    color[i][j].addMouseListener(this);
    B1[i].add(color[i][j]) ;
    } // j loop
    ok[i] = new JButton("SEND");
    if(i==0)
         ok[i].setEnabled(true);
    else
         ok[i].setEnabled(false);
    ok[i].addActionListener(this);
    B2[i].add(ok[i]) ;
    Output[i][0] = new JTextField();
    Output[i][1] = new JTextField();
    Output[i][0].setEditable(false);
    Output[i][1].setEditable(false);
    Output[i][0].setHorizontalAlignment(JTextField.CENTER);
    Output[i][1].setHorizontalAlignment(JTextField.CENTER);
    B2[i].add(Output[i][0]);
    B2[i].add(Output[i][1]);
    A[i].add(B1[i]);
    A[i].add(B2[i]) ;
    c.add(A[i]) ;
    } //for i loop
    //D panel is where we store the answer[][]
    D1 = new JPanel();
    D1.setLayout(new GridLayout(1,6)) ;
    D2 = new JPanel();
    D2.setLayout(new GridLayout(1,2)) ;
    for (int j = 0; j <= Answer[0].length-1 ; j++)
    Answer[0][j] = new JTextField(0) ;
    Answer[0][j].setHorizontalAlignment(JTextField.CENTER);
    Answer[0][j].setEditable(false) ;
    D1.add(Answer[0][j]) ;
    Display.add(D1) ;
    Display.add(D2) ;
    c.add(Display) ;
    public void runClient()
         try
    {      socket=new Socket("localhost",8000);
    DataInputStream in=new DataInputStream(socket.getInputStream());
    int x=0;
    int o=0;
    try{
    while(true)
         while(trial_num<10)
              x=in.readInt();
              //System.out.println(x);
              Output[trial_num][0].setText(String.valueOf(x));
              o=in.readInt();
              //System.out.println(o);
              Output[trial_num][1].setText(String.valueOf(o));
              for(int i=0;i<6;i++)
              color[trial_num][i].setEnabled(false);
         ok[trial_num].setEnabled(false);
         trial_num++;
         col_now=0;
         if(x==6)
                   JOptionPane.showMessageDialog( null, "Congratulation, you've won the game !! " );
                   //ok[trial_num].setEnabled(false);
    break;
         if(trial_num<10)
         {  for(int i=0;i<6;i++)
              color[trial_num][i].setEditable(true);
              count[i]=5;
         ok[trial_num].setEnabled(true);
         if(x!=6)
         {  JOptionPane.showMessageDialog( null, "sorry you did not win the game");
         temp=in.readUTF();
         System.out.println(temp);
         //temp=in.readUTF();
         //System.out.println("can");
         for(int i=0;i<6;i++)
         System.out.println(i);
         char a=temp.charAt(i);
         int index=colorRange.indexOf(String.valueOf(a));
         Answer[0][i].setBackground(colorName[index]);
         trial_num=0;
         for(int j=0;j<10;j++)
         for(int k=0;k<6;k++)
         color[j][k].setBackground(Color.white);
         for(int j=0;j<10;j++)
         for(int k=0;k<2;k++)
         Output[j][k].setText(null);
         for(int i=0;i<6;i++)
              color[trial_num][i].setEditable(true);
              count[i]=5;
         ok[0].setEnabled(true);
         catch(EOFException em){}
         }catch(IOException ex){
              System.out.println("Error:"+ex.toString());}
    public void mouseClicked(MouseEvent e)
    for(int i=0;i<6;i++)
         if(e.getComponent()==color[trial_num][i])
         {         col_now=i;
         break;
    count[col_now]=(count[col_now]+1)%6;
    color[trial_num][col_now].setBackground(colorName[count[col_now]]);
    public void mouseEntered(MouseEvent e)
    public void mouseExited(MouseEvent e)
    public void mouseReleased(MouseEvent e)
    public void mousePressed(MouseEvent e)
    public void actionPerformed(ActionEvent e)
         try{
              send();
         }catch(IOException et){System.out.println("Error:"+et);}
    public void send()throws IOException
         DataOutputStream out=new DataOutputStream(socket.getOutputStream());
         char cbuf[]=new char[6];
         for(int i=0;i<6;i++)
              cbuf[i]=colorRange.charAt(count[i]);
    System.out.println(cbuf);
         out.writeUTF(new String(cbuf));
    /** Main method */
    public static void main(String[] args) {
    MasterMindClient frame = new MasterMindClient();
    frame.setTitle("Master Mind");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocation(300,300) ;
    frame.setSize(450, 450);
    frame.setVisible(true);
    frame.runClient();
    } // end of class

    I notice that you have several hundred lines of GUI code there. None of them have anything to do with the problem you are trying to solve. So put them all aside and write a SMALL test program that does nothing but the little loop you are having a problem with. Shouldn't be more than 20 lines of code.

  • JClient equivalent post-change trigger and JTextField issue.

    Hi,
    JClient 10.1.2
    What is the equivalent event listener I could use to obtain the forms post-change functionality?
    With following components:
    JTextField
    JComboBox
    JCheckBox
    For example on a JComboBox I would like to display a warning message dialog if a special value has been selected.
    I've tried using itemStateChanged method on a combo box but the message dialog is displayed everytime the row gains currency.
    Should I use focusGained to store the previous value and in the focusLosted method, check for a change?
    What would you recommend?
    One more question on JTextField, what is the method to track "global changes".
    I've tried using the DocumentListener, but the methods changedUpdate,insertUpdate and removedUpdate are fired on each keyboard action.
    Is there a way to track "global changes" on the whole text?
    Thanks
    Frederic

    You can work at setAttribute (Vo or Entity) level.
    You should be carefull, however, because in a cliente server environment it looks like the forms post-change event but in a 3 tier J2EE environment it's a server event and is not possible to interact with the screen in processing that event.
    Any other comment is wellcome.
    Bye
    Tullio

  • WM settings of processing the posting change in the background?

    Hello,
    When WM is active and usage decision is made then posting change is generated in 922 area in WM. We need to process this posting change.
    My question is, how can I make the process automated as follows.
    u201CWhen usage decision is made in quality then, then WM stock will turn in to unrestricted and posting change generation and process should happen in the background.u201D
    What are the related settings of processing the posting change in the background?
    Thanks

    Dear Milind,
    Please have a look at OSS notes nos. 965094 and 566090. As a rule, direct transfer order creation is possible if the posting triggered by the usage decision (to unrestricted use stock, for example) refers to the entire inspection lot quantity.
    Best regards,
    Christiane

  • Posting change quantity less than quantity already posted

    Hello,
    Our customer have a problem on Live system. On transaction LU04 have a
    posting change notice impossible to display, because system provide the
    message number L2 145 'Posting change quantity less than quantity
    already posted'. The Posting Change Number XXXXXX and the
    transfer order is XXXX Is there any way to cancel this TO??It is impossible to do something with that.
    The history is: 321 movement from quality for 5040 un. 3 TO, 2 with 2160 are fine, and the 3rd to sap have generated 2160 un instead of 720 pending.
    Any one had this problem in the past?We are forbidden to change status for PCN from 'T' to 'U'.
    Thanks

    Hi,
    I think you have posted the question in the wrong forum. This is MDM forum.
    Thanks and Regards
    Nitin Jain

  • Two TOs got created for a single Posting Change

    Dear All,
    A material document with movement type 309 got posted in a plant where WM is active.Here the material is moving from one batch to another batch.
    The material document has 100 items.For each item when this movement happens a Posting Change will get created in WM and this will get converted to TO immediately through background job.
    For all the materials except one  this is happening fine, ie if for example if the quantity in the material doc is say 100 PC,then posting change will get created for 100 PC  and this gets converted to single TO with 100 pc
    But for one materal , for a Posting change of qty 90, two TOs got created with same qty ie 90 pcs each.
    Please let me know your thoughts on this.What may be the reasons for this
    Regards
    Shyam

    Dear RK and Arakish,
    Thanks for the replies.
    But i think i need to expalin you the issue in detail.
    Problem Description:
    1) Single Posting change getting converted to two TOs with same quantity each
    2) Unable to go into display mode or change mode of Posting Change because of Error   message. u201CPosting change quantity less than quantity already postedu201D
    Message no. L2145
    Sceanrio:
    Material Document is posted with 309 movement,for moving a single material from single batch to different batches. The material document consists of 140 line items for the same material, but movement happening to 140 different batches.
    For example First line item of the material document corresponds to movement of the material
    From batch 1530040 to batch 71656W01 with quantity 105.438 DIE
    Second line item
    From batch 1530040 to batch 71656W02 with quantity 105.374 DIE
    For each line item, once the movement is posted in IM, corresponding Posting Change get posted in WM with the same Quantity. A background job converts Each Posting Change to single TO with same quantity.
    For example: For the first line item , Posting change 713513 got created with quantity 105.438 DIE which got converted to TO 1057743 with same quantity ie 105.438 DIE
    Issue:
    But only for one line item, the Posting Change with Quantity 90.901 DIE got converted to two TO s of quantity 90.901 each. And the posting change status is Partially Processed
    Because of this, we are not able to go inside the Posting Change neither in the Display mode or Change mode due to the above mentioned error message.
    Please let me know your thoughts on this
    Regards
    Shyam

  • How can I change my original security questions? After changing my AppleID and password, I am not given an opportunity to change my security questions, which I cannot remember the answers to, so I cannot purchase any music.

    How can I change my original security questions? After changing my AppleID and password, I am not given an opportunity to change my security questions, which I cannot remember the answers to, so I cannot purchase any music.

    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service

  • No quants exist for posting changes. Creating TOu00B4s in LU04.

    When creating transfer orders in LU04, we get an error message "No quants exist for posting changes'. We are using batch managed and serialized materials. Using QM interface, so, inspection lots are created at Goods Receipt. When QM team "accepts" batch materials during inspection lot, there is no problem, but when "accepts" serialized materials, the system creates posting changes notices but can not create transfer orders sending the message before described. This is because after receiving the serialized materials, we receive one piece at a time in order to create one inspection lot for every serial number. But when we put away the materials, we put them away in the same bin. so, system assigns one quant and one inspection lot to the bin, updating the last one every time we put away one serial number. When system tries to look for the inspection lot number selected in QA32, is not finding it in the bin at WM level because the bin only contains the last inspection lot that was put it away.
    With batch managed numbers there is no problem since SAP divides the bin in different quants with the correspondent batches assigning an inspection lot to each quant.
    Is there any alternative to solve the issue with the serialized materials? We are using SAP ECC 6.0.
    Thanks for any help.

    Hi,
    The reason why we put away serialized materials into the same bin is because materials are physically small and they fit more than one in each bin. The warehouse is structured in this way and we plan to use it like that because it wouldn´t be feasible to create one bin for each serialized material. Is there any other way to manage this situation?
    Thanks in advance.

  • Transfer Order auto create for Posting Change not working

    Hello Gurus -
    When we release an inspection lot from "Q" status, it creates a posting change notice, and we have it configured to create a TO in the background to the same bin, and auto confirm.  The desired and intended result is to take something from "Q" status to unrestricted status, while keeping it in the same bin - and avoiding the user having to deal with the transfer orders.  Essentially it is seamless and all in the background, the user just sees that he has changed something from quality status to unrestricted.
    It works fine when the entire quantity is selected for the usage decision, but when a partial usage decision is made, the transfer order does not create - and requires processing in LU04 for the posting change.
    Why would this work for an entire qty, but not work for a partial qty - and simply require someone to go in to LU04 and hit "create transfer order" - with no additional information?
    Any help would be most appreciated.  Does it have something to do with a setting of quants?

    Hi,
    In case of a usage decision for a partial quantity, it is not possible to create the Transfer Order for the generated posting change notice automatically. This is only possible when the full quantity is released. The same happens if you release a partial quantity and post the rest to blocked stock or scrap. The reason is, there needs to be a user decision, which part of the quantity has to be posted, this is necessary for example when the quantity is distributed in the warehouse over many storage bins. But even if the full quantity is on one storage bin, there is no automatic TO creation. You can see this also in the online
    processing (LT05), in case of partial quantities you have to enter the selected quantity in the quant list, for a full posting this is not necessary.
    Hope this helps,
    Sinéad Curran

Maybe you are looking for

  • Capturing DVCpro 50 into FCP 5

    I am new to DVCpro50 and 24p and can't, for the life of me, get the deck (Panasonic SD93p) to read in FCP 5. I've got the firewire connected, but neither the computer (G5), nor the deck are registering that there is any sort of connection. Can anyone

  • Duplicates in my iTunes

    I have duplicates in my iTunes. How do I eliminate one copy? Thanks

  • Can't connect to password protected wifi with the correct password.

    So, here's the deal. I have a program on my Mac called Self Control. It's a program that allows you to block all access to either the entire internet or a select amount of websites that you choose from, for a specific time. I had it going today, and

  • Can't connect to/sync using new Server setup

    Hi all, I have set up a new Server and cannot seem to use it to sync, which is its purpose -- requests time out. I also cannot "Connect to server" from the Mac it resides on (suggested troubleshooting step someone gave me). Here's the background: I'm

  • Where can i find a DDTS-100

    does anyone out there know where i can find a DDTS-100 decoder in the us i can't seem to find one anywhere on the internet every site says it is dicontinued does anyone have any INFO?