Condition for charging tenant at per hour basis

Hi Experts,
I need to charge a fixed rental per hour from customer based on air-conditioner (AC) running.
For example Rs. 2000 per hr will be charged where Rs. 2000 is constant charge but AC run by Cutomer varies in one month it may be 160 hrs, in other month it may be 200 hrs, so on.
Therefore rent also varies i.e. first month Rs. 320,000 (2000160) and in second month Rs. 400,000 (2000200)
Please provide the solution for the same.
Regards,
Manish

Hi Manish,
You can design your requirement in different ways, depends on the level of requirements.
One way could be sales based settlement, maintain sales based condition type and sales rule with your fixed price (Rs.2000).
And update sales reports for consumption (AC utilization) and run the settlement run.
Hope it will helps you, let me know if you need any more in detail.
regards,
Srini

Similar Messages

  • Connection fee - Charge on Per minute basis or Per...

    I am new and want to use Skype to call Fix and Mobile line, I find there is a connection fee. Does that charge on on Per minute basis or Per connection basic?
    Thanks,
    Jeff
    Solved!
    Go to Solution.

    Hi,
    A connection fee is charged when you use Skype Credit to call a mobile or landline. Connection fees are charged according to the currency set in your Skype account, and per call.
    For more information on how to find which connection fee applies to the country you are calling, visit:
    https://support.skype.com/faq/FA1050
    Connection fees are also subject to the following conditions:
    - If the call lasts less than one second, the call is not charged.
    - If the call lasts more than one second, the connection fee is calculated based on your account currency.
    - If your currency is not set, the connection fee will be calculated in Euros.
    - If your billing address is within the EU, the connection fee is subject to 15% VAT – so for example, the actual cost for a connection fee of €0.039 (the global rate) would be €0.045. However, since your Skype Credit has been subject to 15% VAT at the time of purchase, you would see the amount of €0.039 deducted from your Skype Credit.
    - If a call is declared to be free of charge (such as a promotion or 0800 number) the connection fee is not charged.
    - If you have one of our Unlimited subscriptions, the connection fee is not charged for the calls covered by the subscription.
    Hope this helps.
    Did my reply answer your question? Mark it as a solution to help others, Thanks.

  • View to find Physical read and Write per hour

    HI,
    My oracle database is running with 11.2.0.3 and we are analysing the database. we would like to understand what the average load time per hour is for  a database under normal circumstances e.g. 5 TB /Hr ?
    What I want to know is, Is it possible to find the amount physical reads and writes happened per hour basis on database. Is there any view to find this ?
    Thanks,
    Kesav.

    1e36fe40-5d07-412e-8ed2-704c647ed7a7 wrote:
    HI,
    My oracle database is running with 11.2.0.3 and we are analysing the database. we would like to understand what the average load time per hour is for  a database under normal circumstances e.g. 5 TB /Hr ?
    What I want to know is, Is it possible to find the amount physical reads and writes happened per hour basis on database. Is there any view to find this ?
    Thanks,
    Kesav.
    number of READ operations?
    number of bytes read?
    SQL> desc v$IOSTAT_FILE
    Name                                      Null?    Type
    FILE_NO                                            NUMBER
    FILETYPE_ID                                        NUMBER
    FILETYPE_NAME                                      VARCHAR2(28)
    SMALL_READ_MEGABYTES                               NUMBER
    SMALL_WRITE_MEGABYTES                              NUMBER
    LARGE_READ_MEGABYTES                               NUMBER
    LARGE_WRITE_MEGABYTES                              NUMBER
    SMALL_READ_REQS                                    NUMBER
    SMALL_WRITE_REQS                                   NUMBER
    SMALL_SYNC_READ_REQS                               NUMBER
    LARGE_READ_REQS                                    NUMBER
    LARGE_WRITE_REQS                                   NUMBER
    SMALL_READ_SERVICETIME                             NUMBER
    SMALL_WRITE_SERVICETIME                            NUMBER
    SMALL_SYNC_READ_LATENCY                            NUMBER
    LARGE_READ_SERVICETIME                             NUMBER
    LARGE_WRITE_SERVICETIME                            NUMBER
    ASYNCH_IO                                          VARCHAR2(9)
    ACCESS_METHOD                                      VARCHAR2(11)
    RETRIES_ON_ERROR                                   NUMBER
    SQL>

  • Q: Count concurrent sessions per hours in a specified interval

    Hi,
    I have this table wich contains SESSIONID, CREATEDATE, LASTCHECKDATE, EXPIREDATE, PARTNERID
    We need to make a query that would return the number of max concurent session per hours for the interval specified.
    For example, for last week, on a per hour bases, or day bases, the top concurent session for each hour or day depending on the report.
    can do the number of new session on each hour with this query;
    SELECT TO_CHAR(createdate, 'YYYY/MM/DD HH24') ||'h ' start_time, COUNT( SESSIONID ) new_sessions, name || ' {' || partnerid || '}' as Partner
    FROM uws
    WHERE expiredate IS NOT NULL
    and partnerid=25
    and TO_CHAR(createdate,'YYYY/MM') = '2010/05'
    group by TO_CHAR(createdate, 'YYYY/MM/DD HH24') ||'h ', name || ' {' || partnerid || '}'
    ORDER BY 1 DESC;
    I think I should use MAX(count(sessionid)) and probably some DECODE when c1 between createdate and lastcheckdate...
    This would need to run on sqlplus from a shell script if possible and even chart it on Google Charts.
    Any help appreciated, note that I am not an Oracle expert..
    Edited by: user11954725 on Jul 19, 2010 5:55 PM

    Thanks Frank,
    I think we are very close to the solution I am looking for now;
    Here is the script you gave me (with little modifications) and the output;
    WITH     all_hrs          AS
         SELECT     min_hr + ((LEVEL - 1) / 24)     AS period
         ,     min_hr + (LEVEL / 24)     AS next_period
         FROM     (
                   SELECT TRUNC (MIN (createdate), 'HH')     AS min_hr
                   ,     TRUNC (MAX (LASTHEARTBEATDATE), 'HH')     AS max_hr
                   FROM     userwebsession
    where createdate <= TO_DATE('07-MAY-2010 00.00.00','DD-MON-RR HH24.MI.SS')
    and LASTHEARTBEATDATE >= TO_DATE('07-MAY-2010 23.59.59','DD-MON-RR HH24.MI.SS')
         CONNECT BY     LEVEL <= 1 + (24 * (max_hr - min_hr))
    SELECT     TO_DATE(a.period,'DD-MON-YY hh24') "Period"
    ,     COUNT (u.userwebsessionid)     AS sessions
    FROM          all_hrs     a
    LEFT OUTER JOIN     userwebsession     u     ON     a.period     <= u.LASTHEARTBEATDATE
                        AND     u.createdate     <= a.next_period
    group by a.period
    ORDER BY a.period
                   SELECT TRUNC (MIN (createdate), 'HH')     AS min_hr
                   ,     TRUNC (MAX (LASTHEARTBEATDATE), 'HH')     AS max_hr
                   FROM     SPEAKESL.userwebsession
    where createdate <= TO_DATE('07-MAY-2010 00.00.00','DD-MON-RR HH24.MI.SS')
    and LASTHEARTBEATDATE >= TO_DATE('07-MAY-2010 23.59.59','DD-MON-RR HH24.MI.SS');
    produce output;
    Period SESSIONS
    19-APR-10 15
    19-APR-10 12
    19-APR-10 15
    19-APR-10 18
    19-APR-10 6
    19-APR-10 7
    19-APR-10 6
    19-APR-10 16
    19-APR-10 18
    19-APR-10 21
    19-APR-10 19
    19-APR-10 24
    19-APR-10 15
    19-APR-10 7
    19-APR-10 10
    19-APR-10 6
    19-APR-10 9
    19-APR-10 7
    19-APR-10 6
    20-APR-10 5
    20-APR-10 5
    20-APR-10 6
    20-APR-10 7
    20-APR-10 7
    20-APR-10 13
    20-APR-10 7
    20-APR-10 6
    20-APR-10 4
    20-APR-10 8
    20-APR-10 8
    20-APR-10 6
    20-APR-10 14
    20-APR-10 7
    20-APR-10 5
    20-APR-10 14
    20-APR-10 9
    20-APR-10 9
    20-APR-10 7
    20-APR-10 5
    20-APR-10 4
    20-APR-10 5
    20-APR-10 3
    20-APR-10 4
    21-APR-10 4
    21-APR-10 5
    21-APR-10 5
    21-APR-10 5
    21-APR-10 5
    21-APR-10 5
    21-APR-10 6
    21-APR-10 7
    21-APR-10 8
    21-APR-10 14
    21-APR-10 7
    21-APR-10 8
    21-APR-10 4
    21-APR-10 6
    21-APR-10 10
    21-APR-10 26
    21-APR-10 14
    21-APR-10 10
    21-APR-10 12
    21-APR-10 6
    21-APR-10 7
    21-APR-10 6
    21-APR-10 5
    21-APR-10 6
    22-APR-10 7
    22-APR-10 7
    22-APR-10 7
    22-APR-10 6
    22-APR-10 7
    22-APR-10 8
    22-APR-10 9
    22-APR-10 5
    22-APR-10 21
    22-APR-10 7
    22-APR-10 34
    22-APR-10 29
    22-APR-10 29
    22-APR-10 10
    22-APR-10 21
    22-APR-10 17
    22-APR-10 50
    22-APR-10 43
    22-APR-10 43
    22-APR-10 26
    22-APR-10 13
    22-APR-10 16
    22-APR-10 15
    22-APR-10 35
    23-APR-10 6
    23-APR-10 3
    23-APR-10 4
    23-APR-10 4
    23-APR-10 2
    23-APR-10 3
    23-APR-10 2
    23-APR-10 2
    23-APR-10 4
    23-APR-10 11
    23-APR-10 6
    23-APR-10 14
    23-APR-10 16
    23-APR-10 20
    23-APR-10 11
    23-APR-10 20
    23-APR-10 43
    23-APR-10 30
    23-APR-10 46
    23-APR-10 41
    23-APR-10 26
    23-APR-10 50
    23-APR-10 51
    23-APR-10 66
    24-APR-10 4
    24-APR-10 2
    24-APR-10 2
    24-APR-10 2
    24-APR-10 2
    24-APR-10 2
    24-APR-10 2
    24-APR-10 2
    24-APR-10 2
    24-APR-10 2
    24-APR-10 5
    24-APR-10 5
    24-APR-10 3
    24-APR-10 2
    24-APR-10 3
    24-APR-10 5
    24-APR-10 6
    24-APR-10 5
    24-APR-10 4
    24-APR-10 3
    24-APR-10 4
    24-APR-10 4
    24-APR-10 2
    24-APR-10 2
    25-APR-10 2
    25-APR-10 2
    25-APR-10 2
    25-APR-10 2
    25-APR-10 2
    25-APR-10 2
    25-APR-10 3
    25-APR-10 3
    25-APR-10 4
    25-APR-10 4
    25-APR-10 4
    25-APR-10 3
    25-APR-10 2
    25-APR-10 2
    25-APR-10 5
    25-APR-10 6
    25-APR-10 4
    25-APR-10 5
    25-APR-10 4
    25-APR-10 5
    25-APR-10 6
    25-APR-10 5
    25-APR-10 3
    25-APR-10 3
    09-MAY-10 7
    09-MAY-10 8
    09-MAY-10 8
    09-MAY-10 6
    09-MAY-10 8
    09-MAY-10 8
    09-MAY-10 5
    09-MAY-10 5
    09-MAY-10 5
    09-MAY-10 5
    09-MAY-10 5
    09-MAY-10 5
    09-MAY-10 5
    09-MAY-10 5
    09-MAY-10 5
    10-MAY-10 7
    10-MAY-10 6
    10-MAY-10 6
    10-MAY-10 7
    10-MAY-10 5
    10-MAY-10 5
    10-MAY-10 5
    10-MAY-10 5
    10-MAY-10 6
    10-MAY-10 12
    10-MAY-10 12
    10-MAY-10 20
    10-MAY-10 12
    10-MAY-10 13
    10-MAY-10 14
    10-MAY-10 17
    10-MAY-10 12
    10-MAY-10 15
    10-MAY-10 14
    10-MAY-10 12
    10-MAY-10 8
    10-MAY-10 8
    10-MAY-10 7
    10-MAY-10 7
    11-MAY-10 7
    11-MAY-10 7
    11-MAY-10 8
    11-MAY-10 8
    11-MAY-10 7
    11-MAY-10 30
    11-MAY-10 37
    11-MAY-10 43
    11-MAY-10 22
    11-MAY-10 14
    11-MAY-10 17
    11-MAY-10 19
    11-MAY-10 26
    11-MAY-10 20
    11-MAY-10 20
    11-MAY-10 30
    11-MAY-10 14
    11-MAY-10 18
    11-MAY-10 11
    11-MAY-10 12
    11-MAY-10 8
    11-MAY-10 8
    11-MAY-10 10
    11-MAY-10 8
    12-MAY-10 14
    12-MAY-10 12
    12-MAY-10 75
    12-MAY-10 51
    12-MAY-10 38
    12-MAY-10 39
    12-MAY-10 22
    12-MAY-10 17
    12-MAY-10 13
    12-MAY-10 12
    12-MAY-10 11
    12-MAY-10 17
    12-MAY-10 30
    12-MAY-10 28
    12-MAY-10 23
    12-MAY-10 20
    12-MAY-10 18
    12-MAY-10 12
    12-MAY-10 15
    12-MAY-10 16
    12-MAY-10 14
    12-MAY-10 28
    569 rows selected
    MIN_HR MAX_HR
    19-APR-10 12-MAY-10
    Now the output seem to produce the concurrent sessions as needed but the date range show is not exactly.
    I expect the output to display only for the range specified in parameter, which if for this example only one day.
    Probably if we ask for more that few days, we would like to display the MAX number of concurrent session for one day and the average (optional) also for that day and this for all days in the period.
    So for example based on the above output this next level report would output as follow (for period of 19-APR-10 to 27-APR-10;
    19-APR-10 24
    20-APR-10 14
    21-APR-10 26
    22-APR-10 50
    23-APR-10 66
    24-APR-10 6
    25-APR-10 6
    26-APR-10 105
    27-APR-10 44

  • T61 charging very slow, 1% per hour.

    I thought that my T61 was not charging, but it seems like it just charges very slow. Approximately 1 % per hour. Any ideas?

    Your 90 w adapter is broken, the 65 w is not suitable for your machine, if you have the nvidia GPU. There is no sufficient power to charge your battery from the 65 w adapter. 
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Is it possible i am using duplicate charger for charging battery but battery life is very short 6 hours what's the problem

    Is it possible i am using duplicate charger for charging battery but battery life is very short 6 hours what's the problem

    First, the battery. The recalled battery replacements have not held up well, and, unfortunately, feedback on the Apple site isn't what I would call complementary about their batteries. When I replaced mine, I got a Newer Technology battery from OWC at http://eshop.macsales.com/item/Newer%20Technology/BAP17AL60RS/ . Mine has 104 cycles on it and 4113 mAh capacity.
    Now, charging. There are only 4 components in the charging circuit: Power adapter, DC-in card, battery and logic board. It sounds like your power adapter, being newer, is probably fine. Where the power adapter plugs into the computer, is that jack loose? If you put a pen or pencil on it and push it a little, gently, does it wiggle side-to-side? If so, your DC-in card may be bad. Assuming the battery stats are good and the battery is good, it should charge. Sooo, last but not least, is the logic board. Probably the best thing you can do is find a friend with a Powerbook or visit an Apple store or Apple authorized service provider to use another power supply that they know works (just to be sure) and a substitute battery (again, to be sure). If indeed yours are good, and I went through this a few months ago with one of our Powerbooks, you can replace the DC-in card, and if that doesn't work, then the logic board.
    If you want Apple to do that, have them send it to the Apple depot, where they'll do whatever is required to put the Powerbook in close to new condition. Put an old, bad, Apple battery in it, so they'll replace it. Cost runs around $350 if the case isn't banged up, and if it is, the price can go up. When ours went in, they replaced the logic board and put a new battery in. Of course ensure your data is backed up, and if anything is really confidential, move it onto an encrypted disk on your hard drive or back it up and delete it.
    If you have the store replace the logic board, it will run you more than double what they charge to send it to the depot.

  • Just bought an iPhone 5s, as I turned on the phone it showed 71% of battery, I drained it to 15% and next charged it for 3 and a half hours to fully charged. Did I do any mistake ? Should have I let it to get discharged in order to fully charge it ?

    Just bought an iPhone 5s, as I turned on the phone it showed 71% of battery, I drained it to 15% and next charged it for 3 and a half hours to fully charge. Did I do any mistake ? Should have I let it to get discharged in order to fully charge it ? Somebody told me I should have let it discharged and then to fully charge, but I didn't do it, my iphone is working very well, the battery too but I'm worried if the battery lifespan is gonna get worsen soon if I didn't abide by the rules and procedures of battery charging.
    I had problems on my previous iPhone 4s, it died because I didn't replaced the battery with a new one because my battery never worked well and I never knew it , the battery used to overheat my iPhone and it caused to damage my processor completely to death. Who does the replacement of the iphone processor?  I need help how to maintain with the iphone battery. And also let me know if I did something wrong that I should get worried about or not ?!?!

    Apple does not fix the iPhone 4S, they replace the phone. If not covered by warranty, called an out of warranty exchange. Cost is US $199. Make an appointment at any Apple store.
    Be aware, Apple does not sell iPhone parts, thus there is no legitimate source for genuine parts.

  • I got my iPhone stolen at a party, the next day my friend gave me back my iPhone 4s and he said that it was jailbroken. Now it will not turn on. When i plug it in to a charger, the apple logo appears for about ten second, then connect to iTunes stays on.

    Hello, i have a question on my iphone 4s. I went to a party a few days ago and it had gotten stolen. The next day my friend said that he had found it and it was jaibroken? The phone was on 1 % when i had recieved it. It then died and i plugged it in to the charger. When i plugged it in the apple logo appeared as if it was starting but, it wasnt. The apple logo appeared for about ten seconds and then the screen went black. After that, the connect to itunes screen popped up and will not go away. So now when i take it off of the charger the screen just stays black and wont turn on? I tried connecting it to itunes and restoring it. But it wont even show my phone any more on the side of itunes. I tried restoring it and an error had occured (2001). I have looked up on youtube how to fix this problem and non of them have helped or worked. Its my only phone and i cant even text my girlfriend which bothers me terribly!! Please help me ASAP!!

    The terms of service of the Apple Support Communities prevent us from helping anyone with a jailbroken phone.
    You're on your own.  Good luck.

  • Photos tells me it is connecting to Library for shared photos. It's been saying this for about ten hours. I can't stop it from searching or get it to do anything else. I can go back to my photos but I can't get Photos to find the shared items.

    Photos tells me it is connecting to Library for shared photos. It's been saying this for about ten hours. I can't stop it from searching or get it to do anything else. I can go back to my photos but I can't get Photos to find the shared items.

    Be sure Safari does not have the Block Pop-Up Windows preference set.
    Where I work now there are several unencrypted VLANs that require authentication, and Safari promptly pops up a window for me to register every time.

  • I was away for 3 weeks and just got back. Put my Mac on charge and after 4 hours it still won't come on. Help!!!

    I was away for 3 weeks and just got back. Put my Mac on charge and after 4 hours it still won't come on. Help

    Rachg wrote:
    Had turned off all power supply incase a socket blew. (happened before) so my mbp was on sleep
    You should have turned your MBP off!  Keeping it on sleep w/o use for 3 weeks makes no sense.  As others have already stated, you will need to take your comp to a repair shop.  More than likely you need a new battery.

  • CCR Report for a plant on Hourly basis

    Dear All,
    My Business requested us (BASIS) to reshedule CCR Report (background job) for a plant to run on hourly basis which was on daily basis early. Could this effect the load/performance  of the system?
    The usual time for completion of this job daily is 30 mins.
    Please suggest/guide.
    Regards,
    kk

    Hi,
    I am sending herewith SQL statement for populating data into the concern tables
    To make easier for further testing your script.
    insert into calls values (0772740929, 22-SEP-06 05.22.44.123)
    insert into calls values (0882740929, 22-SEP-06 05.22.44.123)
    insert into calls values (0772740929, 25-SEP-06 05.22.44.123)
    insert into calls values (0662740929, 27-SEP-06 05.22.44.123)
    insert into calls values (0452740929, 22-SEP-06 05.22.44.123)
    insert into calls values (0992740929, 24-SEP-06 05.22.44.123)
    insert into calls values (0992740929, 26-SEP-06 05.22.44.123)
    insert into events values (3, 22-SEP-06 05.22.44.123,1918)
    insert into events values (4, 22-SEP-06 05.32.44.123,1918)
    insert into events values (3, 24-SEP-06 05.22.44,1920)
    insert into events values (4, 24-SEP-06 05.42.44,1920)
    insert into events values (3, 26-SEP-06 05.22.44,1958)
    insert into events values (4, 26-SEP-06 05.52.44,1958)
    Insert into games values (1918,’ Copy of QN27030628’)
    Insert into games values (1920,’ Test Game TF1sarah’)
    Insert into games values (1958,’ Test Car Race’)
    Thanks
    jayesh

  • Client wants freight charges to exclude from discount base for payment

    Dear All,
    Client wants freight charges to exclude from discount base for payment to vendor.
    We have maintain the customization of "Discount base is net value" in Global Parameters for company code.
    But while payment to vendors, the system is adding the freight amount in the discount base, which should not be.
    Please advice, how we can solve this problem.
    Is there any customization needed for that ?
    Regards
    BIJUDAS

    Hi,
    The net caclulation is meant for calculation inclusive of exclusive of tax amount  and not freight amount. If you want to acheive this fro freight, the only way i see it is thrugh separate invoices. Alternatively you will have to go through the ABAP route in terms of user exits.

  • MRP Run for Hourly basis in MD61 Transaction

    Hi All,
    I want to Run MRP for Hourly basis in MD61 Transaction
    If the user selects the Planning period as Hourly then in the next screen for Table Tab , 24 columns should be appear.
    Please give the solution.
    Thanks
    Ulhas

    Dear Vijesh,
    according to scenario described , the correct strategy to use il  strategy 40 as corretly suggest also kiran.
    After create planning forecast through MD61 you can create immediately active you plan and after the system also before to run MRP planning will see the requirmenet ( Pir ) and it will work according to new sales order.
    Sales order are going to reduce Planned indipendent requirement until to arrive zero quantity in MD04 (situation in with will there are only sales orders).
    This information is avalible to standard SAP also in tcode MD73 but only with limited selection (qty assign)
    You can use also Fm to read MRP situation in order to have a control report so that to monitorig the % of sales order and the planned indipendent requirement.
    Let me know if i have been useful for you..
    Daniele

  • Is iphone required to be kept for charging for 8 hours before its first use?

    is iphone required to be kept for charging for 8 hours before its first use?

    No!    The phone can be used if there is any charge in it at all. It can be charged at any time, regardless of the current state of charge, and for any duration. It cannot be overcharged, it's too smart.
    I think Kappy was having a NiCad moment...   lithium batteries make far less demands of the user.

  • No condition for Offloading charges in PO

    Dear All:
                  I want to ask there is no condition for Offloading charges in PO. PO maker forgot to put them. Now PO is released as well. To pay Offloading vendor we must do its MIRO first but since there is no condition for Offloading in PO  i am unable to process the bill attached with PO reference for Offloading charges. Please guide how to do its MIRO with reference to same PO.
    Regards

    Hi Atif,
    In such cases wher esome cost is incurred as additional cost which was not part of PO, you can use unplanned delivery cost while posting MIRO.
    When you run T.CODE MIRO ,you give the reference of PO and go to detail tab in Header there is field for Unplannned delivery cost.Here you can put the cost incurred for offloading the material and mention the invoicing party in case other vendor is doing offloading.
    Hope this clarifies your querry.
    Thanks,
    Charu

Maybe you are looking for