Help with explanation of "interpreter"

I have just started a course in Java so am a complete beginner. Therefore I get stuck on some questions very often. The latest one is "Explain the purpose of an interpreter". I can not seem to find anything on the basic level to answer this - it all seems to complicated at the moment.
I have gained a qualification in HTML last year, now I hope to gain one in Java.
If anyone can help me answer this question I would be very grateful.
There is not very much info out there for beginners - I have found it very difficult to find anything at all - you have to be experienced. If anyone knows of any web sites that could help me, please let me know!!

basically an interpreter 'interprets' byte code, byte code is produced by 'compiling' your java progs. Byte code is a mid point between your code and executable code. Some languages are compiled into executable code, not java. Byte code is interpreted and 'rewritten' into assembly language, and then..I forgot..... I expect someone will pick me up on this! search the web on the subject compilers

Similar Messages

  • Help with Cisco Output Interpreter tool!!

    Hi All,
    I am experiencing a problem with Cisco Output Interpreter tool.
    While the tool is working fine and displaying the "CONFIGURATION COMMAND REFERENCE  NOTIFICATIONS (if any)" very effectively but I am unable to use the hyperlink to get an understanding about a particular command.
    When I click on a particular command(hyperlink) it pops up another window and the below error is displayed.
    Not Found
    The requested URL /cgi-bin/Support/Cmdlookup/ios-command-lookup.pl was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Anyone else had/have this particular error. Could you please help me with this.
    Apologies if  this topic does not belong to this group.
    Thanks in advance
    Sam

    Noone to help me on this?

  • Need help with explanation of FRAPS to Adobe Pre Elements

    Hello Everyone.
    So I'm having this issue and its really holding me back. I am a complete hobbyist when it comes to editing and I'm trying to solve my issue where my fraps footage looks like garbage once imported into Adobe Pre Elements 9.
    Now I wanted to get a newer version of  Adobe because it seems to be a good starting place for me to get more into editing and its the only program I'm familiar with so I went ahead and bought Elements 11.
    My settings are fine and I have made a post before about my issue and I have found the simplest answer I could find. but it makes no scene to me . I have no idea what a codec is and how to work these programs. I am looking for someone to explain to me what I have to do to keep my quality from fraps and import it into adobe and when its exported to actually look like its a 1080p Movie rather than what I'm having.
    example movie of what the quality I have now...www.youtube.com/watch?v=8pJ8fl_g5R
    I have watched a number of videos on what my settings and render out settings should be and they are correct.
    This is the answer I found http://forums.adobe.com/thread/967201 Can someone explain this to me?
    I am also considering XSplit is there similar problems with that recording program to with Adobe Elements?
    would really appreciate a answer here rather than rummaging through threads because I am very new with the terms and end up not understanding how they solve the problem.
    Thanks.

    FFDShow is a "direct show" video application. Once, going back many years, Premiere (before either Elements, or the Pro versions) once used direct show for display. At about Premiere 5.0, that was changed, and Premiere began using its own display module. FFDShow is available from several sources, but many users of both PrPro and PrE have had issues with it, and it is usually tough to remove from a system. However, one trusted user and contributor here, Neale, found that FFDShow did help with some display problems on his computer, and some claim that Adobe T/S does recommend it, in some cases. Based on the problems, that so many others have encountered with FFDShow and several Adobe programs, I steer clear of it.
    A video screen-cap program will capture at the computer's full screen resolution, or some portion of that, so if one has, say 1920 x 1080 for the display resolution, that will be the default capture resolution. What is stated by other posters is probably THEIR computer's screen resolution, and yours might well differ.
    The HuffYUV CODEC is available free, but it is now rather long in the tooth. Many feel that the newer Lagarith Lossless, or UT Lossless, are better options, and both are free. In their cases, one would Export/Convert to MS AVI, but using the Lagarith, or UT CODEC, inside the AVI wrapper. It has been so long, since I last used HuffYUV, that I cannot recall if it was also wrapped in the MS AVI container, or not - just too long ago.
    For more background on CODEC's, first see this article: http://forums.adobe.com/thread/440037?tstart=0 For even more info on CODEC's, see the link in Reply # 8.
    Good luck,
    Hunt

  • Really basic - Need help with autotrace result interpretation

    I'm trying to look into database tunning in order to check efficency of my sql statments and I think AUTOTRACE is the first thing to look into.
    I created two identical tables containing 250.000 rows. First one has no index the other one does
    SET AUTOTRACE ON
    SELECT *FROM TEST_250000
    WHERE CUSTOMER_NO > 241000;
    Plan hash value: 4257243307
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 15353 | 2623K| 750 (2)| 00:00:10 |
    |* 1 | TABLE ACCESS FULL | TEST_250000 | 15353 | 2623K| 750 (2)| 00:00:10 |
    Statistics
    0 recursive calls
    0 db block gets
    2687 consistent gets
    0 physical reads
    0 redo size
    390398 bytes sent via SQL*Net to client
    427 bytes received via SQL*Net from client
    12 SQL*Net roundtrips to/from client
    1 sorts (memory)
    0 sorts (disk)
    Plan hash value: 174749588
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 9000 | 606K| 121 (1)| 00:00:02 |
    | 1 | TABLE ACCESS BY INDEX ROWID| TEST_250000_INDEX | 9000 | 606K| 121 (1)| 00:00:02 |
    |* 2 | INDEX RANGE SCAN | TEST_250000 | 9000 | | 22 (0)| 00:00:01 |
    Statistics
    0 recursive calls
    0 db block gets
    89 consistent gets
    0 physical reads
    0 redo size
    390399 bytes sent via SQL*Net to client
    433 bytes received via SQL*Net from client
    12 SQL*Net roundtrips to/from client
    1 sorts (memory)
    0 sorts (disk)
    My questions are following:
    1) Am I assuming right that the time to execute first query is 0.2 sec and cost is 1500, while the other is 0.05 seconds and 164. Do you just simply add up ?
    2.) What does the cost stand for? I mean what is the unit of it?
    3.) There is a substantial difference in consistent gets. I found a definition ( gets number of times a consistent read was requested for a block). Could someone explain me what this means and why is it so different in two queries.
    4.) What is the Plan hash value about?
    Know it's a lot, but any help appreciated.
    PS: I'm posting this to general, but is there a forum specializing in tunning?

    Jana Kralova wrote:
    I'm trying to look into database tunning in order to check efficency of my sql statments and I think AUTOTRACE is the first thing to look into. TRACE and TKPROF uitilities are even better.
    My questions are following:
    1) Am I assuming right that the time to execute first query is 0.2 sec and cost is 1500, while the other is 0.05 seconds and 164. Do you just simply add up ?
    2.) What does the cost stand for? I mean what is the unit of it?Comparing the cost of two queries isn't something you should focus on.
    See: http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:313416745628
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:956029960417
    3.) There is a substantial difference in consistent gets. I found a definition ( gets number of times a consistent read was requested for a block). Could someone explain me what this means and why is it so different in two queries.http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:6643159615303
    4.) What is the Plan hash value about?"PLAN_HASH_VALUE      NUMBER      Numerical representation of the SQL plan for this cursor. Comparing one PLAN_HASH_VALUE to another easily identifies whether or not two plans are the same (rather than comparing the two plans line by line)."
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/dynviews_2113.htm#REFRN30246
    Oracle's Performance Tuning Guide can be found here:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/toc.htm
    Know it's a lot, but any help appreciated.See the documentation (depending on your database version) @
    http://www.oracle.com/pls/db102/homepage
    http://www.oracle.com/pls/db112/homepage
    or start @
    http://tahiti.oracle.com
    and do your own searches on http://asktom.oracle.com as well, you'll find many examples and explanations.
    PS: I'm posting this to general, but is there a forum specializing in tunning?I think you're in the right forum ;)

  • Help with explanation.

    Hi!
    After starting trace on listener process we received into trace file below lines ->
    nsglgrDoRegister: inst loads: ld1:985 mld1:40960 ld2:451 mld2:1700
    nsglgrDoRegister: inst loads: ld1:985 mld1:40960 ld2:451 mld2:1700
    (we use standard prefer_least_loaded_node_<listener> = on) and in this case we have ld2:451 (instance load) and mld2:1700 (our number of sessions into init.ora file).
    My question is how we can understanding mld1:40960 value into this lines.
    According to pdf file of Alex. Gorbachev max node load is combination of cpu_count *5 (in our case 8*5=40) and max cpu capacity (that this parameter I can't understand).
    Thanks to all and wait for answers. Thanks Staas.

    basically an interpreter 'interprets' byte code, byte code is produced by 'compiling' your java progs. Byte code is a mid point between your code and executable code. Some languages are compiled into executable code, not java. Byte code is interpreted and 'rewritten' into assembly language, and then..I forgot..... I expect someone will pick me up on this! search the web on the subject compilers

  • Help with interpreting explain plan (dbms_xplan) output

    Hi all,
    I'm trying to get to grips with reading and interpreting the explain plan or dbms_xplan output, and so I hope someone can help with the output below.
    So, with the explain shown below, does it mean that...
    a) it starts with step 8 and sends all rows to the nested loop in step 5
    b) it only sends (or thinks it sends) 1 row to step 5 from step 8
    c) For each row supplied from step 5, there will be an index lookup at step 8 to access the table at step 6
    d) Step 8 only gets (or think it gets) 1 row
    If it does mean that only 1 row is expected by the optimizer, and yet the full table scan should return 150,000 records, and the table has up to date statistiucs, what else would cause the cardinality to be so far off?
    If it doesn't mean it will return 1 row then what does it mean ?
    | Id  | Operation                           | Name                           | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                    |                                |       |       |   945 (100)|          |
    |   1 |  SORT GROUP BY                      |                                |     1 |   283 |   945   (3)| 00:00:05 |
    |*  2 |   FILTER                            |                                |       |       |            |          |
    |   3 |    NESTED LOOPS                     |                                |       |       |            |          |
    |   4 |     NESTED LOOPS                    |                                |     1 |   283 |   944   (3)| 00:00:05 |
    |   5 |      NESTED LOOPS                   |                                |     1 |   108 |   929   (3)| 00:00:05 |
    |*  6 |       MAT_VIEW ACCESS FULL          | DEMOGRAPHICS_MV                |     1 |    97 |   927   (3)| 00:00:05 |
    |*  7 |       MAT_VIEW ACCESS BY INDEX ROWID| NAMES_MV                       |     1 |    11 |     2   (0)| 00:00:01 |
    |*  8 |        INDEX RANGE SCAN             | ORG_MV_IDX1                    |     1 |       |     1   (0)| 00:00:01 |
    |*  9 |      INDEX RANGE SCAN               | PAY_IDX8                       |   252 |       |     4   (0)| 00:00:01 |
    |* 10 |     TABLE ACCESS BY INDEX ROWID     | PAY_ALL                        |     1 |   175 |    15   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
          8 - access("ORG_MV"."ORG_ID"="DEMO_MV"."ORG_ID")Many thanks for your help.

    Thank you Hemant and rp0428,
    I read through that white paper which was really useful.
    I ran query using GATHER_PLAN_STATISTICS and go tthe Estimate and Actual rows - wow - it is a long way out!!
    | Id  | Operation                           | Name                           | Starts | E-Rows |E-Bytes| Cost (%CPU)| E-Time   | A-Rows |   A-Time   | Buffers | Reads  |  OMem |  1Mem | Used-Mem |
    |   0 | SELECT STATEMENT                    |                                |      1 |        |       |   945 (100)|          |      0 |00:18:11.39 |    2552K|    361K|       |       |          |
    |   1 |  SORT GROUP BY                      |                                |      1 |      1 |   283 |   945   (3)| 00:00:05 |      0 |00:18:11.39 |    2552K|    361K|  1024 |  1024 |          |
    |*  2 |   FILTER                            |                                |      1 |        |       |            |          |      0 |00:18:11.39 |    2552K|    361K|       |       |          |
    |   3 |    NESTED LOOPS                     |                                |      1 |        |       |            |          |      0 |00:18:11.39 |    2552K|    361K|       |       |          |
    |   4 |     NESTED LOOPS                    |                                |      1 |      1 |   283 |   944   (3)| 00:00:05 |     44M|00:04:59.03 |     598K|  63442 |       |       |          |
    |   5 |      NESTED LOOPS                   |                                |      1 |      1 |   108 |   929   (3)| 00:00:05 |    109K|00:00:01.73 |    7807 |      7 |       |       |          |
    |*  6 |       MAT_VIEW ACCESS FULL          | DEMOGRAPHICS_MV                |      1 |      1 |    97 |   927   (3)| 00:00:05 |    126K|00:00:00.26 |    5417 |      1 |       |       |          |
    |*  7 |       MAT_VIEW ACCESS BY INDEX ROWID| NAMES_MV                       |    126K|      1 |    11 |     2   (0)| 00:00:01 |    109K|00:00:01.27 |    2390 |      6 |       |       |          |
    |*  8 |        INDEX RANGE SCAN             | ORG_MV_IDX1                    |    126K|      1 |       |     1   (0)| 00:00:01 |    126K|00:00:00.69 |    2023 |      6 |       |       |          |
    |*  9 |      INDEX RANGE SCAN               | PAY_IDX8                       |    109K|    252 |       |     4   (0)| 00:00:01 |     44M|00:04:03.07 |     590K|  63435 |       |       |          |
    |* 10 |     TABLE ACCESS BY INDEX ROWID     | PAY_ALL                        |     44M|      1 |   175 |    15   (0)| 00:00:01 |      0 |00:13:09.85 |    1954K|    297K|       |       |          |
    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------When I unravel the WHERE clause and remove the decode(nvl statements (which only evaluate the passed in parameters and provide default values where they are NULL) I get a much better plan and values
    | Id  | Operation                        | Name                           | Starts | E-Rows |E-Bytes| Cost (%CPU)| E-Time   | A-Rows |   A-Time   | Buffers | Reads  |  OMem |  1Mem | Used-Mem |
    |   0 | SELECT STATEMENT                 |                                |      1 |        |       |   157K(100)|          |      0 |00:00:43.10 |     343K|  45190 |       |       |          |
    |   1 |  SORT GROUP BY                   |                                |      1 |      1 |   283 |   157K  (1)| 00:13:47 |      0 |00:00:43.10 |     343K|  45190 |  1024 |  1024 |          |
    |   2 |   NESTED LOOPS                   |                                |      1 |        |       |            |          |      0 |00:00:43.10 |     343K|  45190 |       |       |          |
    |   3 |    NESTED LOOPS                  |                                |      1 |      1 |   283 |   157K  (1)| 00:13:47 |      0 |00:00:43.10 |     343K|  45190 |       |       |          |
    |*  4 |     HASH JOIN                    |                                |      1 |      1 |   272 |   157K  (1)| 00:13:47 |      0 |00:00:43.10 |     343K|  45190 |   720K|   720K|  171K (0)|
    |*  5 |      TABLE ACCESS BY INDEX ROWID | PAY_ALL                        |      1 |      2 |   350 |   156K  (1)| 00:13:43 |      0 |00:00:43.10 |     343K|  45190 |       |       |          |
    |*  6 |       INDEX RANGE SCAN           | PAY_IDX7                       |      1 |   3596K|       | 15565   (1)| 00:01:22 |   7251K|00:00:50.88 |   45190 |  45190 |       |       |          |
    |*  7 |      MAT_VIEW ACCESS FULL        | DEMOGRAPHICS_MV                |      0 |    126K|    11M|   919   (2)| 00:00:05 |      0 |00:00:00.01 |       0 |      0 |       |       |          |
    |*  8 |     INDEX RANGE SCAN             | ORG_MV_IDX1                    |      0 |      1 |       |     1   (0)| 00:00:01 |      0 |00:00:00.01 |       0 |      0 |       |       |          |
    |*  9 |    MAT_VIEW ACCESS BY INDEX ROWID| NAMES_MV                       |      0 |      1 |    11 |     2   (0)| 00:00:01 |      0 |00:00:00.01 |       0 |      0 |       |       |          |
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Even though the result set is zero, the time to establish this came down from 35 minutes to 30 seconds and the plan has changed and is using a different index now!
    Thanks for your help!

  • The best way to get help with logic

    I was posting in a thread on support for logic which appears to have been deleted. anyway, what I was going to say I think is useful info for people, so I'm going to post it anyway. to the mods - it doesn't contain any speculation about policies or anything like that. just an explanation of my views on the best way to deal with issues people have with logic, which I think is a valuable contribution to this forum.
    I think there's a need for perspective. when you buy an apple product you get 90 days of free phone support to get everything working nice and neat. you can call them whenever, and you could actually keep them on the phone all day if you wanted, making them explain to you how to copy a file, install microsoft office, or any number of little questions no matter how simple - what is that red button thingy in my window for?.. on top of that, you've got a 14 day dead on arrival period (or 10 days I can't remember) in which if your machine has any kind of hardware fault whatsoever it's exchanged for a totally new one, no questions asked. a lot of people complain that applecare is overpriced.. and if you think of it just as an extended warranty, then it is a little pricey. but if you are someone that could use a lot of phone support, then it's actually potentially a total bargain. the fact that 2 or more years after you bought a computer, you could still be calling them every single day, asking for any kind of advice on how to use anything on the machine, is quite something. many people on this forum have had problems when they made the mistake of upgrading to 10.4.9 without first creating a system clone or checking first with their 3rd party plug in vendors to make sure it was ok. so, with apple care, you could call them and keep a technician on the phone _all day_ talking you through step-by-step how to back up all of your user data, how to go through and preserve your preferences and any other specific settings you might not want to lose, and then how to rollback to an earlier OS version.. they'll hold your hand through the whole thing if you need them to.
    as for applecare support for pro apps like logic, I'd be the first person to agree that it's not great for anyone except beginners and first time users. if you look at what it takes to get even the highest level of logic certification, it's all pretty basic stuff. and logic doesn't exist in a vacuum, there is an entire universe of 3rd party software and hardware, as well as studio culture and advanced user techniques that are going to be totally invisible to some poor phone support guy at apple that did a logic 101. but it's not hard to see that apple are trying to promote a different kind of support culture, it's up to you to decide whether you want to buy into it or not.
    the idea is that they are able to provide basic setup support for new users, including troubleshooting. because it's a simpler level of support, at least they can do this well. so there's no reason why any new user with say a new imac and logic can't get up and running with the 90 days of phone support they get for free.
    but the thing is, for extremely high end pro users it's a different matter altogether. pro use of logic within the context of say, a studio or a film composition scenario is a very different world. it's almost a nonsense to imagine that apple could even hire people capable of giving useful support for this end of the spectrum, over the phone. there are so many variables, and so many things that require a very experienced studio person or in-work composer to even begin to understand the setup, let alone troubleshoot it. and it's a constantly evolving world, you actually have to be working in it and aware of developments on 3rd party fronts as well as changes in hardware.. not to mention even changes in the culture of studio production and the changed expectations that come from that. there's no way some poor little guy sitting at a help desk at apple can even hope to be privy to that kind of knowledge. it's already good enough that they don't outsource their support staff to india, let alone go out to studios and hire the very people with the skills that should be staying in the studio! not answering phones for apple.
    so, given this reality.. companies have two choices. they can either offer an email based support ticket system, which others do. but in my opinion.. this can just be frustrating and only a half-solution. sure you 'feel' like you are getting a response from the people that make the software and therefore must know it.. but it's not really the case due to what I said above. DAWs don't exist in a vacuum, and so much of what you need to understand to help people requires an intimate knowledge of the music industry in which they are working. you still won't get that from steinberg, even if they sort of answer your emails. the other problem is that this kind of system can mean sporadic answers, a lot of tail-chasing, and quite often you won't get an answer that helps you in the end anyway.
    the other model is to foster a strong user support culture. some people react in the wrong way to this idea.. they just think it's a big brush off from the manufacturer, saying we don't care, go sort it out yourselves.. but this isn't true. apple has a classification for pro resellers called 'apple solutions expert - audio'. what this means is that these dealers are recognised as audio specialists and they can receive extra support and training from apple for this. but more importantly than this.. most of them are music stores, or pro gear dealerships that are also mac and logic dealers. they already employ people that have worked or do work in the music industry, and are constantly on top of all of this stuff. apple encourages these dealers to run workshops, and to provide expert sales advice in the very niche area that logic is in, which they can do far better than some generic apple store ever could. but most importantly, they are encouraged to offer their own expert after-sales support and whatever other value-adding expertise they can, to get sales. because margins in computer gear are so tight nowadays, discounting is not really a viable option for these dealers to guarantee getting musicians to buy computers and logic setups from them. the only companies that can entice people with a lower price a big online wholesalers or big chain stores. so the best idea for these niche expert stores to get sales is to offer you their own experts to help with configuration, ongoing support and to generally make it a better idea that you bought your system from them rather than from some anonymous online store. I can see the wisdom of this.. it puts the support back out there on the ground where it's needed, and also where it can work best. apple could never hope to offer the same level of expertise in helping a film composer work through some issues with a specific interface or some highly specific issue they have with getting a task done. no big software manufacturer could do this anywhere near as well as people out there that have worked in studios or currently do work in studios. so in my opinion it's a far better model to foster this kind of support culture, along with training courses, books and training video support. also user forums like this one are possibly one of the most valuable ports of call anyone could ask for. apple couldn't replicate this with their own staff, even if they tried. and even if they made a system where some of the people close to logic development were able to answer emails, it would still be nowhere near as useful, as rapid or as capable of being up to speed with logic use out in the real world with 3rd pary gear, as any of these other methods are.
    the only thing I think they could do better would be to publish a list of known bugs which are officially recognised. this would help everyone and put an end to a lot of wasted time and speculation on if something is a bug totally to do with logic, or if it's a specific issue raised by a particular configuration.
    but really, in my view, a 3rd party support and training culture through a combination of specialist dealers, consultants that literally run a business setting up computers for pro-users and helping them keep it all working, online user-to-user forums and published materials really are the way forward.

    In all honesty this is currently the 3rd "logicboard" (motherboard)
    in my powerbook due to a design flaw regarding the 2nd memory slot....
    Yep. Mine failed five weeks after I bought it. However, I bought it for work and couldn't afford being without it for four weeks while they fixed it, so I had to live with it. My serial number did not entitle me to a replacement either, post Applecare.
    My firewire ports have burnt out from a third-party defective device (no hot-plugging involved)
    My screen is blotchy (my PW serial number did not entitle me to a replacement).
    My battery serial number did not entitle me to a replacement, and is not that good these days.
    My guaranteed Powerbook-compatible RAM is actually not, causing RAM related problems, most notably these days meaning that as soon as I switch to battery power, the laptop crashes, so I can only use mains power. The company I bought it from stopped taking my calls and wouldn't replace it after they replaced it once, so I'm stuck with it. And of course, only one ram slot is working, so I can't even use my original stick in the first slot, which would shift the dodgy stuff away from the lower system area.
    My power supply failed at the weak spot and caught fire. I managed to break apart the power supply and recable it so I didn't have to buy a new power supply, although the connection at the laptop end is loose (all the more fun that as soon as power is lost, the laptop crashes - see above). The power supply is held together with gaffa tape. Silver gaffer tape though, so it's still kind of 'Appley"...
    My internal hard drive is dying - four or five times now it clicks and won't power up, causing the laptop to die.
    One foot has fallen off (but glued back on).
    The lid is warped.
    The hinge is loosish.
    The S-Video adaptor cable is intermittent.
    But aside from all that, I have looked after it well, and I love it to death. Just as well, because it doesn't look like it will be that long...
    But it still "just works". Apart from the battery power obviously. And the ram slot. And the ram. And the screen. And the hard drive. And the firewire ports. And the feet.
    But everything apart from the main board, the screen, the case, the hard drive and the power supply works fine. So thats... er..
    Hmm.

  • Help with GR/IR, can't clear on MR11

    Please help with this case:
    We had a purchase with delivery cost included. We create MIGO with no problem. (Credit to GR/IR account = $60)
    We cancel the delivery cost in MR11. (Debit to GR/IR Account = $60)
    After a few months, we restore Delivery Cost in MR11SHOW (Credit to GR/IR account = $50)
    Create MIRO to freight vendor in MIRO (Debit to GR/IR account = $60)
    As you may see, now can't clear GR/IR account because there's a difference (60 vs 50) and can't use MR11 neither, I get this error:
    No data selected. Check selection parameters!!
    Message no. CKMLGRIR009
    I have tried with so many post, but can't find anything that works....
    Thanks in advance!

    Hi Mohsin.
    After we cancel the delivery cost with MR11 (let's say, in January) the freight vendor asked us for his payment (in April) and then we realised that we need to restore the delivery cost...
    What we did is cancel the MR11 document that we had created before... and there's when the difference in GR/IR was generated.....
    I hope that this comments makes a little bit clearer my explanation.
    Thanks

  • Windows Server 2008 R2 with multiple Roles OS Rebuild, Need help with Certificates.

    Hi,
    I have rebuilt a Server for my client and I require help with certificates..
    I am unsure exactly what to do to get this server working as it was.
    Example, The Windows Server 2008 R2 has Microsoft Exchange, DNS, DHCP, ADDS, FileServices,Network Policy and access Services and Webservices roles installed on a single box.
    Since the Server OS Rebuild I am getting 2 issues that pop up usually when Outlook in opened on a client Workstation,
    I have not dont anything certificate wise to the server since OS Install, and the messages I get and best described here
    I seen on a backdrive, a few certificate files I dont know if we can use these files for anything but we have the following files of drive E (Backup)
    e:\server.xxxx.com.au\gd_iis_intermediates.p7b
    e:\server.xxxx.com.au\server.xxxx.com.au.crt
    e:\ssl\2013-2018.cer
    1st Message is about a Proxy certificate I dont get this often but saw it today and my client clicked ok too quickly.
    I have seen it and didnt see it again after trying to close outlook and reopen
    I looked up google images and tried to find it...
    It's like this, (There is a problem with the proxy server's security certificate.
    The security certificate is not from a trusted certifying authority.)
    2nd Message is about Security Alert, Autodiscover.xxxx.com.au Information you exchange with this site cannot be viewed or changed by others. However, there is a problem with the sites security certificate.
    -X- The security certificate was issued by a company you have not chosen to trust. View the certificate to determine whether you want to trust the certificating authority
    -TICK- The security certificate date is valid
    -X- The name on the security certificate is invalid or does not match the name of the site
    Do you want to preceed
    [Yes][No][View Certificate ...]
    3rd Message is very Close to the 2nd Message, is about Security Alert, xxxx-server.xxxx.local, Information you exchange with this site cannot be viewed or changed by others. However, there is a problem with the sites security certificate.
    -X- The security certificate was issued by a company you have not chosen to trust. View the certificate to determine whether you want to trust the certificating authority
    -TICK- The security certificate date is valid
    -TICK- The name on the security certificate is invalid or does not match the name of the site
    Do you want to preceded
    [Yes][No][View Certificate ...]
    If you can help guide me thou this as I'm very new to setting up certificates. I had a friend tell me about something in DNS.. but he has been super busy and I want to learn what to do.
    Thank-You.

    Hiya,
    quite a lot has the same confusions as you do, so I've written a simple explanation on the subjet of certificates
    http://jesperarnecke.wordpress.com/2014/03/22/certificates-simple-explanation/
    Let me know if that helps you and if you need further assistance.

  • Need help with recovery!

    Hello, I have a problem, my model is HP Pavilion dv7 6051er.
    After reinstalling the OS team got off F11-recovery.
    I can not find a solution to your problem, see "Support & Drivers" can not find any software patches that could, would solve my problem. A hard drive intact.
    Please help with the decision of the key problems.
    thanks in advance

    Can't understand this. Try again with a little more explanation of the problem.

  • NEED HELP WITH BUTTONS IN AS3!!

    Hello, I am stumped with an action scripting problem. I'm
    trying to create a really basic website in flash using buttons to
    jump from scene to scene. Let's say I want to do something as
    simple as make scene 1 jump to scene two right? I'll place in my
    scene 2 button on my first page:
    But instead of the scene changing to the next scene after I
    press the button, these errors come up!!
    1180: Call to a possibly undefined method on.
    1120: Access of undefined property release.
    1120: Access of undefined property _root.
    I've tried asking in so many different forums, I usually do
    pretty good with action scripting for buttons. But this is my first
    time doing it with cs3. I'm utterly confused, someone please help!!
    Thank you.
    The code on this page is the code I was using to try to
    change scenes...Oh! and whenever I try to put a code in the actual
    button, it won't let me. I just get a message that says something
    like "Can't have any actions applied to it".

    foxxpop,
    > But instead of the scene changing to the next scene
    > after I press the button, these errors come up!!
    >
    > 1180: Call to a possibly undefined method on.
    > 1120: Access of undefined property release.
    > 1120: Access of undefined property _root.
    You're using three terms that aren't supported in
    ActionScript 3.0: the
    on() function, the release parameter to that function, and
    _root. In
    ActionScript 3.0, you'll have to give your button an instance
    name and wire
    it up like this:
    http://www.quip.net/blog/2007/flash/making-buttons-work-in-flash-cs3
    In that blog entry, you'll see (with explanation) something
    that looks
    like this:
    myButton.addEventListener(
    MouseEvent.CLICK,
    function(evt:MouseEvent):void {
    trace("I've been clicked!");
    Just bear in mind that you can also make that a named
    function, like
    this:
    myButton.addEventListener(MouseEvent.CLICK, clickHandler);
    function clickHandler(evt:MouseEvent):void {
    trace("I've been clicked!");
    > I've tried asking in so many different forums, I usually
    do
    > pretty good with action scripting for buttons. But this
    is
    > my first time doing it with cs3.
    Your issue isn't Flash CS3, it's that your FLA file is
    configured for
    ActionScript 3.0. If you change that to AS2, you can go right
    on using the
    same approach you used to -- and you'll be able to attach
    code directly to
    objects. ;)
    David Stiller
    Co-author, The ActionScript 3.0 Quick Reference Guide
    http://tinyurl.com/2s28a5
    "Luck is the residue of good design."

  • Help with N8 and Adobe Premiere?

    Hi, I am using Adobe Premiere Pro CS4 v4.1.0.
    I recently got a Nokia N8 and am now trying to edit the video recordings, but am having some problems.
    The phone records at 25fps 1280x720 using H.264 MPEG-4 codec, with sound in Stereo 130kbps 48 kHz.
    When I create a project and load the .mp4 file into it, the first problem I see is that it reads it as 500fps and the video is only a second or 2 long.
    I  then interpret the footage to the correct 25fps, and the video then works fine. However,  the sound seems to not be there.
    I've noticed that due to Premiere interpreting it as 500fps, it thus only plays the first second or two of the sound when left as 500fps and plays all the video in that second or two, and thus when changing to the correct 25fps, it is therefore only the two seconds playing over the entire minute of video.
    I also  tried changing the file into other formats. The only other one that  kind of worked was .mov. It allowed the sound to work perfectly, the  video loaded at correct frames, however, when playing the video on  premiere, it then showed black screen for most of the clip.
    Have  tried to find out about this online and installed a couple different  codec packs and media players, but nothing helped with this problem in  Adobe Premiere. However, the clip played fine in the media players, such  as RealPlayer.
    If anyone has any advice on this, it would be  appreciated. I would prefer to fix this issue correctly rather than have to manually interpret or transcode the footage each time I want to edit it.
    Btw, I also posted this question on a forum with Nokia N8 Users, and others also tried it out and had same or similar issues. They also tried on CS5 and it still didn't work.
    *UPDATE* I just tested again to change the file from .mp4 to .mov by simply renaming it, and this time it loaded perfectly into Premiere. However, I have to do this on my XP computer, as my Windows 7 doesn't change the format of file by simply renaming it. Hence, I would still like help with getting it to recognise the .mp4 correctly though in the first place, rather than having to rename my files each time on the XP computer.

    Moshpit84 did you utilize the uninstallers located in Applications/Utilities/Adobe Installers to remove your installation of Premiere Pro?  Also what version of the Adobe Application Manager are you currently using?

  • Can anyone help with Double Command issues. This a specific keyboard question and they do not seem to know.

    Before I go into a lengthy explanation of the problem: Can anyone help with Double Command issues. This a specific keyboard question and they do not seem to know.
    Thanks much.
    Emile

    Choose Force Quit from the Apple menu and close Mail from there.
    (103661)

  • Help with photo albums Please

    Hi, i really need some help with my pictures, I've only got a very basic understanding of how my phone works and have somehow put a load of albums on my phone when i plugged it into the computer-I want to delete some of them off the phone but cannot work out how to do it, when i plug my phone in i can find the photo tab but cannot actually see the pictures and can't see any delete button!!! Please can someone help me, basic explanations would be gratefully recieved xxxx

    The photo sync is one way: computer to phone. To remove photos, synced to your phone, remove the check marks next to the albums/folders under the photos tab in itunes & hit the apply/sync button. They will be removed from your phone. You cannot delete photos that were synced to your phone, directly on your phone. The easiest way to manage photos synced to your phone is to create albums or folders on your computer. Move whatever photos you want on your phone into these albums/folders & then select them under the photos tab in itunes to sync to your phone. You can then remove or add photos to these various albums/folders on your computer & the itunes sync process will update your phone every time you sync.

  • Need help with a Spreadsheet style app

    I was just wanting some help in working with developing an app for my iphone... i had previous experience in microsoft visual basic but i don't quite understand this code....
    I am in flight school and trying to develop an app that reflects the weight an balance forms we do... I am stuck on how to do basic multiplication and division with xcode, i have viewed several videos and tutorials but they each do things differently and i can't seem to bring it together into this app.
    So in the picture below.... what i need help with is how to do the following
    from
    aircraft weight * arm = Moment outbound
    front seats * arm = Moment outbound
    to fuel @ landing
    "0" fuel weight = aircraft weight + front seats + rear seats+ Baggage 1 + baggage 2
    If anyone has any ideas or can lend me some tip or places that deal with stuff like this that would be great

    A character class [...] robs some otherwise special codes from their magic. The +, for instance, is interpreted as a plus, not as "repeat ad nauseum" anymore.
    So your try [\d+] will simply match either a single digit or a single plus. The solution is to move the + outside of the character class
    [\d]+
    .. and in that case there is no reason anymore to create a class for just digits, as you got it already.
    The period *needs* to  be escaped, because otherwise it will match *any* character.
    Try this for a change:
    \d+\.\d+

Maybe you are looking for

  • I just bootcamp my macbook white to windows 7 home premium and I can't connect to wifi now! Plz help

    I used to run windows xp on my macbook with no problem. I just bootcamp to windows 7 and can't connect to wifi! T_T plz help... I can't see the wifi bar at the noti panel just the monitor with a red cross. Need help....

  • Is it possible to use Acrobat 9 sdk to check accessibility?

    Is it possible to use Acrobat 9 sdk to check accessibility of a pdf and get whether the pdf is accessible or not? I've found InvokeAccessibilityCheckerCmdSnip.cpp that seems to call accessibility validator, but I don't know if that will make what I n

  • Damaged attachments when sent as Cc

    Hi everyone, I figured that this question might better be asked in the server forum, so please bear with me. The situation is as follows: There are some Macs running 10.4 and Apple Mail. They connect to the company's Exchange server via IMAP (enabled

  • Periodic Journals with impact in flow and balance accounts

    Hi We want to pass Journals in HFM on periodic basis (zero view of adjustments set to periodic). This will enable a journal passed in Month 1 to have impact for all months in YTD terms. The issue that comes up is as follows: - There are some Journals

  • HP CM1415fnw and Mac 10.9.2 wireless connection

    I have a HP CM1415fnw and a Mac running 10.9.2. I am on only one network. It was working great then with an upgrade somewhere along the line it stop seeing the printer from the mac. I also have a Win 7 Pc and it sees it fine.  I run the HP for Mac se