Track of fuel consumed by machines

hi all,
My client is into constructions , they need to keep track of fuel consumed by machines on hourly basis and number of hours a partcular machine has utilized  in work.
Is this possible in standard SBO? If so, what is the process.
--kumar

Hi,
Thanks for your response,
My client is in to constructions, they are having different sites in different locations (delhi, kolkata, mumbai, etc), and every locations has a wearhouse. Every day many heavy machines which run through fuel,  are used at sites. Every night the machine incharge will send a requision of fuel to the store for next days work and collect fuel, So, stores incharge want sto know how many hours of machine is used at site and what is the quantity of fuel is used.
for ex: Machine A if it runs for 1hr it consumes 1liter of fuel. say, every day there are 10 hrs of work , Machine A requires 10 liters. so every day stores incharge will issue 10 liters, but if machine has worked for 4 hrs, then next day he should issue only 4 liters not 10 liters.
client wants to track how many hours of machine has worked in a particular day , and its fuel consumption.
Hope this will make clear to you
kumar

Similar Messages

  • I have an album that I bought that is in my purchased bin but seems that the tracks are disconected or the machine coul not locate them...

    I have an album that I bought that is in my purchased bin but seems that the tracks are disconected or the machine coul not locate them...

    Your should be able to delete the broken entries, then redownload from the Purchased link in the right-hand column of the iTunes Store page.
    tt2

  • Export to CSV from tracker crashes Acrobat on multiple machines.  (xml works though)

    I have encountered a crash exporting data to csv from a distributed PDF in the tracker, yet exporting to xml works.  This occurs on multiple machines.
    I can email dump file if requested.
    [Product]
    (0x1): Windows 7 Ultimate[/Product]
    [Edition]
    Ultimate[/Edition]
    [BuildString]
    7601.17727.x86fre.win7sp1_gdr.111118-2330[/BuildString]
    [Revision]
    1130[/Revision]
    [Flavor]
    Multiprocessor Free[/Flavor]
    [Architecture]
    X86[/Architecture]
    [LCID]
    1033[/LCID]
    [/OSVersionInformation]
    [ParentProcessInformation]
    [ParentProcessId]
    3124[/ParentProcessId]
    [ParentProcessPath]
    C:\Windows\explorer.exe[/ParentProcessPath]
    [ParentProcessCmdLine]
    C:\Windows\Explorer.EXE[/ParentProcessCmdLine]
    [/ParentProcessInformation]
    [ProblemSignatures]
    [EventType]
    APPCRASH[/EventType]
    [Parameter0]
    Acrobat.exe[/Parameter0]
    [Parameter1]
    9.5.0.270[/Parameter1]
    [Parameter2]
    4f03f71d[/Parameter2]
    [Parameter3]
    AcroForm.api[/Parameter3]
    [Parameter4]
    9.5.0.270[/Parameter4]
    [Parameter5]
    4f03ea18[/Parameter5]
    [Parameter6]
    c0000005[/Parameter6]
    [Parameter7]
    0011222d[/Parameter7]
    [/ProblemSignatures]
    [DynamicSignatures]
    [Parameter1]
    6.1.7601.2.1.0.256.1[/Parameter1]
    [Parameter2]
    1033[/Parameter2]
    [Parameter22]
    0a9e[/Parameter22]
    [Parameter23]
    I have a zipped dump file if someone at Adobe wants it.

    Yes, the application is loaded and then closed for each file. I agree it's not ideal, but that's just how it works. So 45 minutes for 200 files comes down to about 13 seconds per file, which is reasonable considering it has to open Word, open the file, convert it to a PDF and then close Word.
    You can request this feature to be improved here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    By the way, you should make sure that you have the latest version of Acrobat available, to ensure maximum compatibility.

  • Tracking hardware inventory of client machines

    hi experts
    Is there any mechanism in oracle forms or other technology( in oracle ) provides to get track hardware status of the client machines.
    or is there any other way to solve this thing.
    pl give me the solution
    Thanks in advande

    What would you like to track?
    Local IP?
    Computer name?
    MAC address?
    what type of information do you need?
    In java you can get some system info with this:
    // Get all system properties
    Properties props = System.getProperties();
    // Enumerate all system properties
    Enumeration enum = props.propertyNames();
    for (; enum.hasMoreElements(); ) {
    // Get property name
    String propName = (String)enum.nextElement();
    // Get property value
    String propValue = (String)props.get(propName); } this is my bean to read some information as PJC bean
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.*;
    import oracle.forms.ui.*;
    import java.net.InetAddress;
    public class ClientInfo extends VBean {
        private static final ID CLIENT_IP   = ID.registerProperty("CLIENT_IP");
        private static final ID CLIENT_NAME = ID.registerProperty("CLIENT_NAME");
        private static final ID CLIENT_OS   = ID.registerProperty("CLIENT_OS");
        private static final ID CLIENT_USER   = ID.registerProperty("CLIENT_USER");
        private IHandler mHandler;
        private String hostAddress = "";
        private String hostName = "";
        private String hostOs = "";
        private String hostUser="";
        public ClientInfo() {
            try {
                System.out.println("+----------------------+");
                System.out.println("+ClientInfro PJC       +");
                System.out.println("+Dat spr: 10.09.2007   +");
                System.out.println("+Dat spr: 04.07.2008   +");
                System.out.println("+Dat spr: 10.07.2008   +");
                System.out.println("+----------------------+\n");
                this.hostAddress = InetAddress.getLocalHost().getHostAddress();
                this.hostName = InetAddress.getLocalHost().getHostName();
                this.hostOs = System.getProperty("os.name");
                this.hostUser = System.getProperty("user.name");
                System.out.println("Host   adress: " + hostAddress);
                System.out.println("Host     name: " + hostAddress);
                System.out.println("Host op. syst: " + hostOs);
                System.out.println("Host username: " + hostUser);
            } catch (Exception e) {
                System.out.println("Napaka pri inicializaciji beana: " +
                    e.toString());
        public void init(IHandler handler) {
            super.init(handler);
            mHandler = handler;
            System.out.println("Bean initialized..");
        * metoda setira vrednost variable v formsih
        * @return
        * @param pid
        public Object getProperty(ID pid) {
            if (pid == CLIENT_IP) {
                System.out.println("Client IP: " + this.hostAddress);
                return ""+this.hostAddress;
            if (pid == CLIENT_NAME) {
                System.out.println("Client Name: " + this.hostName);
                return ""+this.hostName;
            if (pid == CLIENT_OS) {
                System.out.println("Client os: " + this.hostOs);
                return ""+this.hostOs;
            if (pid == CLIENT_USER) {
                System.out.println("Clientuser: " + this.hostUser);
                return ""+this.hostUser;
            return super.getProperty(pid);
    }You can also get other infor for example "motherboard serial number" as this
    import java.io.File;
    import java.io.FileWriter;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    public class MiscUtils {
      private MiscUtils() {  }
      public static String getMotherboardSN() {
      String result = "";
        try {
          File file = File.createTempFile("realhowto",".vbs");
          file.deleteOnExit();
          FileWriter fw = new java.io.FileWriter(file);
          String vbs =
             "Set objWMIService = GetObject(\"winmgmts:\\\\.\\root\\cimv2\")\n"
            + "Set colItems = objWMIService.ExecQuery _ \n"
            + "   (\"Select * from Win32_BaseBoard\") \n"
            + "For Each objItem in colItems \n"
            + "    Wscript.Echo objItem.SerialNumber \n"
            + "    exit for  ' do the first cpu only! \n"
            + "Next \n";
          fw.write(vbs);
          fw.close();
          Process p = Runtime.getRuntime().exec("cscript //NoLogo " + file.getPath());
          BufferedReader input =
            new BufferedReader
              (new InputStreamReader(p.getInputStream()));
          String line;
          while ((line = input.readLine()) != null) {
             result += line;
          input.close();
        catch(Exception e){
            e.printStackTrace();
        return result.trim();
      public static void main(String[] args){
        String cpuId = MiscUtils.getMotherboardSN();
        javax.swing.JOptionPane.showConfirmDialog((java.awt.Component)
             null, cpuId, "Motherboard serial number",
             javax.swing.JOptionPane.DEFAULT_OPTION);
    }or hardisk serial number
    public static String getSerialNumber(String drive) {
      String result = "";
        try {
          File file = File.createTempFile("realhowto",".vbs");
          file.deleteOnExit();
          FileWriter fw = new java.io.FileWriter(file);
          String vbs = "Set objFSO = CreateObject(\"Scripting.FileSystemObject\")\n"
                      +"Set colDrives = objFSO.Drives\n"
                      +"Set objDrive = colDrives.item(\"" + drive + "\")\n"
                      +"Wscript.Echo objDrive.SerialNumber";  // see note
          fw.write(vbs);
          fw.close();
          Process p = Runtime.getRuntime().exec("cscript //NoLogo " + file.getPath());
          BufferedReader input =
            new BufferedReader
              (new InputStreamReader(p.getInputStream()));
          String line;
          while ((line = input.readLine()) != null) {
             result += line;
          input.close();
        catch(Exception e){
            e.printStackTrace();
        return result.trim();
      }Or you can write a DLL in C, C++ and use it in Java with jni..
    Edited by: Peterv6i on Aug 30, 2010 10:58 AM

  • Producer/consumer state machine

    Hello,
    I have a State Machine with an Idle state that has an Event Structure to handle user events in it. I would like to include in that state, and in parallel with the Event Structure, a VI that polls for data every 10 seconds. Is there a way to have the Event Structure respond automatically to User events without having to wait 10 seconds before polling new data? Is the Producer/Consumer the way to go and how am I going to program this?
    Thank you,
    Richard
    Attachments:
    Tombeau_NewArchitecture1.vi ‏171 KB

    If you are polling for data (in the same state) in parrell to the event case then surely the event structure would execute at the same time you poll.. it would just not be able to jump to the next state in your state machine until the polling had completed.
    I had a quick look at your code, not to be mean but it's not the easiest thing to read. Try to keep the block diagram to a single screen so you don't have to scroll if possible. If that isn't possible, have it only scroll in one direction. You can achieve this with the use of Sub VIs.
    Also, be careful with using local variables to read and write. They are terrible for introducing race conditions. Instead trying using an FGV/Action Engine.
    Olly
    The day is quickly coming when every knee will bow down to a silicon fist, and you will all beg your binary gods for mercy.

  • How to re-associate tracks after migration to new machine?

    A friend just got a new iMac, and is slowly trying to manually migrate her data over. I told her to just copy her iTunes folder from her backup into her Music folder on the new machine. Problem is, when she launches iTunes now, it can't find her music...
    I'm guessing it's because she was pointing iTunes on her old Mac to her external drive where all the music was stored. So when she copies that directory to the Music folder on her new machine, it's still looking for the music on the external, right? How do we rectify this issue? Go ahead and point iTunes to the external drive on the new machine, then tell it (via Preferences) to use her Home Music folder as the music repository? Would it then allow her to copy the music over, and keep track of the moved files?
    All very confusing, but I'm sure thousands of others have run into this issue before as well. What's the solution?
    Thanks,
    John

    Trying to re-instal my email history the 'Mail Message Import' dialogue screen says: 'Mail needs to import your messages. This might take a few minutes. You won't be able to use Mail until the import is finished'.
    The problem is: after importing 5,000 messages it stops and the 'Time remaining' only keeps adding up to many hours (17 hours). There are almost 80,000 email messages in my Time machine backup.
    How to get this working? I am even prepared to give up my email history if i can only get my 'Mail' application working again.

  • Track flash errors on remote machine

    Hey,
    I'm wondering may I run Adobe Scout to track the flash errors on remote machine?

    You can remotely profile with Scout, so long as the machine running Scout is visible to your remote machine (it has to be able to connect to it). See the section "Local and remote profiling" in the getting started guide for Scout:
    http://www.adobe.com/devnet/scout/articles/adobe-scout-getting-started.html

  • Lost I tunes tracks after restore from time machine

    Hi all
    I have had to restore OS X using a backup from time machine for resons I wont go into.
    The backup was only from a few days previous, all seemed well but when i went into itunes I had gone from nearly 8000 tracks to less than 3000.
    Oh poo I thought, so I restored again using time machine, but this time I used a backup from only an hour before I did the first restore,  but now I have lost even more of my tracks in Itunes.
    And I do mean lost they are no longer listed in itunes
    What the **** is going on?
    And is there a way to get them back

    Hi, and welcome to the forums.
    First, are you running Leopard or Snow Leopard? Your settings at the bottom of your post say Snow Leopard, but this is the +Leopard > Time Machine+ forum, so I'm not sure which is right.
    Did you do the full system restore, starting by booting from your OSX disc? If not, what exactly did you do?
    Exactly what is wrong with Software Update? What happens, or doesn't happen?

  • Vehicle Fuel Consumed Report in SAP

    Hi Gurus
    Is there any report which will show monthly vehicle consumed report Analysis.
    I have to take the tables equi and imrg but to to link this tables
    which are in t code ie03 and ik17
    it is urgent
    Thanks in advanced
    Piroz

    In MC46  we get a report on slow moving items.Suppose we  have  execute dthe report today(19.09.2011) and number of days we put on the selection screen say 400 days.The report will give list of materials say X1,X2 and X3 which have not moved for 400 days.
    We again execute the report today say 19.10.2011.Now the report gives say list of materials X1 and X3 which have not moved for 400 days.Therefore from the period 19.09.2011 to 19.10.2010 X2 material have moved out from the list .The reason may be that it is issued to cost center or issued to production.
    The user tried to use V look up to get the list of materials which have moved during period 19.09.2011 to 19.10.2010.The user informed that when he is saving the report in local file the texts are getting saved in text format in excel file and hence he is unable to apply VLOOK up.
    Is there any Tcode in SAP from where i can get the list of missing material Or else can someone help me in preparing the functional specification
    Regards
    Manash Das

  • Track web service consumer

    Hi
    I would like to track who actually is calling my web service. In case I need to upgrade my web service I can notify and test. What are the possible ways? Thanks

    I tried the handler. I can get the SOAP message. How can I get the original http request? I used to use log4j to log the whole http request in the servlet. Is it possible to access HTTPRequest from web service or handler? Thanks

  • Tracking off when controlling a machine with video adapter connected

    I have a bunch of machines connected to projectors and when I try to control the machines remotely, my view of the cursor is off (usually by an inch, give or take) from where the cursor is on the users screen.
    It only shows one cursor, so it gets dicey trying to click on things when you don't actually know where you're clicking.
    Unplug the adapter and control is back to normal.
    Any idea what could be causing this?
    ARD 3.8
    remote OS 10.9.5
    local OS 10.10.3 (been happening before upgrade as well)

    Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    https://forums.adobe.com/thread/1070933 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download
    Does your video use a VARIABLE Frame Rate or a Constant Frame Rate?

  • Plant Maintenance Report Transaction

    Dear All,
    Iam sending the list of report client needs .i need your help in wether it is possible or any development required .
    Breakdown Analysis
    Equipment Monthly Cost
    Cost Analysis
    Insurance Amount on Each Machine
    Electricity & Fuel Consumed on Machine
    Fleet Maintenance
    Consumption of Fuel on Each Vehicle
    Service Cost spend on each Vehicle
    Spares Replacement Cost on each Vehicle
    Please help me out .Kindly send your reply .
    Thanks & Regards
    Navin

    hi
    >{Breakdown Analysis- Yes using MCI7
    Equipment Monthly Cost- Using MCI4
    Cost Analysis -MCI8
    Insurance Amount on Each Machine-May be Warranty claim processing
    Electricity & Fuel Consumed on Machine-Using measuring point ,counter
    Fleet Maintenance-YES
    Consumption of Fuel on Each Vehicle-YES-MCIZ
    Service Cost spend on each Vehicle-YES- MCI4 also chek in MCI4
    Spares Replacement Cost on each Vehicle-YES using MCI4,also check MCI4}
    regards
    thyagarajan
    Edited by: thyagarajan krishnamurthy on Feb 24, 2009 1:56 PM

  • HT1338 I  had the geek squad from bestbuy supposedly install iphoto 11 on my mac but it is not there and when i try to download it it say the app has been download by another user on this machine.  What do i need to do get get this app on my system?

    I  had the geek squad from bestbuy supposedly install iphoto 11 on my mac but it is not there and when i try to download it it say the app has been download by another user on this machine.  What do i need to do get get this app on my system?  If they could not do it right the first time I do not have much faith in their advice.

    Assuming you've done a system wide search for it including the Applications folder and it's not there......
    I think you will need to address this with them - did you pay them for the application? Or was your purchase price to include it? And the question(s) to ask them:
    If the app store states that it has been downloaded, ask them where it is and which Apple ID they used. (the store keeps track of Apple IDs and machine IDs on everything you download).
    I have absolutely no faith in their advice; however, in this case, it's not so much technical advice, but an answer to your questions: you paid for something and it appears not to be there.

  • Can't find my itunes or iphoto libraries on time machine backup

    Non-technical user trying to save/back up contents to External Hard Drive before upgrading to Snow Leopard. Copied overnight but can't see where my tracks/photos on the Time Machine Back up might be. Can anyone advise where I could find them or if I need to transfer these libraries separately? Many thanks

    Is this the computer the device was syncing with previously?
    If not, where is that library?  The library will only be where the user puts it.
    Syncing is one way, computer to iDevice.
    Multiple libraries can be stored on a single computer... if that's what you really want.

  • PLEASE HELP! I use 1 track, and i get an alert saying "too many tracks"

    i just bought brand new MacBook Pro 2.16 with an extra Giga in RAM (2.0)...
    I use Garageband 3.0.4 (and no other application running) and im making a project with 4 very simple tracks (no effects and plug-ins). When i run the project for the first time i always get a message saying that im using a lot of software tracks! (its impossible, im sure is not a matter of number of tracks, nor a power issue). I have the buffer size at the highest level...
    should i re-install mac-os x?
    please help, y really need this software... was my reason to buy the computer, and is not working at all!

    so most of the artists and djs that play live with
    mac computers... use external drives??
    Most don't use GarageBand. DJ would use DJ software, and a musician might use GB as his synth, but not many people would do what you're trying with GB.
    this is my first mac experience
    Blame GB rather than the Mac, for all its eye candy and ease of use, it is a resource hog.
    other mac users doesnt seem to have the problem that
    i do... could it be just an error in my software??
    Actually I've seen this question posted many time, so others do have similar probs. Unfortunately it's really impossible to guess why one person has trouble and another doesn't. I was doing 12 tracks easy, with half your machine (but en external drive). I've seen posts where people complain that they can't record 1 track without an error. Without having the machine in front of me, it's just not possible to guess why B-(>
    error that could be fixed with a reinstlation??
    I doubt an reinstall would help. You might try running your Activity Monitor app to see what processes are running and using what resources. 
    <hr width="250" align="left">
    HangTime [Will Compute for Food] B-)>
    ♪♫ The Bullets and Bones Band ♫♪
    Disclaimer<hr width="250" align="left">

Maybe you are looking for

  • How can I print an address card?

    Hi Folks, I've just discovered what seems like a ridiculous limitation of Address Book. I am having a hard time believing this is so, and am sure there must be a way to do this. I need to print out an address card, as it appears in the Address Book.

  • How long does it really take to get a book into the ibookstore?

    Hello All, I delivered my epub to Apple on March 26th and for the first 34 days my books status had a single red icon, book in review for quality assurance. I continued to wait and last week to my horror, I had two red icons, with a new message of Un

  • Problem with blocked native processes

    My application relies heavily on native processes so that I am trying to implement fallback strategies if a native process doesn't work as expected. While creating test scenarios I had a problem with handling errors caused directly by the start() met

  • How do I sync Contacts on my Mac with my iPhone and iPads?

    When I add a contact on my Mac, it does not sync with my iPhone or iPads.

  • How to view deleted gmail chat threads after syncing Gmail with thunderbird?

    I have recently synced Gmail with Thunderbird in hopes of retrieving deleted chats. In my inbox it shows the sender as "1294746741783715944@xxx" with no content in the message itself. I'm just hoping that there may be a way to view this message.