Is there a bug in FM9 tank applying tags in the tables?

When I apply my tag "BOLD" character of a word in a regular paragraph, what is happening, it's what I expect must happen--namely, weight = regular remains unchanged in the TFP designer and weight changes in "BOLD" in the tank Designer (and no asterisk override in down - read on).

BUT, when I apply my "BOLD" word character tag inside a table, weight also passes "BOLD" in the TFP designer and an override asterisk appears at the bottom of the screen to the left of the TFP tag displayed.

Is this a bug in FrameMaker, or is there something I'm not understand how FM is supposed to work messed up with my "BOLD" tag?  I think it's a bug, or at least an inconsistency - IMHO apply a tag to a word inside or outside a table should at least do the same behavior, shouldn't it?

Thanks for the ideas!

-Dave

Dave,

If the only content in the paragraph is the word that you apply the "BOLD" tag or if you manage to understand the end of the paragraph mark (or end of stream marks in the table cell), then FM applies this property as an alternative to the whole paratag (because that's what you've actually done).

To avoid this, make sure that some content in the paragraph (even a space to the right) without the character format applied.

Tags: Adobe FrameMaker

Similar Questions

  • Is there a tip action that will open and close the table of contents?

    I like that in CP5, Adobe has allowed users to change the icon associated with opening and closing of a Table of contents in layers.  Having said that, unfortunately, they show if small, I don't see what I created.  So, I was wondering, is there an advanced action or an action script that I could assign to a button that will allow my users open/close the table of contents?

    Thoughts?

    Eric

    I created a quick and dirty AS3 widget that can be used in Captivate 4 and Captivate 5 projects to open / close a table of contents in overlay with your own button mode.

    http://www.cpguru.com/2010/10/14/free-TOC-button-widget-for-Adobe-Captivate-4-AS3-and-Adob e-Captivate-5.

    Have fun; (o)

    / Michael

  • Clock on windows 8 is wrong time, I tried to set the time of the internet but its still not working, think theres a bug in the clock time, anyone have the same problem for windows 8 and know how to fix?

    Clock on windows 8 is wrong time, I tried to set the time of the internet but its still not working, think theres a bug in the clock time, anyone have the same problem for windows 8 and know how to fix?

    It sets obtained :-) Sorry for the delay

    Thank you very much! has worked perfectly!

  • Is there a bug with handling binary_double columns?


    Hello.

    I use Apex 4.2.1 against Oracle 11 g 2 and mod_plsql.

    I tried to create a new page via the 'Form on a Table or view' option and using an Oracle table that contains more than one column of type BINARY_DOUBLE.  The new wizard, automatically highlighted all my columns in table to be included in the form and the form has been created without any errors.  However, when I went to edit the newly created form, I saw that all the columns of type BINARY_DOUBLE disappeared.  The other columns in the table (INTEGER, VARCHAR2, DATE, etc.) were all there.

    At first, I thought that, maybe, I'd made a mistake.  And so, I deleted my page and tried with the same exact results.

    I then added manually columns missing BINARY_DOUBLE, ensuring to designate 'source' as a 'database'.  Apex had no problem in creating these.

    Subsequently, I have tried insert rows in my table using this form.  I found that I could create new rows in my table with all fields filled, including the BINARY_DOUBLE type.  However, to my surprise, when I then tried to change the saved lines, values for all columns of type BINARY_DOUBLE appeared as NULL in the corresponding form fields.

    I use IE10.  Then I went to same IE8 and IE9.  I then went to Firfox 16.x.  All have the same behavior.

    Then, I changed my table, changing all BINARY_DOUBLE type NUMBER columns.  When you do that, everything worked as expected.  I recreated my form on the page and found * all * the columns present and accounted for.  And I was able to create and modify lines without problem.

    If anyone know what could cause this strange behavior?  I don't know that this is not a "function".  And so I wonder if this is a bug.

    Thank you.

    Elijah

    Hi Elijah,

    Thank you for reporting this issue. I filed bug #16939492.

    Kind regards

    Christian

  • Is there a bug in the as3 tween class

    Is there a bug in the as3 tween class that causes interpolations is stopped before completing. I read that there is and that a 3rd party tween class should be used. I'm starting to learn as3 and experimentation, but it would be good to know when I move on more complex projects.

    The solution for this would also make your overall function. It simply means place your feature in the top level of your film.

    I did some research on this topic, but I found a lot of conflicting answers.

    Any help is welcome thanks in advance.

    interpolations should NOT be local to a function.  otherwise, they are likely to be gc would be before they finish.

  • C++ API: is there a bug with Map::InvokeAll?

    Hello

    I try to use the input processors to do like 'put away cases', 'Delete where...

    I works very well except for return values. Everything that I do, the map returned by InvokeAll is always empty!

    This simple example:
    < coherence/net/cachefactory.hpp > #include
    #include < coherence/util/extractor/KeyExtractor.hpp >
    #include < coherence/util/filter/AlwaysFilter.hpp >
    #include < coherence/util/filter/LikeFilter.hpp >
    #include < coherence/util/filter/NotFilter.hpp >
    #include < coherence/util/filter/PresentFilter.hpp >
    #include < coherence/util/HashSet.hpp >
    #include < coherence/util/processor/ConditionalPutAll.hpp >
    #include < coherence/util/processor/ConditionalRemove.hpp >

    namespace ch = coherence::net;
    namespace cu = coherence::util;
    namespace cl = coherence::lang;

    namespace {}
    void dumpMap (cu::Set:View vSetResult, const std::string & message)
    {
    «std::CERR < < message < < ": «;»
    for (hIter cu::Iterator:Handle = vSetResult-> iterator(); hIter-> hasNext() ;))
    {
    CU::map:entry:view vEntry = cl::cast < cu::Map:Entry:View > (hIter-> next());
    CL::String:View key = cl::cast < cl::String:View > (vEntry-> getKey());
    CL::string:view val = cl::cast < cl::String:View > (vEntry-> getValue());
    ("std::CERR < <"("<< vEntry-> getKey() <<",) "< < GetValue vEntry - > < < '), '; '.
    }
    std::CERR < < std::endl;
    }

    void dumpCache (ch::NamedCache:Handle hCache, const std::string & message)
    {
    dumpMap (hCache-> entrySet(), message);
    }

    Sub initCache (ch::NamedCache:Handle hCache)
    {
    hCache-> clear();
    hCache-> put (cl::String:create("01"), cl::String::create("v:01"));)
    hCache-> put (cl::String:create("05"), cl::String::create("v:05"));)
    hCache-> put (cl::String:create("11"), cl::String::create("v:11"));)
    hCache-> put (cl::String:create("15"), cl::String::create("v:15"));)
    hCache-> put (cl::String:create("21"), cl::String::create("v:21"));)
    hCache-> put (cl::String:create("25"), cl::String::create("v:25"));)
    }
    }

    Sub testInvokeAll()
    {
    ch::NamedCache:handle hCache(ch::CacheFactory::getCache("first_cache"));)

    {
    std::CERR < < "== init" < < std::endl;
    initCache (hCache);
    dumpCache (hCache, "init");
    }
    {
    std::CERR < < "== emulation putIfAbsent" < < std::endl;
    Cu::map:handle = cu::HashMap::create() entries;
    entries-> put (cl::String:create("01"), cl::String::create("v:01MOD"));)
    entries-> put (cl::String:create("==="), cl::String::create("===MOD"));)
    entries-> put (cl::String:create("11"), cl::String::create("v:11MOD"));)
    entries-> put (cl::String:create("+++"), cl::String::create("+++MOD"));)
    CU::InvocableMap:EntryProcessor:handle processor = cu::processor:ConditionalPutAll: create)
    CU::filter:NotFilter:create (Cu::Filter:PresentFilter:GetInstance ())), entries;
    CU::map:view res = hCache-> invokeAll (cl::cast < cu::Collection:View > (entries-> keySet()), processor);
    BUG? must return a result set of 4 inputs but returns an empty set
    std::CERR < < ' size res ' < < res - > size() < < std::endl;
    dumpMap (res-> entrySet(), "res");
    The work has be done correctly
    dumpCache (hCache, "putIfAbsent");
    }
    {
    std::CERR < < "== emulation delete where key in ('11 ',' =') ' < < std::endl;
    Cu::set:handle cu::HashSet::create() = keys;
    keys-> add(cl::String::View("11"));)
    keys-> add(cl::String::View("==="));)
    processor Cu::InvocableMap:EntryProcessor:handle = cu::processor:ConditionalRemove:create (cu::filter:AlwaysFilter:getInstance (), true);
    CU::map:view res = hCache-> invokeAll (cl::cast < cu::Collection:View > (keys), processor);
    BUG? must return a result set of 2 inputs but returns an empty set
    std::CERR < < ' size res ' < < res - > size() < < std::endl;
    dumpMap (res-> entrySet(), "res");
    The work has be done correctly
    dumpCache (hCache, "Delete where");
    }
    {
    std::CERR < < "== emulation delete where key like 2% '" < < std::endl; "."
    should return tickets as the corresponding flag is set to true

    processor Cu::InvocableMap:EntryProcessor:handle = cu::processor:ConditionalRemove:create (cu::filter:AlwaysFilter:getInstance (), true);
    CU::filter:view f = cu::filter:LikeFilter:create (cu::extractor:KeyExtractor:create (), cl::String::create("2%"));)
    CU::map:view res = hCache-> invokeAll (f, processor);
    BUG? must return a result set of 2 inputs but returns an empty set
    std::CERR < < ' size res ' < < res - > size() < < std::endl;
    dumpMap (res-> entrySet(), "res");
    The work has be done correctly
    dumpCache (hCache, "remove where2" ');
    }

    }

    int main (int argc, char * argv)
    {
    Try
    {
    ch::CacheFactory::Configure(ch::CacheFactory::loadXmlFile("client-cache-config.xml"));
    testInvokeAll();
    ch::CacheFactory::Shutdown();
    }
    catch (const cl::Exception:View & e)
    {
    std::CERR < < "Ouch!" < < e < < std::endl;
    }
    return 0;
    }
    The output is:
    == init
    init: (11, v: 11), (v, 01:01), (25, v: 25), (v 05:05), (v, 21:21), (15, v: 15).
    is emulation putIfAbsent
    RES size 0
    RES:
    putIfAbsent: (=, = MOD), (11, v: 11), (v, 01:01), (25, v: 25), (+++, +++ MOD), (v 05:05), (v, 21:21), (15, v: 15).
    == emulation delete where key in ('11 ',' =')
    RES size 0
    RES:
    Delete where: (01, v: 01), (25, v: 25), (+++, +++ MOD), (v 05:05), (v, 21:21), (15, v: 15).
    == emulation delete where key like 2% '
    RES size 0
    RES:
    Remove where2: (01, v: 01), (+++, +++ MOD), (v 05:05), (15, v: 15),
    the cache is modified, as expected, but the cards returned by invokeAll are always empty!

    Is this a bug? I misunderstand documentation? Use the API incorrectly?

    Don't forget that when you are running code in the cluster - you actually run the Java code. That is to say. When you call / invokeAll, State of C++ processors gathered unmarshaled in the form of Java in the cache, and only then run.

    That is why - if the java ConditionalPutAll always returns the Null map (which does)... then your version of C++ will most probably also. (The return of a null map is for efficiency purposes)

    Once you recognize that and really really want to return values in a PutAll call - you can create / derive your own implementation of the Java ConditionalPutAll processor.

    The ConditionalRemove also works as advertised - but you should very carefully read the fineprint. Defining the fReturn returns a value only if the entry is NOT deleted.
    In your examples, your filter ALWAYS removes everything, so... nothing is returned.

    Like ConditionalPutAll, you can create your own version to return the deleted entries.

  • Applying master pages, the work is lost

    While he was trying to apply a temporary change of master pages in a book that was almost finished, CS3 seized and closed. Reopened and try to undo the changes, but the work went it seems.

    I don't see my work after this change and cannot cancel.

    I was intending to apply some guiding principles through the entire book through master pages. Indvertantly, there was a new block of text in the whole page with applied wrap around her, and then by applying master to the rest of the book, all the work of text has been pushed back because of the new block of text in the master with dressing applied to it.

    I returned masters, removed the text block and attempted to apply this additional pages with dressing. It may still work.

    Please go to the format (i.e. apply to the Sec1:1 - 100) to apply master pages. My notes are lost and it is not detailed in the help section correctly, although here somewhere on the forum I'm sure. I have

    If you have a book of 100 pages and you want to apply the changes across the entire book, which form is correct:

    Sec1:1 - 100

    or

    Sec1:1 - Sec1:100

    or

    ?

    The accident is probably not connected to master pages (although there was some sort of bug, perhaps with masters of several columns, but I can't remember which version it was in). First, CS3 is connected to the channel 5.0.4? Second, have you tried to export to .inx to clean the file? See remove minor corruption by exporting

    This kind of behavior is also not rare if you have a bad policy.

  • There is still a huge problem of compaction of the mailboxes

    Once more I heard a person in great distress because Thunderbird removed some critical mail messages. In this case they went to get the mail and gave him a TB ALERT, and told him he had no place in her dressing room IN (there was a huge 20 messages). Thinking that the file was too big (which is a logical deduction of a message "no more room") it compacted his IN box and then there were 4 messages. Other messages have disappeared.

    And worse, all the information on the forums are explanations and the defence of TB - as if it was his fault to be compacted, not backup or (my favorite) - an article that says TB is just do what it says to do.

    When we combine this with all the traffic of other message here and on other sites about the loss of emails the only thing that is clear is that the modules dealing with indexing and compacting of the mailboxes are tragically flawed. Unfortunately and that's the problem with free software #1 - product builders are doing it for ego, no money, so once they decided that their program is fair and users are mistaken - there it sits, cast in concrete.

    Thunderbird has been and is still a leader in form and features but lose data user - for ANY reason-EVER - is and will always be the fault of the developer and no - EVER - users shouldn't have to change its behavior in order to avoid a problem that the developer does not know how to fix.

    Of course, there are a solutions - each a work-around to avoid a bug.

    As an explantion, I can offer this info.
    Emails are not stored in individual files.
    They are stored in files mbox, an e-mail listed after another in the order they have been downloaded. If all emails in an Inbox folder, as shown in the folders pane are all in one Inbox file.
    When you choose to delete a message, this message is "marked as deleted" and your Visual point of view, it is removed from the Inbox folder in the folders pane and reappears in the folder "Deleted".
    In reality, it is always in the Inbox just "marked as deleted.
    When you compact the file, these emails "marked as deleted" are deleted, thus creating more space and store the file.
    If you do not compact the folder on a frequent basis, the file gets more and wider and at some point may be damaged due to lack of maintenance. Then Thunderbird is perhaps not in a position to say where there is a clear end of the deleted section, therefore resulting in losing a good email.

    So, as all documents etc. on your computer, you must do a few basic things to reduce the risk of data loss.

    Use the information you learned in the link "keep it works."
    Use the Inbox folder as a folder, Inbox, and not as a general storage.
    Compact records on a regular basis.
    Create backups on a regular basis.
    "Options of the Archive"allows to reduce the size of the files, including the "Sent" folder.
    https://support.Mozilla.org/en-us/KB/archived-messages?ESAB=a & s = Archive + options & r = 0 & s = ACE
    Archived files are always in the profile Thunderbird and always as accessible and also require backup.

    Losing emails is a pain and can be troublesome say the least.
    But if you follow the guidelines, then, you reduce the risk of experiencing a problem.
    I've manually compress my inbox every day that I will probably have a dozen deleted messages.
    I save every month and leave emails on the server for a month, then only between the two, anyway to lose, I can probably recover most if not all emails.

    If all goes well, this explains what has likely occurred and how to manage things so that in the future, you are less likely to suffer from corrupt files and more likely that you have a loss, there is a backup plan that you can use.

  • I have Windows 7 and I was wondering if there was a version of Firefox called "Nightly"? The type of a Nightly.Ink file. In addition, every time I open 'Nightly' now I have g

    I have Windows 7 and I was wondering if there was a version of Firefox called "Nightly"? The type of a Nightly.Ink file. Also, whenever I open 'Nightly' now, I get a popup of the program update and it says "update.exe". Is this a part of Firefox "Nightly" or is this a virus? Please answer this so I can relax. My email is [email protected]

    Every night (a1) and (a2) Aurora built updated every day, so if you use such a developer version you will see an update every day (sometimes more than once a day in the case of a respin). These alpha versions are more intended to be experienced testers, because you may experience stability and regression of the questions at any time. The beta version (currently Firefox 25) can be useful for testing Web sites to see if they're going to get broken in the next Firefox release and file a bug report, if necessary.

    Note that you must always install such version of development alongside a stable version and use a separate profile for each version folder.

  • Bug: Find/replace does not work if the statement contains the string is too long

    Hello

    in my sequence, I press Ctrl + F to open the Find dialog box and enter a string. All the checkboxes are checked 'Elements for search' and ' limit the search to "is not enabled.

    Now comes the finding it is only announcing the discovery in the main sequence.

    Other places in a sous-suite that are part of a labview vi action setting is not in the list. Also if I open the sequence and I'm looking at this place.

    If I create a comment in the subsequence containing the searchstring, then it is.

    When I open the properties of the action of labview and open the parameter that contains the string and click on check for errors, and then close all and supplementary search then the value lies.

    Is it possible that the variable is too long setting? It's about 200 characters and one thing very nested SationGlobals and the table and the TestSockets. Search string Dees is finally an arrayindex in this grand statement.

    It seems that this is the problem.

    Is this a known bug?

    Solved.

    There was an empty character at the end of the search string...

  • apply restrictions for the non-linear curve fit

    Hello Forum users,.

    I am currently working on a VI control which is supposed to create a specific model of pressure inside a hollow tube to provide a test environment for pressure sensors. The details are many and complicated, so let's say I am sure that my formula to calculate this profile according to the pressures inside the hollow rings around this tube will work.

    To find the correct pressure for each ring values, I've linked to a model VI containing this form to Lev. - Mar algorithm (the non-linear curve adjustment) and let it run.

    Technically, there is no problem and Lev - Mar find values to adjust the function for the values (not perfectly sure, but close enough).

    The problem is, however, that, since the device, once suitable values for the positioning and size of the rings are found, must be built, the simulated pressure rings perhaps intersect not between them. To apply this rule, I added a check to my VI of model and if the values passed to Lev - Mar breaking the rules, the VI model gives a matrix of zeros to follow him (I tried an empty array, but that only leads to error messages).

    This solution did not work. Lev - Mar seems to ignore these cases always looks for values that break my rules (and if I put these values through my model VI, I get a matrix of zeros, as expected, so the audit seems to work).

    Perhaps I misunderstood the algorithm of Lev - Mar and it does not actually check each possible defined coefficients of finds.

    Is it possible to adapt to any function of a set of values while keeping the predefined boundary conditions?

    Oh, before I forget:

    I use LabVIEW version 8.2 in the Institute, because the workshop systems is not installed 8.5 for some reason any.

    Thanks in advance

    Thaliur

    Hi Thaliur,

    Thanks for posting on our forums.

    I understand your request you expect the algorithm to ignore a case to all zeros in the table. However, it is not implemented like this.

    Good news is, its source code can be edited and you could save your own personalized version of the algorithm of screws it is to you that you just add a check for a matrix of zeros or simply pass another parameter which indicates only a case of "broken rules". Then you would not have to continue the calculation.

    If I misunderstood your question, please clarify this. You can also post a code for further explanation, if you wish.

    Good luck with the project!

    Peter

  • Netflix in Media Center returns a 'there was a problem of data recovery. "Check the works of your internet connection and try again" error instead of loading Netflix data.

    context: a previous thread with an identical title never responded, the problem just disappeared.  Well its been two weeks since then and the problem came back.

    somethings which may or may not apply: internet TV seems to work better in media center.  All updates have been applied to H.P. of Vista SP2. Netflix works fine in ie8 (such as the internet, of course). Tried to delete all the Internet Options, delete browsing history section of Internet Explorer. I get the same error message with my windows 7 professional media center, but netflix seems to play anyway (no game with vista). I recently installed quicktime alternative 2.72 to see what it was and how it worked, then removed and put back in quicktime.

    Tried / symptoms:

    -Remove all the browsing history (econcepts)
    -Same message on Win7pro but works even when (econcepts)
    -Works on Win7 no problem (omegafiler)
    -Works in ie 8 (econcepts)
    -Works in crome (Martin TX)
    -Consensus is that it started around December 30, 2009 (GeoffG1, johnetX, me)
    -Remove and reinstall silverlight (omegafiler)
    -Remove and replace netflix plugin (omegafiler)<- how="" did="" you="" do="" that="">
    -Netflix says: microsoft problem (Nitestalker)
    -Microsoft is silent (this thread - on vacation?)
    -Same problem on 32-bit and 64-bit VMC (JRSMiamiFL)
    -No applied update (johnetx)<- perhaps="" date="" related="" or="" drm="" date="">
    -Disconnect from netflix, you reconnect again - ultimately the same error (chicagokiwi)
    -Tried to reduce the number of items in the queues to well below the limit of 200 (econcepts)
    -Tried the register / unregister the third wire procedure, no joy (does not break anything else however)
    -Disabled the firewall, no change (econcepts)

    related topics:
    http://social.answers.Microsoft.com/forums/en-us/vistaprograms/thread/0c154c0a-1fcb-4353-8c5e-b394e885256d

    http://social.answers.Microsoft.com/forums/en-us/vistaprograms/thread/aaab24a0-4BB9-42FA-a5ee-46a733d6560f

    http://social.answers.Microsoft.com/forums/en-us/vistamedia/thread/f05f69c7-6456-4117-B302-27c08886ea1e

    Someone else knows Netflix not being is not able to connect?  It started yesterday (30/12/2009) for me.  I looked fine the day before without problem.  The message I get says "there was a problem of data recovery.  Check the works of your internet connection and try again. Ok.  I make it work with both my VMC - one with the service pack and the other without.  My OS updates have been loaded in early December, so I don't see how this could it be.  I searched and found this problem has come up before, but I have not found a solution.  I made NO changes to my HTPC.

    Those who have and solved this problem.

    UPDATE UPDATE UPDATE UPDATE UPDATE UPDATE *.

    2009-01-05 has attempted to start Netflix this morning and you know, it works on both my VMCs.  That's the good news.  So now the real questions are:

    Only 20 people reported it as a problem and only 6 on the green button.  I believe that it affected all the world with Media Center.  So why not discussed much?

    It already happened, causes a stir and silently slips without known cause or cure.  How can we find out what caused this and how to prevent it from happening again in the future?

    *******************************************************************************************

  • An error occurred applying attributes to the file. Access is denied?

    Hello

    I use Windows 7. I reinstall my Windows 7 and since then, most of my file become encrypted (Green shows in Explorer).

    I came across a strange behavior where I am not able to use or to decrypt files. I dint knew the encryption.

    I am the administrator on my computer running Windows 7. I get the following error
    --------
    An error occurred applying attributes to the file.

    Access is denied.
    --------

    I have no key encryption nor do I created everything.

    I tried the following:
    When I right click on the file > properties > go to advance > uncheck the encryption > apply changes > continue (user account control) > I get this...

    "An error occurred applying attributes to the file:

    C:\Program Files\Windows Collaboration

    Access is denied.

    Ignore. Ignore everything. Try again. Cancel. »

    It is a small very annoying problem that I need to have go further, any help would be appreciated!

    Points to note:

    Safe MODE does not help.
    I am logged on as administrator, what makes it more frustrating.

    I do not know of the all other folders that Act up like this.

    Please let me know what happens! THESE FILES ARE VERY IMPORTANT

    Hello

    1. what security software is installed on the computer?

    2. what version of windows 7 is installed on the computer?

    3. of what exact file you try to remove the encryption?

    4. have you installed windows on the C partition or another partition?

    Method 1.

    To resolve this issue, give the system security principal of full control on the System Volume Information folder.

    NOTE: The System Volume Information folder is a hidden operating system folder. To display the folder in Windows Explorer, follow these steps:

    1. in the Tools menu, click Folder Options.

    2. on the view tab, clear the Hide protected operating system files check box.

    Follow the steps in this article and give full control permission to the folder. Appropriating a file or a folder: http://technet.microsoft.com/en-us/library/cc753659.aspx

    Method 2.

    I would like to create a new user account and check if the problem still persists.

    Create a user account: http://windows.microsoft.com/en-IN/windows7/Create-a-user-account

    If the problem does not occur in the new user account, you can transfer the files from the damaged to the new user account by using the article user account "difficulty a user profile is corrupted.

    Difficulty a user profile is corrupted: http://Windows.Microsoft.com/en-us/Windows7/fix-a-corrupted-user-profile

    Method 3.

    You can run the Microsoft Safety Scanner to make sure that the computer is virus-free.

    Microsoft safety scanner: http://www.microsoft.com/security/scanner/en-us/default.aspx

    Warning of Security Scanner: there could be a loss of data while performing an analysis using the Microsoft safety scanner to eliminate viruses as appropriate.

    For more information: the file must be decrypted by the user who encrypted the file. The files are encrypted using the Encrypting File System (EFS) are accessible only to the person who encrypted the file, regardless of the other permissions on the file.

    I suggest you to visit these links for more information:

    http://Windows.Microsoft.com/en-us/Windows7/encrypt-or-decrypt-a-folder-or-file

    http://Windows.Microsoft.com/en-us/Windows7/use-a-smart-card-for-file-encryption

    http://Windows.Microsoft.com/en-us/Windows7/what-is-encrypting-file-system-EFS

    I hope this helps.

  • Exception of null on the list pointer implementing values when there are n rows in the table

    Hi Experts,

    I use JDev 11.1.1.7.

    I have a VO that I defined a LOV with no search box. In my page, I've added it as af:inputListOfValues, but when there is no rows in the table that I will meet with NPES

    < AdfcExceptionHandler > < handleException > ADFc: when Manager application exception exception handling threw a new exception.

    java.lang.NullPointerException

    at oracle.jbo.uicli.binding.JUCtrlListBinding.findOrCreateLOVDialogIteratorBinding(JUCtrlListBinding.java:5188)

    at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding.getSearchBinding(FacesCtrlLOVBinding.java:204)

    to oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$ ListOfValuesModelImpl.getSearchRegion (FacesCtrlLOVBinding.java:2001)

    to oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$ ListOfValuesModelImpl.getQueryModel (FacesCtrlLOVBinding.java:1612)

    to oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase$ InternalLaunchPopupListener.processLaunch (SimpleInputListOfValuesRendererBase.java:1560)

    at oracle.adf.view.rich.event.LaunchPopupEvent.processListener(LaunchPopupEvent.java:108)

    Excerpt from JSFF:

    < af:inputListOfValues id = "xxx" popupTitle = "" search and select: XXX ""

    simple value = "#{pageFlowScope.SearchBean.xxx}" = 'true' "

    model = ' #{bindings. " XXXLOV.listOfValuesModel} "columns ="30"

    searchDesc = "Select XXX" >

    < / af:inputListOfValues >

    PageDef:

    < listOfValues StaticList = 'false' use = "LOV_XXX".

    IterBinding = "XXXIterator".

    ID = "XXXLOV" / >

    Is - this bug?

    Surprisingly, it works very well if there are lines in the table that the VO is querying.

    -Soham

    Soham,

    I think you just create this LOV page by simply moving the VO, right?

    You can select the box to tick 'Include no. Selection' in your VO, and see if that helps?

    See you soon

    AJ

  • FRAGMENTATION applied on several logical Tables does NOT WORK as expected

    Dear all,

    I have the below scenario implemented that does not work as expected.

    I have a logic Table LT1 (SUN) which is being implemented based on two physical Tables PT1 and PT2 (PT1 and PT2 are DIMS). LT1 has two of LTS, LTS1 and LTS2 implemented PT1 and PT2, respectively. Fragmentation is applied based on the ID of the system Source the PT1 and PT2 are loaded from different source systems. The granularity of the Tables physical is the same.

    Likewise, we have LT2 (DIM), which is implemented in two Tables of physics more and Fragmentation is applied in the Source systems function ID.

    We have an other TIMES DIM on which fragmentation is not applied.

    All of the above tables are linked to the fact (also physical and logical).

    I filter the data for TIME_DIM. Year = 2014 in all scenarios below.

    Scenario1: This solution works as expected when I shoot columns of LT1, SUN as well as the fact of TIME. (YEAR = 2014 is passed in the WHERE clause of queries UNION ALL 2, which is OK)

    Scenario2: This solution is also works very well when I shoot columns of LT2, SUN as well as the fact of TIME. (YEAR = 2014 is passed in the WHERE clause of queries UNION ALL 2, which is OK)

    Scenario 3: When I pull the LT1, LT2, SUN report, done TIME and filter the data for TIME_DIM. Year = 2014, the report does NOT WORK as expected. (Filter on YEAR = 2014 is not passed in UNION All queries in this scenario)

    When I build the model above (for scenario 3) report, it does not go as planned. Do not throw any error, it displays incorrect as results as physical demand generated by the BI server is not correct. Some of the filters is past the TIME SUN are not injected at the request of physics.

    Someone come in this scenario, no solution to the above is greatly appreciated. Thanks in advance

    Kind regards

    Madhav P.

    This is the bug in OBIEE 11 g of product. Oracle has provided the patch for the same and it is absolutely working fine now.

    Kind regards

    Madhav P.

Maybe you are looking for

  • Remove bios password - pavilion g7

    I put a bios password on my laptop some time ago and don't remember.  When I try to enter, after 3 attempts it says system off and gives me this number: 54060851 any help would be great, thanks.

  • Wishlist deleted

    On my phone and iTunes, when I access my list, I said that my list is empty, despite having at least two pages of apps out there yesterday. I did not remove anything, but I did download an app from there a few days ago...

  • How to keep a narrow subfolder in Outlook Express

    Original title: Outlook Express I close a subfolder in OE: I then close OE.  The next time I open OE, I find this subfolder is opened.  Why, or how can I make sure that it remains closed, unless I open it again?

  • Open Nat / Port before Xbox

    I use Cisco Cloud to connect to connect to my router E4200. I want to open my NAT type currently average on all games. Where the hell is the box add the ranges of ports? Is it still an option on the new cloud connect? If this is the case, it only mak

  • Replace the touchpad on X121e?

    Hello Is it possible to change the type of the touchpad on the X121e? I think the default is appalling. It is too small, with a little useless where it bends toward the keyboard, and I find it very choppy. I do not use the TrackPoint, so ideally, I w