How to determine old price

Hi,
My client sends material from manufacturing plant to depots. While such stock transfer they have one price, say 1000. Now material is received at depot and lies there. After some time price is changed, say from 1000 to 2000. Now again this material is sent from manufacturing plant to same depot and depot recieves the material. Now depot has same material with two different prices. The requirement is old material must be sold on old price. While creating sales order of old material how system will determine the old price. Also batch management is not active, otherwise we would have maintained price at material / batch combination. Without batch management how is it possible..?
Falgun

It will not be standard to determine old price, when you not use either of the following
- Batch Management
- Serial Number
- Handling Unit
In that I can only see an option of billing doc of stock transfer reference for your sales order.
Thanks & Regards
JP

Similar Messages

  • Pricing condition - How to Determine/Calculate price excl. VAT

    Hi,
    We've the following configured:
    ZPMC - payment costs - 1 euro (price incl. VAT)
    MWSI caculates VAT over all items and posts them to the appropriate G/L account.
    The payment costs excl. VAT needs to be posted to a G/L account aswell. However in our current configuration no 'payment cost excl. VAT' amount is available. One solution would be calculating the 'amount excl. vat' via a routine however i would like to whether we can achieve this via customizations / standard configurations?
    Inputs are greatly appreciated.
    Kind regards,
    Tim

    May be you can try with the following option
    1)  Create a condition type in V/06 with "Calculation type" as percent (A).  Also maintain "X" for the field "Plus/minus" with access sequence assigned there
    2)  Go to V/07, select that access sequence and maintain table 305 & 307 there
    3)  Go to VK11, key in the above condition type and maintain the required tax percent here and save
    4)  Assign this condition type above the step to your Payment Cost excl.VAT and the From-To step number should be that of your ZPMC
    5)  Now this Payment Cost step number should have the From-To till the step number of point (4)
    6)  Assign a separate Account Key to step of (5) and parallely, in VKOA, assign a new G/L account to this account key.
    thanks
    G. Lakshmipathi

  • How to determine price difference account for 301 MT?

    I know that 309 movement type is used for tranferring a material to another material . If the prices of two materials are different, price difference will go into transferring account determined by transaction key AUM.
    301 movement type is used for transferring material A from plant 1000 to plant 2000. Suppose a scenerio:
    plant 1000, material A, standard price 115,
    plant 2000, material A, standard price 100,
    so, if I use MB1B to do a transfer posting, the  accounting entry must be:
    Dr: stock posting account    100
         price difference account   15
       Cr: stock posting account   115
    What I doubt is, in this scenerio, How to determine this price difference account in OMJJ and OBYC? It is also determined by transction key AUM like 309?
    Hope you can help. Thanks.

    I have checked that price difference account of 309 MT is also determined by AUM. But, from SAP documentation, AUM is described like this:  "This transaction is used for transfer postings from one material to another if the complete value of the issuing material cannot be posted to the value of the receiving material. " So I think that AUM is is used for transferring one material to another material, not used for transferring a material from one plant to another plant.  It is different therotically, I think. but, in practice, 301 and 309 both use AUM for price difference account.
    THis is my doubt.

  • For some apps it seems impossible to determine the price before, or even after, installing them. How can I get round this?

    For some apps it seems impossible to determine the price before, or even after, installing them. How can I get round this?

    Can you be clearer about what you're seeing?  The price should be clearly stated up front...  Is that not the case?  Note that there may be additional taxes that will increase the final price, and that can't be included in that up-front listed price, since taxes are different everywhere.

  • What determines the price and tax for consignment stock?

    Hi All,
    anyone knows how the price and tax are calculated for consignment stock? in other word, among the info record , contract or material master, what determines the price and the tax calculation for consignment stock?
    please advise, your input will be rewarded.
    thanks,

    Ravi,
    I have almost same Nancy's problem. I change tax code indicator on ME12 from N0 to N2, after that, I made the invoice verification on MRKO for a consignment material, however tax code N0 (original) was taked for the withdrawal.
    I followed up notes:
    Note 87860 - Consignment: determining tax code as of 4.0
    140675 - Consignment: Determination of tax code transition
    But these notes doesn't apply for 4.7. Do you know any note that apply on this version?
    Thanks in advance.
    Myriam

  • What determines the price and tax calculation for consignment stock?

    Hi All,
    anyone knows how the price and tax are calculated for consignment stock? in other word, among the info record , contract or material master, what determines the price and the tax calculation for consignment stock?
    please advise, your input will be rewarded.
    thanks,

    First preceeding is taken by contract and then info records of consginment

  • Agent determination in price variance workflow

    Hi all,
    I am facing some problem in workflow, can any one help me.
    for determing the agent in case of price variance in invoice we are using the rule 009000010(object type T024 is assigned). Can any one tell me how this determines the agent based on purchase group?
    now we have a requirement to change the behavior of determining the agent. If the Purchase order is crated by the temporary user(we have some temporary users), the agent determination should be like standard (like 009000010 rule), and for all other users we have to assign the agent name as same as user name.
    now for solving this i am planning to create a new rule of type "F"(Agent determination :function to be executed) and assigning a new function module.
    Function module will have two import parameters "puthcase group" "purchase order number". Using the purchase order number i will get the user, after that i will find the user type. If the user is temprory i have to determine the agent like standard way (like rule 009000010(object typeT024). Can any one please tell me how the rule 009000010 will determine the agent for the purchase group.
    Thanks & Regards,
    Raghu

    That rule is not available in the sandbox system I have access to, so it can't be a basic rule. Either it is customer-specific, or it belongs to some industry solution or add-on package.
    Generic advice: why don't you simply investigate how this rule solves its task? You can even copy it as a starting point for your own rule.

  • How to determine the object in the tablespace

    Hi
    I have a problem with my database, How can i determine the object in the tablespace
    and how do move old tablespace into new tablespace and how to drop existing tablespace.
    Thanks

    Hi,
    If you want to find for all objects information, you can use dba_segments and filter this against the tablespace name. Once done you can create another tablespace and move the objects from old tablespace to new tablespace. Later you can drop the old tablepspace. You can use the below mention commands also:
    SELECT 'ALTER TABLE '|| table_name ||' MOVE TABLESPACE USERS;'
    FROM user_tables WHERE tablespace_name='MY_TableSpace';
    SELECT 'ALTER INDEX '|| index_name ||' REBUILD TABLESPACE USERS;'
    FROM user_indexes WHERE tablespace_name='MY_TableSpace';
    SELECT 'ALTER TABLE '|| table_name ||' MOVE LOB ('
    || column_name ||') STORE AS (TABLESPACE USERS);'
    FROM user_lobs WHERE tablespace_name='MY_TableSpace';
    On the other hand,
    You can also export a backup of the source tablespace and import into the target tablespace.
    Regards,
    XIC

  • How to determine Default Table Logging (log data changes )

    Does anyone know how to view exactly what tables and related data fields have change logging enabled by default? I know that some of the standard reports will produce "edit reports" show who changed what field, when ,old and new values, etc, but I don't know how to determine where the data is retrieved from.
    For example: If I look in the ABAP Dictionary at table LFA1, technical settings, it shows that log data changes is not "checked" or enabled. But if I run the standard AR Master Data Change Report, I get output showing valid field changes.
    I have seen other threads that refer to SCU3 but I can't determine the above this from report.
    Any assistance would be greatly appreciated.

    Hi Arthur,
    As far as I am aware, these are 2 different things. 
    There is table logging which is at the table level & if activated (i.e. it's listed in table DD0LV, PROTOKOLL=X and the table logging parameter is set in the system profile/s).
    The second one is programatical logging for change documents when data is maintained though a program that has been written to include a log.  I'm not sure how to identify a complete lit of these though unfortunately.
    Hope that is of some assistance.

  • How to determine application architecture in terminal

    I'm wondering how Finder determines on which architecture an application is able to run.
    Using ditto --arch it is possible to extract PPC, PPC64 and i386 from a Mach-O application.
    But HOW can Finder tell that an application ist Classic ? Or is it also possible to determine Motorla 68000 architecture in old classic fat binarys ?
    I'm interested in that because I've got an iMac Core Duo that does not support classic any more and I want to find all classic apps on all my Fire Wire harddrives.
    thanks in advance
    Michael
    iMac Core Duo 20"   Mac OS X (10.4.5)  

    Hi Michael,
       The UNIX utility, "file" can distinguish between Cocoa and Carbon apps in many cases. Carbon apps usually return "header for PowerPC PEF executable". Compiled objective C, C++, and C executables return "Mach-O executable <Architecture>". Compiled Java classes return "compiled Java class data". Carbon apps for MacOS X return the same thing as classic applications. While they are almost the same thing, there are differences and I don't know how to spot them.
       Of course Cocoa applications are usually inside application bundles and if you apply the "file" utility to the containing directory, you will of course get an answer of "directory". You must apply file to the executable inside the bundle. The main one is always inside the Contents/MacOS subdirectory and always has the same name as the bundle, minus the ".app" suffix.
    Gary
    ~~~~
       I worked in a health food store once. A guy came in and
       asked me, "If I melt dry ice, can I take a bath without getting
       wet?"
             -- Steven Wright

  • How to make Different Price for same product in one Sale Order

    How can i customizing my system?
    I need to sale for different price same product A in one sale order. And price condition type cant be manually. i can separate them by position. for ex. in first position: product A is one price and in 2nd product A with discount. i tried to do it by changing a price group for 2nd position to determinate a discount condition but it generates invoice split.
    Someone have any suggestions?

    Hi
    you can have it automatically determined after some custo and using userexit_pricing_prepare_tkomp in MV45AFZZ and RV60AFZZ.
    The idea is to use ítem category field (PSTYV) as a part of pricing data to determine different prices for same material by changing manually ítem category when creating a sales order
    - you'll need to create a new ítem category copied from the one you´re using and do all assignments
    - add field PSTYV, if not there, to pricing field catalog. This thread has an example on how to and coding required for userexits
    http://scn.sap.com/thread/1693234
    - Adjust your pricing sequence as per new table
    - Maintain specific prices in new table for materials with this new ítem category
    Finally, when creating a sales order change, when required, default ítem category by new one to get specific price for material.
    Regards,
    JM

  • How can we settle price diff. in profit center valuation to COGS acc?

    Dear All,
    We have activated multiple valuations/transfer prices.
    We do perform cross company code material sale. We have assigned each profit center at company code level.
    We have set transfer price variant in t.code 8kez and have customized  accounts in Controlling-Profit Center Accounting-Transfer Prices-Settings for Internal Goods Movements -Define Account Determination for Internal Goods Movements.
    We had got posting logic described in http://help.sap.com/erp2005_ehp_05/helpdata/en/eb/13811243c411d1896f0000e8322d00/frameset.htm
    Now after actual costing run price differences in profit center valuation were not transferred to next level as we expected.
    They have stayed as not distributed at sender  (company code) profit center level.
    How can we distribute price differences in profit center valuation to COGS account of sender profit center defined due to
    http://help.sap.com/erp2005_ehp_05/helpdata/en/eb/13811243c411d1896f0000e8322d00/frameset.htm?
    With best regards,
    Kamila.
    Edited by: Kamilana Zhakenova on Dec 25, 2011 10:56 AM

    Dear Gurus,
    There is an addition to post above.
    Transfer price was defined in SD module in Sales and Distribution-Basic Functions-Pricing-Pricing Control-Define Condition Types.
    Now it is taken during cross company code sale from scheduling agreement and invoice.
    (Please, do not take into account that we have customized transfer prices in 8kez)
    But the issue is price differences in profit center valuation settlement.
    They do settle to the next level  for receiver company code  like in group valuation.
    We need to settle them to COGS account at company code sender side.
    How we can do that?
    With best regards,
    Kamila.
    Edited by: Kamilana Zhakenova on Dec 26, 2011 11:37 AM

  • How to determine max netstreams before failure

    Hi
    Everything on Adobe's website is listed as "unlimited" and scalable but I would like to know approximate actual numbers to estimate server hardware required
    I can't find out how to determine how many live audio/video netstreams per instance, specifically
    1) How many broadcasters per instance?
    2) How many subscribers/viewers per  broadcast?
    3) Does seperate application/instance provide better performance?
    I understand the exact number is based on the publish settings so everyone's setup is different, but is it just bandwidth consideration?
    Is there any server side functions and/or metrics besides general OS cpu/ram stats?

    • How do I determine how many songs will fit on a CD?
    Already answered by others.
    • I heard that the LAME encoder is the best out there, is there an easy way to use that encoder to convert AAC files?
    I don't think LAME is part of itunes. You need to find a different encoder. I think Max CDripper uses LAME. It's pretty common in other encoding tools so you need to search for one that you like and at a price you like.
    • Can I use the LAME encoder to convert the files and then use those files in iTunes instead of using iTunes to convert them?
    Yes. Understand though that nothing will convert iTunes AAC format DRM protected files except iTunes and then only to audio CD.
    • I have a play list I want to burn to an MP3 CD for the car. The playlist is composed of songs with both AAC and MP3 formats. Is there an easy way to convert an then use the AAC files for this playlist?
    iTunes will do this, or other audio encoders. The DRM limitation still applies, even to iTunes.
    Is there a high quality way of recording streamed songs along with the title/artist info?
    It depends upon the source. Different sources stream different ways, so what works with one will not always work with another. The one exception is something that captures any audio output from your computer. That doesn't capture with artist and song information, just any sound that happens to be coming from your computer. If it isn't easy to do it is probably because the people streaming the music really don't want to you do it, probably because of licensing, in which case the Terms of Use of this website don't let us discuss how to do it.

  • How to determine number of photos I have?

    I cannot find anywhere in Photoshop Elements where it tells the total of photographs I have in my collection.  The old version told this number in the lower right hand corner.  Is there somewhere in this newer version where I can find how many photos I have without having to count them?  Please help.  Thanks.

    Thanks so much Neale!!!
    In a message dated 2/19/2014 7:05:52 P.M. Eastern Standard Time, 
    [email protected] writes:
    Re:  How to determine number of photos I have?
    created by nealeh (http://forums.adobe.com/people/nealeh)  in Photoshop 
    Elements - View the full  discussion
    (http://forums.adobe.com/message/6137888#6137888)

  • How to determine pricing Programmatically

    hi all,
    Dynamic pricing—Programmatically determines the price.
    how to determine the pricing programmatically
    regards
    shya

    In ItemPricingEngine, three methods are there are there:
    ItemPriceInfo priceItem(CommerceItem pItem, java.util.Collection pPricingModels, java.util.Locale pLocale, RepositoryItem pProfile, java.util.Map pExtraParameters):Price a single item in a context
    java.util.List priceEachItem(java.util.List pItems, java.util.Collection pPricingModels, java.util.Locale pLocale, RepositoryItem pProfile, java.util.Map pExtraParameters):Price each of a List of items in a context
    java.util.List priceItems(java.util.List pItems, java.util.Collection pPricingModels, java.util.Locale pLocale, RepositoryItem pProfile, Order pOrder, java.util.Map pExtraParameters):Price a List of items together in a context.
    See http://docs.oracle.com/cd/E26180_01/Platform.94/apidoc/atg/commerce/pricing/ItemPricingEngine.html
    -RMishra

Maybe you are looking for

  • Should I use only standard fonts in pdf forms?

    I am converting a lot of professional forms (contracts etc) into fillable and signable pdfs. The documents use flowering serif fonts like Book Antiqua, Garamond, etc. as this has a certain traditional elegant look for contracts but I am tempted to ch

  • MacBook Air equivalent to windows bios

    Does the MacBook air allow you to get into the computer like using the Bios on a PC? Is there something I push when the computer starts up? I have a brand new air, 2012 13 inch.

  • BEST_EFFORT_QUERY Timeout - inconsistent behavior

    I'm seeing inconsistent results with the Best Effort Query/Timeout combination using the Jena Adaptor. Sometimes it appears that the timeout is working exactly as expected, after X amount of time (5 seconds in our case), the query returns with a subs

  • My edits aren't sticking in Adobe Bridge.

    I open from Bridge into Camera Raw, make an edit, then when I return to Bridge the edits haven't applied and I'm left with the original. A .xmp is created but no edits hold. I have to open from Camera Raw into Photoshop to save my edit. Most of my wo

  • Pricing proceedure

    hi, regarding import pricing proceedure, i have removed the account key in pricing proceedure. but still system is posting the Cusoms and freight clearing account. where will be the assignment? can any one guide me on this. govind. - account key effe