GR without PO (501) using own price instead of M.Master Rec's price.

Hi all,
I have the following business process issue which I urgently need your help:
Background:
Currently our company will perform buying from another subsidiary (another plant in another company code) from a buying price offer by them and this process will not incur any initial PO, we will just receive the good from them.
Prior to using MIGO to post 501, finance side perform a account posting (at FI) using a dummy interco account (i.e. debit stock, credit dummy interco) on stock from other plant.
Lately we decide to make use of Migo-501.
However, when we perform GR without PO (mvmt type 501) in SAP, there is no price field for us to enter the price, and system will treat the valuation of goods receipt on the basis of the valid price in the material master record.
Question:
Because we buy some stock from this plant with a specific price, and it's different to the material price, Thus, our accounting people wants use the actual buying price from instead of using the material master price automatically from the system.
Is there a way to do this in the SAP?.
thanks a million

Hi,
the best area to post your question is <a href="http://tets">SAP's Service Marketplace</a>.
Here you'll get support by all the SAP specialists working in your business area.
Together with your questions you should also provide the name of the ERP component (if possible).
Kind Regards.

Similar Messages

  • Updating Material Master Moving Average Price using BAPI

    Hi,
    We need to create a program using which we can update material master moving average price for a specific material.
    For this we are using BAPI_MATERIAL_SAVEDATA.
    when we are executing this bapi with inputs, it is showing data updated or created but when we are checking it in MAterial Master the data (MOving Price ) is not getting updated.
    Please advise,
    Thanks.

    I am trying to use BAPI_MATVAL_PRICE_CHANGE to change the price of a material in material master
    (The moving average price [MAP] in Accounting View 1)
    Using the BAPI, I enter
    --> RFC target are
    -> Material No.
    -> Valuation Area
    --> Prices table (I enter the new price that i want)
    when I run the BAPI, i get error message (This can be seen in the returns table)
    ID --> CKMLSENDPRICE
    MESSAGE NUMBER --> 701
    DETAILS --> No customizing data for Valuation Area XXXX found
    PLease advise.

  • How does one delete background music and use ones own music instead

    How does one delete annoying background music and use ones own music instead in imovie

    Hi
    I have done exactly as you have said without success, the background music just keeps on playing even over my own choice of music.Perhaps I have unkowingly locked something out.
    Many thanks for trying to solve the problem
    F.F

  • Need a shortcut to "Allow pages to choose their own colors, instead of my selections above option preference" I know where it is and how to use it but I have to go through 7 mouse clicks to change it, then a few minutes later change it back. I also k

    Need a shortcut to "Allow pages to choose their own colors, instead of my selections above option preference" I know where it is and how to use it but I have to go through 7 mouse clicks to change it, then a few minutes later change it back. I also know the sequnce is alt t, alt o, alt c, alt a, then ok, ok. Got to be a way to make a one key short cut for this. I use a black background to reduce eye strain, but about 10% of the webpage I go to can't be send with black so I have to go into tools and hit 6 or 7 things to chnage it then after through with webpage have to do it all over at Not allow webpages to have own color. Very very cumbersome.
    == This happened ==
    A few times a week
    == made that way

    https://addons.mozilla.org/en-US/firefox/addon/toggledocumentcolors-198916/
    The above addon will solve your problem.
    Shortcut to toggle user color/page color :- Ctr+Shift+C

  • Set my own key instead of using KeyGenerator.generateKey() - how?

    How can I set my own key instead of using KeyGenerator.generateKey()?
    I don´t see any method that is alowing this.

    I have now tried my own.
    To send encrypted data through a CipherOutputStream, I have done this:
    private File file;
            private CipherOutputStream cos;
            private Cipher cipher;
            private PBEKeySpec key;
            private char[] password = "test".toCharArray();
            public SendFileThread(File file)
                this.file = file;
                try
                    key = new PBEKeySpec(password);
                    SecretKeyFactory factory = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
                    SecretKey pbeKey = factory.generateSecret(key);
                    cipher = Cipher.getInstance("PBEWithMD5AndDES");
                    cipher.init(Cipher.ENCRYPT_MODE, pbeKey);
                catch(Exception err) {err.printStackTrace();}
            public void run()
                byte [] mybytearray  = new byte [(int)file.length()];
                try
                    fis = new FileInputStream(file);
                    bis = new BufferedInputStream(fis);
                    bis.read(mybytearray,0,mybytearray.length);
                    OutputStream os = socket.getOutputStream();
                    cos = new CipherOutputStream(os, cipher);
                    int byteCount = 0;
                    int length = mybytearray.length;
                    while(byteCount < mybytearray.length)
                        cos.write(mybytearray[byteCount]);
                    os.flush();
                    os.close();
                    socket.close();
                catch(FileNotFoundException err){err.printStackTrace();}
                catch(IOException err){err.printStackTrace();}To receive the encrypted data and then decrypt it, I use the same password and Cipher.DECRYPT_MODE in the Cipher.init() method.
    private Socket sock;
            private DataInputStream din;
            private CipherInputStream cin;
            private BufferedOutputStream out_file;
            private Cipher cipher;
            private PBEKeySpec key;
            private char[] password = "test".toCharArray();
            public ListenForConnectionThread()
                try
                    key = new PBEKeySpec(password);
                    SecretKeyFactory factory = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
                    SecretKey pbeKey = factory.generateSecret(key);
                    cipher = Cipher.getInstance("PBEWithMD5AndDES");
                    cipher.init(Cipher.DECRYPT_MODE, pbeKey);
                catch(Exception err) {err.printStackTrace();}
            public void run()
                try
                    serverSocket = new ServerSocket(2000);
                    sock = serverSocket.accept();
                    Runnable r = new Runnable()
                        public void run()
                            try
                                cin = new CipherInputStream(sock.getInputStream(), cipher);
                                out_file = new BufferedOutputStream(new FileOutputStream("received_file.txt"));
                                int inputLine;
                                while((inputLine = cin.read()) != -1)
                                    out_file.write(inputLine);
                                out_file.flush();
                            catch(Exception err){err.printStackTrace();}When I run the application, I get this error:
    java.security.InvalidKeyException: requires PBE parameters.
    Why?

  • Recently no matter what I do, Firefox will not allow me to use Adobe Reader instead of it's own

    I used to be able to display pdf documents using Adobe Reader instead of Firefox's built in. I have tried everything that you suggest and that Adobe suggest. I have uninstalled and reinstalled Firefox. I have uninstalled and reinstalled Adobe Reader (11.0.09). I have gone to the options in Mozilla but when I try to change the Portable Document settings, I don't get the option for "Use Adobe Acrobat (in Firefox)". I do get the for Adobe Forms, but not for PDF documents. If I change it to use Adobe Reader, it downloads and then opens reader which is not I want. I want to use the plugin which is installed (I go to Add-ons and it is installed and "always activate").
    Help? This only started happening in the last month or so. I am running latest released Firefox (33.0.2), Windows 7 (up to date with all updates, etc.).

    That doesn't solve the problem. I have all those defaults. But in Firefox, it won't let me select for "Portable Document Format" to "Use Adobe Acrobat (in Firefox)" which it used to let me and which is what the Mozilla Firefox help stuff says to do. I can select Adobe Reader but then it downloads it and opens it in a separate reader window rather than using the plugin. If I select to let Firefox "Preview in Firefox", then the Firefox built-in PDF reader will display it. I have added an add-on "pdfViewerSwitcher" which then lets me display in the Adobe Reader plug-in but only after first displaying it in the Firefox preview. So that verifies that the Adobe Reader plug-in works. But I can't set it to always use the Adobe Reader plug-in.
    I have some reasons for wanting to use the Adobe Reader plug-in. I use Nuance Power PDF Pro for editing and doing other things with pdfs.
    This all used to work and stopped working at some point in the last couple months. And if you search the web, you will find I am not the only one with this complaint.
    I don't know whether it is Adobe's fault or Mozilla's fault but at least one of them is broken. And I think it is Firefox since it won't even let me select it but does let me select it for Adobe Forms.

  • HT3819 Can I authorize mulitple apple ids on the same device so that what is purchased on either account will be loaded in both devices without having to use the same ID?

    Can I authorize mulitple apple ids on the same device so that what is purchased on either account will be loaded in both devices without having to use the same ID?
    My wife has a laptop and an iphone 4s, I have a laptop and and iphone 4s, our two sons have our old iphone 3s, we have an old laptop for our sons to use.  Our old iphones for our sons are deactivated as phones - so they are used as i-touches for songs, pictures and aps.  I want to use icloud (which I'm new to) to hopefully have all four iphones and all three computers stay synced with at least music - if not aps and pictures.  My wife has an apple ID and I have one.  I'd like to authorize all three laptops for both apple IDs so that we will still have our own accounts, but everything either of us buys will be automatically loaded into all three laptops and all four iphones.  Can this be done?
    Thanks,
    sstultzcostello

    Each person in your home can have their own Apple ID provided it is tied the their own separate email address.
    iTunes permits up to five authorized computers connected to a single Apple ID: iTunes Store- About authorization and deauthorization.
    For this all to work well, however, each user in your household should have a separate user account on the computer they commonly use.

  • When "allow pages to choose their own colors, instead of my selections above" is un-checked in the options menu, I am unable to see images on websites. How do I maintain having the box un-checked and still view images?

    I recently decided to switch the colors around in Firefox. I work in a pretty dark environment and having dark colored text on white or bright backgrounds is rather difficult on my eyes in the dark.
    I switched the background to a dark gray, the text to a light gray and both visited and unvisited links to a light blue. Along with these changes, I unchecked the "allow pages to choose their own colors, instead of my selections above" box.
    After unchecking the box, I am no longer able to view images on many websites. The images all turn gray - as if Firefox has changed their image into part of the background. When I check the box, I am able to see images fine, however, the websites usually revert back to their bright backgrounds with dark text.
    Any help and assistance with this is greatly appreciated!
    Thank you!

    You can use the NoSquint extension to set font sizes (text/page zoom) and text colors on web pages.
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • Goods Receipt Amount based on PO price instead of moveing average price

    Is it possible to customise SAP so that the amount in Goods Receipt transactions is calculated based on quantity * PO price instead of quantity * moving average price?
    Thanks.

    Thanks for your reply.
    Standard SAP functionality:
    1. When material ledger is active, the GR amount is based on pre-GR moving average price.
    2. When material ledger is not active, the GR amount is based on PO price.
    We use the material ledger but want the GR transactions to record the amount based on PO price.
    Any suggestions?

  • Using own SQLite DB in combination with Data Management

    Hi,
    Currently on a huge project we're we are using LCDS 3.1 in combination with a AIR 2.5 client.
    I've been reading "Using Adobe LiveCycle Data Services ES2 version 3.1" and I have a question. In the chapter "Building an offline-enabled application" it says on the very first line:
    "You can use an offline adapter with an AIR SQLite database to perform offline fills when a desktop client is disconnected from the LiveCycle Data Services server. An offline adapter contains the SQL queries for AIR SQLite for retrieving cached items like an assembler on the server retrieves items from the data source."
    However, in my experience that AIR SQLite database is not just any DB but one that Datamanagment designs and generates itself, based on the Dto the DataManagement destination is managing. The offline adapter doesn't work like an assembler at all, because the documentation says you can only override the methods pertaining to constructing the WHERE, and ORDER BY parts of the queries, not the SELECT, CREATE, FROM,... parts.
    In our case, we have a database on the server, constructed according to a very specific ERD, and we have a SQLite database on the client, also constructed according to a very specific ERD. What we want to do is execute every fill, create, update, delete against the offline cache and only synchronize with the backend when we want it the synchronize (technically possible by playing with the autoMerge, autoSaveCache, autoConnect,... properties). So what part of datamanagement can we customize to use our DB instead of a generated one?
    Thx in advance!

    You are correct in noting that Data Management does not allow you to use your own database to store offline data.  This data is exclusively managed by the LCDS library for the developer.  The intent is that the local cache is a reflection of the server data, not an independent copy.
    If you have an existing database in AIR, then you will have much more direct control over the querying and updating of that data by using the SQLite APIs directly.
    That being said, you can in essence replicate the data stored on the server, managed by Data Management, in the offline cache.  In an upcoming release (winter 2011) we will have a few features ('briefcases' and a 'changes-only' fill) that will make this story even more compelling for your use cases.  But even with the 3.1 functionality, you can do something like the following:
    Perform a fill() to collect the data you want to have available on the client, save this in the offline cache
    Construct an Offline Adapter Actionscript class that implements the fills you want to perform on the local data
    Use the DataService.localFill() API to perform all of the client application fills, turn off autoCommit.
    When the client is online, call commit() to store client changes and call fill() to refresh the cached data.
    This should give you some ideas on how you could go about constructing your app to leverage the offline features of Data Services.
    Tom

  • GR without PO (501 Mvmt Type)

    Dear All,
    I request your help to resolve following issue.
    customer is doing goods receipt without any PO using 501 Mvmt Type. When invoicing using MIRO, what ref. document we need to consider? As there is no preceding document how to post invoice using MIRO.
    Could you please help in this regard
    Thaanks
    Rahul.

    Hi All,
    Thanks for your replies.
    Delivery Note Number will not be there when 501 Mvmt Type is used, Same case with Vendor, system is not accepting vendor in MIRO.
    Accounts Posted during GR with 501:
    Dr: RM bought out  1000+
    Cr: RM Consumed  1000-
    No GR/IR is triggering. Is this OK If I go for direct FI payments.
    Please advise.
    Best Regards
    Kalyan

  • I live in South Africa, I wonder if i can use debit card instead of card to purchase apps?

    Im a student and I do not own a credit card, I find out if i can use debit card instead of credit card to purchase apps.If the answer is yes can you explain how please.
    Thank you

    Apple used to list specific payment types accepted.  Now they have replaced it with a bland statement that's not much help. Log into your Store and see what card kinds are accepted in the Store interface window.
    iTunes Store: Accepted forms of payment - http://support.apple.com/kb/HT5552 - "The available payment methods vary by country, but typically you can use: Credit cards, iTunes Cards,  iTunes Store Gift Certificates, Content Codes, Store credit (including Allowance Account balances), ClickandBuy, PayPal" - No specific mention of debit cards though older documents no longer on Apple website showed they at least used to be accepted in some countries (not USA).

  • Create XML element without closing tag using Visual C++

    I know how to create xml element with closing tag (using WriteStartElement and WriteEndElement methods)
    <tag id="1234">
    </tag>
    but is there a way in Visual C++ to produce xml element like this
    <tag id="1234"/>
    i.e. without closing tag?

    Hi adamay,
    Please refer to this thread.
    http://stackoverflow.com/questions/8182245/create-xml-element-without-closing-tag-using-xslt
    I think you could try the way of write your own class derived from XmlWriter.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Using own domain - newbie needs help!

    I've never created a webpage before, so bear with me! I've started one in iWeb and purchased my own domain from GoDaddy.com. I changed the CNAME per the directions of iWeb/me.com. However, my page is not being published under the personal domain name I purchased. The domain name is showing up on me.com under my webpages. I've "Published All to .Mac" and when it asks me to go to my site after it's published, I get the generic GoDaddy parked site for my personal domain. What else do I need to do to get this working? Sorry to be so ignorant, but any help would be appreciated!
    Thanks!!
    Message was edited by: hokie1998

    What you need to do to set-up CNAME is to firstly enter your domain name into the personal domain name option of MobileMe. If you look, you will see that www is already there, so you don't need to enter this, just yourdomainname.com or whatever and then confirm it in the second box and click on done and it will be set.
    You then need to go to your control panel settings at GoDaddy, where you got your domain name from. What you need is the DNS settings and your domain name should already show there. All are slightly different, but what you then need to do is enter www, then pick CNAME from a drop down menu or complete it and then either web.mac.com or web.me.com to redirect your domain name. This then means that you domain name will be forwarded to your iWeb site at web.mac.com.
    If you want a simpler way to do it, you can just use web forwarding instead, which means that you don't need to complete the personal domain in your MobileMe account. All you need do is go to the web forwarding section of your control panel at GoDaddy and enter your domain name and then forward it to web.mac.com/username/sitename or web.me.com/username/sitename.
    Remember that for CNAME forwarding you always forward to web.mac.com and for just forwarding you would enter web.mac.com/username/sitename.
    CNAME forwarding can take up to 24 hours to take effect, so you could have a wait, although most hosting companies are a lot quicker than this.

  • Nested application module use own connection

    Hi everyone,
    I'm trying to figure out how to let a nested application module use it's own connection instead of it's parent.
    Any suggestions?
    We're using Jdeveloper 10.1.3.3.0.
    Regards

    Hi,
    The issue is not about the data, but about the database connection. The idea is to have a general BC library (with iits Application Modules and View Objects), using its own database schema, and have that one imported in other applications, with other database schemas.
    We have to use these imported BC's in the application AM, because that's the way JHeadstart works. This will result in a table not found exception, because the imported VO's are in another schema.
    We were hoping that we could nest an imported Application Module and that it uses its own connection to its own database schema, but unfortuantely that does not seem possible since nested application modules inherit the connection of the parent (root) application module.
    Or is there perhaps a way to achieve this; i.e. have a nested application module using its own database connection and not inherit this from its parent?
    Ciao
    Aino

Maybe you are looking for

  • What to do if iPod Touch 4th G does not appear on iTunes or on Devices & Printers(Windows 7)?

    I already did the troubleshooting given by Apple, but it didnt work. So i tried resetting it to factory settings, but it just shows me a black screen so I can connected to iTunes. Please Help ME!!

  • Arg! Airport Extreme to Extreme- Can't Connect via ethernet

    Hello- Arg! Frustrated and can't figure out what's going on. Goal: Wirelessly connect an airport extreme to another airport extreme and use the 2nd Extreme as a local wired hub. Problem: Everything works fine, but any machine that is hooked up to the

  • Error in RFC and Lower Layer

    Hello, One of the user getting below dialog box error while executing "MASS" transaction in R3 system. Error in RFC and Lower Layer Error : SYSTEM_CANNOT_WRITE_TABLE function rfctr_drvset module $ld://bas/710_REL/src/krn/rfc/abrfctrc.cpp#3 $SAP line

  • Building portal EAR without workshop

    Has anyone successfully built an EAR file without using either the wlwBuild.sh/cmd or the wlwBuild ant tag? I have a number of reasons why this particular method isn't viable, I won't go into the details. My current method works fine with the server

  • ITUNES WON'T LET ME BURN A CD! HELP..

    I've burned CD's before, many of times, & it's worked.. but for some reason now, when I go to burn a CD, it doesn't work! The discs are blank, & it'll burn the first song of my playlist, but after that, it stops & sits there doing nothing for about 5