Display Accounting Doc when posting MIRO

Dear SAP GURUS,
Please teach me how to display the accounting document number when posting an invoice (MIRO).
Invoice document no generated when saving the invoice : 520014152.
I needs to go to MIR4, and click on "Follow-on documents" in order to know the Accounting Document no:5100000416 and the Special purpose ledger no 1002455422.
Can I display the invoice no and the accounting no together at the same time?
Please help.
Thanks.

yes i can at the time of MIRO u can see both
go in SU01 for and user
in Parameters enter IVFIDISPLAY in Parameter ID and X in Paramater Value
thus for that user u will be able to c Invoice number and accounting number after saving MIRo
u will get message like
Invoice document 5105608893 was posted ( Accountng Documnt: 5100000000 )
hope this helps

Similar Messages

  • Substitution of account(HKONT) when posting in MIGO/MIRO

    Issue: Need to change account(HKONT) when posting in MIGO/MIRO
    example:       HKONT(GL Account)       KTOSL(Transaction type)
                   1000000001              XX1
                   1000000002              XX2
                   1000000003              XX3
    If XX3 exist then replace hkont of XX1 to hkont of XX2
    expected result is:
                   1000000002              XX1
                   1000000002              XX2
                   1000000003              XX3
    Solution with problems:
    1. Used substitution GGB1>Financial Account>line item for field HKONT. My problem with this is, since the data is in line item. How can I get the replacement of my account(shown above sample). if BSEG structure only shows 1 line item. I tried using bool_data-bseg. but its empty. Im assuming bool_data is used when callup 003(complete document) is triggered.
    I used subtitution field G/L - Exit <UXXX>
    Any Ideas or solutions would be great!!

    if your Substituion exit is called then you can directly change the value of
    BSEG-HKONT there according to your requirement.

  • Force Accounting Doc when  create  Invoice

    HI all,
      I am unable to create an accounting doc when invoice is created.
    It error :  'Cost Center BB11 3120 does not exist on 10/28/2011'.
    Cost center 3120 does not exist at all.   The invoices has posting status 'Error in Accounting INterface'.   Is there a way i can force the invoice to create the accounting document for this invoice ?
    thanks
    Joyce

    Hi Shiva,
        We go by account assignment.  For this cost element  61530, the Column ' Acct Assgnmnt ' is 3 .
    It has profit ctr of 30, 400, 420 and its cost center.  However, acctg doc seems to point to an invalid cost center for profit center 30.
    Any suggestions ?
    thanks
    Joyce

  • Substitution of account(HKONT) when posting in MIGO

    Issue: Need to change account(HKONT) when posting in MIGO
    After simulation the G/L account is split into tax wise amonts like 2% ecess, 1% hscess 2%cst.
    example: HKONT(GL Account) is display in one g/l account
    g/l account             amount                       posting key
    10030000          5,961.86-                     31
    10030000         50,675.79-                    31
    10030000         2,980.93-                      31
    expected result is:  i need to display like this
    10030000          5,961.86-                     31
    10045000         50,675.79-                    39
    10045000         2,980.93-                      39
    Thanks,
    Sreedhar.

    This is not true.
    If the system generate a FI document, the FI validations and substitutions rules will take place.
    Modification on key fields (like HKONT) by substitution have to be heavily tested because can lead to inconsistency.
    Regards,
    Alexandre

  • Parse and display xml doc when click on JTree node?

    Ok so here is the code that I have now. You will have to make alot of html files to run the program, but they can be empty for now. What you can do is just put the same exact html file to be displayed in each node element. for example.
    DefaultMutableTreeNode n1_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));could be changed to
    DefaultMutableTreeNode n1_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "status.html"));And just keep adding the status.html page to each one of the nodes.
    anyway.
    For now when I click on the node, the html file is displayed in the JScrollPane rPane = new JScrollPane(htmlPane); and the htmlPane is a JEditorPane
    what I need it to do.
    When I click on the JTree node. I would like to go out to an xml file, parse the information in it, and display it to the pane.
    I will need to later, be able to add, edit, or delete information on the xml through the pane later.
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.JTree;
    import javax.swing.JPanel;
    import javax.accessibility.*;
    import javax.swing.UIManager;
    import javax.swing.JComponent;
    import javax.swing.JEditorPane;
    import javax.swing.tree.TreeSelectionModel;
    import javax.swing.event.TreeSelectionEvent;
    import javax.swing.event.TreeSelectionListener;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.ImageIcon;
    import java.net.URL;
    import java.io.IOException;
    import java.awt.Dimension;
    * @author orozcom
    public class Example extends JFrame implements TreeSelectionListener
        private JEditorPane htmlPane;
        private URL helpURL;
        private static boolean DEBUG = false;
        private JTree tree;
        public Example()
            super("Example");
            setSize(1200,900);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            JMenuBar jmb = new JMenuBar();
            JMenu fileMenu = new JMenu("File");
            JMenuItem openItem = new JMenuItem("Open");
            JMenuItem saveItem = new JMenuItem("Save");
            JMenuItem exitItem = new JMenuItem("Exit");
            exitItem.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent ae)
                    System.exit(0);
            fileMenu.add(openItem);
            fileMenu.add(saveItem);
            fileMenu.add(new JSeparator());
            fileMenu.add(exitItem);
            jmb.add(fileMenu);
            setJMenuBar(jmb);
            //  **************** start JTree ******************//       
            JPanel lPane =new JPanel();       
            lPane.setLayout(new BorderLayout());
            DefaultMutableTreeNode top = new DefaultMutableTreeNode(new ModuleInfo("Devices","splashScreen.html"));
            DefaultMutableTreeNode branch1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Module 1", "module1.html"));
            DefaultMutableTreeNode branch2 =
                    new DefaultMutableTreeNode(new ModuleInfo("Module 2", "module2.html"));
            //DefaultMutableTreeNode branch3 =
                    //new DefaultMutableTreeNode(new ModuleInfo("Module 3", "module3.html"));
            //adding to the topmost node
            top.add(branch1);
            top.add(branch2);
            //top.add(branch3);
             *          BRANCH 1           *
            //adding to the First branch
            DefaultMutableTreeNode node1_b1
                    =new DefaultMutableTreeNode(new ModuleInfo("Status", "status.html"));
            //branch1.add(node1_b1);
                DefaultMutableTreeNode n1_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
                DefaultMutableTreeNode n2_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
                DefaultMutableTreeNode n3_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Chassis", "chassis.html"));
                DefaultMutableTreeNode n4_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Resources", "resources.html"));
                node1_b1.add(n1_node1_b1);
                node1_b1.add(n2_node1_b1);
                node1_b1.add(n3_node1_b1);
                node1_b1.add(n4_node1_b1);    
            DefaultMutableTreeNode node2_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Project Editor", "projedit.html"));
            DefaultMutableTreeNode node3_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Project Manager", "projmngt.html"));
            DefaultMutableTreeNode node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Administration", "administration.html"));
            DefaultMutableTreeNode n1_node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
            DefaultMutableTreeNode n2_node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
            DefaultMutableTreeNode n3_node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Users", "users.html"));
            node4_b1.add(n1_node4_b1);
            node4_b1.add(n2_node4_b1);
            node4_b1.add(n3_node4_b1);
            DefaultMutableTreeNode node5_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Logging", "logging.html"));
            branch1.add(node1_b1);
            branch1.add(node2_b1);
            branch1.add(node3_b1);
            branch1.add(node4_b1);
            branch1.add(node5_b1);
             *          BRANCH 2           *
            //adding to the Second branch
            DefaultMutableTreeNode node1_b2 =
                    new DefaultMutableTreeNode(new ModuleInfo("Status", "status.html"));
                DefaultMutableTreeNode n1_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
                DefaultMutableTreeNode n2_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
                DefaultMutableTreeNode n3_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Chassis", "chassis.html"));
                DefaultMutableTreeNode n4_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Resources", "resources.html"));
                node1_b2.add(n1_node1_b2);
                node1_b2.add(n2_node1_b2);
                node1_b2.add(n3_node1_b2);
                node1_b2.add(n4_node1_b2);
            DefaultMutableTreeNode node2_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Project Editor", "projedit.html"));
            DefaultMutableTreeNode node3_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Project Manager", "projmngt.html"));
            DefaultMutableTreeNode node4_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Administration", "administration.html"));
                DefaultMutableTreeNode n1_node4_b2=
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
                DefaultMutableTreeNode n2_node4_b2=
                        new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
                DefaultMutableTreeNode n3_node4_b2=
                        new DefaultMutableTreeNode(new ModuleInfo("Users", "users.html"));
                node4_b2.add(n1_node4_b2);
                node4_b2.add(n2_node4_b2);
                node4_b2.add(n3_node4_b2);
            DefaultMutableTreeNode node5_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Logging", "logging.html"));
            branch2.add(node1_b2);
            branch2.add(node2_b2);
            branch2.add(node3_b2);
            branch2.add(node4_b2);
            branch2.add(node5_b2);
             *          BRANCH 3           *
            //adding to the Third branch
            DefaultMutableTreeNode node1_b3=new DefaultMutableTreeNode("Status");
            DefaultMutableTreeNode n1_node1_b3=new DefaultMutableTreeNode("Device");
            DefaultMutableTreeNode n2_node1_b3=new DefaultMutableTreeNode("Network");
            DefaultMutableTreeNode n3_node1_b3=new DefaultMutableTreeNode("Chassis");
            DefaultMutableTreeNode n4_node1_b3=new DefaultMutableTreeNode("Resources");
            node1_b3.add(n1_node1_b3);
            node1_b3.add(n2_node1_b3);
            node1_b3.add(n3_node1_b3);
            node1_b3.add(n4_node1_b3);
            DefaultMutableTreeNode node2_b3=new DefaultMutableTreeNode("Project Editor");
            DefaultMutableTreeNode node3_b3=new DefaultMutableTreeNode("Project Manager");
            DefaultMutableTreeNode node4_b3=new DefaultMutableTreeNode("Administration");
            DefaultMutableTreeNode n1_node4_b3=new DefaultMutableTreeNode("Device");
            DefaultMutableTreeNode n2_node4_b3=new DefaultMutableTreeNode("Network");
            DefaultMutableTreeNode n3_node4_b3=new DefaultMutableTreeNode("Users");
            node4_b3.add(n1_node4_b3);
            node4_b3.add(n2_node4_b3);
            node4_b3.add(n3_node4_b3);
            DefaultMutableTreeNode node5_b3=new DefaultMutableTreeNode("Logging");
            branch3.add(node1_b3);
            branch3.add(node2_b3);
            branch3.add(node3_b3);
            branch3.add(node4_b3);
            branch3.add(node5_b3);
            tree=new JTree(top,true);
            //tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
            tree.getSelectionModel().setSelectionMode(TreeSelectionModel.CONTIGUOUS_TREE_SELECTION);
            //Set the icon for leaf nodes.       
            ImageIcon deviceIcon = createImageIcon("/device.gif");       
            if (deviceIcon != null)
                DefaultTreeCellRenderer renderer = new DefaultTreeCellRenderer();
                renderer.setLeafIcon(deviceIcon);
                tree.setCellRenderer(renderer);
            else
                System.err.println("Leaf icon missing; using default.");
            //Listen for when the selection changes.
            tree.addTreeSelectionListener(this);
            //Create the scroll pane and add the tree to it.
            //JScrollPane treeView = new JScrollPane(tree);
            tree.setToolTipText(" and ");
            lPane.add(tree);
            getContentPane().add(lPane);
            //  ****************  end  JTree  ******************//
            htmlPane = new JEditorPane();
            htmlPane.setEditable(false);       
            initHelp();
            JScrollPane rPane = new JScrollPane(htmlPane);
            JSplitPane jsp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, lPane, rPane);
            jsp.setDividerLocation(180);
            getContentPane().add(jsp, BorderLayout.CENTER);
            JPanel bPane = new JPanel();
            JButton okButton = new JButton("Ok");
            JButton applyButton = new JButton("Apply");
            JButton clearButton = new JButton("Clear");
            bPane.add(okButton);
            bPane.add(applyButton);
            bPane.add(clearButton);
            getContentPane().add(bPane, BorderLayout.SOUTH);
            setVisible(true);
        /** Required by TreeSelectionListener interface. */
        public void valueChanged(TreeSelectionEvent e)
            DefaultMutableTreeNode node = (DefaultMutableTreeNode)
            tree.getLastSelectedPathComponent();
            if (node == null) return;
            Object nodeInfo = node.getUserObject();
            if (node.isLeaf())
                ModuleInfo module = (ModuleInfo)nodeInfo;
                displayURL(module.moduleURL);
                if (DEBUG)
                    System.out.print(module.moduleURL + ":  \n    ");
            else
                displayURL(helpURL);
            if (DEBUG)
                System.out.println(nodeInfo.toString());
        private class ModuleInfo
            public String deviceName;
            public URL moduleURL;
            public ModuleInfo(String device, String filename)
                deviceName = device;
                moduleURL = (URL)Example.class.getResource("/" + filename);
                if (moduleURL == null)
                    System.err.println("Couldn't find file: "
                            + filename);
            public String toString()
                return deviceName;
        private void initHelp()
            String s = "YFDemoHelp.html";
            helpURL = Example.class.getResource("/" + s);
            if (helpURL == null)
                System.err.println("Couldn't open help file: " + s);
            else if (DEBUG)
                System.out.println("Help URL is " + helpURL);
            displayURL(helpURL);
        private void displayURL(URL url)
            try
                if (url != null)
                    htmlPane.setPage(url);
                else
                { //null url
                    htmlPane.setText("File Not Found");
                    if (DEBUG)
                        System.out.println("Attempted to display a null URL.");
            catch (IOException e)
                System.err.println("Attempted to read a bad URL: " + url);
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path)
            java.net.URL imgURL = Example.class.getResource(path);
            if (imgURL != null)
                return new ImageIcon(imgURL);
            else
                System.err.println("Couldn't find file: " + path);
                return null;
        public static void main(String args[])
            new Example();
            //new AssistiveExample();
    }Thanks orozcom

    yes i can at the time of MIRO u can see both
    go in SU01 for and user
    in Parameters enter IVFIDISPLAY in Parameter ID and X in Paramater Value
    thus for that user u will be able to c Invoice number and accounting number after saving MIRo
    u will get message like
    Invoice document 5105608893 was posted ( Accountng Documnt: 5100000000 )
    hope this helps

  • Accounting Doc at posting J1IG - Depot Exc Inv

    Hi Guys,
    I am doing Excise capute in J1iG for Depot for drect purchase from Vendor.
    I would like to no whether accounting doc will generate at the time posting J1IG like J1IEX.
    Regards
    Sathish

    Hi,
    When you procure goods @ depot as per Std SAP functionality you can use the the J1IG transaction to update the Depot Register & when you do a sale from Depot you can refer the same excise invoice which you captured above using the J1IJ transaction.
    Please note that since its a Depot Sale you wont be able raise an excise invoice.
    Hope its clear.
    Regards,

  • Error when post MIRO

    When try to post MIRO, I get error as
    "Inconsistent temporary document number assignment"
    Message no. F5726.

    hi wrote:
    When try to post MIRO, I get error as
    >  "Inconsistent temporary document number assignment"
    >  Message no. F5726.
    Hi,
    It seems there is inconstistent No Ranage assignment for the logistics and acc docs. You might have assigned external no range for either of the two and system is unable to assign a temporary doc no and issuing the message. Pls have a chk and correct.
    Regards
    Shiva

  • Higher Education cess not displayed in J2I6 when posted through J1IH

    Hi,
    We have passed an Excise JV through J1IH.
    BED, ECess and HECess accounts are credited and Excise Duty paid A/c is debited.
    All the values are posted properly. We have also checked the accounting document for this.
    But when we run the report J2I6 (after J2I5), HEcess value is not showing, where as all other values are displayed properly.
    Where may be the problem?
    Is there any SAP Note we need to apply?
    Regards,

    HI,
    There is no relation ship between your tax procedure (eg: TAXINN) and withholding tax confirguration.  Please check the does the higher education cess is getting posted or not when you post FI invoice.  If it's fine, it should post when you do MIRO.
    Withholding tax will not be posted when you do MIGO, it will be posted when you do MIRO only.
    Please use the same vendor for FI & MM invoices posting.  If still there is any issue in higher education cess posting - please check withholding tax configuration.
    Regards,
    Kiran Yelamarthy

  • Cannot generate accounting doc when creating billing doc

    When creating billing doc, no accounting document is generated, the posting status is "Error in accounting interface". I have checked and there is no problem in account determination. Does anyone get idea on this problem? Thanks!

    Check the account determination in Transaction Code VKOA.
    If the data is not maitained to determine G/L, in that case it gives error. Once you maintain the relevant data in VKOA, next go to billing document in change mode VF02 & release the same to accounting.
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • GL Account Missing when Posting Up GRPO

    The scenario happen like this:
    1) Customer creating a PO with 3 items.
    2) One of the item that my client created needed to change warehouse, so they make an amendment through clicking into the Item master data, and change the warehouse from WSE 01 to HQ.
    3) Then in the PO, they deleted the item line, added new row and selected the same item code again, update.
    4) Then they copy the PO to GRPO.
    5) Then they have the procedure to update the serial number for the machine.
    6) After that, when they want to post the GRPO, it has an error message showing: G/L Account is missing [Goods Receipt PO - Rows - Warehouse Code][line:3] [Message 131-46]
    Any idea on this issue?

    Hi Micheal.......
    You need to set all the mandatory settings required for the transaction documents.
    You need to set the GL account determination. You need to set the Warehouse account GL
    You need to set the Item Group account GL.
    You need to set the Freight accounts.
    You need to set the tax accounts.
    You need to set the landed cost account......... Etc........
    Regards,
    Rahul

  • Accounting error while posting MIRO

    Hi Gurus,
                    An GRN is created with amount 150000 and IV is made using this GRN of 145000. Here reversal document debitted 5000 to expense account is not getting posted. An entry getting posted is of 145000. Please help.

    A Grn has been posted with entries as follows:
    Expense A/c  Dr 150000
      to GR A/c                       150000
    While posting IV for 145000, following entry needs to be posted
    GR A/c  Dr             150000
        To Vendor A/c                         145000
        To Expense A/c                           5000 (Automatic entry)
    Instead following wrong entry is getting posted
    GR A/c  Dr             145000
           To Vendor A/c                         145000.
    I hope this clarifies the doubt.

  • Using mult Acc *** when using MIRO and limit order

    Hi
    Do you have to use mult account assignment when doing MIRO against a limit order (Item cat B). When doing MIRO against a normal PO that has no GR you are able to enter the quantity and amount directly onto the row without using mult acc ***. Is it standar to use mult. acc. *** when doing MIRO towards a limit order?
    /Anders

    I am not sure what you mean by your query is it standard ?
    SAP allows you post singly account entries as well multiple account entries in case of PO account assignment, it is applicable to all type of account assignment and not only B
    It is all based on how your company wants the accounting entries to be made, whether to a single account and apportioned to multiple accounts

  • Change GL Account No at posting of document - MIGO

    Dear Fellows.
    I have a requirement to change the GL Account no when POST button is presses in MIGO. Account no will be fetched from a ZTABLE where they are store with respect to document type. I tried to do this with BADI but didn't find any BADI that will allow me to change GL. Most of them only import GL account . not a single one export at posting.
    Then i tried to find EXITS but didn't find any useful one.
    I just want to know if there is any BADI or EXIT that will fulfill my requirement. If there is not then i will have to do modification.
    Regards,
    Abdul Moied Yousuf

    Hi
    Generally Mod's here doesnt look into these kind of scenarios seriously unless its reported to move to the appropriate forum or the person who posts the actual question must take the responsibility. So there is no room for blaming anybody
    Also it depends upon the keyword we use for searching ;). I suggest you to use google first and then SCN second .. Thats what i do
    kesav

  • Substitute G/L Account when posting Accounting Document

    Hello Everyone,
    I am an ABAP consultant.
    I want to know if there is any way to substitute a G/L account which is already determined by the system.
    When we post MIRO, when there is a price variance with GR, then a material price variance account will be determined and the variance gets posted to the material price variance account. Something like below.
    Credit  Vendor Account
    Debit   GR/IR  Clearing Account
    Debit   Material Price Variance Account
    I want to replace the Material Price Variance Account for certain scenario.
    I tried with
    1. BADI AC_DOCUMENT - But G/L account cannot be replaced with this
    2. BTE - Able to change the G/L account, but it gives error "Internal error: Entry in COKA-Buffer not found". I found a SAP note for this. It seems G/L account and Fiscal year data gets transferred to COKA buffer and if there are any changes it does not allow to proceed.
    I also found enhancement spots where i can make changes, but i want to know if this can be achieved in a standard way (Either Exits, BADI or FI Substitutions)
    Regards
    Rajvansh

    Hi:
       Why don't you change your MM config , it would be better to have this defaulted by MM account determination. but if you still want to do this, then you can try MM exit that instead of changing the account, reduce the amount to zero in the "wrong" account, and insert a line with the "right" account.
    Substitution GBB1 might not work here which can also induce MM/FI consistency issues. Hence find an MM exit and refer to the BADI's in note 1156325.
    I hope it will help you.
    Regards

  • While posting MIRO price difference account is not determimg for price vari

    Hi Sapients,
    Please solve the production issue which we have faced yesterday while doing month end closing
    In one P.O 4 items are there,User has posted entries in below sequence
    Material type is TRADING GOODS
    1)first MIRO with QTY 10 @100$ each,Later
    2)MIGO has done with QTY 10 @100$
    Raw Material account -
    1000$
    to GR/IR CLEARING ACCOUNT -
    1000$
    2)User has reverse the MIRO transaction with QTY 10 @ 100$ each.(with refer to step1)
    3)Finally he post MIRO with QTY 10 @ 90$ each, so here ther is no qty variance has come only price variance has come, so when posting the difference is not going to price difference and the entry is paasing like this
    GR/IR CLEARING ACCOUNT -
    900$
    TO Vendor 900$
    If u see in step 2 GR/IR having 1000$, but in step 3 while MIRO posting GR/IR as 900$ so for the remaing balance 100$ not going to price variance .I Belive the entry in step will be like this
    GR/IR CLEARING ACCOUNT -
    1000$
    TO Vendor 900$
    TO Price difference 100$.
    Kindly give solution why it is not going to price difference it was happening only for item 2 & 3 only for 40 iem it is posting correctly to price difference account.Please advice me why system behavig differently for each item.
    Thanks & Regards
    YSR

    Hi Padmasri,
    Thanks for your explanation. Ok. if the price is maintained in S, does that mean the price difference would get posted only to PRD. In other words, if price indicator is V, is that the only time when the price difference gets posted to stock account. In case if there is no sufficient stock or if there is negative stock at that time, that's when the amount would get posted to stock loss or gain account. Please suggest if I've understood the concept right.
    Hi,
    The PRD will trigger when the standard price maintained in the material mater record is different from the price in MIGO . The other chance is the material is maintained with MAP and MIRO done before GR ,The value of the quntity (not available in stock )
    will get posted to PRD. I hope this will resolve your issue. Thanking you
    You had suggested: The other chance is the material is maintained with MAP and MIRO done before GR ,The value of the quntity (not available in stock ) will get posted to PRD. I hope this will resolve your issue.
    You are right: I forgot to mention that the price indicator is V. The other point is we purchase the materials from an internal vendor, as and when the materials are dispatched from the main storehouse in Sri Lanka, there is an advice that is created in the system and that is interfaced and parked in the system. However, normally until the GR is done IV will not happen. But there could be a chance, as the advice gets created within 24 hours. However the material to reach the godown in our warehouse will take more than 24 hours as the goods have to be shipped from SL, so IV is possible before GR.
    Regards,
    Soujanya

Maybe you are looking for

  • SOAP Fault while invoking ISG Service through BPEL

    Hi, I am trying to invoke a EBS R12 pl sql API exposed as a web service through integrated SOA gateway. But i am hitting the same error for different API`s that i have tried with. the error is : <remoteFault> <part name="summary"> <summary>Error occu

  • Exit plug url parameters without XSS encoding

    Hi, I fire an exit plug with POST_PARAMETERS = 'X' and passing a different postParameters='sap-client=101&sap-user=5E224C57E11&sap-password=Asdf1234'. However the special characters are encoded and not passed correctly to the webdynpro app. I got thi

  • ITunes Freezes when docking 40 G iPod.

    I'm trying to set up my son's new 2G Nano. But when my 40G iPod is connected, iTunes freezes up completely. Any suggestions?

  • Signature problem - adding symbols to some messages

    I have a user who will sometimes have a > in front of each line in her signature. I've been able to determines it only happens when replying to Plain Text messages - other formats are fine. Any suggestions?

  • Sql plus Environment:

    HI! 1. When I want to query long data from tables using select, in sql +, the above data will go on,by scrolling upward it's not appearing, 2. I have set linesize 4500 and pagesize 50000, but no change occure. 3. As in dos prompt we set page to appea