Commit operation not enabled after createinsert in detail table

Hi Everybody,
After clicking createinsert operation for detail table in master detail, i got unique contraint error from db.after rectifiying the data for newly created row..commit operation not enabled to save the data.
Please find the code i used in my jsf.
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <f:view>
    <af:document id="d1">
      <af:messages id="m1"/>
      <af:form id="f1">
        <af:panelBox text="PanelBox2" id="pb2">
          <f:facet name="toolbar">
            <af:group id="g2">
              <af:commandButton actionListener="#{bindings.Delete1.execute}"
                                text="Delete1"
                                disabled="#{!bindings.Delete1.enabled}"
                                id="cb4"/>
              <af:commandButton
                                text="CreateInsert1"
                                disabled="#{!bindings.CreateInsert1.enabled}"
                                id="cb3"
                                action="#{backingBeanScope.MyIndustryBean.cb3_action}"/>
              <af:commandButton actionListener="#{bindings.Commit.execute}"
                                text="Commit"
                                disabled="#{!bindings.Commit.enabled}"
                                id="cb5"/>
              <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                text="Rollback"
                                disabled="#{!bindings.Rollback.enabled}"
                                immediate="true" id="cb6">
                <af:resetActionListener/>
              </af:commandButton>
            </af:group>
          </f:facet>
          <af:table value="#{bindings.IndustryEOView1.collectionModel}"
                    var="row" rows="#{bindings.IndustryEOView1.rangeSize}"
                    emptyText="#{bindings.IndustryEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                    fetchSize="#{bindings.IndustryEOView1.rangeSize}"
                    rowBandingInterval="0"
                    filterModel="#{bindings.IndustryEOView1Query.queryDescriptor}"
                    queryListener="#{bindings.IndustryEOView1Query.processQuery}"
                    filterVisible="true" varStatus="vs"
                    selectedRowKeys="#{bindings.IndustryEOView1.collectionModel.selectedRow}"
                    selectionListener="#{bindings.IndustryEOView1.collectionModel.makeCurrent}"
                    rowSelection="single" id="t1" width="448"
                    inlineStyle="height:193px;" partialTriggers="::cb3 ::cb4">
            <af:column sortProperty="IdDesc" filterable="true" sortable="true"
                       headerText="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                       id="c2">
              <af:inputText value="#{row.bindings.IdDesc.inputValue}"
                            label="#{bindings.IndustryEOView1.hints.IdDesc.label}"
                            required="#{bindings.IndustryEOView1.hints.IdDesc.mandatory}"
                            columns="#{bindings.IndustryEOView1.hints.IdDesc.displayWidth}"
                            maximumLength="#{bindings.IndustryEOView1.hints.IdDesc.precision}"
                            shortDesc="#{bindings.IndustryEOView1.hints.IdDesc.tooltip}"
                            id="it2">
                <f:validator binding="#{row.bindings.IdDesc.validator}"/>
              </af:inputText>
            </af:column>
            <af:column sortProperty="IdPlace" filterable="true" sortable="true"
                       headerText="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                       id="c1">
              <af:inputText value="#{row.bindings.IdPlace.inputValue}"
                            label="#{bindings.IndustryEOView1.hints.IdPlace.label}"
                            required="#{bindings.IndustryEOView1.hints.IdPlace.mandatory}"
                            columns="#{bindings.IndustryEOView1.hints.IdPlace.displayWidth}"
                            maximumLength="#{bindings.IndustryEOView1.hints.IdPlace.precision}"
                            shortDesc="#{bindings.IndustryEOView1.hints.IdPlace.tooltip}"
                            id="it1">
                <f:validator binding="#{row.bindings.IdPlace.validator}"/>
              </af:inputText>
            </af:column>
          </af:table>
        </af:panelBox>
        <af:panelBox text="PanelBox1" id="pb1">
          <f:facet name="toolbar">
            <af:group id="g1">
              <af:commandButton actionListener="#{bindings.Delete.execute}"
                                text="Delete"
                                disabled="#{!bindings.Delete.enabled}"
                                id="cb2"/>
              <af:commandButton
                                text="CreateInsert"
                                disabled="#{!bindings.CreateInsert.enabled}"
                                id="cb1"
                                action="#{backingBeanScope.MyIndustryBean.cb1_action}"/>
              <af:commandButton actionListener="#{bindings.Create.execute}"
                                text="Create"
                                disabled="#{!bindings.Create.enabled}"
                                id="cb7"/>
            </af:group>
          </f:facet>
          <af:table value="#{bindings.IndustryRatinEOView1.collectionModel}"
                    var="row" rows="#{bindings.IndustryRatinEOView1.rangeSize}"
                    emptyText="#{bindings.IndustryRatinEOView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                    fetchSize="#{bindings.IndustryRatinEOView1.rangeSize}"
                    rowBandingInterval="0"
                    filterModel="#{bindings.IndustryRatinEOView1Query.queryDescriptor}"
                    queryListener="#{bindings.IndustryRatinEOView1Query.processQuery}"
                    filterVisible="true" varStatus="vs"
                    selectedRowKeys="#{bindings.IndustryRatinEOView1.collectionModel.selectedRow}"
                    selectionListener="#{bindings.IndustryRatinEOView1.collectionModel.makeCurrent}"
                    rowSelection="single" id="t2"
                    partialTriggers="::t1 ::cb1 ::cb2 ::cb7">
            <af:column sortProperty="RatingId" filterable="true" sortable="true"
                       headerText="#{bindings.IndustryRatinEOView1.hints.RatingId.label}"
                       id="c5">
              <af:selectOneChoice value="#{row.bindings.RatingId.inputValue}"
                                  label="#{row.bindings.RatingId.label}"
                                  required="#{bindings.IndustryRatinEOView1.hints.RatingId.mandatory}"
                                  shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingId.tooltip}"
                                  id="soc2" autoSubmit="true">
                <f:selectItems value="#{row.bindings.RatingId.items}" id="si2"/>
              </af:selectOneChoice>
            </af:column>
            <af:column sortProperty="RatingSubId" filterable="true"
                       sortable="true"
                       headerText="#{bindings.IndustryRatinEOView1.hints.RatingSubId.label}"
                       id="c6" partialTriggers="soc2">
              <af:selectOneChoice value="#{row.bindings.RatingSubId.inputValue}"
                                  label="#{row.bindings.RatingSubId.label}"
                                  required="#{bindings.IndustryRatinEOView1.hints.RatingSubId.mandatory}"
                                  shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingSubId.tooltip}"
                                  id="soc1" partialTriggers="soc2">
                <f:selectItems value="#{row.bindings.RatingSubId.items}"
                               id="si1"/>
              </af:selectOneChoice>
            </af:column>
            <af:column sortProperty="Place" filterable="true" sortable="true"
                       headerText="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                       id="c4">
              <af:inputText value="#{row.bindings.Place.inputValue}"
                            label="#{bindings.IndustryRatinEOView1.hints.Place.label}"
                            required="#{bindings.IndustryRatinEOView1.hints.Place.mandatory}"
                            columns="#{bindings.IndustryRatinEOView1.hints.Place.displayWidth}"
                            maximumLength="#{bindings.IndustryRatinEOView1.hints.Place.precision}"
                            shortDesc="#{bindings.IndustryRatinEOView1.hints.Place.tooltip}"
                            id="it3">
                <f:validator binding="#{row.bindings.Place.validator}"/>
              </af:inputText>
            </af:column>
            <af:column sortProperty="RatingDesc" filterable="true"
                       sortable="true"
                       headerText="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                       id="c3">
              <af:inputText value="#{row.bindings.RatingDesc.inputValue}"
                            label="#{bindings.IndustryRatinEOView1.hints.RatingDesc.label}"
                            required="#{bindings.IndustryRatinEOView1.hints.RatingDesc.mandatory}"
                            columns="#{bindings.IndustryRatinEOView1.hints.RatingDesc.displayWidth}"
                            maximumLength="#{bindings.IndustryRatinEOView1.hints.RatingDesc.precision}"
                            shortDesc="#{bindings.IndustryRatinEOView1.hints.RatingDesc.tooltip}"
                            id="it4">
                <f:validator binding="#{row.bindings.RatingDesc.validator}"/>
              </af:inputText>
            </af:column>
          </af:table>
        </af:panelBox>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>

Hi,
Need to set partialSubmit true for CreateInsert and partialTrigger attribute for Commit button(Select Createinsert button for partialTrigger )

Similar Messages

  • JDBC + MySQL : "Operation Not Allowed After ResultSet Closed"

    I have a very short piece of code. I use one connection to the database. I execute a query, get back a lot of rows, then iterate through the result set and for each row I get some information and then perform an insert into a different table.
    The problem is that the big result set I am iterating through keeps closing sometime during the first iteration. Why? I am using three different statements:
    1) Statement 1 is for the main query I want to iterate through
    2) Statement 2 is for a quick lookup I perform (on a different table) for each item in the iteration.
    3) Statement 3 is for the Insert statement which I perform for each item in the iteration. Again, I insert into a different table and I use "executeUpdate"
    Given the I have three different statements and I am working with three different tables, why does my main result set that I am iterating through keep closing on me?
    Here is the error I am getting:
    java.sql.SQLException: Operation not allowed after ResultSet closed
    at com.mysql.jdbc.ResultSet.checkClosed(ResultSet.java:3603)
    at com.mysql.jdbc.ResultSet.next(ResultSet.java:2468)
    at com.mysql.jdbc.UpdatableResultSet.next(UpdatableResultSet.java:565)
    Thanks for your help.

    I have a very short piece of code. I use one
    connection to the database. I execute a query, get
    back a lot of rows, then iterate through the result
    set and for each row I get some information and then
    perform an insert into a different table.Sounds like a classic case of making Java do what the database was made to do.
    I'd bet you can do this in a single INSERT with a SELECT in the database in one network roundtrip. The "quick lookup" might be a JOIN or a sub-SELECT. When you do a query, bring N rows back to the middle tier, then do an INSERT for each row that you retrieve it means (N+1) network roundtrips if you don't batch your INSERTs. I'd have a SQL expert give your code a look.
    The problem is that the big result set I am iterating
    through keeps closing sometime during the first
    iteration. Why? I am using three different
    statements:
    1) Statement 1 is for the main query I want to
    iterate through
    2) Statement 2 is for a quick lookup I perform (on a
    different table) for each item in the iteration.
    3) Statement 3 is for the Insert statement which I
    perform for each item in the iteration. Again, I
    insert into a different table and I use
    "executeUpdate"
    Given the I have three different statements and I am
    working with three different tables, why does my main
    result set that I am iterating through keep closing
    on me?Maybe your ResultSet or Statement goes out of scope. Do the Statements share a Connection?
    %

  • Operation not permitted after software update

    My fiancés computer cannot open any websites comes up with 'the operation couldn't be completed. Operation not permitted' (INSPOSIXErrorDomain:1) Please choose Safari>Report Bugs to apple'. When checking for software updates it comes up with the error message 'Failed to check for updates. The operation could not be completed. Operation not permitted' It's a macbook pro bought in 2011 with OS X Lion 10.7.3 and Safari 5.1.3. I have checked the settings, reset safari, emtied the cache. I don't know what to do... any help?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software -- potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions -- they’re easy to carry out and won’t change anything on your Mac.
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing.
    Below are several lines of text in monospaced type, which are UNIX shell commands. They’re harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of running these commands, search this site for other discussions in which they’ve been used without any report of ill effects.
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands.
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
    To begin, launch the Terminal application; e.g., by entering the first few letters of its name in a Spotlight search. A text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” (without the quotes) and press return. You should then get a new line ending in a dollar sign.
    Step 1
    Copy or drag -- do not type -- the line below into the Terminal window, then press return:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}'
    Post the lines of output (if any) that appear below what you just entered (the text, please, not a screenshot.)
    Step 2
    Repeat with this line:
    sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfix|x)/{print $3}'
    This time, you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning.
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}'
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null
    Important: If you synchronize with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting.
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item'
    Remember, steps 1-5 are all drag-and-drop or copy-and-paste, whichever you prefer -- no typing, except your password. Also remember to post the output.
    You can then quit Terminal.

  • Message states that Camera Raw is not enabled after transferring data to a new MacbookPro

    Using photoshop and Bridge CS6.
    When I attempt to open a photo in Camera raw I receive this message Camera Raw is not enabled.
    "Camera raw requires that a qualifying product has been launched at least once to enable this feature.

    had to wipe and reload

  • UDEV touchpad not enabling after removing mouse

    Hi and thanks for reading,
    I have created udev rules
    ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="045e", ATTRS{idProduct}=="00cb", ENV{DISPLAY}=":0.0", ENV{XAUTHORITY}="/home/john/.Xauthority", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=1"
    ACTION=="remove", SUBSYSTEM=="usb", ATTRS{idVendor}=="045e", ATTRS{idProduct}=="00cb", ENV{DISPLAY}=":0.0", ENV{XAUTHORITY}="/home/john/.Xauthority", ENV{ID_CLASS}="mouse", RUN+="/usr/bin/synclient TouchpadOff=0"
    Now it works as expected when I plug in the mouse the touchpad disables. However when uplugging the mouse the touchpad does not enable again. I cannot for the life of me figure out why?

    Never mind, I have solved the problem. Searched "Synaptics" in My Computer. Opened up a folder labelled Synaptics. Selected InstNT. Right-Clicked; chose "run as administrator". Problem solved.

  • Button enable/disable in Master-Detail table

    I am using JDeveloper 11.1.1.3.0 and I have a page fragment (.jsff) which includes a Master-Detail table and the Master table has 3 buttons that get enabled/disabled based on the specific string within a column say, if the column has value, 'DRAFT', the buttons should be enabled. In all other cases, the buttons should be disabled.
    The above mentioned scenario works in cases where the table has more than one row in the table; but in two cases the buttons don't get enabled even though the column has 'DRAFT' as its value:
         1. when the table first loads with the data populated in the table; clicking on the first row doesn't trigger the buttons, clicking on any other row triggers the buttons
         2. when there is only one row in the table
    To resolve this, I tried looking at the logs for any specific information regarding the buttons getting enabled or disabled. I couldn't find info on setting up a breakpoint for the commandbutton and the disabled property which would enable me to determine whether it is being triggered as soon as the table gets populated or not.
    How can I get the buttons to work per my requirements? Also, can I set breakpoints for the button and/or evaluate disabled property's EL expression?
    Thanks in advance.

    Navaneeth:
    The buttons are part of panelCollection which exists in panelHeader. As the below code demonstrates,
    1. Buttons are defined in the toolbar (t2) in panelCollection (pc1)
    2. Each buttons' partialTrigger is set to the table (md1)
    3. Tables' (md1) partialTrigger is set to the toolbar (t2).
    <af:panelHeader text="#{viewcontrollerBundle.HISTORIC_PANEL_SPECS__TESTER_S}" id="ph2">
            <af:panelCollection id="pc1" styleClass="AFStretchWidth">
              <f:facet name="menus"/>
              <f:facet name="toolbar">
                <af:toolbar id="t2" partialTriggers="t2">
                  <af:commandButton actionListener="#{bindings.promotePanelSpec.execute}"
                                    text="#{viewcontrollerBundle.PROMOTE_PANEL_SPEC}"
                                    id="cb1" icon="/Images/up16.png"
                                    partialTriggers="md1"
                                    disabled='#{bindings.Status!="DRAFT"}'
                                    immediate="true"/>
                  <af:commandButton text="#{viewcontrollerBundle.ADD_TESTER_SPEC}" id="cb2"
                                    partialTriggers="md1"
                                    icon="/Images/action_add.gif"
                                    actionListener="#{bindings.CreateWithParams.execute}"
                                    action="addTestSpec"
                                    disabled='#{bindings.Status!="DRAFT"}'/>
                  <af:commandButton actionListener="#{PanelSpecTesterSpec.deleteTesterSpec}"
                                    text="#{viewcontrollerBundle.REMOVE_TESTER_SPEC}"
                                    id="cb3" partialTriggers="md1 ::pc2:t1"
                                    icon="/Images/delete.png"
                                    disabled='#{bindings.Status!="DRAFT"}'/>
                </af:toolbar>
              </f:facet>
              <f:facet name="statusbar"/>
              <af:table id="md1"
                        rows="#{bindings.PanelSpecTesterSpecView1.rangeSize}"
                        fetchSize="#{bindings.PanelSpecTesterSpecView1.rangeSize}"
                        emptyText="#{bindings.PanelSpecTesterSpecView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        var="row"
                        value="#{bindings.PanelSpecTesterSpecView1.collectionModel}"
                        rowBandingInterval="0"
                        selectedRowKeys="#{bindings.PanelSpecTesterSpecView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.PanelSpecTesterSpecView1.collectionModel.makeCurrent}"
                        rowSelection="single" partialTriggers="::t2"
                        filterVisible="true" displayRow="selected"
                        filterModel="#{bindings.ProductIdPanelSpecVersionToolNameQuery.queryDescriptor}"
                        queryListener="#{bindings.ProductIdPanelSpecVersionToolNameQuery.processQuery}">
                <af:column headerText="#{bindings.PanelSpecTesterSpecView1.hints.ProductId.label}"
                           sortProperty="ProductId" sortable="true" id="c39"
                           filterable="true">
                  <af:outputText value="#{row.ProductId}" id="ot28"/>
                </af:column>
                <af:column headerText="#{bindings.PanelSpecTesterSpecView1.hints.Status.label}"
                           sortProperty="Status" sortable="true" id="c43"
                           filterable="true">
                  <af:outputText value="#{row.Status}" id="ot40"/>
                </af:column>
              </af:table>
         </af:panelCollection>
    </af:panelHeader>The fact that the above code works when there are multiple rows tells me that buttons are having trouble reading the first row of the table.
    Also, I changed the displayRow property for the table from "selected" to "first" but no luck either.

  • OIM 11g - User Not enabled After the job "enable user after start date"

    Hi,
    I have a future hired user in OIM whose start date is set in OIM. The status of the user in OIM is 'Disabled Until Start Date'.
    After the start date has passed and the scheduled job 'enable user after start date' is run, I see that the user is still in the status 'Disabled Until Start Date'. I re-run the scheduled job 'enable user after start date', this time manually, still the state of the user remains unchanged.
    Please help in troubleshooting as to find out the root cause of the issue and a workaround/solution, if possible.
    This issue is intermittent and has happened with quite a number of user. Any pointer would be helpful.
    Regards,
    Sudipto S.

    I agree with Nayan.
    One alternative approach can be to write your own custom scheduler which can overcome the limitation of OOTB scheduled job 'enable user after start date'. Let the OOTB job get executed first. After it, your custom scheduler should fire a simple SQL Query:
    SELECT USR_KEY, USR_STATUS FROM USR WHERE (USR_START_DATE > SYSDATE -1) AND USR_STATUS='Disabled Until Start Date';
    //Means those users who are supposed to get enabled today and are still not yet enabled and are in 'Disabled Until Start Date'. May be 2-3 user keys at max will come...
    As you said it happens only intermittently and not for all users... So, let the OOTB scheduled job take care of most of such users... And after it has finished, if any user still remains in 'Disabled Until Start Date', your custom scheduler should enable it via using tcUserOperationsIntf.enableUser(userKey);
    Using API is always better than database update... Because APIs trigger downstream provisioning workflows as well and not just updates OIM Database...
    Keeping your constraints in mind, I think it is the correct answer.

  • Paste not enabled after copy.

    Hallo,
    if I select a slide in a slideshow, choose "Copy attributes" from the context menu, then select another slide show, select a slide there and try to paste the attributes, the command is disabled in the context menu.
    Why can't I copy and paste attributes from one slide show to another. I don't see why it shouldn't be possible.
    Different question: Why can I select an slide show in the project window, and copy it, but not paste it. I thought that maybe this way I could "clone" a certain slide show, and modify the copy as I need.
    Did the developers just forget to disable the copy command in this case?
    I would like to produce a set of very similar slide shows in my project. There's a black image, blending into the "main" image. This image stays for some time, then it fades to black. After that the black image is shown again for some seconds.
    I could create each slide show the fast way by selecting the black image and the main image, then selecting "New->slide show". The last black image at the end would be missing though. Therefore I'd have to import a copy of the black image.
    But then still the new slideshow wouldn't have the transitions and effects that the formerly created slide shows have.
    Is there an easier way to copy a slide show?
    Regards,
    Christian Kirchhoff

    Thanks for that answer.
    Regarding the attributes: I copied attributes from a first slide and tried to insert them in a slide show where I only inserted one slide so far. But because transitions are not possible when there is no following (second) slide, Encore DVD disabled the paste command because the attributes in the clipboard also contained a transition. I admit that Encore's behaviour was correct, though it would be nicer to just insert the attributes that are possible and skip the rest.
    Regarding the slideshow: I just thought that maybe Encore DVD was copying something else that I didn't know, like object from another window or a text representation of the slide show. But doing a paste in a simple text editor led to nothing. When you copy a sprite or a cast member in director, some text info about that object is copied into the clipboard as well, which can be inserted into a text editor.
    Best regards,
    Christian

  • QTPro shows reg# but not enabled after archive install

    I bought QT Pro when it was 7.0.3 & Pro features worked fine. Then I recently 'archive & installed' my OSX to fix other bugs. Now QT doesn't launch as Pro, even though my 7.0.3 registration # does come up in the registration section. I have not upgraded QT since then, not going to re-buy Pro over and over, and can confirm that it is still 7.0.3 I'm running. Any ideas? Please help.

    I think I figured it out. My ATI 9600Pro video card was missing some drivers after the archive/install. I read somewhere that archive/install doesn't necessarily archive eeeeverything.
    Anyway, when I launched the ATI monitor program (on a lark) it said 'yo, I'm missing a few things, load up that DVD driver disk again." So I did and badabing, problem appears to have been solved.
    QT still doesn't technically SAY it's pro still, but all the features are still there. So that's still a little wierd, but probably a different issue.
    So thanks all for the efforts. Hopefully this'll help someone else someday.

  • Bitlocker not enabled after deployment (Dell systems)

    I have been deploying to Dell systems, the TPM chips are active on the machines, these are OOB machines, do the deployment to Enable Bitlocker using TPM Only (SCCM 2012 w/MDT 2012 UDI) but when the machines boot up, it says Bitlocker protection is suspended,
    and if I go to turn it on, the Wizard fails to initialize, saying one or more drive protector keys needs to be available, etc.
    Not sure what's missing in my task sequence to get Bitlocker to encrypt the drive correctly.

    Hi,
    Please check smsts.log to find more information.
    The following blogs might help you to configure the Task Sequence.
    http://blogs.technet.com/b/simonmay/archive/2013/02/05/enable-and-activate-tpm-for-bitlocker-pre-provisioning-in-winpe.aspx
    http://en.community.dell.com/techcenter/os-applications/w/wiki/how-to-enable-trusted-platform-module-using-a-configmgr-2007-task-sequence.aspx
    (Note: Microsoft provides third-party contact information to help you find technical support. This
    contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.)
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Airport connection not enabled after boot

    Hi, I have noticed recently that if I reboot the iMac, after shutting down or using Boot Camp for my Winslows apps, that Airport doesn't connect to my wireless network. It is easy to select the network to connect to, but I don't think I should have to do this every time. Does anyone have any ideas?

    bossman,
    Welcome to discussions.
    Why don't you use the Network System Preference to prioritise how you connect to your network, which network you connect to, and even get it to store the password in your Keychain.
    Fire up the Network System Preference. What is your Location at the top ?
    Then chose Network Status from the Show: popup menu underneath (should be the default anyway). What connection methods does it show ? Which one is at the top ? Which ones have green dots next to them ? and which have yellow dots ? And which have red dots ?
    Is AirPort even on ?

  • Commit button disabled after CreateInsert Operation... :(

    Hi! I have app module with VO in multiple levels, like this:
    -VO1
    ----VO2
    --------VO3
    ------------VO4
    ------------VO5
    I created one jspx page for each VO and represented VO as Table. All works fine with VO1, VO2, VO3, I can insert data in table using CreateInsert operation and Commit it using Commit operation. After I create new row in table using CreateInsert, commit operation comes enabled. My problem is with VO4 and VO5. When I press CreateInsert button new row appears in VO4 and VO5 tables, but Commit button are disabled. When I press second time CreateInsert button then again new row appears and now Commit button is enabled. WHY I need to press two times CreateInsert button for VO4 and VO5 tables to enable commit, but for VO1, VO2 and VO3 tables only once. From all VO I created table in the same way and checked all 3 times.
    Where might be the problem and how to resove it? If need more info, please let me know.
    Best regards, Debuger!

    Yes, the problem is in Model Layer. The same problem is in AM. With VO1,2,3, all works fine, when I add new row then commit is enabled, see: http://my.jetscreenshot.com/2677/20120629-hqbt-90kb
    But when I try to add new row in VO4,5 then commit is disabled, see: http://my.jetscreenshot.com/2677/20120629-bchq-94kb. Commit comes enabled only when I enter some data, see: http://my.jetscreenshot.com/2677/20120629-hy9o-95kb
    Where might be problem? What code post there to help You?
    Best regards, Debuger!

  • Windows XP Mode - Could not enable integration features

    Hello!  Let me start off with saying that I'm not very computer savvy, so please be gentle!  :) 
    So here my problem.  I have scoured forums all morning looking for a solution and have tried many things and nothing has worked yet.  I have Windows 7 Pro.  I use the Windows VM to run in XP mode so my small business programs will
    operate correctly.  This morning VM would not open.  I click to open Windows VM, it take unusually long to attempt to open.  After 5 or so minutes error message - Could not enable integration features with details stating .  It gives me
    an option to retry or continue.  When I hit retry, it does so but the ending result is the same error message.  When I click continue it states the operation has failed - the VM is not running. 
    What I HAVE tried-
    -Reboot
    -Clicked start>windows virtual pc>open windows virtual pc>right click settings
              - From this point I have tried to shut down from the close option as well as uncheck enable integration features at start up. Status is in Hibernation and has not changed. 
    Your help will be greatly appreciated.  Thank You 

    Bob, I have read as much as I can find on this problem (Enabling Integration Features and having it remain enabled), and your responses are the most straight forward, complete and seem to have helped a number of others. So, I'm adding to this discussion,
    instead of starting a new discussion, so that I can get YOUR response.  
    I am running Windows 7 Professional on a Dell Precision M6500 laptop with an Intel Core i7 processor and 8 Gb of memory.  When I first setup the laptop I installed Windows Virtual PC and XP Mode, after downloading from the Microsoft.com
    website.  While the installation went without an error, getting to use it was a major, and long problem.  I have one (very) old planner software app that I've been using since the mid 1980s. Being somewhat stubborn, I refused to change to a newer
    app. So, I installed the app under XP Mode (it doesn't run under Windows 7) and it worked fine.  I then tried to setup the printer and the Guest PCs drives (some USB).  I followed the Microsoft instructions and suggestions I found in forums. 
    I finally gave up and called and paid for Microsoft tech support.  Many weeks and we finally got it working - was able to print to my wireless printer from XP Mode and was able to backup my data to the Host PCs USB drives (I make three copies of the data
    on a daily basis, so I actually have 21 copies of the data after a week).  When we got it working I never had a problem with Enabling Integration Features, before it would disable Integration Features after I enabled them, repeatedly.  Then a Windows
    7 upgrade hung - 8 hours and the PC hadn't shut down.  I powered off the PC and then powered back up.  I got a blue screen error about CPU being too hot and the PC shut down. It was no hotter than usual. Powered up again and all seemed fine, until
    I went to start XP Mode and my planner.  XP Mode was trashed, wouldn't start.  Tried to reinstall and still had the same problem.  So, another call to Microsoft Tech support and another fee. Interestingly, the fellow that I worked with this
    time as a level higher and knew the first tech I worked with.  A few days and XP Mode was back running and the environment was actually as it had been when the PC crashed (the VHD file was still there and had my original environment - settings, programs,
    printer and drive mappings - all in place, this file is in the same location as the VSV file).
    Long winded background to my current, repeated problem. Integration Features will no longer stay enabled.  While I don't recall a "crash" or "hung" PC, my notes are all in that planner app in XP Mode and I can't get to it.  So,
    I uninstalled VPC and XPM and reinstalled from scratch. Reinstalled my planner app, configured and tested my printer and host drives (didn't map them, just access them from My Computer).  Suddenly (as I said, I can't recall anything going wrong to trigger
    the repeat of this problem) Integration Features will not enable.  I've deleted the VSV file and the problem still exists. Just "Shutdown" XP Mode and 50 Windows XP updates were installed.  Then installed 48 updates. It worked for one afternoon and
    evening. Booting the laptop this morning and Integration Features again is unstable. One more Windows update was installed.  Then I followed your suggested steps:
    Delete the" Windows XP Mode.vsv" file in the folder
    C:\users\[your user name]\appdata\microsoft\Windows Virtual PC\Virtual Machines.
    That should then allow XP Mode to start correctly.
    Have you uninstalled, rebooted XP, and reinstalled the Integration Components?  All of this occurs in XP Mode not on Win7.
    1. Uninstall the Integration Components in XP Mode from Add/remove programs
    2. Reboot XP Mode
    3. Reinstall the Integration Components in XP Mode from WVPC menu.
    The laptop is also in the same Workgroup as the Host PC and all the other PCs on my LAN.
    Any suggestions?
    Where can I find the following folders from XP Mode on the Host PC:
    C:\Documents and Settings\All users\Documents
    C:\Documents and Settings\XPMUser\My Documents
    I created folders in both with the backed up data and programs from my planner app and would like to have access to them from the Host PC.
    I'm just about at the point of abandoning XP Mode and looking for an alternative Virtual Machine app, just using Outlook, or getting the Outlook app from the original software provider of my planner app.  All of these options are less
    than ideal, but Microsoft's XP Mode has also become less than ideal.
    TIA
    Neil Cook

  • Why is the 'Choose icon...' button in the Options tab of the field property dialog box not enabled?

    I am using Adobe Acrobat Professional XI running on Windows 8.
    This “feature” has been bugging me for some time now. I remember it happening when I used Acrobat 9 Professional (Windows XP) and it is still happening in Acrobat XI Professional. I think I figured out a situation when I can reproduce this “feature” conistently and I hope someone fixes this.
    Try the following and see what happens:
    1. Acrobat Professional is not open.
    2. Launch Word and start editing a document (or some other authoring tool that can generete PDF document).
    3. After editing the document, generate a PDF version of the document.
    4. Launch Acrobat Professional and edit the PDF document generated in 3.
    5. Add a button.
    6. View the button's properties.
    7. Change the Fill Color property in the Appearance tab to none.
    8. Change the Layout in the Options tab to Icon only.
    Now here is what bugs be. Shouldn’t the 'Choose Icon ...' button be enabled? It is not enabled after step 8. It is possible that 'Choose Icon ...' button is enabled for some of you. I this case, it would be nice if at least one of you who experience the same bug say so in this thread so that Adobe doesn't think I am sending them on a wild goose chase.
    I can enable it by selecting a different tab and then returning to the Options tab. A similar thing happens when reverting back from 'Icon only' to 'Label only' but I am not sure how to reconstruct a scenario for this one.
    Here is the dialog box for one instance when I noticed the bug.
    Regards,
    John

    You're right, it has been that way for a long time. I've never bothered reporting it as a bug since it's simple enough to deal with, but reporting it would be a reasonable thing to do.

  • Oracle Services Procurement is not enabled

    Hi,
    in 11.5.10 on Linux, a user receive the following :
    Oracle Services Procurement is not enabledWhere and How to enable it ?
    Thanks.

    thank you Ahmed.
    It is for 11i.
    I run the
    and in report I have :
    ap 11i.AP.M(3151444) 11i.AP.M(3151444) 11i.AP.O(4551936)
    Does-it mean that our Oracle Accounts Payable is Family Pack M ?
    And that note is applied to 11.5.i
    Error: You Cannot Access This Page Because Oracle Services Procurement Is Not Enabled After Select The 'Contractor Request' TAB [ID 295455.1]
    Modified 18-NOV-2008 Type PROBLEM Status PUBLISHED
    Applies To
    iProcurement - Version: 11.5.10
    This problem can occur on any platform
    Confirm the following conditions are met:
    1. PO: Enable Services Procurement should be set to Yes .
    If No, set it to Yes and bounce the Apache server .
    2.Ensure the instance has the following patch configuration:
    a) Oracle Accounts Payable is Family Pack M higher
    b) or Finance F
    c) or Oracle Accounts Payable is not installed
    Thank you.

Maybe you are looking for