NETUI input tag support for disabled option

In a standard HTML form, you can disable a field from being editable by specifying
DISABLED such as
<input type=checkbox name='Authorized' checked disabled>
In NETUI, some fields support the readonly flag..but others do not... specifically
<netui:checkBox dataSource="{request.myCompany.cmcdEntitled}" >
How can I make a NETUI check box (or other fields) read only if it doesn't have
the readonly flag?
thanks,
Tom

Your solution only work with checkboxex. If u want to disable dropdown it is not
possible to disable the <td> tag. Does any one know how to disable dropdowns with
netui tags???
Murat
"Tom" <[email protected]> wrote:
>
If anyone wants to know....
my checkbox is in a table data cell... so I disabled the check box by
disabling
the table cell.
<td disabled><checkbox blah blah> </td>
"Tom" <[email protected]> wrote:
In a standard HTML form, you can disable a field from being editable
by specifying
DISABLED such as
<input type=checkbox name='Authorized' checked disabled>
In NETUI, some fields support the readonly flag..but others do not...
specifically
<netui:checkBox dataSource="{request.myCompany.cmcdEntitled}" >
How can I make a NETUI check box (or other fields) read only if it doesn't
have
the readonly flag?
thanks,
Tom

Similar Messages

  • Are any alternate input devices supported for turning pages?

    I am working on iBooks versions of my print music books and am disappointed to see a lack of support for external devices to change pages. It seems with all the sheet music apps out there that support foot pedals that iBooks would add support for this - if not for music, at least for people with disabilities. I would not really look forward to building my books as one-off applications just to support this kind of feature as I really like iBooks Author and the resulting ebooks are great.
    Is anyone aware of a way to get iBooks to accept input other than touching the screen for turning pages? Does anyone know if Apple is looking into enabling this kind of feature in iBooks?

    It's an interesting question, but Apple's platform is predicated on touch....and now voice, with SIRI.
    If you wanted it enough, you'd go for an app (I think what you want would be near trivial there - you're just talking about a teleprompter, after all), so it seems more like you simply have a yearn, in which case you may need to be (very) patient if you insist on relying on iBA, as it just came out of the box, so to speak.
    I think we can look forward to eye-motion detection as one example....but for now, the page turn interaction as it exists, seems to be more indicative of a 'book' and Apple seems happy to stick to that path - for now.
    Keep in mind that WWDC 2012 is coming up - as developers, we're all waiting to see what Apple let's us work with next.
    Apple doesn't discuss future plans, but as always, feel free to use the 'Provide iBooks Author Feedback' menu item for features you'd like added in the future, etc.
    http://www.apple.com/feedback/ibooks-author.html

  • No faces tag support for Flickr (aka faces don't = keyword)

    Though iPhoto keywords have been always passed along fine to Flickr (using FlickrExport plugin in the past) the Faces info is not passed along as Flickr tags (keywords, however, are passed along as tags). What good does this do me once I've gone through all the facial recognition steps and want to share this insight with my Flickr following? Am I missing something?

    Terence Devlin wrote:
    I wouldn’t think either of these things.
    Why wouldn't you think that? I have to agree w/ Reuben, especially since this is the default behavior for iPhoto 09's built in export to Facebook! It mimics the native FB photo/face tagging verbatim. . .
    Screenshot of a photo I exported (after being facially recognized) from iPhoto '09 after being imported into FB:
    http://i285.photobucket.com/albums/ll78/elvisinvegas/Picture1-1.jpg
    So yes, I think it's bordering on absurd that iPhoto faces don't produce Flickr tags from faces(or at least give us that option) or do the mouse-over-note capability that Reuben was referring to. . .especially since it can and does for Facebook.

  • NFC Tag support for iPhone 6,+, Apple Watch, Ipad Air 2

    To whom it may concern,
    My name is Brian Hruza, CEO and Founder of the PhoneHome Project LLC.
    My successfully crowdfunded company sells NFC Tags and is redesigning the NFC experience for the masses.
    http://kck.st/10mClON
    http://www.phonehomeproject.com
    I know the iPhone 6,+, Apple Watch and other new devices have come with NFC Chips. I'd like some more information on when access will be granted to developers so that NFC Tags [NTAG203, Mifare, or Topaz types] will work in the future. My email is [email protected]
    Any information you can provide or connect me with a developer program of sorts would be greatly appreciated!
    Regards,
    Brian Hruza

    You'll have to contact Apple. There's a link at the bottom of the page.

  • Netui:textBox tag attributes - readonly and disabled

              What's the difference between these two?
              Thanks
              

    Your solution only work with checkboxex. If u want to disable dropdown it is not
    possible to disable the <td> tag. Does any one know how to disable dropdowns with
    netui tags???
    Murat
    "Tom" <[email protected]> wrote:
    >
    If anyone wants to know....
    my checkbox is in a table data cell... so I disabled the check box by
    disabling
    the table cell.
    <td disabled><checkbox blah blah> </td>
    "Tom" <[email protected]> wrote:
    In a standard HTML form, you can disable a field from being editable
    by specifying
    DISABLED such as
    <input type=checkbox name='Authorized' checked disabled>
    In NETUI, some fields support the readonly flag..but others do not...
    specifically
    <netui:checkBox dataSource="{request.myCompany.cmcdEntitled}" >
    How can I make a NETUI check box (or other fields) read only if it doesn't
    have
    the readonly flag?
    thanks,
    Tom

  • Disable weak ciphers and support for all SSL protocols prior to v3.

    I am very new to Weblogic and I need a little help with the SSL configurations. I received a security audit back and discovered that Weblogic's SSL is running weak ciphers and also supporting unacceptable versions of SSL (we require a minimum of SSLv3 and need to deny connections with anything less). That said, can anyone point me in the right direction for disabling weak ciphers as well as forcing support for SSLv3 and up only for client connections. I am running Weblogic 10.3.
    Edited by: David Pulliam on Jan 26, 2011 8:31 AM

    Hi David,
    -Dweblogic.security.SSL.protocolVersion=SSL3 —> Using this JAVA_OPTION will allow Only SSL V3.0 messages are sent and accepted. So add the mentioned JAVA_OPTION in the server start script along with the below OPTION:
    -Dweblogic.security.disableNullCipher=true
    Also you can do the following in your "config.xml" to make sure that the Weblogic will not accept weak and medium weak passwords:
    <ssl>
           <enabled>true</enabled>
          <ciphersuite>TLS_RSA_WITH_RC4_128_SHA</ciphersuite>
          <ciphersuite>TLS_RSA_WITH_RC4_128_MD5</ciphersuite>
          <hostname-verification-ignored>true</hostname-verification-ignored>
          <listen-port>7002</listen-port>
          <server-private-key-alias>aliasHere</server-private-key-alias>
          <server-private-key-pass-phrase-encrypted>encryptedpassphraseHere</server-private-key-pass-phrase-encrypted>
    </ssl>Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware magic Is Here)

  • [svn:osmf:] 10440: Add parser support for the Video tag.

    Revision: 10440
    Author:   [email protected]
    Date:     2009-09-20 15:03:56 -0700 (Sun, 20 Sep 2009)
    Log Message:
    Add parser support for the Video tag.  Add unit test for an empty document.
    Modified Paths:
        osmf/trunk/libs/VAST/.flexLibProperties
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTInlineAd.as
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/parser/VASTParser.as
        osmf/trunk/libs/VASTTest/org/openvideoplayer/vast/parser/TestVASTParser.as
    Added Paths:
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTMediaFile.as
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/model/VASTVideo.as

    The video tag only supports a few formats and MKV (Matroska Multimedia Container) isn't one of them.<br />
    Your only option is to use the object (or embed) tag and use a player that can handle that format.<br />
    If might be better to switch to the WebM format.<br />
    * https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements

  • Support for jsp:include page tag

    Is there a support for the jsp:include page tag ?
    I get an exception when trying to include jsp's
    Thanks

    Hi
    I use a page with a one column template
    I print a JSP that include another JSP using <jsp:include page="my_shopping_cart.jsp"
    flush="true"/>
    i get this exception :
    java.lang.IllegalStateException: Can not set buffer size after writing data. at
    com.bea.portlet.container.HttpServletResponseImpl.setBufferSize(HttpServletResponseImpl.java:179)
    at weblogic.servlet.jsp.PageContextImpl.initialize(PageContextImpl.java:66) at
    weblogic.servlet.jsp.PageContextImpl.(PageContextImpl.java:105) at weblogic.servlet.jsp.JspFactoryImpl.getPageContext(JspFactoryImpl.java:37)
    at jsp_servlet._portlets._oci.__my_shopping_cart._jspService(my_shopping_cart.jsp)
    at com.bea.portlet.jsp.PortletJspBase.service(PortletJspBase.java:110) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:155) at jsp_servlet._portlets._oci.__oci._jspService(oci.jsp:209)
    at com.bea.portlet.jsp.PortletJspBase.service(PortletJspBase.java:110) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at com.bea.portlet.container.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:98)
    at com.cgi.poc.jsr168.MyAccountsPortlet.doView(MyAccountsPortlet.java:107) at
    javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:208) at javax.portlet.GenericPortlet.render(GenericPortlet.java:137)
    at com.bea.portlet.container.PortletStub.render(PortletStub.java:370) at com.bea.portlet.container.AppContainer.renderStub(AppContainer.java:501)
    at com.bea.portlet.container.AppContainer.invokeRender(AppContainer.java:436)
    at com.bea.portlet.server.PortletHttpServer.invoke(PortletHttpServer.java:218)
    at com.bea.portlet.server.PortletHttpServer.process(PortletHttpServer.java:162)
    at com.bea.portlet.server.PortletHttpServer.doGet(PortletHttpServer.java:119)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at com.bea.netuix.servlets.controls.content.JavaPortletContent.fireRender(JavaPortletContent.java:246)
    at com.bea.netuix.servlets.controls.content.JavaPortletContent.renderInternal(JavaPortletContent.java:146)
    at com.bea.netuix.servlets.controls.content.JavaPortletContent.beginRender(JavaPortletContent.java:108)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:424) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:427)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:172) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:95)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:380) at com.bea.netuix.nf.UIControl.render(UIControl.java:580)
    at com.bea.netuix.servlets.controls.PresentationContext.render(PresentationContext.java:341)
    at com.bea.netuix.servlets.util.RenderToolkit.renderChild(RenderToolkit.java:123)
    at com.bea.netuix.servlets.jsp.taglib.RenderChild.doStartTag(RenderChild.java:58)
    at jsp_servlet._framework._skeletons._bellca.__gridlayout._jspService(gridlayout.jsp:29)
    at com.bea.portlet.jsp.PortletJspBase.service(PortletJspBase.java:110) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:101)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:597)
    at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:409)
    at com.bea.netuix.servlets.controls.JspRenderer.renderAlt(JspRenderer.java:187)
    at com.bea.netuix.servlets.controls.JspRenderer.beginRender(JspRenderer.java:90)
    at com.bea.netuix.nf.ControlLifecycle$7.visit(ControlLifecycle.java:420) at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:427)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursiveRender(ControlTreeWalker.java:436)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:172) at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:220)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:158) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:363)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:207) at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:584)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:313)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6316)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118) at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Subbu Allamaraju <[email protected]> wrote:
    Could you please post more details of the exceptions?
    Thanks
    Subbu
    Carl Samson said the following on 12/09/2003 01:15 PM:
    Is there a support for the jsp:include page tag ?
    I get an exception when trying to include jsp's
    Thanks

  • I am at Ramstein AB Germany.  My iphone screen was smashed badly on the flight to Germany this morning.  WHEN I access apple support for this subject it gives me 3 options call now, call me now or call me later.  As I am in Germany with no coverage and no

    I am at Ramstein AB Germany.  My iphone screen was smashed badly on the flight to Germany this morning.  WHEN I access apple support for this subject it gives me 3 options call now, call me now or call me later.  As I am in Germany with no coverage and no working phone none of those options will work.  Can you get this e-mail to someone who can help.  My iphone serial # is C38xxxxxx. 1) I need to know where and how I can get a replacement somewhere nearby in Germany 2) If 1 is not an option I need to set up an appt to get a to get a new iphone at an apple store in Atlanta GA in the evening of 11 July.
    Thank you very much, Phil Edelen
    <Edited By Host>

    Thanks, my wife is the one serving I am retired and trying to follow her as much as I can. 
    I will schedule an appt for my next time stateside.  I have spent too much time on many Apple web sites trying to get an e-mail to communicate with anyone at Apple to no avail, only phone numbers. I guess if you are overseas with no international access you are out of luck communicating with them.  I did find one e-mail address but the reply was computer generated and provided useless links.
    If anyone has any e-mail address for anyone at Apple I would appreciate it.
    Thanks again,
    Phil

  • How to disable an "open for editing" option in word/excel viewers

    Hi All.  It's my first post on here so please be gentle! ;-)
    We have a situation on an RDS server whereby the majority of the users simply need Excel Viewer to review reports generated from an application, with only a very small number of users that actually need to amend and save these reports within Excel 2013 i.e.
    a version of Excel that we need a license for.
    There is an option within Excel Viewer that says "Open for editing" and unfortunately, because we also have Excel installed on the server this allows them to launch the Excel 2013 application i.e. full-blown Excel.
    Is there a way that I can disable this menu item, or can anyone suggest a way that I can stop users from launching Excel 2013?  I suspect that I can use AppLocker to prevent them calling on the excel.exe, but I was rather hoping that there was a more
    elegant way i.e. to simply disable the menu item in Excel Viewer.
    Any help / suggestions would be greatly appreciated.

    It may be difficult for us to disable the "Open for Editing" option in Excel Viewer. 
    If you want to allow only view access to certain files, you should consider controlling access to the file location with network security. Grant the "view only" users with Read-only permission to access the document file location.

  • OIM - How To not show the "Disable" option for a Resource object to a group

    Hello there,
    Is there anyway we can remove or don't show the option to "Disable" a already provisioned resource object ?
    I have a requirement over here wherein there is no reason available to show the "disable" option out of the 3 available - "enable", "disable" and "revoke" for an already provisioned RO.
    How can we remove it ? We don't want users belonging to a specific group see that option, at all.
    Is there any menu item associated with it ? or is there any other way we can configure it ?
    Please advise to the earliest.
    Thanks !!
    P.S.: this is OIM 9102 running on solaris.
    Edited by: 786001 on Oct 13, 2010 7:22 PM

    Modify JSP:
    And to do this just for a particular group, put your java code in JSP itself. This is the easiest approach.
    Otherwise you can modify the action class to return two action forwards and then use two different JSP's.
    Thanks
    Sunny

  • [HELP] Error: "JDBC theme based FOI support is disabled for the given data"

    Hi all,
    I have already set up MapViewer version 10.1.3.3 on BISE1 10g OC4J server. I am current using JDK 1.6. I create a mvdemo/mvdemo user for demo data.
    The MapViewer demo is running fine with some demo without CHART. But give this error with some maps that have CHART like: "Dynamic theme, BI data and Pie chart style", "Dynamic theme and dynamic Bar chart style". The error is:
    ----------ERROR------------
    Cannot process the FOI response from MapViewer server. Server message is: <?xml version=\"1.0\" encoding=\"UTF-8\" ?> <oms_error> MAPVIEWER-06009: Error processing an FOI request.\nRoot cause:FOIServlet:MAPVIEWER-06016: JDBC theme based FOI support is disabled for the given data source. [mvdemo]</oms_error>.
    ----------END ERROR------
    I searched many threads on this forum, some point me to have this allow_jdbc_theme_based_foi="true" in mapViewerConfig.xml and restart MapViewer.
    <map_data_source name="mvdemo"
    jdbc_host="localhost"
    jdbc_sid="bise1db"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="mvdemo"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="true"
    />
    Error Images: [http://i264.photobucket.com/albums/ii176/necrombi/misc/jdbcerror.png|http://i264.photobucket.com/albums/ii176/necrombi/misc/jdbcerror.png]
    I have this configuration, but no luck. Could anyone show me how to resolve this problem?
    Rgds,
    Dung Nguyen

    Oop, i managed to have this prob resolved!
    My prob may come from this I use both scott and mvdemo schema for keeping demo data (import demo data).
    Steps i made to resolve my prob are:
    1) Undeploy MapViewer from Application Server Control (http://localhost:9704/em in my case)
    2) Drop user mvdemo
    3) Download mapviewer kit from Oracle Fusion Middleware MapViewer & Map Builder Version 11.1.1.2
    4) Deploy MapViewer again
    5) Recreate mvdemo and import demo data
    6) Run mcsdefinition.sql, mvdemo.sql with mvdemo user (granted dba already)
    7) Edit mapViewerConfig.xml
    <map_data_source name="mvdemo"
    jdbc_host="dungnguyen-pc"
    jdbc_sid="bise1db"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="!mvdemo"
    jdbc_mode="thin"
    number_of_mappers="3"
    allow_jdbc_theme_based_foi="true"
    />
    Save & Restart MapViewer
    And now, all demos run fine. Hope this helpful for who meet prob like my case.

  • [svn] 4875: Adding support for multiple @productversion tags

    Revision: 4875
    Author: [email protected]
    Date: 2009-02-06 08:31:48 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Adding support for multiple @productversion tags
    QE Notes: None.
    Doc Notes: None
    Bugs: SDK-19104
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19104
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java

    Revision: 4875
    Author: [email protected]
    Date: 2009-02-06 08:31:48 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Adding support for multiple @productversion tags
    QE Notes: None.
    Doc Notes: None
    Bugs: SDK-19104
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19104
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java

  • [svn] 4146: adding support for multiple @playerversion tags.

    Revision: 4146
    Author: [email protected]
    Date: 2008-11-19 21:37:23 -0800 (Wed, 19 Nov 2008)
    Log Message:
    adding support for multiple @playerversion tags.
    Fix for asdoc.exe not outputting information for the @langversion tag.
    Also removing some unused code from DITA generation..
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18158, SDK-18159
    tests: checkintests, asdoc
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18158
    http://bugs.adobe.com/jira/browse/SDK-18159
    Modified Paths:
    flex/sdk/trunk/asdoc/templates/asdoc-util.xslt
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

    Revision: 4146
    Author: [email protected]
    Date: 2008-11-19 21:37:23 -0800 (Wed, 19 Nov 2008)
    Log Message:
    adding support for multiple @playerversion tags.
    Fix for asdoc.exe not outputting information for the @langversion tag.
    Also removing some unused code from DITA generation..
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18158, SDK-18159
    tests: checkintests, asdoc
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18158
    http://bugs.adobe.com/jira/browse/SDK-18159
    Modified Paths:
    flex/sdk/trunk/asdoc/templates/asdoc-util.xslt
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

  • Maximum allowable input for select-options

    Hi All,
        Can we enter any number of values in select-options on the selection screen. What is the limit on the number of values that can be given for select options.
    For example if the limit for a select-options field is 100000 and if i want to give  999999 values as input on the selection screen, how am I supposed to handle this.
    Thanks in advance,
    Madhu

    Hi Madhu,
    see the sample code below .. i hope it this will help you..
    SELECT-OPTIONS: s_order FOR vbak-vbeln .   "Default the value range 100000 to 9999999 appears on the screen
    INITIALIZATION.
    * Loading default values to screen input for Sales Order field
      MOVE 'I'          TO s_order-sign.
      MOVE 'BT'         TO s_order-option.
      MOVE '1000000'   TO s_order-low.
      MOVE '9999999'   TO s_order-high.
      APPEND s_order.
    * Screen field Validation
    AT SELECTION-SCREEN ON s_order.
    if s_order-low NE 100000.
    message 'Sales order Low value should be 100000' type 'E'.
    endif.
    if s_order-High NE 999999.
    message 'Sales order High value should be 999999' type 'E'.
    endif.
    Regards,
    Prabhudas

Maybe you are looking for

  • Delay in extraction from R/3 to BW

    Hi, We use 0FI_GL_10 extractor program to pull R/3 information to BW. We scheduled the process to run once in every two hours.However, we find many times it takes 6-7 hours (and never less than 4 hours) for R/3 data to appear in BW. Extractor 0FI_GL_

  • How to use Associative Array in sql query?

    Hello, I have a problem on using Associative Array variable on query; and my query is similar to the one below; TYPE OTHERGENERICS IS TABLE OF NUMBER(10) INDEX BY BINARY_INTEGER; othersGenerics OTHERGENERICS; CURSOR cursor_othersGenerics IS select ma

  • Migration from SQL Server to Oracle database

    I have got 2 questions: 1. We are planning to convert our OLTP sql server databases to oracle databases. I tried using SQL Developer to migrate a small sql server database to oracle database(size 5Gb). It was fine. when I tried to migrate another dat

  • Package controller doesn't exist

    Help! I'm trying to run this java program. I have four different java programs that are associated with a package. Two programs are saved in one folder and the other two are outside the folder. When I run the program, the error I receive is package *

  • Wherefor art thou KB2677070?

    I'm looking to deploy KB2677070 ( An automatic updater of revoked certificates is available for Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2 ) with SCCM 2012 but it's not showing in Software Updates. Is this by design? Or