Auto price master update(vk11) from Z Report values

Hello all,
My requirement is, I have developed a Z Costing report. From there my material price will be calculated on monthly basis.Same price i have to update in Pricing master under one fixed condition type. When ever i run the Z report the price for that material should get updated in the master.
Kindly suggest me how can i proceed with.
Regards,
Prabhu.

Dear Jobi,
Firstly thank a lot for your suggestion.
In what logic i can achieve this to update from report. What bapi or exit i can use. In this case i have to update konh,konp linking A* table also ??
Regards,
Prabhu.

Similar Messages

  • Change layout Update form from QBE report

    Is it possible to change the layout from the form that appears when i click on the update link from a QBE report? If yes: where?
    T.I.A.

    I don't think that is possible. You can try creating custom reports and forms and try linking them together using the link component to get the same effect.

  • Return PO Price is picked up from MAP of materia master,not from info.recod

    User Requirement :
    When creating return po ,the price is picked up from MAP of material master ,not from info.record
    I wrote a code at PO Enhancement "MM06E005" user exit  "EXIT_SAPMM06E_017",but don't change the price ,pls help me check what  the problem is ,thanks.
    The below is my code.
    DATA : M_VERPR LIKE MBEW-VERPR,
           M_PEINH LIKE MBEW-PEINH,
           M_MEINS LIKE MARA-MEINS.
    CLEAR :M_VERPR,M_PEINH,M_MEINS.
    CHECK SY-TCODE = 'ME21N ' OR   SY-TCODE = 'ME22N' OR   SY-TCODE = 'ME23N' .
    IF I_EKKO-BSART = 'ZNB7'.
        LOOP AT TEKPO.
      SELECT SINGLE VERPR PEINH FROM MBEW INTO (M_VERPR,M_PEINH)
                                             WHERE MATNR = I_EKPO-MATNR AND BWKEY = I_EKPO-WERKS.
        SELECT SINGLE MEINS FROM MARA INTO M_MEINS WHERE MATNR = I_EKPO-MATNR.
        TEKPO-INFNR = '  '.
        TEKPO-NETPR = M_VERPR.
        TEKPO-PEINH = M_PEINH.
        TEKPO-MEINS = M_MEINS.
        TEKPO-BPRME = M_MEINS.
        TEKPO-NETPR = TEKPO-NETPR * I_EKKO-WKURS.
        MODIFY TEKPO TRANSPORTING NETPR PEINH MEINS BPRME NETPR.
        CLEAR TEKPO.
      ENDLOOP.

    Hi  Gunawan,
    According your meaning ,I change the logic as following:
    IF I_EKKO-BSART = 'ZNB7'.
      SELECT SINGLE VERPR PEINH FROM MBEW INTO (M_VERPR,M_PEINH)
                                           WHERE MATNR = I_EKPO-MATNR AND BWKEY = I_EKPO-WERKS.
      SELECT SINGLE MEINS FROM MARA INTO M_MEINS WHERE MATNR = I_EKPO-MATNR.
      TKOMV-KNUMH = ''.
      TKOMV-KAWRT = M_VERPR  *  I_EKKO-WKURS.
      TKOMV-KPEIN = M_PEINH.
      TKOMV-KMEIN = M_MEINS.
    EndIF.
    But the values of the fields are not updated,I need to write the code in EXIT_SAPMM06E_017 of PO Enhancement,may you help me ,thanks.

  • Firefox 29 . Will auto update work ok without reporting missing files ?

    I am getting ready to switch from IE to Chrome or Firefox. I have read numerous complaints about the Auto Update feature on Firefox. Below is a copy of one of them. How common is this problem?

    Firefox has almost 1/2 billion users. Chances are there are many people will post about a problem even if it only affects a small minority or is fixed.
    Possibly you are asking about the Rapid Release Cycle. I think most would agree it initially caused problems mainly with incompatible addons. That problem is largely resolved now. Corporate users deploying Firefox may also have had issues but now have the option of using a different release channel of Firefox.
    Your article was apparently not attached, maybe you could provide a link to it. I would point out that discussion of Development issues is normally considered off topic on this forum. I will edit the title from
    * Is there a problem with missing files with FF auto updates?
    to
    * Firefox 29 . Will auto update work ok without reporting missing files ?
    That way the question is current and we actually expect developers to be around this week answering questions about Firefox 29.

  • Update a table in the database from a report

    The user needs to print a report multiple times for the day but needs to knwo whether or not the data was already printed so that it is not printed again...therefore I have a y/n/all field on the report to allow the user to choose what subsets of data to print...
    Problem is, how do I actually update the data base table and the subset of records currently printed as printed from the report runtime....how do I code this ...
    Please help......

    oyu can use the following to insert or update in data base from reports
    CMD_LINE := 'insert into Table values
    ('''||:toDate||''','||a||')';
    SRW.DO_SQL(CMD_LINE);
    CMD_LINE := 'update Table set net = '||a||'
    where ddate ='''||:todate||'''';
    commit ;

  • Mass Update price of Purchase Order from Info Record

    Dear guru ,
    I have created many purchase orders.
    After this creation I change the prices of linked info records.
    Does exist a transaction that mass update the price of purchase order from info record ?
    Thanks.

    Use transaciton MEI2 for price update in Mass.

  • Making a jtable auto updates itself from a mysql table

    Pretty much what the title says. How can i auto update the jtable for every time my mysql table is updated in anyway? i am implementing this auto update function in my admin program which displays a list of users who are online etc. from the moment a user is offline/online or changes other details displayed in my jtable, i want it to auto update the jtable as soon as the actual mysql table has been updated with new data...
    I was thinking of re doing the whole jtable i made and create a thread for that table that has a infinite while loop that keeps repainting the jtable with the new updated data from a mysql table query eg select * from table and store the data into a resultset which then gets transferred into a vector. Load the vector into the jtbale and their ya go�.
    what you think of this approach? Is their a better way to do this?
    at the moment, as soon as my application opens, the jtable views all the data from my sql table, however if it doesnt auto updates itself, cheers

    i am implementing this auto update
    function in my admin program which displays a list of
    users who are online etc. from the moment a user is
    offline/online or changes other details displayed in
    my jtable, i want it to auto update the jtable as
    soon as the actual mysql table has been updated with
    new data...Well you can make some changes to make implementation easy
    Ex: Create a table to keep a log of the changes in the system the dmin program read the log and replicate the changes as specified in the log on the table model.
    When reading the log the admin program keep track of the sequence no of the last read log entry and it reads ony the entries which has larger seq numbers than the last read seq no
    I dont think that it is critical to make this to be cloase to real time. An Update once a 1 or 2 secs should be sufficient.

  • Default currency in price master from customer master

    Can the currency in the customer  master be defaulted in to price master.
    since the users are using the currency in the price master different from the customer master. Because of this the values are posted to FI as incorrect

    Hi Pooja,
                  The currency you maintain in the customer master is the currency which is applicable to this customer(for settlement) for the particular sales area. Even If you maintain the currency as 'USD" here and raise a sales order, you can manually change the document currency.The system proposes the document currency from the customer master record of the sold-to party. You can change the currency manually in the document. If you change the currency, the system recalculates prices for the entire document.  But I imagine that your case is that the currency of the condition which you maintain in the condition record and If that's maintained differently by user, system will convert the currency in to the document currency anyway by using the rate maintained in the table "TCURR"/OB01. But there is a control for this in the condition type configuration "V/06" in the control tab "Convert currency" check box. Here we can specify the system whether the currency conversion should be done after multiplying the quantity and rate or before.Kindly please let me know If you need any more information on this.
    Regards,
    Ram Pedarla
    Edited by: RamPedarla on Mar 10, 2010 2:41 PM

  • What is effect of "Update EXIF From Master"?

    I can't find an explanation of this menu item. A search within the manual returns nothing (?!).
    A list view of my library in the browser shows that some photos do not have a lens information entry while others do. However, if I select a photo that has no entry and then click the "Update EXIF From Master" entry in the Metadata menu the lens information appears. Nothing else appears to be changed.
    However, not knowing what this option exactly does I am not sure if anything else is changed.
    This begs the question as to why some photos have that information while others do not (but can be made to appear).

    Aperture's metadata handling in the 1.x days skipped or missed some things (e.g. lens info). So images imported in the 1.x days may not have all the details. For these images, if you've upgraded to Aperture 2, running this may get you more EXIF info on the photo.
    For images that have been imported in the last 6 months, its not going to do anything at all.
    The one exception is if you somehow add GPS info to the RAW files themselves (with a tagging application) after they've already been imported. I think Ian Wood has a couple applications that will do this. Anyway, if you run this command after adding GPS info to a RAW file, I think Aperture will pick it up (I haven't managed yet to successfully add GPS info to a shot tho').

  • Updating a table from Oracle Report

    This is on Report 6i. How do I achieve this? I need to pass UPDATE statement on an oracle database table based on a condition from report formula.
    Thanks,
    R

    So, there is no difficulty in this. As normal DML are working. You can perform also UPDATE/INSERT from report on your condition. So, you can use where you want.
    Or you want to know something else?
    -Ammad

  • Can we update the data from SSRS report to any database ?

    Hi Team,
    Greetings !!!!
    Can we update the data from SSRS report to any database ?
    Thanks,
    Anand Gavle.

    Nope SSRS doesnt have write back options. Its just a reporting tool
    However one thing you can do is to link a webpage from SSRS report and do the changes through it
    SSRS has the ability to navigate to web page through which you can capture any data inputs from users and save it to your db.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Is it possible to update master data attributes from an ODS?

    HELLO ALL,
    we have records coming into our ods like the following:
    costcenter1, subcostcentera, subcostcenterb, manager responsible, costs (kf). 
    This is a custom flat file load from a legacy system.
    We would like to just create an update rule from the ODS to the cost center mater data characteristic attributes. 
    Is this possible?
    thank  you

    Yes its possible to update the master data attributes from an ODS.
    Define your master data characteristics as a infoprovider.
    Create a update rule on Characteristic with ODS as a source and do general mapping.
    For step by step, pls refer..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/business-intelligence/g-i/how%20to%20implement%20flexible%20master%20data%20staging

  • I made order on 14 sep but until now the total price not yet deducted  from my master card .. can u check plz .. 02 order under my id account  ********* thanks

    i made order on 14 sep but until now the total price not yet deducted  from my master card .. can u check plz .. 02 order under my id account  *******thanks
    <Edited by Host>

    Check your order status here http://store.apple.com/us/help/viewing_changing_orders if it was order on Apple's Online Store, or here... http://store.apple.com/us/account/home 
    Good luck!

  • Material Master Update from group routing.

    Dear All,
    When we make material routing. in CA02>scheduling>Results--->Update material master (marking). can be done for the lead time scheduling Purpose. and update in CA96.
    But when we use Group Routing, and assign multiple materials in routing header, and then go for
    CA02>scheduling>Results--->** (no Material Master Update tab Appeared)
    Do we have a solution for this?
    Thanks & regards
    Raghu

    Dear,
    Follow these steps,
    Scheduling in routing (CA02 ) as :
    Call up the operation overview for the routing.
    Choose Extras-- Scheduling -- Schedule.
    You reach the Scheduling dialog box.
    Maintain the data on the dialog box. The system proposes Backward scheduling for the scheduling type.
    Choose Continue.
    You reach the Enter overview variant dialog box  00000001.
    Enter the overview variant you want to use to display the scheduling results. Choose Continue.
    The routing is scheduled. You reach the Schedule Overview screen containing the scheduling data.
    After the scheduling run has been carried out, click on scheduling Result-- update material master
    You use this function to update material master. Go to the CA96 and update material master.
    Please try and come back.
    Regards,
    R.Brahmankar

  • I have an upgrade to the Master Collection CS5 from Production Studio premium and after reinstalling the software all the updates fail.

    "There was an error downloading this update. Please quit and try again later." In the past I had to contact Adobe because CS5 had a problem with the upgrade even though it was legal and had to press a few keys and enter a special code generated at Adobe.
    I am running a Mac with Yosemite
    How can I get my software to update?

    Daniel.e.weber please download and apply the updates directly from Product updates.

Maybe you are looking for

  • How to change order data in APO

    Hi, I am keen to know on ways to change order data in APO say order category BI.....we want to change date by taking input from cif user exit APOCF006.We need this information for the ongoing  project. I know two options...1) using BAPIs  2) Not very

  • Powermac running a HD TV?

    I'm planning on getting a quad before the new year. It'll be powering a 24" Dell monitor. As much as I would like to get a 30" Apple display I just can't pay that kind of money. However I would love to go with a 50' to 60" HDTV (second and or primary

  • Installing 9i & 10g database server on win xp pro

    Hi.. This is probably quite a basic question to most.. but can anyone tell me if i can install orcale 9i AND 10g on the same machine runnng in XP pro. I currently have 10g installed. Do I have to choose a different Oracle Home or something if i want

  • Variable restriction combination

    Hi, i have selection done by variable (manual inputs) but i need to set up a dependance between variables input. i have the main variable (A) which is an attribut of variable 2 (B) and B is an attribute of variable (C) I bps i created a characteristi

  • HT203167 My library is not showing up in iTunes.

    When I go into the store and click on Purchases, it shows my entire library but I can't get it to populate into my library.