Omissions/inconsistencies in CF10 new features guide?

I've been working through the CF10 "new features guide" available at http://www.adobe.com/support/documentation/en/coldfusion/10/cf10betafeatures.pdf to gather changes to my editor mode to support ACF10, and have found the following items that may be omissions from the guide (or perhaps are inconsistencies in some of the additions relative to CF9). I'm hoping someone from the Adobe team can comment on each of these as to whether the omissions in the documentation are intentional and correct or are in fact issues with the documentation:
1. New attributes cacheID and cacheRegion present on cfquery but not on cfstoredproc
2. New attribute fetchClientInfo present on cfinsert, cfquery, cfstoredproc but not on cfupdate
3. Description of the cfchart tag's attributes list a new height attribute but not a corresponding width attribute (previous attributes chartHeight and chartWidth are both present)
I'd be glad to file bug reports on these if these are in fact bugs.
/ron

Hi Ron,
I will be able to answer the question related to cfupdate. I would request you to log an issue for this miss on cfupdate or i can log one internally. Please share the bug id so that others have it for reference.
Thanks,
Shilpi

Similar Messages

  • Follow-up to archived thread "Another Error (I think) In the 12.1 New Features Guide"

    I hoped to be able to add a reply to the most recent reply on March 8 in the "Another Error (I think) In the 12.1 New Features Guide" thread (https://community.oracle.com/thread/3526588), but since that thread has been archived, I am doing what was suggested elsewhere: create a new thread referencing the old one. My reply is:
    Thank you for your explanation about preferring PDF over HTML. That is perfectly fine and understandable. Also, we very much appreciate your documentation feedback in this forum, and encourage you to continue to report any issues here.
    I apologize for not replying much sooner. I either didn't get or overlooked an original notification about "Recent activity" after your reply; otherwise, I would have replied then.

    Thanks for that comment. I have sent a pointer to it to the writer for that book. Note that with the New Features Guide, most of the content is automatically drawn from an internal system that tracks projects and features; so if a change is needed, the writer will notify the owner of that content (typically a developer or a product manager) to investigate and (if necessary) modify the underlying data, after which the changed information will be picked up for a future revision of the book.
    Also, while anyone is welcome to enter documentation comments in this forum, another option that may be more convenient for comments on specific sections is the Reader Comment area at the bottom of each HTML page (such as http://docs.oracle.com/cd/E16655_01/server.121/e17906/chapter1.htm#NEWFT495 for the page containing Section 1.5.9.8). Any comments entered in a Reader Comment area go to someone in our documentation production group, who forwards them to the appropriate writers.
    However, if a comment involves multiple HTML pages or books, or if you want the matter to be in a public forum for visibility and searchability, posting in this forum is a good option.

  • Another Error (I think) In the 12.1 New Features Guide

    Under section 1.5.9.8 Storage Snapshot Optimization:
    The first bullet point is: "Database crash is consistent at the point of the snapshot."
    I think that is supposed to be: "Database is crash-consistent at the point of the snapshot."
    At the very least, that seems to make more sense to me.  Googling around, there was a document on these features by EMC with that wording.

    Thanks for that comment. I have sent a pointer to it to the writer for that book. Note that with the New Features Guide, most of the content is automatically drawn from an internal system that tracks projects and features; so if a change is needed, the writer will notify the owner of that content (typically a developer or a product manager) to investigate and (if necessary) modify the underlying data, after which the changed information will be picked up for a future revision of the book.
    Also, while anyone is welcome to enter documentation comments in this forum, another option that may be more convenient for comments on specific sections is the Reader Comment area at the bottom of each HTML page (such as http://docs.oracle.com/cd/E16655_01/server.121/e17906/chapter1.htm#NEWFT495 for the page containing Section 1.5.9.8). Any comments entered in a Reader Comment area go to someone in our documentation production group, who forwards them to the appropriate writers.
    However, if a comment involves multiple HTML pages or books, or if you want the matter to be in a public forum for visibility and searchability, posting in this forum is a good option.

  • Error in New Features Guide 12c Release 1 (12.1)

    Page 1-6 in the section: 1.1.2.2 Replacement of CSSCAN and CSALTER with DMU
    At the bottom of the section is a URL purportedly to the OTM DMU page... except that it isn't.  The first link is what's in the book.. and doesn't work. The second link is what I found after doing some searching on OTN.
    http://www.oracle.com/technetwork/database/globalization/dmu/overview/index.html
    http://www.oracle.com/technetwork/database/database-technologies/globalization/dmu/overview/index.html

    For 11.1.1.7.1 use the syntax for jdbc_sid, i.e.
    //mypdb1.foo.com as described in the README,
    - MapViewer native (non-container) data sources can now use database service name in place of SID. To supply a db service name, you will use the same jdbc_sid attribute, but specify the service name with double slashes in front, such as follows:
      <map_data_source name="myds"
        jdbc_host="foo.com"
        jdbc_sid="//mypdb1.foo.com"
        jdbc_port="1522"
      />
    For 11.1.1.7.0 use a container_ds instead.
    i.e. instead of using
    <map_data_source name="my_12c_test"
                       jdbc_host="mydbinstance"
                       jdbc_sid="pdborcl12c"
                       jdbc_port="1522"
                       jdbc_user="mytestuser"
                       jdbc_password="m2E7T48U3LfRjKwR0YFETQcjNb4gCMLG8/X0KWjO00Q="
                       jdbc_mode="thin"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    use
      <map_data_source name="my_12c_test"
                       container_ds="jdbc/db12c"
                       number_of_mappers="6"
                       allow_jdbc_theme_based_foi="false"
                       editable="false"
       />
    In my case the Glassfish 3.1.2.2 JDBC connection pool definition was
    Property
    url  jdbc:oracle:thin:@mydbinstance:1522/pdborcl12c.rest_of.service.name
    Uncheck the Wrap JDBC Objects option in Advanced panel, i.e. the Edit JDBC Connection Pool Advanced properties page.
    Add a JDBC resource for that newly created pool
    Use that in mapviewerconfig.xml as above

  • Dockable Windows: New Features Guide for SAP PowerBuilder 12.6

    I copied the example in the SAP document: PowerBuilder-NewFeatures.pdf at page 21.
    4.2.7
    Opening Docked Windows and Tabbed Document Windows
    Sample code for opening docked windows and tabbed documents.
    Context
    Procedure
    1. Create a window w_sheet_any as a main!window type.
    2. In the open event of w_sheet_any, add this code:
    string ls_i
    ls_i = Message.stringparm
    if not isnull(ls_i) and ls_i <> "" then
    this.title = ls_i
    end if
    3. Create an MDIDock window w_mdidock_dockstate and set any menu in it.
    4. In the open event of w_mdidock_dockstate, add this code:
    window win[]
    OpenSheetWithParmDocked(win[1], "1", "w_sheet_any", this, WindowDockLeft!, "")
    OpenSheetWithParmInTabGroup(win[2], "2", "w_sheet_any", this, "")                                             <<<<<<<<========
    OpensheetWithParmInTabGroup(win[3], "3", "w_sheet_any", win[1], "")
    OpenSheetWithParmAsDocument(win[4], "4", "w_sheet_any", this, "")
    OpenSheetWithParmAsDocument(win[5], "5", "w_sheet_any", win[4], "")
    OpenSheetWithParmAsDocument(win[6], "6", "w_sheet_any", this, "", false)
    OpenSheetWithParmAsDocument(win[7], "7", "w_sheet_any", win[5], "")
    OpenSheetWithParmAsDocument(win[8], "8", "w_sheet_any", win[6], "")
    5. Run the application.
    You will see windows 1 and 3 as a tabbed group, with the tabs at the bottom. Sheets 4, 5, and 7 appear as
    tabbed doc
    WHY THE SECOND OPEN DOES NOT WORK ?

    Hi.
    Even in beta the example provided needed some corrections. But instead of using the example on the pdf, why don't you take a look at the MDIDockingDemo Project included in the code examples? (See the screenshot... It's not PB.NET )
    Andreas.

  • Oracle xmlDOM API: new "feature"?

    I am manipulating a DOM document in a stored procedure:
    Initial database content:
    <Transmission xsi:noNamespaceSchemaLocation="transmission.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Xmit>x</Xmit>
    <SysTGr>y</SysTGr>
    <TrStat>?</TrStat>
    <TrStatD>?</TrStatD>
    </Transmission>
    After performing replaceChild(<Xmit>y</Xmit>):
    <Transmission xsi:noNamespaceSchemaLocation="transmission.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Xmit>y</Xmit>
    <SysTGr>y</SysTGr>
    <TrStat>?</TrStat>
    <TrStatD>?</TrStatD>
    </Transmission>
    After performing replaceChild(<TrStatD>er</TrStatD>):
    <Transmission xsi:noNamespaceSchemaLocation="transmission.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Xmit>x</Xmit>
    <SysTGr>z</SysTGr>
    <TrStat>?</TrStat>
    <TrStatD>er</TrStatD>
    </>
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00231: invalid character 62 ('>') found in a Name or Nmtoken
    Error at line 7
    ORA-06512: at "SYS.XMLTYPE", line 0
    ORA-06512: at "STAGINGDEV.P_WRITE_TRANSMISSION", line 70
    ORA-06512: at "STAGINGDEV.P_WRITE_TRANSMISSION", line 279
    ORA-06512: at line 6
    Whatever I do with the last child that is in the database: it changes the end element tag of the parent! How can I avoid this?

    Nope: I'm too lazy too look up the documentaion for you
    http://tahiti.oracle.com
    Check out the New Features Guide which is available with every release.

  • Oracle 10g new feature to backup to tape?

    I heard rumours that Oracle 10g has new features to backup to tape directly. I don't know exactly how this is done, and I'd like the experts to comment. What I've discovered so far is that there is this program called Legato Single Server Version (LSSV) which ships with the Oracle 10g Companion CD which makes RMAN use the tape directly as a medium to backup. Is this CD available for download?

    I am truly curious why you actively ask to avoid the "New Features Guide" which provides much of the information you desire.
    (http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14214/toc.htm)

  • New Features in 11.2.2.2

    Is there a list of New Featuers / Bug Fixes between 11.2.0 and 11.2.2, Went through the documentation (Release Notes) and mainly it talks about difference between 10.8 and 11.2.

    The first link below is to the 11.2 new features guide. The second link below is supposedly the 11.2 new features for Oracle Text, however the only new features listed are for 11.1 and prior, so it appears that either there aren't any new Text features in 11.2 since 11.1 or they left them out.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10881/title.htm#BEGIN
    http://download.oracle.com/docs/cd/E11882_01/text.112/e10944/whatsnew.htm#CCREF23679

  • New features in oracle 11g over 10g

    hi forum,
    can you please let me know the major difference and steps for upgrading to oracle 11g from oracle 10g

    user12236725 wrote:
    hi forum,
    can you please let me know the major difference and steps for upgrading to oracle 11g from oracle 10g
    Looking at the New Edition By Tom Kyte
    http://www.oracle.com/technology/oramag/oracle/09-nov/o69asktom.html
    You really need to dig-n the Oracle® Database New Features Guide 11g Release 2 (11.2):
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10881/chapter1.htm
    Hope that helps.
    Regards
    Z.K.

  • Clarification on new feature in OBIEE 10.1.3.4 - Metadata Dictionary

    Hi,
    I need clarification on this new feature "Metadata Dictionary" available in 10.1.3.4. This is documented in the OBIEE NEw Feature Guide, http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416.pdf, page 17.
    I have a potential customer who wants to know if OBIEE has a facility to help business user come up to speed with the available subject areas, tables and columns. This will help them learn about the business content available so they will know which subject areas/columns to use to build ad-hoc report development. Does the new feature "metadata dictionary" support this requirement. Can you point me to where I can play or learn more about this feature?
    Thanks!
    Khai

    First and foremost: did you already try it out? In general, yes a metadata dictionary can achieve what you're asking for, but the devils as always in the detail and/or in what the users accept.
    Simply follow the steps outlined in Venkats blog here -> http://oraclebizint.wordpress.com/2007/08/23/oracle-bi-ee-10133-metadata-dictionary-statistics/
    ...and then see if this satisfies your needs.
    Cheers,
    C.

  • Looking for list of new features in 11.2

    I have been trying to find a list of the new features, if any, that have been released with 11.2. Would anyone have a link the new features documentation?
    thanks
    R.

    The first link below is to the 11.2 new features guide. The second link below is supposedly the 11.2 new features for Oracle Text, however the only new features listed are for 11.1 and prior, so it appears that either there aren't any new Text features in 11.2 since 11.1 or they left them out.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10881/title.htm#BEGIN
    http://download.oracle.com/docs/cd/E11882_01/text.112/e10944/whatsnew.htm#CCREF23679

  • Oracle 10 g new feature

    Hi All,
    I just started using Oracle 10 g. could you please tell me 10 g new feature which help me in PL SQL ...
    Thanks in Advance.

    Nope: I'm too lazy too look up the documentaion for you
    http://tahiti.oracle.com
    Check out the New Features Guide which is available with every release.

  • 10g new features(study guide 1z0-040)

    Hii,
    Can you please send me the soft copy of 10g new features(study guide 1z0-040).
    Badly needed.([email protected])
    Thank you.

    You may get study guides from the education.oracle.com site http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=189915&lang=ESA&p_exam_id=1Z0_040
    I suggest you to setup a practical environment where you can directly see behaviour, not only memorize manuals.
    HR Madrid

  • New Program Guide - unusable

    I want to be tactful about this - what would be the best way to characterize your new program guide - Sick Joke? In what sense is it an improvement over the previous one?  It is in fact immeasurably WORSE.  How could anyone at Verizon have signed off on this?
    The biggest problem is that it is now unacceptably, absurdly, SLOW.  Was that the intention?  I asked Verizon Phone Tech support if  they slowed it down intentionally , because maybe the network traffic volume was too costly for Verizon and they wanted to cut expenses.  Amazingly, he did not give a flat denial to this.  As I recall he said He didn't have any knowledge that that was the case.
    The way it used to work is for example you would hold down the right arrow button, and it would as expected just briskly scroll through  all the programming selections for that day for whatever channel you happened to be looking at, scrolling through all subsequent shows on the channel that day.  (And also as a recall when scrolling through subsdequent days).
    Now you hold down the right arrow button, and it scrolls forward just one show, and then just freezes, doing nothing.  If a few seconds later you lift your finger off the right arrow button,  it immediately jumps to say 8 hours in advance.  This makes this feature unusable.  How could you not understand that, Verizon?
    The same situation exists when scrolling to different channels with the up or down arrows.  Press and hold down  the down arrow, and it does in fact scroll through the subsequent channel icons, but it does NOT,  as it did with the previous program guide, scroll through all the  program DESCRIPTIONS in real time.  So why was that feature ditched? 
    The fastest it can scroll in real time now either left/right or up/down  is 1 entire second.  So, iow, hit the down arrow, and...one one thousand two ...OK NOW it switches.  What is up with that? 
    For the record, this is not the high-def Verizon box.  The TV on the high-def box seem to work a little better.  Does Verizon only support high-def now?
    And I haven't even mentioned the bizarre color scheme and other bizarre design decisions for the new Program Guide layout.  So, how is it better to reduce the size on the screen where the actual program info is, and surround it with a a lot of unused white space (or shoud I say unused sickly pale blue space)?  Just as far as the aesthetics of the new guide, there is not a single aspect of it that is not drastically worse than it was previously.  (e.g.hitting the info button during a show and it covering a third of  the screen.) 
    But disregard the complaints about  the colors, etc.  - just go wild with that if you want.  Just please restore the SPEED of the programming guide to what it was previously.  Because the way it is now its unusable. 
    Is there any way to go back to the old guide?  There is in fact an option in the Menu for the Classic Guide, but it does not do anything except rearrange the new guide a little bit to make it even worse.
    What is going on with you people (Verizon).

    I'm sorry to hear your frustration with the new guide. There is no way to go back to the old style guide. If unplugging the power cord to the box and plugging it in doesn't speed up the guide maneuvering, please send me a private message.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • New features are missing in Photoshop cc update

    My software says Photoshop CC is up to date, However, I don't see the new features:
    No smart guides
    No Font view in document when I hover over a font in the selection list.

    Use menu help>About Photoshop see if you using Photoshop CC 14.2.1 or Photoshop CC 2014.  They are separate both on you system you may well be in CC 14.2.1 and not CC 2014..

Maybe you are looking for