Simulation and Actual difference

Dear Experts,
I am facing an error as follows:
while iam doing billing simulation i am
getting the correct  previous MR date and MR reading.
(this will be printed in bill for customer understanding purpose)
but when i am doing my actaul bill
iam not getting the correct date and reading.
like follow:
in simulation:  previvious Mr date :  10.4.2011  with reading  100 units
but in actul bill im getting like:  previous MR date 11.04.2011 110 units.
but the actaul previous  mr date is  10.4.2011 with 100units.
what iam getting in original bill is wrong.
this is only happens for onw customer.
any clue on this?
Thanks..
Cheers.

Hi Avinash,
thanks for reply, these are the actual readings.
and the simulation bill period is : 13.04.2011 to 12.06.2011
actual bill period is also same.
  MR date                                RR            MT          RS      MR rec.
  12.06.2011                             1          1           7     4,089
  12.04.2011                          1          3           7     3,938
  12.02.2011                           1          1           7     3,898
   12.10.2010                          1          3           7     2,920
   12.08.2010                          1          Z1           7     2,876
   12.06.2010                          1          3           7     2,876
   12.04.2010                          1          3           7     2,817
   12.02.2010                          1          3           7     2,760
  12.12.2009                          1          Z1           7     2,700
  12.10.2009                          1          3           7     2,685
  12.08.2009                          1          3           7     2,626
  12.06.2009                          1          1           7     2,567
  20.10.2008                          6     X     1           7     2,490
cheers..

Similar Messages

  • Logging into Drupal 4.7 being ignored by both simulator and actual 8830

    I'm really confused here, I have a Drupal web app that I'm trying to log into via Blackberry device, and my (correct) log ins are being ignored:
      1) welcome page
      a) go to log in screen
      2) log in screen
      b) log in
      3) log in screen (with no errors on screen or in logs)
    when it's supposed to be:
      2) log in screen
      b) log in
      3) "you are now logged in" screen
    This is working correctly with these combinations:
    (WAMP+Drupal 4.7) <-> Firefox
    (WAMP+Drupal 4.7) <-> 8830 simulator
    (LAMP+Drupal 4.7) <-> Firefox
    And ignoring the successful login with this combo:
    (LAMP+Drupal 4.7) <-> 8830 simulator
    (LAMP+Drupal 4.7) <-> 8830 hardware
    The login is correct (same username & pass in all combos), and no PHP or other errors are being recorded in the application or Apache logs.  I've deleted and re-accepted (the bad) server certificates in both the simulator and Firefox.
    What should I try next? Where else should I be looking?

    Hi,
    Do you have any specific questions? We'll certainly try to help you, but we won't do your homework for you. That wouldn't help you learn at all.
    I recommend looking over the learning materials here, they're quite good for getting started with PowerShell:
    http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Difference btw simulator and actual disc behavior

    Okay, so I have a project in which the buttons behave properly in the simulator, but then on the finihsed disc it's all wonky!
    To be specific, I have it so that, if you're playing a track and are up to chapter 10 when you hit MENU, it takes you to chapter 10 in the chapter listing. And in the simulator, it does this.
    However, when I burn the disc, or otherwise watch the TS folder in DVD Player, when I hit MENU, instead of going to the current chapter, it goes back to the first chapter in the first MENU, regardless of where I am. Anyone know what I'm overlooking?

    I use this method all the time, specifying the chapter index buttons as the menu jumps for markers in a track, and it usually works both places. (Simulator, build in DVD Player, burned disc...)
    I can imagine a few things that might have this effect:
    are there any stories, etc., attached to your track? markers in a track can overrride the default menu jump for the track, but stories will override default behaviors for both the track and its markers.
    Are there any pre-scripts on your menus or tracks? Assigning pre-scripts can sometimes supersede other DVDSP commands, such as button selection. In the DVD spec, commands that are processed before a menu or title are referred to as pre-commands. Specifying a button on a menu as a target winds up using the pre-command on the menu to select the specific button, but if you set a pre-SCRIPT for the menu in DVDSP, DVDSP will apply that to the menus pre-command instead of the button selection specification. One of the few remaining ways in which DVDSP is not a completely spec-based tool.
    Try assembling a quick plain-vanilla test with a new project and check a build in DVD Player to make sure it's not something specific to your project.
    Hope this helps -
    Max Average

  • Offscreen Framebuffer Attachments (Simulator and Phone Differences)

    Has anyone had success with an offscreen framebuffer attached to a renderbuffer on the iPhone? I've spent more than a week specifically working with offscreen framebuffers with mixed success. I was able to generate and attach a renderbuffer in the simulator, but it fails on the phone:
    //// THESE ARE ACTUALLY OBJECT PROPERTIES ////
    GLint backingWidth = 256; //Also tried GLsizei
    GLint backingHeight = 256; //Also tried a bunch of different sizes, like the screen size and directly reading the values from a working renderbuffer.
    GLuint offscreenMapFramebuffer;
    GLuint offscreenMapRenderbuffer;
    //// BUFFER GENERATION ////
    glGenFramebuffersOES(1, &offscreenMapFramebuffer);
    glBindFramebufferOES(GLFRAMEBUFFEROES, offscreenMapFramebuffer);
    glGenRenderbuffersOES(1, &offscreenMapRenderbuffer);
    glBindRenderbufferOES(GLRENDERBUFFEROES, offscreenMapRenderbuffer);
    glRenderbufferStorageOES(GLRENDERBUFFEROES, GL_RGBA, backingWidth, backingHeight);
    glFramebufferRenderbufferOES(GLFRAMEBUFFEROES, GLCOLOR_ATTACHMENT0OES, GLRENDERBUFFEROES, offscreenMapRenderbuffer);
    GLenum status = glCheckFramebufferStatusOES(GLFRAMEBUFFEROES);
    if (status != GLFRAMEBUFFER_COMPLETEOES) NSLog(@"Error Creating Frame Buffer for Selection Map");
    if (status == GLFRAMEBUFFER_INCOMPLETE_ATTACHMENTOES) NSLog(@"GLFRAMEBUFFER_INCOMPLETEATTACHMENT"); // THIS IS THE ERROR GENERATED
    if (status == GLFRAMEBUFFER_INCOMPLETE_DIMENSIONSOES) NSLog(@"GLFRAMEBUFFER_INCOMPLETE_DIMENSIONSOES");
    if (status == GLFRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTOES) NSLog(@"GLFRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENTOES");
    Oddly, I was also able to attach a framebuffer to a texture generated with the Texture2D object from the Gravity App, but not from the a texture I generated myself. Most of this is based off the +OpenGL Programming Guide for Mac OS X+.
    Is anyone having success out there? Any ideas of what to do next? Does this have something to do with the iPhone limitation of "...one current context per thread?" I'm not creating another context here, but there is an active context created for the main GLView.
    Thank you for any insight!

    I took another hack at this and figured out the issue, mostly by luck. The internalformat parameter GL_RGBA wasn't accepted on the phone. GLRGB8OES works.
    glRenderbufferStorageOES(GLRENDERBUFFEROES, GLRGB8OES, backingWidth, backingHeight);
    Hope this helps.

  • What is the difference between delivery date and actual goods issue date?

    Hi ,
    Can you please tell me the difference between Delivery date and Actual goods issue date ?
    Delivery data can be be greater than goods issue date?
    Thanks,
    Ajay

    Hi Ajay,
                  Delivery date means its the original date on which the delivery should be done.Actual goods Issue date is the date on which goods to be delivered according to the purchase order.There can be delay in the delivery so we maintain 2 objects.
    Yes delivery date can be greater than Goods Issue date.
    Hope this clears
    Regards
    Karthik

  • Whats the actual difference between Business system and Business service

    whats the actual difference between Business system and Business service

    Business System
    1) Business system is a logical system, and there is an importance on physical existence of the system.
    2) Also SLD entry is required.
    3)It is generally used for SAP applications, this is just a general prinicple followed but not mandatory.
    4)This is defined as part of the SLD and is a physical system whose parameters are well defined.
    5(Business systems refers to the physical systems, for instance the R/3 system. You define the business systems in the SLD
    Business Service
    1) You use a Business Service, when you do not have the System details of the the partner system to which you want to communicate. i.e. you have not configured the partner system in SLD.
    2) Business Service is an Absract Unit with Sender and Receiver Interfaces,In this case you need to explicitly add the message interfaces while doing configuration in ID.
    3) It is generally used for NON-SAP applications, this is just a general prinicple followed but not mandatory.
    4) This is not defined as part of SLD and whose technical parameters are not completely known.
    5)Business service is used when the message is not addressed to a business system. It is used mostly in B2B scenarios.
    Also go through these links and threads...
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c7/301640033ae569e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Business service or Business system??
    Business Service vs Business System in Integration Directory.
    Best Regards

  • How can i get difference in base plan and actual/current plan for a project

    Hi PS Experts,
    How can i get difference in base plan and actual plan .
    For example-
    Project1 is created for 10 days (start and end date difference).
    Now in between -project is extended/changed for 12 days .
    What is the way to get 2 days as a difference in base plan and current plan.
    Thanks
    Suraj prakash

    Hi Suraj,
    You can follow a convention that -
    (1) Forecast Start/Finish dates: Used only for Primary planning, once initial planning is done you should not change these dates.
    Now, you will copy the same dates in Basic Start/Finish dates also.
    (2) Basic Start/Finish dates: Whatever changes are done after the initial planning, you will make the changes only in Basic Start/Finish dates.
    So, in Project Planning board, if you enable Forecast and Basic dates with different color coding, you can clearly see the variation in the Project schedule.
    Hope this helps.

  • I need to know the difference between planned SKF and Actual SKF from business view and when I can use one of them ?

    I need just to know the difference between plan SKF and Actual SKF in business example and when I use one of them.
    thanks

    Hi Salaam,
    Statistical Key Figure (SKF) is a base to allocate the cost between cost centers. Usually, common cost centers cost should allocate to respective department cost centers on monthly basis.
    Some of SKFs are: Calculating floor rent on SFT, Telephone charges on No. of units, and employees head count is with "Each" in SAP.
    Apart from Ajay's reply, you can consider the Canteen exp in an organization. Assume Admin, Fin and Mfg departments are getting food services from Canteen. Here, total monthly cost of Canteen exp should be allocated to respective departments. Here, we use SKF as total head count of each department and distribute the cost.
    Planned SKF is what you planned on the beginning of a period. (Assume head count was planned as 30 in the month beginning)
    Actual SKF is what exactly you consumed over the period. (Actual employees provided canteen services during the month is 25)
    BR, Srinivas Salpala

  • Macbook Air 11 and Macbook Air 13 (Any actual differences?)

    Between and i7 8GB 11" Macbook Air and i7 8GB Macbook Air
    Are there any actually differences other then the noted ones(such as no SD Card, Smaller Screen, etc)
    Do they run the exact same? Same GPU clocks/ram speeds etc? I figure since the 11" is smaller it's thermal properies might possibly be lacking.
    Or are they the exact same when running?
    Thanks guys, just a ranom question thar poped in my head.

    There is a company called HyperJuice that makes external batteries -
    http://www.hypershop.com/HyperJuice-External-Battery-for-MacBook-iPad-iPhone-USB -s/91.htm
    They're not cheap but I know a few of my users (that frequently travel overseas) use one and they've very happy with them. The ability to use your machine for 12+ hours without a charge can be fantastic for in the field work or on a long flight.
    I agree with SP, the screen size is not a trivial factor to consider. When I worked at the Apple Store it was a nearly daily occurence that people would bring back the 11" MacBook Air because they regretted having to deal with that little screen.
    So while the 11" MacBook Air might work just fine for you, just make sure to give it a thorough demo at an Apple Store to make sure you're completely satisfied.

  • Actual difference GT430 OC and LP and LP/OC?

    What's the actual difference between the N430GT-MD1GD3/OC, N430GT-MD1GD3/LP and the N430GT-MD1GD3/OC/LP apart from the fan?
    Appearantly it's even unclear to a lot of online retailers, which say they deliver the /OC/LP, but actually they ship the /OC or /LP..

    Quote from: Henry on 09-April-11, 05:35:53
    Not so hard to compare, see for yourself. Select the models and that's it.
    http://www.msi.com/service/product-comparison/vga.html
    I'm sorry, but that really doesn't give me any real clue to what actually the differences are..
    I see the OC has a memoryinterface of 64/128bit, but I have no Idea if that's better or worse than 128bit alone.
    the core clockspeed is different like 730 and 785 for the OC's, and memoryspeed differs only on the OC/LP..
    but isn't it the point of the whole cards to be able to 'overclock' the 'regulars' to the same speeds as the OC/LP?
    And between all cards the cardsize is different..
    And from experience I normally really don't believe the 'product-comparison' as 9 out of 10 times the specs are wrong anyway (yes on manufacturers own sites)..
    One thing I'm for example missing in this comparisonchart is the fan, which is definitly different between some cards..

  • Difference between MC46 date and actual consumption date

    Hi,
    I found there is always the date difference between the MC46 date for the last consumption and actual last posting date for consumption.
    What could be the reason for that?
    Or what is the date apprearing in MC46 if you click on triple line option.
    Thanks in advance
    Ramesh
    Edited by: ramesh varma on Jun 17, 2011 3:45 PM

    Hi Jürgen.
    Thanks for your solution. It solved my problem
    Regards
    Ramesh

  • Actual difference between a standard , sorted and hashed atble

    hi ,
    1. what is the actual difference between a
       standard,sorted and hashed table ? and
    2. where and when these are actually used and applied ?
       provide explanation with an example ....

    hi
    good
    Standard Internal Tables
    Standard tables have a linear index. You can access them using either the index or the key. If you use the key, the response time is in linear relationship to the number of table entries. The key of a standard table is always non-unique, and you may not include any specification for the uniqueness in the table definition.
    This table type is particularly appropriate if you want to address individual table entries using the index. This is the quickest way to access table entries. To fill a standard table, append lines using the (APPEND) statement. You should read, modify and delete lines by referring to the index (INDEX option with the relevant ABAP command).  The response time for accessing a standard table is in linear relation to the number of table entries. If you need to use key access, standard tables are appropriate if you can fill and process the table in separate steps. For example, you can fill a standard table by appending records and then sort it. If you then use key access with the binary search option (BINARY), the response time is in logarithmic relation to
    the number of table entries.
    Sorted Internal Tables
    Sorted tables are always saved correctly sorted by key. They also have a linear key, and, like standard tables, you can access them using either the table index or the key. When you use the key, the response time is in logarithmic relationship to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique, or non-unique, and you must specify either UNIQUE or NON-UNIQUE in the table definition.  Standard tables and sorted tables both belong to the generic group index tables.
    This table type is particularly suitable if you want the table to be sorted while you are still adding entries to it. You fill the table using the (INSERT) statement, according to the sort sequence defined in the table key. Table entries that do not fit are recognised before they are inserted. The response time for access using the key is in logarithmic relation to the number of
    table entries, since the system automatically uses a binary search. Sorted tables are appropriate for partially sequential processing in a LOOP, as long as the WHERE condition contains the beginning of the table key.
    Hashed Internal Tables
    Hashes tables have no internal linear index. You can only access hashed tables by specifying the key. The response time is constant, regardless of the number of table entries, since the search uses a hash algorithm. The key of a hashed table must be unique, and you must specify UNIQUE in the table definition.
    This table type is particularly suitable if you want mainly to use key access for table entries. You cannot access hashed tables using the index. When you use key access, the response time remains constant, regardless of the number of table entries. As with database tables, the key of a hashed table is always unique. Hashed tables are therefore a useful way of constructing and
    using internal tables that are similar to database tables.
    THANKS
    MRUTYUN

  • Is there any actual difference between Release, Debug and Debug Local configurations in SSRS project?

    Is there any actual difference between Release, Debug and Debug Local configurations in SSRS project?
    For example in VC++ Debug build would have all optimization turned off (by default) and included additional Debug information in executable.
    Since there is no executable produced for SSRS - is there any actual difference between configurations? Or are they only for the purpose of deploying to different destination servers?

    Hi JoeSchmoe115,
    The Project Configuration and Configuration Manager is a feature supported by Visual Studio, on which Business Intelligence Development Studio or SQL Server Data Tools is based. We can use Configuration Manager to create and manage sets of project properties
    in project configurations. You are right that the project configurations is only for deployment purpose in a Report Server project.
    Reference:
    http://technet.microsoft.com/en-us/library/ms155802.aspx 
    Regards,
    Mike Yin
    TechNet Community Support

  • Difference in print preview and actual print

    hi all,
    we are using o/p types and sap scrits to get the print out. but there is a diff betwenn the preview and actual print. some fields that are not visible or suppressed in the preview are appeearing on the print. moreover if the same invoice is printed with diff. o/p types sucessively some values too increase with each subsequent o/p. we are doin some addtion of values on the script
    as a temporary way out we are printing by completely exiting vf02/03 after the preview, re-entreing vf02/03 and directly shooting the print w/o viewing the preview. this i have to do for each o/p type. but this is a very inconvenient way.
    wat is the cause for this
    thnx in advance
    saurabh

    Hi Ruchit,
                  Yeah can you say me how to correct the issue.
                   we are using Hp 2200 pcl series printer.
                   I have even tried using the device type
                   with this specific name but it did not do the need.
                   Can you say me what can be done to resolve this.
    Regards,
    Vamshi.

  • In process Inspection  Lot Qty and Actual Lot quantity difference.

    Hi Experts,
    In case of  In process Inspection
    Scenario : 1. Production Order created, released but before saving the qty is changed.
                    2. Production Order created released and saved. Then qty is changed in Change Prod order txn.
    These scenarios are causing a discrepancy in  Inspection  Lot Qty and Actual Lot quantity. Is there any method to avoid this ?
    This can be made correct in  Inspection lot by resetting the sample calculation. But once confirmation has started for Prodn Order (not necessarily QC operation) or  RR has been done  resetting is not possible.
    Is this the std behavior ? Disallowing the resetting once RR done seems OK, but even if any of the operation in Prodn Order is confirmed it still give status error while resetting. Canceling all the confirmation all the way back  also does not solve the problem.
    Any suggestions ?
    Regards
    Joe

    Hi
    Although your suggestion is valid, it is not practical from user point of view.
    Moving this thread to QM forum.
    Rgds

Maybe you are looking for

  • I'm using iPhone 4 with ios7.1. How do I get list view in calendar? I'm not seeing the icon

    Can a anyone help me here? Thanks!

  • File Importing Renaming Options

    In the file import and renaming section, I'd like some more flexibilty when renaming my files on import. Currently, I have to use third party software to do this, but I'd like to have Lightroom to be able to tell the folder number (from the camera-cr

  • Want a Script to set Computer extensionattribute in Bulk

    Want a Script to set Computer extensionattribute in Bulk by giving input from CSV Computer Name and extensionattribute. Regards, Kashi Kashi

  • AME H.264 Bluray Export Very Slow

    This my first time exporting since I installed version CC 2014. CC version was a lot quicker. In my resource monitor, the CPU tab shows only one of the 8 CPUs working at 100% while the other 7 CPUs are parked or not doing anything at all. Source foot

  • Connect GBIC to SFP

    Hello everybody. Ok. here is the question. Is it possible to make an uplink between a Cisco Catalyst 3550 switch (via 1000BASE-T GBIC model WS-G5483) and a Catalyst 2960 switch (via 1000BASE-T model GLC-T SFP module or it's gigabit Etherner ports)? B