Where is miro being configured

Just as migo is configured in mm where is miro configured.
suppose we have a stock of 10 units which includes 4 units whose miro has not been done.
now we have 3 situations:-
1. we have all the 10 units and we want to do miro regarding these 4 units. then the stimulated entry while miro is:-
vendor         10    cr
gr/ir                8   dr
duties a/c        2  dr 
here amount entered in miro is same as po amount.
2. we have all the 10 units and we want to do miro. but now the amount entered while doing miro is lower  than po amount.
vendor    9   cr
gr/ir       10  dr
stock      1  cr
duties      1   dr
3. when we have issued out 7 units out of 10 units and we are left with 3 units. now if we want to have miro of 4 units then the entry will again change
vendor    9  cr
gr/ir       10  dr
stock     .75 cr
price  diff    .25 cr
now i want to know that where in the configuration it has been set up that whenever the invoice amounts differs from po amount then the difference should move to stock and price difference in the ratio of stock left and units for which invoicing
has to be done minus  stock left.
if any one knows please let me know the excat

Originally I had 12 units of this material. I issued 9 units out of these.3 units were left in stock.
6 units were yet left for being doing miro.
But when I try to do the miro for these 4 units I get below written stimulated entry
There is purchase order of 2 line items. IST line item is of (2 units) Rs 2000 and 2nd line item is of (4 units) Rs 8000.
But while doing Miro I have changed the value to 1500 and 7500 respectively.
The result is this entry
1     K     16060071     la-test1 / 122001                                   10,606.74-
2     S     16029001     GR/IR Clearing A/c                                   2,068.65
3     M     23020001     TRASH PLATE FOR MILL NO.6 DIA1067X2100MM          517.16-
4     S     16029001     GR/IR Clearing A/c                                   8,274.61
5     M     23020001     TRASH PLATE FOR MILL NO.6 DIA1067X2100MM          387.87-
6     S     41020061     Purchase Price Variance                              129.29-
7     S     16030011     CENVAT Clearing A/c                              210.00
8     S     16030011     CENVAT Clearing A/c                              4.20
9     S     16030011     CENVAT Clearing A/c                              2.10
10     S     16030011     CENVAT Clearing A/c                              1,050.00
11     S     16030011     CENVAT Clearing A/c                              21.00
12     S     16030011     CENVAT Clearing A/c                              10.50                    
Difference for Ist line item is Rs 500 and for 2nd line item is also Rs 500
But difference in case of IST line item has posted to stock a/c as Rs (500+17.16)
But in case of 2nd line item difference has been divided to stock a/c and price difference a/c as 387.87 and 129.29 resp.
I want to know that why and how it is calculated that what amount has to be posted to stock a/c and what amount has to be posted to price difference a/c.
In obyc we have configured that to which a/c the amount would be posted but where has this been configured that what amount has to be posted to these a/c like in my case the stock a/c and price difference a/c.
Is it linked with tax calculation procedure.
Answer to your question
yes we have assigned GL account for Cost (price) differences for transaction PRD in OBYC(MM-FI integration:--    
we are using ver 6.0 and rest what you asked
SAP_APPL     600     0012     SAPKH60012          Logistics and Accounting

Similar Messages

  • Dynamic SQL Joining between tables and Primary keys being configured within master tables

    Team , Thanks for your help in advance !
    I'm looking out to code a dynamic SQL which should refer Master tables for table names and Primary keys and then Join for insertion into target tables .
    EG:
    INSERT INTO HUB.dbo.lp_order
    SELECT *
    FROM del.dbo.lp_order t1
    where not exists ( select *
    from hub.dbo.lp_order tw
    where t1.order_id = t2.order_id )
    SET @rows = @@ROWCOUNT
    PRINT 'Table: lp_order; Inserted Records: '+ Cast(@rows AS VARCHAR)
    -- Please note Databse names are going to remain the same but table names and join conditions on keys
    -- should vary for each table(s) being configured in master tables
    Sample of Master configuration tables with table info and PK Info :
    Table Info         
    Table_info_ID    Table_Name    
    1        lp_order    
    7        lp__transition_record    
    Table_PK_Info        
    Table_PK_Info_ID    Table_info_ID    PK_Column_Name
    2                1    order_id
    8                7    transition_record_id
    There can be more than one join condition for each table
    Thanks you !
    Rajkumar Yelugu

    Hi Rajkumar,
    It is glad to hear that you figured the question out by yourself.
    There's a flaw with your while loop in your sample code, just in case you hadn't noticed that, please see below.
    --In this case, it goes to infinite loop
    DECLARE @T TABLE(ID INT)
    INSERT INTO @T VALUES(1),(3),(2)
    DECLARE @ID INT
    SELECT @ID = MIN(ID) FROM @T
    WHILE @ID IS NOT NULL
    PRINT @ID
    SELECT @ID =ID FROM @T WHERE ID > @ID
    So a cursor would be the appropriate option in your case, please reference below.
    DECLARE @Table_Info TABLE
    Table_info_ID INT,
    Table_Name VARCHAR(99)
    INSERT INTO @Table_Info VALUES(1,'lp_order'),(7,'lp__transition_record');
    DECLARE @Table_PK_Info TABLE
    Table_PK_Info_ID INT,
    Table_info_ID INT,
    PK_Column_Name VARCHAR(99)
    INSERT INTO @Table_PK_Info VALUES(2,1,'order_id'),(8,7,'transition_record_id'),(3,1,'order_id2')
    DECLARE @SQL NVarchar(MAX),
    @ID INT,
    @Table_Name VARCHAR(20),
    @whereCondition VARCHAR(99)
    DECLARE cur_Tabel_Info CURSOR
    FOR SELECT Table_info_ID,Table_Name FROM @Table_Info
    OPEN cur_Tabel_Info
    FETCH NEXT FROM cur_Tabel_Info
    INTO @ID, @Table_Name
    WHILE @@FETCH_STATUS = 0
    BEGIN
    SELECT @whereCondition =ISNULL(@whereCondition+' AND ','') +'t1.'+PK_Column_Name+'='+'t2.'+PK_Column_Name FROM @Table_PK_Info WHERE Table_info_ID=@ID
    SET @SQL = 'INSERT INTO hub.dbo.'+@Table_Name+'
    SELECT * FROM del.dbo.'+@Table_Name+' AS T1
    WHERE NOT EXISTS (
    SELECT *
    FROM hub.dbo.'+@Table_Name+' AS T2
    WHERE '+@whereCondition+')'
    SELECT @SQL
    --EXEC(@SQL)
    SET @whereCondition = NULL
    FETCH NEXT FROM cur_Tabel_Info
    INTO @ID, @Table_Name
    END
    Supposing you had noticed and fixed the flaw, your answer sharing is always welcome.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • When you download iTunes material, does iTunes record the IP used where it is being downloaded to?  I am trying to track a lost/missing IPOD Touch and want to know if they have that data.

    When you download iTunes material, does iTunes record the IP used where it is being downloaded to?  I am trying to track a lost/missing IPOD Touch and want to know if they have that data.   It was left on a small street and someone has found it and has been hacking into my account by resetting my password.  They took about 41+ dollars from my account.   I am hoping the IP it was connecting with to download to it was tracked and that I can get that information to figure out where it is located.

    No. From the second link below.
    "Apple does not have a process to track or flag lost or stolen product
    - If you previously turned on the FIndMyiPod feature and location service is on, and wifi is on and connected go to iCloud, sign in, and go to FindMyiPhone. It the iPod has been restored it will never show up.
    - Report to police and change the passwords for all accounts used on the iPod.
    - Apple will not help
    Reporting a lost or stolen Apple product

  • Where is the server configuration data stored?

    Where is the server configuration data stored?
    <P>
    The data is stored an ASCII file named server.conf
    . This file is stored in
    the config directory on the same server-root as the iCS 2.0 binaries. The
    format of the server.conf
    file is described in detail in the Administration
    Guide.

    Try to read
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e1959b90-0201-0010-849c-d2b1d574768b
    UME user data is stored in one or more data sources. Each type of data source has its own persistence adapter. The persistence manager consults the persistence adapters when creating, reading, writing, and searching user management data. Persistence adapters for the following types of repositories are available: 1. Database: See the Product Availability Matrix on SAP Service Marketplace (http://service.sap.com/pam60) for details on which databases are supported. 2. u2022 Lightweight Directory Access Protocol (LDAP) directory: See the Product Availability Matrix on SAP Service Marketplace (http://service.sap.com/pam60) for details on which directories are supported. 3. SAP Systems based on Web Application Server 6.20 You can configure UME to use one or more of these persistence devices in parallel. Users can also be stored in several different physical LDAP directory servers, or in different branches of the same LDAP directory server.

  • HT4753 I have a very simple question: how do I view where Lion has autosaved my current version to (without the convoluted route of using finder)? In days gone by i'd simply use the save as function to see where it was being saved.

    I have a very simple question: how do I view where Lion has autosaved my current version to (without the convoluted route of using finder)? In days gone by i'd simply use the save as function to see where it was being saved.

    It's actually even easier than using Save As to see the full path to the currently open document. Just do a "Secondary click" on the document title in its window's title bar.
    Like you, I relied upon Save As my whole life to check a file's location and considered it a must-have capability. Turns out it's even faster to use the single-click method to reveal the full path to the open document. It displays the entire path to the current document starting from the level of your Mac, and works for files stored on drives as well as iCloud.
    If you're not sure how to do a secondary click, go into System Preferences, select Trackpad, Point & Click to find the current preference for secondary click on your Mac. If you happen to have a mouse with more than one button, it's probably the right button. As a trackpad user, I check the box to "Click or tap with two fingers," so a simple two finger tap on the title of an open document reveals its full path. This feature actually has been around for a very long time.
    Note that this is not the same thing as the Autosave and Versions menu, which is exposed using a little drop down triangle to the right of the title. There is no visual clue for the presence of this feature - you just have to know it's there, probably because this feature goes all the way back to pre-OS X days.

  • Getting the logical system from where RFC is being called

    Hi All,
    How can we get the logical system name from where RFC is being called?
    Regards,
    Akshay

    Hi Akshay,
    If your company follows the SAP recommendations on naming [logical systems|http://help.sap.com/SAPHELP_NW70/helpdata/EN/da/5990df015b5b43a36f6ce7fa1ee8c0/content.htm] <b>&lt;SystemID&gt;"CLNT"&lt;Client&gt;</b> then you should get away with a simple call to RFC_GET_ATTRIBUTES (and even if they don't, the function module might possibly provide other clues required to build the logical system name).
    There might be other ways, but I'm kind of suspecting that the logical system name of the calling system might not be part of the communication data (like other readily available data as IP address etc.). So if this solution doesn't work, it might be helpful to understand how the naming conventions for logical systems used by your company.
    Cheers, harald

  • Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

    I've copied a .NET application from an older 2008 server running IIS 7.0.600.16386 to a newer 2008 R2 server running 7.5.7600.16385.  The .NET framework version is 4.0.30319.  I've setup an application pool and copied the wwwroot directory. 
    I've checked for nested web.config files and I've been reading a lot about converting the site to an application.  The older server running the application is still up and running and the configurations look identical.  If I convert the site to an
    application the icon changes and doesn't look like it does on the old server.  I'm new and still learning the basics of programming and publishing applications.  Can someone point me in the right direction?  I've been on google for a few days
    to no avail.  Thanks.
    Description:
    An error occurred during the processing of a configuration file required to
    service this request. Please review the specific error details below and modify
    your configuration file appropriately.
    Parser Error Message: It
    is an error to use a section registered as
    allowDefinition='MachineToApplication' beyond application level.  This error can
    be caused by a virtual directory not being configured as an application in IIS.
    Line 20:       <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
    Line 21:     </httpHandlers>
    Line 22:     <authentication mode="Forms">
    Line 23:       <forms cookieless="UseCookies" loginUrl="~/AccessDenied.aspx" protection="All" name="TVHRFORMAUTH" timeout="180" slidingExpiration="true" />
    Line 24:     </authentication>

    Hi,
    I agree with Tim that we can ask for better help in the following IIS forum.
    IIS.NET forum
    http://forums.iis.net/
    Best regards,
    Frank Shen

  • In general, Where is AddOn local configuration stored?

    Hi Experts,
    In general, Where is AddOn local configuration stored?
    I am using an AddOn, I have a local network and Windows 2008 Terminal Server (TS). I installed this AddOn in three companies from a LAN PC, and its working fine there from local computer but not in the TS. In Terminal Server just works in two companies but not in the third one.  In the third one appears under AddOn Administration, it is assigned to the company and to the user but when I go to the AddOn Manager It does not appear in pending AddOns neither in installed AddOns, so I am not able to start it.
    Any ideas, Is there a file that holds the local AddOn configuration that I can I just can modify in order to establish the same parameters that SAP is using for the other companies?
    Which files, registry keys and tables are involved in AddOn configuration?
    Thanks

    It would store in C:\Program Files\SAP\SAP Business One\ AddOnsLocalRegistration for a particular client machine.
    Delete the file following <AddOn Exe and ends with AddOn></ADDONS> which you have installed previously.
    Reinstall your add-on definitely it will work.

  • Where can i find configuration and other aspects of SAP learining solution

    where can i find configuration and other aspects of SAP learining solution
    Ross

    Plz go through below URLs:
    [http://saphrexpert.blogspot.com/2009/01/lso-configuration.html]
    [http://help.sap.com/erp2005_ehp_04_sp/helpdata/en/69/415a2b9208485380091d5e3c659c26/content.htm]
    Mohan

  • Where the SLD is configured and running for entire landscape.

    Hi!...
    Where the SLD is configured and running for entire landscape.How do i find it out
    i guess, it's configured on solution manager. So,how to check? Can anyone please explain me step by step.
    Thanks.

    Hi Irfan,
    SLD is configured using SMSY transaction. You can use SMSY transaction and there you can see what are all the systems that have been added to the Solution Manager System Landscape.
    Different nodes are available for products, systems, logical components in the system landscape.
    Dont forget to reward for useful answers.
    best regds,
    Alagammai.

  • Where we  have to configure for SD Invoice material scrap.

    Hi,
    Please let us that where we have to configure that SD  Scrap Material invoice account Determination.
    Thanks.

    Hi Hanumant ,
    Be careful of the IS-Retail config if you are working on a customer project.
    1. Make sure your system is switched as a SAP Retail system.
    If your SAP system is ECC6.0, go to transaction SFW5.
    If you are working with earlier version, run report GETSYSDEF to check the switch, run SETRETAILSYSTEM to do the switch.
    2. You should NOT use transaction MM01, instead, MM41 is used for article creation.
    3. Site must be created by transaction WB01, the 'site definition' in IMG must NOT be used.
    The reason that your sites are 'disappeared' in IMG-Enterprise Structure is the view of this customizing V_T001W has a selection condition VLFKZ = ' ', and all retail sites have VLFKZ -Site category with value 'A' or 'B'.
    Regards,
    Steven

  • Where get the hardware configuration information?

    Where get the hardware configuration information and where to delete cookie on the Fedora8 OS?

    Where get the dmdecode information?please install it from FC8 DVD, the package name is dmidecode-2.7-1.26.1.fc6.i386.rpm
    Yes, I want to delete cookie on browser--firefox Clean your firefox cache data from:
    menu bar--->Tools-->Clean Private Data.

  • How to find the type of webserver being configured for use with ColdFusion

    Hello,
    Where can I check to see the type of server that ColdFusion is configured to run currently? I have an existing installation of CF 9.0.1, which I will be removing and installing CF 9.0.2. During instalation of 9.0.2, I would need to specify the server to be used - ColdFusion server / Apache/ IIS etc. My question is, where should I see in the existing CF 9.0.1 to understand the server that is currently being used.
    Thanks!

    You could use the Web Server Configuration Tool. Assuming you are on Windows, the path to launch it is usually
    Start => Programs => Adobe => ColdFusion 9 => Web Server Configuratiol Tool
    In fact, you could use this tool to add or remove web servers.

  • Where to buy a configured imac from lebanon?

    Hi guys,
    I live in Beirut and i want to be an apple developer but i want to get a configured 27" imac(3.4Ghz instead of 3.1Ghz, 8Gb of ram instead of 4Gb...)
    Where can I get it? Please help!

    Adkom Dora www.adkomsal.com
    I think this will help you I by my Mac from their it is a apple premier resseler

  • RDP for Mac 8.0.5, Where does it store configuration files?

    The old 2.1.0 RDP client would store its RDP configuration files in ~/Documents/RDP Connections, and had plists in Preferences.
    Where does the new 8.0.5 version store RDP configurations and general prefs?
    Thanks!

    Hi,
    We do not have the information about how and where that the App stores the configurations.
    However, if you would like to get the .rdp file, you can export the remote desktop in the App, it will prompt you to select a location to store the .rdp file.
    Thanks.
    Jeremy Wu
    TechNet Community Support

Maybe you are looking for