Update Consumption Value in EDM Profile From Meter Readings in DM

Dear,
Can it be possible that consumptions values from meter readings (for non interval readings / Non AMR meters) in DM imported / transfered to profiles in EDM.
Sohail Ashraf

In general non-interval measured point of deliveries are dealt with by a synthetic profile.
The synthetic profile is assigned to the installation and can be normed, e.g. to 1000 kWh.
In most cases you will have several synthetic profiles, where each one is used for customers that have such a profile.
Then in billing the usage factor is updated in such a way that the usage factor * normed consumption = actual consumption of customer. So if the customer consumed 2600 kWh the usage factor would be 2,6 for that period if his synthetic profile is normed to a 1000kWh.

Similar Messages

  • Remove EDM Profile from Interval Meter of an installation-Device Management

    My dear friends, I need sincere help from you .
    I have an installation with an interval device installed to it.
    We need to do full removal of this installed device by eg32.
    The interval meter is having EDM Profile attached to it. Before doing full removal of the device from the installation using EG32,
    we need to de-allocate the EDM Profile attached to this interval meter. Manually this is done by using transaction code - EEDM04
    but we need to do deallocation of profile using ABAP code.
    We need your help in this regard. Could you suggest ISU function modules that could be used to do the deallocation of the EDM profile from the interval Device/Meter.
    Your help is really needed and appreciated!
    Thanks,

    I think function module ISU_S_PROFASS_CHANGE might be useful.
    Isnt't it an option to prorate the profile allocation on device removal?
    You can set system parameter PRORATEPRO for this in customizing of device management:
    PRORATEPRO (Limit Prof. Alloc. for Rem./Repl./Mod./Chnge to Logical
    Reg.)
    During device installation/replacement/removal or when changing the
    logical register number, you can use this parameter to control
    whether the allocations of the profile to the register are limited.
    Edited by: evolderen on Apr 15, 2010 8:23 AM

  • De-allocating EDM Profile of an Interval Meter attached to an installation

    My dear friends, I need sincere help from you .
    This is an ISU requirement on which ABAP/functional  suggestions are required.
    I have an installation with an interval device installed to it.
    We need to do full removal of this installed device by eg32.
    The interval meter is having EDM Profile attached to it. Before doing full removal of the device from the installation using EG32,
    we need to de-allocate the EDM Profile attached to this interval meter. Manually this is done by using transaction code - EEDM04
    but we need to do deallocation of profile using ABAP code.
    We need your help in this regard. Could you suggest ISU function modules that could be used to do the deallocation of the EDM profile from the interval Device/Meter.
    Your help is really needed and appreciated!
    Thanks,
    Rohit

    I think function module ISU_S_PROFASS_CHANGE might be useful.
    Isnt't it an option to prorate the profile allocation on device removal?
    You can set system parameter PRORATEPRO for this in customizing of device management:
    PRORATEPRO (Limit Prof. Alloc. for Rem./Repl./Mod./Chnge to Logical
    Reg.)
    During device installation/replacement/removal or when changing the
    logical register number, you can use this parameter to control
    whether the allocations of the profile to the register are limited.
    Edited by: evolderen on Apr 15, 2010 8:23 AM

  • Consumption values

    Dear friends
    where can i enter the annual forecast values, these values r updated absed on the current market req  prepared as 5 weeks demand requirement, where can i enter this 5 weeks rolling plan. how its going to affect the annual forecast values. some of the key material have to be procured at least 4 month before. pl guide me.
    thanks
    Shivani

    Hi
    system updates consumption values in the forecast view of mat master automatically
    movement type it considers for consumption. normally the consumption will happen for the components only in which the it is consumed in the finish product.
    a. for components -  mvmt 261
    Do GI for the component and check in the material master forecast view, in the cosumption tab , the value ge updated for the particular material.s
    Edited by: raj on Jun 17, 2009 8:40 AM

  • Update the profile values at responsiblity level from backend

    HI Team ,
    Find sql for Updating the profile values at responbility level from backend?
    Thanks,
    Chandu

    Please also see:
    How to Change Profile Option Value Without Forms? (Doc ID 943710.1)
    APPS.FND_PROFILE
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_details?c_name=FND_PROFILE&c_owner=APPS&c_type=PACKAGE&c_detail_type=source
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_details?c_name=FND_PROFILE&c_owner=APPS&c_type=PACKAGE%20BODY&c_detail_type=source
    Thanks,
    Hussein

  • EDM Profile values

    Hi all,
    Could someone tell me what is the industry standard of profile values under Profile value Category "Quantity", whether it is readings or consumption.
    As of now when we compute the billed quantity it is calculated as sum of the profile values, indicating the profile values are consumption values.
    Are there also scenarios where meter readings (instead of consumption) are used in profile values. If so what is the procedure to compute the consumption
    With thanks & regards,
    Vinodh

    Profile values are typically consumption (electricity or gas, resp. kWh and m3) or demand (electricity, kW).
    I have not seen a scenario where the profile contained the readings. However if the meter (or metering system) would provide this information on a periodic time basis it would be no problem to store it in a profile.
    Consumption would then have to be derived in the RTP interface from the readings in the period billed.

  • Update table a columns using columns from table b (values of 2 columns of table b need to taken from table c)

    Guys,
    I need to update table A columns col3, col4, col5 and col6 by table b columns col3, col4, col5 and col6 however table b col5 and col6 values need to come from table c col1.
    Means table b col5 and col6 have values in it however i need to replace them with value from table c col1 and need to update table a col5 and col6 accordingly.
    table a and table b has col1 and col2 in common.
    i am trying something like this.
    Update a
    a.col3 = b.col3,
    a.col4 = b.col4,
    a.col5 = (select col1 from table_c c where c.col2=b.col5),
    a.col6 = (select col1 from table_c c where c.col2=b.col6)
    from table_A a inner join table_b
    on  a.col1=b.col1 and a.col2=b.col2
    can someone help me reframe above update query?
    thanks in advance for your help.

    Try the below:(If you have multiple values, then you may need to use TOP 1 as commented code in the below script)
    create Table tableA(Col1 int,Col2 int,Col3 int,Col4 int,Col5 int,Col6 int)
    Insert into tableA values(1,2,3,4,5,6)
    create Table tableB(Col1 int,Col2 int,Col3 int,Col4 int,Col5 int,Col6 int)
    Insert into tableB values(1,2,30,40,50,60)
    create Table tableC(Col1 int,Col2 int,Col3 int,Col4 int,Col5 int,Col6 int)
    Insert into tableC values(100,50,30,40,2,2)
    --Insert into tableC values(200,50,30,40,2,2)
    Insert into tableC values(100,60,30,40,2,2)
    Select * From tablea
    Update a Set
    a.col3 = b.col3,
    a.col4 = b.col4,
    a.col5 = (select col1 from tablec c where c.col2=b.col5 ),
    a.col6 = (select col1 from tablec c where c.col2=b.col6 )
    from tableA a inner join tableb b
    on a.col1=b.col1 and a.col2=b.col2
    --Update a Set
    --a.col3 = b.col3,
    --a.col4 = b.col4,
    --a.col5 = (select Top 1 col1 from tablec c where c.col2=b.col5 Order by c.Col1 asc),
    --a.col6 = (select Top 1 col1 from tablec c where c.col2=b.col6 Order by c.Col1 asc)
    --from tableA a inner join tableb b
    --on a.col1=b.col1 and a.col2=b.col2
    Select * From tablea
    Drop table tablea,Tableb,TableC

  • Getting an error while activating a planning area "Enter values for planning horizon From and planning horizon To for the storage time profile level"

    Dear S&OP community,
    I am getting following error while creating a planning ares in a newly installed sandbox. "Enter values for planning horizon From and planning horizon To for the storage time profile level".
    This what I did...
    1) Created new attributes and master data objects and activated them successfully.
    2) Time profile created and activated successfully
    3) Trying to create planing area by assigning  time profile in step 2 and assigned master data from step1..Unable to save the data and system returns 
    this error - "Enter values for planning horizon From and planning horizon To for the storage time profile level"
    My understanding is time profile needs to be active  but doesn't have to have values...
    Any help is appreciated.
    Thanks,
    Krishna

    YS,
    Here are my time profile settings
    Level       Name          Display Horizon - Past  Display Horizon - Future
    1             Monthly     -6                                       11         
    2             Quarterly     -2                                       3
    3             Yearly        -1                                       2
    Time profile is active and but time profile data is not loaded
    Thanks,
    Krishna

  • Updation of Consumption values in material master

    Dear Experts,
    For a FERT ,
    When I use strategy 40 , Consumption values ( PGI - Deliveries )are getting updated in MM02 in Forecast view.
    whereas,
    When I use strategy 50 , Consumption values are not getting updated in MM02 in Forecast view.
    Is there any setting to control this updation of Consumption values in Material Master ?
    Regards,
    Sheik

    Hi,
    Update of consumption is based on movement type, and you can decide which movement types should have or have not consumption updating.
    Check in transaction OMJJ if the movement types in question have indicator "Consumption posting" (field V_156_VC-KZVBU) as marked.
    If it is the case, consumption is updated, opposite for un-ticked.
    Hope that helps.
    Thanks.

  • How to update value in internal table from cdpos taking fname n value_new?

    hello everyone,
              i want to insert  value in internal table from cdpos table taking field name  from fname and value from value_new.but the problem is i am not getting how to map the corresponding field of internal table with fname value  which is the field name.
    for example
    i
    fieldname
    value
    name1
    raj
    name2
    sharma
    i want to update field name1. this name1 is there in fname with updated value in value_new  how to make name1 with fname value
    thanks and regards
    laxmikant soni

    Hi Laxmikant,
    If I have understood your requirement correctly, you need to update an internal table with latest 'value_new' from cdpos table where  'fname' = 'fieldname' .
    Hope the below logic will help you:
    FIELD-SYMBOLS: <wa_intab> LIKE LINE OF lt_intab.  "the internal table you want to change
    LOOP AT lt_intab ASSIGNING <wa_intab> .
       READ TABLE lt_cdpos INTO wa_cdpos           "lt_cdpos contains latest data selected from CDPOS
        WITH KEY fname = <wa_intab>-fieldname.
       IF sy-subrc = 0.
         <wa_intab>-value = wa_cdpos-value_new.    
       ELSE.
         "//logic if the name is not there in CDPOS
       ENDIF.
       CLEAR  wa_cdpos.
    ENDLOOP.
    If you wish to improve performance, I suggest using
    1. "transporting value_new" addition in READ TABLE,
    2.  select only the data which you require from CDPOS,
    3.  create the internal tables with only fields which you require,
    4.  when you are using SELECT,LOOP AT statements, limit records by using WHERE condition
    Regards,
    Kavya

  • Book out the Consumption value from the planned consumption

    Hello everybody,
    i am going to develope a consumption report, is there a BABI or Something Like This that  available to book out the Consumption value from the planned consumption? (to unplanned consumption)
    Thanks
    Best regards.
    DANI.

    I am currently working on a SQVI report just a prototype prior to having the programmer create an ABAP report. The trouble I am having is truly understanding how SAP tabulates the consumption. We are putting significant effort into this report and will let you know the results.

  • How to get updated table values from objectlistdataproviders

    how to get updated table values from objectlistdataproviders

    Hi,
    Here is a sample code
    start-of-selection.
    *Select the data you need into an internal table
      loop at it_mara into wa_mara.
    data that needs to be displayed in the output list
        write:/ box as checkbox,
                wa_mara-matnr under text-001,
                wa_mara-maktx under text-002,
                wa_mara-lgort under text-003.
    Hide the data that needs to moved to internal table
        hide:wa_mara-matnr, wa_mara-maktx, wa_mara-lgort.
      endloop.
      clear wa_mara.
    end-of-selection.
      lines = sy-linno.
    at line-selection.
      clear:it_matnr. 
      do lines times.
        check sy-index > 1.
        box = space.
        read line sy-index field value box.
        if box = 'X'.
    *data selected using check box is moved to internal table
          append wa_mara to it_matnr.
        endif.
      enddo.
    Regards,
    Jisha.

  • Consumption values not getting updated on the material mastere

    HI Gurus,
    can anbody please explain me the reason why the consumption values not getting updated on the material master. What kind of movements qualify to get updated on the material master? is it 261, 101, 701 and 702 etc only? or any movement that means issues, receipts etc? I just happened to see a few materials which had some movements occur in the past but they did not get updated on the material master. These materials used to have ND MRP type until recently and these were changed to VM few days agao. could this be a reason? Please throw some ligjht on this. Helpful replies will be appreciated
    Thanks
    Anushga

    Dear ,
    Use tcode - OMJJ and then do the following setting -
    for movement - 261,262, 201 and 202
    Statistically relev. - 2
    Consumption posting - R
    for movement - 701 and 702
    Statistically relev. - 2
    Abhinay
    Edited by: Abhinay Sachan on Sep 10, 2010 1:38 PM

  • Consumption values get updated in the table MVER

    Hi,
    Can anyone explain me how the consumption values get updated in the table MVER?
    If you have any doucments,it will be better......
    Thanks
    Srini

    hi,
    When ever you do the GR for the consumption postings, the material gets updated in the respective table...
    You can see the table in SE16 tcode...
    There is ABAP coding linkages, in which all the fields are stored in the forms of tables in the std sap system...
    Hope it helps...
    Regards
    Priyanka.P
    I request you to close the threads once you get the satisfied answers...

  • How to Get and Update properties values from XML tag Using Xquery or PL Sql

    Hi
    I have this tag
    <Solicitud Pais = "1">
    How i can get Pais value?
    How i can update Pais Value?
    Y can use Xquery funtions or PL SQL for this?
    Thak's
    Angel

    How i can get Pais value? ExtractValue
    How i can update Pais Value?UpdateXML
    Y can use Xquery funtions or PL SQL for this?Yes
    Without knowing more about your requirements, where information resides, or even a version of Oracle, that is the best I'll do.

Maybe you are looking for