Notes field in Capture dialogue - Where does that information go?

I have been capturing a lot of complete tapes lately (using Capture Now), and I have used the Notes field to some extent to describe the content.
However, I cannot seem to find that information when I look at the clip in the browser, even in list mode. I thought that the Master Comment 1 field was the one in question, but apparently not.
Can someone enlighten me as to where this information is gathered?

I was about to write Thanks to you, but then I saw that I already had Log Note displayed, and that the field is completely empty... I tried another import yesterday, but I am not getting anything filled out in the Log Note field. Or any other field actually, beyond Reel, although they are alled filled with information. Is this right? I am using "Capture Now" btw.

Similar Messages

  • I signed up for 20 bucks a month to use photoshop and only got one day of use.  Where does that get

    I signed up for 20 bucks a month and only got one day of use of Photoshop.  Where does that get off?

    What error are you receiving?  Do you have a subscription to Photoshop CS6?

  • I've used the Domains Administrator and added 45 domains. Where is that information recorded ?

    I've used the Domains Administrator and added 45 domains. Where is that information recorded ?
    Thanks,
    Bob Larsen

    The should be in defaultdomains.xml which will be in your system types directory (if you defined one), otherwise it is in a folder where you installed data modeler.

  • HT5262 where does the information get stored when you back up your i-phone? It just reports its done but I have no idea where to find it if I need it again!

    Where does the information get stored when you sync/back up your i-phone. I have no idea where to look if I need it again!
    Thanks

    You can chhose the backup when you would reset your device. In this case you would get the option, during the set up process, to choose your backup and restore your device from it.
    (You can find a few information e.g. size and date of your backup in "Settings > iCloud > Storage & Backup > Manage Storage")

  • Multiple dispatch and Symmetric methods - Where Does That Code Live?

    Hi all.
    I am stuck with the above problem, which looks to be a very common and fundamental one. Supposing I have some sort of relation or operation to be performed on various different pairs (or n-tuples) of classes of object. Where does this code belong, given that it is not sole property of any one of the classes, but a kind of property of the collection of classes?
    An bad example for me to bring up, but one that neatly illustrates the point, is the equals method. In order to retain the symmetric and transitive properties of the equals method, and object can only make judgement calls about it being equal to another object of it's own type. This prevents the concept of equivalency from crossing between types.
    In order to compare a with b (if a and b are of different types), b must supply some sort of representation of itself as an a, then the comparison statement a.equals(b.asA()); must be called.
    This of course means b must supply an 'asXXX()' method for each class XXX it wishes to equate itself to. Furthermore, by an extension of the equals contract for symmetricality, the method AsB() in class A (if it exists) must be such that, if a.AsB() .equals (b), then b.AsA.equals( a ).
    This sort of design is unfeasible for obvious reasons, the main reason being that it is impossible to anticipate evey case where an instance of class A could reasonably be compared to an instance of some other class X.
    The other annoyance is all that hard work of providing methods to equate A with something else, would go unused for 99% of the time.
    With this in mind, I was thinking. Suppose in some program environment, we have only 3 classes, A, B, and C, such that:
    {A,B} can be meaningfully compared
    {B, C} and {A, C} cannot.
    It would be OK to supply code (somewhere) for comparing A's with B's. We also know that under no circumstances will an A or a B, and a C, ever need to be compared for equality.
    Supposing an extension of this environment were created, introducing class D.
    {D, A} and {D, B} can be meaningfully compared.
    Now, neither A nor C knows what a D is, or how to compare themselves to it. But D was developed with A, B and C in mind, and contains logic for the various comparisons (with A and with B). An obvious idea for this is to let D bring it's new code into play, by registering these new comparison functions in the environment somehow.
    Supposing instead that equality comparison was delegated to some third party, instead. This third party contains a table of pairs of classes, which act as keys to look up a comparison object.
    So, when class A is loaded, something of the sort happens:
    public class A {
        static {
            Equals.comparer.addEntry(A.class, B.class, new EqualsMethod() {
               // details of the EqualsMethod interface implementation go here
    public class B {
        static {
            // since equals is symmetric, this method clashes with the above in A
            // This could happen...
            Equals.comparer.addEntry(B.class, A.class, new EqualsMethod() {
               // ... different approach to the above
    public class D {
        static {
            Equals.comparer.addEntry(D.class, A.class, new EqualsMethod() {
            Equals.comparer.addEntry(D.class, B.class, new EqualsMethod() {
        } // Ds can now be compared with Bs and As. They can now be compared with Ds
    }There is a problem with the above. As can clearly be seen, there are 3 unique situations that might occur between two classes (call them X and Y).
    o One of X or Y contains code to compare them both.
    o Neither X nor Y contain code to compare the two. X equals Y is always false
    o Both X and Y contain code to compare the two.
    The third causes the problem. What if X and Y disagree on how to compare themselves? Which method gets chosen? The only solution would be to let whosever static initialiser gets called first be the one to supply the code.
    I said before that equals was a bad example to bring up. this is because the usage of equals and the concept of equality in java is already well defined, and works just fine. However, in my own pet project at the moment, I have run into the same problems as outlined above.
    I am currently assembling a generic pattern API for use in various other applications I am writing (I was finding that I was writing code for matching objects to patterns, in different guises, quite frequently, so I made the decision to refactor it into its own package). An important part of the API is the section that handles the logic for combining patterns, ie with AND, OR and NOT operations.
    The Pattern interface is this:
    interface Pattern<E> {
         public boolean match(E toMatch);
         public Pattern<E> not();
         public Pattern<E> or(Pattern<E> other);
         public Pattern<E> and(Pattern<E> other);
    }There are a few basic Patterns:
    TruePattern<E> - a pattern that always returns true no matter what E is passed for it toMatch
    FalsePattern<E> - self-explanatory.
    ExactValuePattern<E> - true if and only if the E that it is passed toMatch is .equal to the E that this pattern was constructed with.
    NotPattern<E> - a pattern that contains another pattern, and returns true for any E that returns does not match it's contained pattern. Used for when the contained pattern cannot be logically reduced to one pattern under the NOT method in the Pattern interface
    AndPattern<E> - a pattern that contains 2 other patterns, and returns true for some E iff both contained patterns return true for that E. Used for when the 2 patterns cannot be logically reduced into one pattern via the AND method in the Pattern interface
    OrPattern<E> - self explanatory
    RangePattern<E extends Comparable <E>> - a pattern for comparing if some Comparable lies between two other comparables.
    Every pattern has the opportunity to provide a reduction, when combined with another pattern through And or Or. For example, any pattern AND a FalsePattern can be reduced just the FalsePattern. any pattern OR a TruePattern can be reduced to just the TruePattern.
    The methods AND and OR from the Pattern interface present the same problems as the .equals() example I was using before.
    o AND and OR are symmetric operations
    o There exist situations where two patterns of unrelated class could be meaningfully combined (and reduced) under these two operations.
    Example: The pattern on Integers '0 < X < 3' and 'X is 5' can be reduce to the FalsePattern
    Example: The pattern on Doubles '0 < X <= 10' or 'X is 5.5' or 'X is 7.2' can be reduced to '0 < X <= 10'.
    Example: The pattern on Integers ('0 <= X <= 5' and 'X is not 0') or ('X is 6') or ('x is 7') can be reduced to '1<=X<=7'.
    So the question is, where does the code belong? a.and(b) should return the same as b.and(a), but both b and a may well disagree as to what happens when they are combined under and. At present, both a and b need to supply their own separate implementations. Clearly though, the code for combining patterns A and B belongs to neither A alone, not B alone, but to A and B as a whole.
    Thanks in advance, and sorry for this overlong post.

    So the equivalent thing in my scenario would be an
    AndAnator, and an OrAnator? :)
    The thing is, it would be nice for comparison between
    A and B to take place automatically, without the poor
    coder having to maintain a reference to a Comparator
    and invoke the comparison method each time. Likewise
    in my situation, it'd be nice to say A.or(B) instead
    of andAnator.and(A,B), yet have all the goodness of a
    third party doing the comparison (or in this case,
    the anding).
    I am going to go and test this all out, but do you
    have any suggestions on a good structure? I think it
    would involve pulling the and/or/not methods from the
    interface (this appeals, as many implementors may not
    wish to supply logic for running these methods
    anyhow), and then putting them... somewhere else.I didn't consider your speicifc problem very deeply because after such a long detailed explanation I figured you'd be up for kicking around the idea for a while.
    In your case, I see that you would want to be able to call the and and or methods on the Objects themselves. Luckily, in this case, I think you can have your cake and eat it too.
    You can make your and and or methods fa�ades to the third party 'referee'. This way you can enfore symmetry. It's difficult (if not impossible) to enoforce transitivity with this design but I think you don't even need that in this case. That is if a == b and b == c then a == c should be true but if a and b and b and c then a and c is not necessarily true. In your case, it may not even make sense.

  • Notes Field in order Approval, where it goes?

    Does anybody knows where the Notes field goes when an order gets approved? I looked into SAP SO and there is nowhere to be seen. Any clues? Does it synchronize with SAP ? Can I include the comments in the Notes field to the e-mail sent once approved?

    Approvals in Web tools do not synch with approvals in B1.
    It is meant to give the customers of the website an opportunity to monitor purchases by their employees.

  • "Message not downloaded..." What does that mean?

    Help! I moved a sub-mailbox to another position in the toolbar and then moved it back. After this, all of the messages in the sub-m/b read as follows (or similar): "The message from Paul Reed <[email protected]> concerning “Julie” has not been downloaded from the server. You need to take this account online in order to download it."
    I've relaunched and restarted but nothing changes this. I can not now access any of the messages in this mailbox; any ideas, please?
    peeyar

    Hi!
    This message actually has nothing to do with downloading most of the time. Rather it is typically a result of a flaw in the index of messages. If this is one mailbox only now, click on Mailbox in the menubar, choose Rebuild. Wait patiently for Rebuild to finish, and be aware that all messages in the list will briefly disappear, before reappearing.
    Does that change anything? The message can result from a mailbox being overstuffed -- this would not be expected to happen unless the size of the one mailbox had neared or reached 2 GB in size.
    Ernie

  • Where does SSO information gets stored in Apps 11i

    Hi,
    I installed Oracle Apps 11.5.10.2. This has been further integrated with Oracle Single Sign On server (Oracle iAS 10.1.2.0.2).
    Does any one know where does the SSO infrormation gets stored in Apps, i.e. is there any table which stores these details? How does Apps come to know where to look for SSO server ?
    Thanks in advace.

    dumbdba wrote:
    We had a strange issue while enabling SSO for one of the test instances. After registering with the SSO server, the user was still directed to the >AppsLocalLogin.jsp page. The user preferences are SSO and we did take a Apache restart but it did not work.Is this true for all users, or just one? If not all users, this may be a case of cached files on the client (web browser) side. Can the affected users connect from other browsers on other machines, or from their own browsers after clearing the cache?
    I ran the test, but it shows me the information which already is known. I mean we know the URL's of SSO server. I was wondering as to how txkrun.pl script handles the login preferences ? Does it changes the aplogon.html file or does something other ?
    How does the instance comes to know that it is now single sign-on enabled and has to redirect to the SSO server rather than LocalLogin.jsp.txkrun.pl and AutoConfig should make all the necessary changes to the various configuration files (Apache httpd.conf and mod_osso.conf, Oracle AS ias.properties files, etc). As Hussein states, there should be no need to manually modify aplogon.html. Changes there will be overwritten the next time you (or adpatch) run AutoConfig, anyway.
    Vikram Das has written a [useful and thorough treatment|http://oracleappstechnology.blogspot.com/2007/08/apps-11i-login-flow.html] of what goes on in the course of logging in to an 11i system that is integrated with SSO.
    It's also possible that you have stale/corrupt JSPs cached on the web server; a simple restart of Apache will not necessarily fix this. Have you tried using ojspCompile.pl (in $FND_TOP/patch/115/bin) to recompile some of the JSPs associated with the login process?
    Regards,
    John P.
    http://only4left.jpiwowar.com

  • HT4796 where does the information migrated go?

    I just migrated some information from our pc to our mac using the migration assistant. Where do i find the information after it is transfered?

    The information does not go INTO your CURRENT ACCOUNT. It takes the information from your PC account, and creats a NEW USER account with that inforation in it.
    Log out, and log into the new account to get to that information.

  • Why does my mail disappear on both iPad and iPhone4... only sometimes.  It's not in the trash so where does it go and why?

    Why do I lose mail from my iPhone4 and recently from my iPad2?  It happens infrequently, but when it does the messages completely disappear from my device(s); the messages are not in my trash. 

    OK, so I decided that maybe if I "sync" my iPod instead of just copying stuff to it at will, that maybe it would fix the problem.  I did a "restore", wiping out the contents.  I set up a "playlist", and put everything that I wanted on the iPod into the "playlist".   Then I "synced" the "playlist" onto the iPod.  Every song and album now had the proper album art.  I could live with this.   Then I added another album to the "playlist", and "synced".  The new album was now on the iPod with the correct artwork.  The albums that were already on the iPod now either had their appropriate artwork, no artwork, or the artwork from the other albums that were already on the iPod, with no rhyme or reason as to which was which.  AARGH.   I wiped it out and re-added the now-explanded "playlist" and "synced" again, and every album had the right cover.   I guess the only thing to do is completely replace the contents of the iPod any time I want to add or change anything, or forget about artwork.

  • A few weeks ago I had to reinstall itunes on my PC because the latest itunes update did not install properly.  Ever since doing that something called Mobile Me keeps popping up whenever I open email (outlook) and slowing it down. How do I remove MobileMe

    A few weeks ago an itunes upgrade did not install properly on my PC so I had to uninstall itunes and everything associated with it.  I was able to reinstall itunes and it works fine including syncing with my ipod.  However, now whenever I open my email (outlook) a box pops up stating MobileMe Services has stooped working. This happens a couple of times after I click to close the program.  This a nusance and really slows down getting to my email.  From what I've found MobileMe was something that used to be used by itunes to sync mobile devices but is no longer used by itunes.  I can't find a way to remove this MobileMe from my PC.  I've tried going into Contol Panel then Programs and Features to uninstall it but there is no button there to uninstall it.  Any suggestions on how this can be removed?

    Do you have a backup that you can restore from? Your old hard drive seems to be the problem.

  • Cannot open the application "Firefox.app" because it is not supported on this architecture-what does that mean?.

    Firefox has always worked fine...until I installed v4. Now I get the above error, and it won't launch. I'm running OSX v10.5.8, and all of my drivers/software are up to date.

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 4 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer, you can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html
    Mozilla are working to prevent Mac users with non-compatible systems from getting the notification about Firefox 4, and also not displaying the "Download Firefox 4" button on http://www.mozilla.com

  • Cannot download current firefox version because it says I do not have sufficient priveleges. What does that mean and how do I fix it.

    I keep trying to download newest version of Firefox but when I try to move it into applications I get the error message that I cannot do this because "I do not have sufficient privelelges" and then I can go no further. I do not know any more.
    The educatd guesses below are correct.
    Using a Mac
    This happens on my other Mac as well

    If there are problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the disk image (dmg) file to the desktop
    *Firefox 9.0.x: http://www.mozilla.com/en-US/firefox/all.html
    *Trash the current Firefox application to do a clean (re-)install
    *Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data if you uninstall and (re)install Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • When I try to send a text on iMessage it would say not delivered and it kept on doing that do I signed out and tried to sign back in on the app and it said 'get started' then it said enter your apple Id password so I did then it said an error occured?!?!

    Help

    Hello BassoonPlayer,
    Since you are using one of the the school's Macbooks, it is quite possible that the time and date are not properly set on the computer that you are using.  FaceTime will not work if you do not have the proper time zone set up for the location that you are in.  This past week, there were a two other Macbook users I've helped by simply telling them to set the Date/Time properly.  By the way, you described your problem very well, which makes it easier for us to help you.  Hope this solves your problem -- if not, post back and I can suggest other remedies.
    Wuz

  • What about MS Access VBA where does that go?

    Hello Folks newbie here,
    This is the closest form that matched my needs. New to Oracle. Have around 4+ yrs with Access. Access has reached some limitations hence I downloaded Oracle Xpress Edition ("Access on steriods" as the white paper calls it). Well if thats the case then I hope somebody can point me in the right direction.
    I'm looking to re-design my current desktop app. into Web App. My current Access / Excel / VBA is a legacy system. The Web interface part required is having Excel Spreadsheets viewed, edited online and any changes would go back to the Oracle Express edtion DB.
    I think moving the access tables to Oracle is pretty straight forward. What about all the VBA modules where do those go?
    Well hope to hear back.
    Steve ---
    TORONTO, CANADA.

    -I think moving the access tables to Oracle is pretty straight forward. What about all the VBA modules where do those go?
    Hello ,
    you can transform your data with kettle or develope Java , C# etc applications.

Maybe you are looking for