How to reset data when switching between two subforms

I have two subforms that are either shown or hidden based on a radio button selection.
If Radio Button "1" is selected, subform1 is visible and subform2 is hidden and  vice-versa.
This is hard for me to explain, so please bear with me.
What I want to do is to clear the subform fields if you switch back and forth between subforms.
For example:
1.     Click Button "1" (subform1 visible)
2.     Fill in subform1 fields.
3.     Click Button "2" (subform1 now hidden)
4.     Click Button "1" (subform1 is visible and  fields are blank)
I found the below script in another post for a similar problem. I put it as a "click" event for each Radio Button Item, but I'm not sure where it's supposed to go as the other post didn't say. It works but it clears the entire form, not just the subform fields.
xfa.host.resetData("xfa.form.form1.subform1");
Can anyone tell me the proper script to make my form work?
Please keep it simple. The extent of my JavaScript knowledge is basically cut and past and hope it works. If it does work, it's by the grace of God only. I couldn't tell you the difference between a SOM and an node.
So, if anyone has an answer, please dumb it down to about the level of a third grader.

Paul,
Thanks for responding.
I'm still confused as to which field the script goes in and how to enter it in relationship to any existing script.
Instead of me trying to explain verbally, I'll show you what I have.
Document Hierarchy:
Subform path & script: (I'm assuming I need one for each subform)
xfa.host.resetData("xfa.form1.Page1.subform1");
xfa.host.resetData("xfa.form1.Page1.subform2");
"Radio Button List" Click Event script that shows/hides subforms:
form1.Page1.FLOC.RadioButtonList::click - (JavaScript, client)
if (this.rawValue == 1)
    Subform1.presence = "visible";
    Subform2.presence = "hidden";
else if (this.rawValue == 2)
    Subform2.presence = "visible";
    Subform1.presence = "hidden";
if (this.rawValue == 1)
    Efficiency.presence = "visible";
if (this.rawValue == 2)
    Efficiency.presence = "visible";
I've tried putting the script  inside the curly brackets, outside the curly brackets, at various locations within the above script, but no matter where I put it, it clears the entire form.
Would you be so kind as to re-write the above script  properly so I can see what it's supposed to look like.
Thanks!

Similar Messages

  • Inform users on unsaved data when switching between/starting new TaskFlows?

    Hi
    In our case, we are using the multiTaskFlow concept to dynamically start new TaskFlows in Tabs. The simple requirement is to have a generic way to inform users on modified unsaved data when switching or starting new TaskFlow
    I did research in google for answers, but did not found anything working.
    For example, I added following checks (df=dirtyFlag) just before switching between Tabs and Menu-items:
    boolean df1 = am.getApplicationModuleDef().isDirty();
    boolean df2 = ControllerContext.getInstance().getCurrentRootViewPort().isDataDirty();
    boolean df3 = ControllerContext.getInstance().getCurrentViewPort().isDataDirty();
    boolean df4 = AdfFacesContext.getCurrentInstance().getDirtyPageHandler().isDataDirty();
    boolean df5 = am.getTransaction().isDirty();
    boolean df6 = am.getDBTransaction().isDirty();
    boolean df7 = bindingContext.getDefaultDataControl().isTransactionDirty();
    boolean df8 = dcBindingContainer.getDataControl().isTransactionModified();
    boolean df9 = dcBindingContainer.getDataControl().isTransactionDirty();
    Start Application and perform a TAB switch without searching or changing anything
    df1 true
    df2 false
    df3 false
    df4 false
    df5 false
    df6 false
    df7 false
    df8 false
    df9 false
    Within a TaskFlow I perform a SEARCH and perform a TAB switch, flags change to following:
    df1 true
    df2 true
    df3 true
    df4 true
    df5 true
    df6 true
    df7 false
    df8 false
    df9 false
    I MODIFY values within TF and perform a TAB switch, flags remain same and regardless what I do, they remain so:
    df1 true
    df2 true
    df3 true
    df4 true
    df5 true
    df6 true
    df7 false
    df8 false
    df9 false
    Do you know a working approach?
    Thanks in advance!

    Hi,
    its for when you leave a view, not when you switch task flows in a page. To get back to your question, one thing you forgot to mention is what data control state is it that the task flows have: shared or isolated? If they have a shared state then only a single transaction is on and you should be able to tell the dirty state by calling
    boolean df2 = ControllerContext.getInstance().getCurrentRootViewPort().isDataDirty();
    However, if the task flow is in isolated mode then you will need to get a handle to the data control frame used by that task flow.
    BindingContext ctx = oracle.adf.controller.binding.BindingUtils.getBindingContext();
    String frameName = ctx.getCurrentDataControlFrame();
    DataControlFrame frame = ctx.findDataControlFrame(frameName);
    boolean isDirty = frame.isTransactionDirty();
    //see: http://docs.oracle.com/cd/E15051_01/apirefs.1111/e10653/oracle/adf/model/DataControlFrame.htmlHowever, this information is only available from within the task flow, which means to check this from the outside you need to provide a mechanism to get to this information (contextual events would be an option. You define a contextual event receiver on the task flows that when called checks the current transaction state and then "fires" the answer back to the caller, which then obtains a map of task flow transaction states to check before navigating away or switching task flows.
    Frank
    Edited by: Frank Nimphius on Apr 11, 2013 2:48 PM

  • Getting around commiting at task to hardware in DAQmx and maintaining HW timing when switching between two AI tasks.

    I have a project that requires two HW timed AI task that are triggered at different rising edges. I originally started with an example vi that has HW timed retriggerable AI that seemed to working fine until I decided to capture two channel with a seperate task. I received error messages due to the orginal task being committed to the hardware that prevented the second task for being configured due to reserved resources.
    I was able to changed the commit to verify and switched from a analog edge trigger to a digital edge so I could use another PFI for triggering the second acquisition and the program seems to work fine at the momment.
    Questions that I have are:
    What exactly do verify, reseve and commit refer to in regards to task setup and impact on task switching delay. What information is actually transfered when configuring the task and what are the typical delay times for switching between tasks for the task controls listed above on a PCI6071e card. I am concerned that HW timing may have been sacrificed in order to work around the reserved resources and that if someone bumps the mouse the timing sequence will miss a trigger due to an IRQ.
    Any information on this topic would be greatly appreciated.
    Kindest Regards,
    Bill

    Lon,
    Thanks for  the reply. I have another related question in regards to configuring the read property node for a digitally triggered start-stop routine with 2 presamples and collecting 5 samples per channel on 14 channels. Triggering occurs at 500 Hz and the total sampling time for all channels is restricted to 500 us max. I am current dealing with a single AI task and having difficulty capturing all the data in an output file. I have tried using a large array to store the data until the test is complete then write the array to a file to see if the file I/O was the problem. It did not work.
    I have looked the the vi and information with respect to "How do I use digital triggering to start and stop AI". The description included with the vi indicates that the read property "Relative to" must be set to current read position and the buffer definition modified to something hugh in order to keep the ahead of the write. I have tried this and cannot seem to capture the correct number of bytes in the output file. I have tried different "Relative to" settings and offsets with no luck.
    A quick summary of the test is 1000 cycles with 5 samples per channel on 14 channel captured twice during each cycle. Data read as I16 (2bytes). Neglecting the 300-500 bytes in the test comment header,  the file should be in the 112k range (1000*5*14*2*2). When I do happen to collect some data the file size is either way too small or much larger than expected.
    All this information to ask the simple question; How do I configure the read properties to make certain that I collect all the data and store it in a file.
    I apologize for running on about this problem, but I am getting really frustrated with this.
    Kindest Regards,
    Bill

  • Itunes unresponsive when switching between two devices

    For God Sake help me with this,
    i have so many apps on my iTunes(mac) ,since i updated my itunes from 11 to 12 it has been my worst nightmare ever..
    whenever i attach two or more devices ,switching between devices it becomes unresponsive so that i have to force quit iTunes
    i googled this issue,tried lots of things.but no success
    plzzzzzz help

    Paul,
    Thanks for responding.
    I'm still confused as to which field the script goes in and how to enter it in relationship to any existing script.
    Instead of me trying to explain verbally, I'll show you what I have.
    Document Hierarchy:
    Subform path & script: (I'm assuming I need one for each subform)
    xfa.host.resetData("xfa.form1.Page1.subform1");
    xfa.host.resetData("xfa.form1.Page1.subform2");
    "Radio Button List" Click Event script that shows/hides subforms:
    form1.Page1.FLOC.RadioButtonList::click - (JavaScript, client)
    if (this.rawValue == 1)
        Subform1.presence = "visible";
        Subform2.presence = "hidden";
    else if (this.rawValue == 2)
        Subform2.presence = "visible";
        Subform1.presence = "hidden";
    if (this.rawValue == 1)
        Efficiency.presence = "visible";
    if (this.rawValue == 2)
        Efficiency.presence = "visible";
    I've tried putting the script  inside the curly brackets, outside the curly brackets, at various locations within the above script, but no matter where I put it, it clears the entire form.
    Would you be so kind as to re-write the above script  properly so I can see what it's supposed to look like.
    Thanks!

  • User is no longer logged in when switching between two websites

    Hi All,
    I have created two independent websites. For ex: www.xyz.com and www.abc.com.
    Now, assume one user is logged in the www.xyz.com and he switched from that website to www.abc.com by clicking the hyperlink.
    At that time he needs to enter again his username and password. But I don't want to user to re-enter his login
    information again. That means login information(username and password) is same for both websites. For this
    requirement what I code need write in my application. Can any body help me.
    Thanks in advance.......
    Regards,
    Chandrasekhar

    Have you checked whether your authentication is using a cookie? If yes, then that is the source of your problem. Check your container's documentation for how to enable URL rewriting instead. If that still does not work, you will need to figure out some other method of common authentication (such as your application server's clustering abilities or using the database to store which users are currently authenticated). One final option would be to always have one server forward an authentication request to the other server yourself manually.
    - Saish

  • How do I choose  or switch between two Apple iD accounts on two devices?

    I have found myself set up on my MacBookPro using one Apple id(@me.com address) and logged into iCloud on my iPod touch using another (personal e-mail). In iCloud settings on the iPod touch if I go to switch on Mail or Notes it tells me to set up a free me.com address (which I already have). I can't see a simple way to log out of my iCloud settings on the iPod Touch so as to log back in with the me.com address. If I go to use the red Delete Account button, it suggests all sorts of confusion might follow. What is my best option?
    Thanks
    Tony

    The "Delete Account" button will not remove any data from iCloud, it will simply remove the iCloud account from your iPod.
    After clicking "Delete Account" you will be able to sign in using your other account.

  • How to switch between two query in Web templete.

    Hi all,
      Here i am facing problem to switch between two query in web template by using one 'table' web item. is there any way to use hyperlink 'SAP_BW_URL' and we can switch to query. here i am using these HTML code..
    <table><tr><td class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td>
    <table><tr><td class="sapbexbtnstd" ><A href="<SAP_BW_URL cmd='reset_item' item='table_data' query_ID='ZSD_ZSD_M01_Q20' apply_cmd_on_target= "X">" >Switch to other query</A></td></tr></table>
    but i am not getting correct functionality.
    please help me to solve this problem.
    I know the best way to say thanks in SDN.
    thanks
    Kiran Patel

    Kiran,
      Use the web api reset_data_provider as links or in select option in HTML.
       Onchange event of this select option should call JAVASCRIPT method and
       this in turn resets the current dataprovider to your concerned one.
       How to change graphs:
       The graph item has the default data provider:
       <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="CHART_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_CHART"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="TMP_CHART_DATA_HANDLE" value="IIP_49MOXB0UVNOMM6JOZMZU7QO21"/>
             ITEM:            CHART_1
       </object>
      So if you change the DATAPROVIDER_1 using RESET_DATA_PROVIDER to your concerned DP, this changes chart as well !!
       Please use this method and refer to sample code for Onchange Event on SELECT OPTION:
      <HTML>
    <HEAD>
    <script>
    function callDP() {
         if(document.forms[0].dp.value == "1") {
            //form your URL here..
           url = SAP_BW_URL_Get() + "&CMD=RESET_DATA_PROVIDER&DATA_PROVIDER_1=..&...";
            SAPBWOpenURL(url);
            //or docuemtn.location.href = url..
            //etc..
    </script>
    </HEAD>
    <BODY>
    <form>
    <select name="dp" onChange="javascript:callDP();">
    <option value="1">1</option>
    <option value="2">2</option>
    </select>
    </form>
    </BODY>
    </HTML>
    HOPE THIS HELPS !!!

  • How do I quickly* switch between two Skype account...

    I have a need to be able to quickly* switch between two Skype accounts on my Windows 7 desktop computer.
    Both accounts have high-security difficult-to-remember and hard-to-type passwords.
    Many products have a facility for doing this, remembering recent account/password combinations, or having linked accounts.
    Does Skype have a way of doing this?
    And if it doesn't, how do I request it get one be developed?
    I use a password manager, LastPass, but of course Skype isn't a browser so it doesn't work with Lastpass.
    * "Quickly switch" means without switching computer sign-on accounts and without re-typing the high-security difficult-to-remember and hard-to-type passwords many times per day.
    I understand you're all volunteers.  Thank you very much for your efforts on this.
    - Keith
    Solved!
    Go to Solution.

    This can be done by setting up an another Skype client in a separate directory and with a shortcut containing the extra /datapath, /removable and /secondary switches.
    http://community.skype.com/t5/Windows-desktop-client/Why-did-Microsoft-have-to-go-and-ruin-Skype-lik...
    For your purpose you can make use of a copy of Skype.exe of the already installed Skype application.

  • How to keep location in a table persistent when switching between pages

    Hi -
    How would I keep my last location persistent in a table when switching between pages? If I am on cell X and switch to another page, when returning to the previous page, I return to the top of the table. This can be very annoying when trying to find the same location in a large table (or even in a small one).
    Thanks.

    If by "page" you mean "sheet", you can do it. To get back to the same place you were in the other sheet, click on the sheet in the sidebar (the list of sheets/tables/charts/etc on the left). Don't click on the table, click on the sheet.

  • How to calculate the hour difference between two dates?

    hi all,
    how to calculate the hour difference between two dates?
    eg i trying this...
    ((TO_DATE(TO_CHAR(GRNi.reference_date_4,'hh24:mi'),'hh24:mi') -
    TO_DATE(TO_CHAR(NVL(GRNi.reference_date_3,SYSDATE),'hh24:mi'),'hh24:mi'))*24)*60 Act_Hr
    Reg.
    AAK

    Hi
    To break the diff between 2 dates into days, hours, minutes, sec -- you can use the following:
    select to_char( created, 'dd-mon-yyyy hh24:mi:ss' ),
    trunc( sysdate-created ) "Dy",
    trunc( mod( (sysdate-created)*24, 24 ) ) "Hr",
    trunc( mod( (sysdate-created)*24*60, 60 ) ) "Mi",
    trunc( mod( (sysdate-created)*24*60*60, 60 ) ) "Sec",
    to_char( sysdate, 'dd-mon-yyyy hh24:mi:ss' ),
    sysdate-created "Tdy",
    (sysdate-created)*24 "Thr",
    (sysdate-created)*24*60 "Tmi",
    (sysdate-created)*24*60*60 "Tsec"
    from all_users
    where rownum < 50
    HTH
    RangaReddy

  • White box appears while switching between two desktops

    Hello all,
    Since few weeks I have a problem when I switch between two Desktops. Everytime I switch between them a white box appears in the left corner of my screen (see screenshot).

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Dreamweaver 6.1 - JavaScript error when switching between open tabs

    When switching between open tabs a sequence of javascript
    errors occurs. I had not used Dreamweaver for about 2 weeks, and
    last time I used it with no problems.
    I have tried uninstalling it, OKing removal of all files when
    asked, re-installing it and updating with dwmx61_updater.exe, but I
    still get the same errors.
    This has rendered the software virtually unuseable, so any
    help would be greatly appreciated, as I'm working to a
    rapidly-approaching deadline.
    "While executing Browse_Back enabled in toolbars.xml, a
    JavaScript error occurred"
    followed by
    "While executing Browse_Forward enabled in toolbars.xml, a
    JavaScript error occurred"
    followed by
    "While executing Browse_Stop enabled in toolbars.xml, a
    JavaScript error occurred"
    The relevant code seems to be :
    <!-- Browser nav toolbar -->
    <toolbar id="Browser_Toolbar" platform="win"
    label="Browser Navigation" container="document"
    initiallyVisible="false">
    <button id="Browse_Back"
    image="Toolbars/images/MM/back.gif"
    disabledImage="Toolbars/images/MM/back_dis.gif"
    tooltip="Back"
    label="Back"
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('back')"
    command="dw.getDocumentDOM().browser.backPage()"
    update="onEveryIdle"/>
    <button id="Browse_Forward"
    image="Toolbars/images/MM/forward.gif"
    disabledImage="Toolbars/images/MM/forward_dis.gif"
    tooltip="Forward"
    label="Forward"
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('forward')"
    command="dw.getDocumentDOM().browser.forwardPage()"
    update="onEveryIdle"/>
    <button id="Browse_Stop"
    image="Toolbars/images/MM/stop.gif"
    disabledImage="Toolbars/images/MM/stop_dis.gif"
    tooltip="Stop"
    label="Stop"
    enabled="dw.getDocumentDOM().browser.getPageBusy()"
    command="dw.getDocumentDOM().browser.stopPage()"
    update="onBrowserPageBusyChange"/>
    <button id="Browse_Refresh"
    image="Toolbars/images/MM/browserRefresh.gif"
    tooltip="Refresh"
    label="Refresh"
    enabled="true"
    command="dw.getDocumentDOM().browser.refreshPage()"/>
    presumably the next error is caused by the previous ones
    failing :
    "While executing getCurrentValue in AddressURL.htm, a
    JavaScript error occurred"
    the relevan tcode :
    function getCurrentValue()
    var dom = dw.getDocumentDOM();
    var value = dom.browser.getURL();
    if (value && value.length)
    //check if is it not a temp file
    //extract the tail of the url
    var filename = value;
    var slashIndex = filename.lastIndexOf("/");
    filename = filename.substring(slashIndex+1);
    var tempIndex = filename.indexOf("TMP");
    if (tempIndex != 0)
    addRecentAddress(value);
    return value;

    You can try this simple fix -
    Quit DW.
    Find this folder -
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration\WinFileCache-*.dat
    (these folders are normally hidden - you may have to use
    Explorer > Tools >
    Folder Options to unhide them)
    and delete it.
    Restart DW. Works better?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "earthdoctor" <[email protected]> wrote in
    message
    news:[email protected]...
    > When switching between open tabs a sequence of
    javascript errors occurs. I
    > had
    > not used Dreamweaver for about 2 weeks, and last time I
    used it with no
    > problems.
    >
    > I have tried uninstalling it, OKing removal of all files
    when asked,
    > re-installing it and updating with dwmx61_updater.exe,
    but I still get the
    > same
    > errors.
    >
    > This has rendered the software virtually unuseable, so
    any help would be
    > greatly appreciated, as I'm working to a
    rapidly-approaching deadline.
    >
    >
    > "While executing Browse_Back enabled in toolbars.xml, a
    JavaScript error
    > occurred"
    > followed by
    > "While executing Browse_Forward enabled in toolbars.xml,
    a JavaScript
    > error
    > occurred"
    > followed by
    > "While executing Browse_Stop enabled in toolbars.xml, a
    JavaScript error
    > occurred"
    >
    > The relevant code seems to be :
    >
    > <!-- Browser nav toolbar -->
    >
    > <toolbar id="Browser_Toolbar" platform="win"
    label="Browser
    > Navigation"
    > container="document" initiallyVisible="false">
    >
    > <button id="Browse_Back"
    > image="Toolbars/images/MM/back.gif"
    > disabledImage="Toolbars/images/MM/back_dis.gif"
    > tooltip="Back"
    > label="Back"
    >
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('back')"
    > command="dw.getDocumentDOM().browser.backPage()"
    > update="onEveryIdle"/>
    >
    > <button id="Browse_Forward"
    > image="Toolbars/images/MM/forward.gif"
    > disabledImage="Toolbars/images/MM/forward_dis.gif"
    > tooltip="Forward"
    > label="Forward"
    >
    enabled="dw.getDocumentDOM().browser.isCmdEnabled('forward')"
    > command="dw.getDocumentDOM().browser.forwardPage()"
    > update="onEveryIdle"/>
    >
    > <button id="Browse_Stop"
    > image="Toolbars/images/MM/stop.gif"
    > disabledImage="Toolbars/images/MM/stop_dis.gif"
    > tooltip="Stop"
    > label="Stop"
    > enabled="dw.getDocumentDOM().browser.getPageBusy()"
    > command="dw.getDocumentDOM().browser.stopPage()"
    > update="onBrowserPageBusyChange"/>
    >
    > <button id="Browse_Refresh"
    > image="Toolbars/images/MM/browserRefresh.gif"
    > tooltip="Refresh"
    > label="Refresh"
    > enabled="true"
    > command="dw.getDocumentDOM().browser.refreshPage()"/>
    >
    >
    >
    > presumably the next error is caused by the previous ones
    failing :
    >
    > "While executing getCurrentValue in AddressURL.htm, a
    JavaScript error
    > occurred"
    > the relevan tcode :
    >
    >
    > function getCurrentValue()
    > {
    > var dom = dw.getDocumentDOM();
    > var value = dom.browser.getURL();
    > if (value && value.length)
    > {
    > //check if is it not a temp file
    > //extract the tail of the url
    > var filename = value;
    > var slashIndex = filename.lastIndexOf("/");
    > filename = filename.substring(slashIndex+1);
    > var tempIndex = filename.indexOf("TMP");
    > if (tempIndex != 0)
    > {
    > addRecentAddress(value);
    > }
    > }
    > return value;
    > }
    >
    >

  • Graphic distortion when switching between external and built-in display (rMBP)

    Recently (within the past two weeks or so) I've noticed a strange issue when switching between my external display (Thunderbolt) and my built-in display on my 15" rMBP. The following issue seems to be specific to Photoshop CS6.
    Typically, I'll have a PS document open on my external display and I'll wind up taking my to another location. If I close the PS document while on my built-in and then re-open it, I get all kinds of distortion and pixellation. Closing out PS and reopining, restarting, logging on/off; none of it seems to work. It seems like the issue is with the PSD itself, but it doesn't make any sense to me. Any ideas? Screenshot: http://i.imgur.com/iCipSc7.jpg

    Do you have intel gpy as well as other graphic card?  You may be viewing document on different gpu's.  PS does not like multiple gpu's.

  • How to keep data integrity with the two business service in OSB 10.3.1.0

    How to keep data integrity with the two business service in OSB 10.3.1.0
    In our customer system, customer want to keep data integerity between two businness service. I thinks this is XA transaction issue.
    Basing customer requirment, I created a testcase but I can't keep data integerity, For detail information, please refer the attached docs.

    Can you please explain what you meant my data integrity in your use case?
    Manoj

  • Error when switching between drafts: "The instruction at "0x009f6487" ...

    Running Contribute CS3 and get this error frequently when switching between documents in the Draft Console:
    The instruction at "0x009f6487" referenced memory at "0x06bd7a24". The memory could not be "read".
    Click on OK to terminate the program
    Click on Cancel to debug the program
    I do not get this error any other time. Only when editing multiple documents and switching between them. Clicking Save for Later on the toolbar, instead of clicking directly on the document in the Draft Console does not help.
    Any help or suggestions are much appreciated.

    Can you please try clearning the Contribute preferences?
    To Clear the preference, quit Contribute, and then delete the Contribute CS3 folder in C:\Documents and Settings\<user>\Local Settings\Application Data\Adobe\ and also run the following command " reg delete "HKCU\Software\Adobe\Contribute 4.1" /f " if you are using Contribute CS3. Reconnect to the site and try the same scenario.
    Note that, if you clear the preferences then no connection will be listed in Contribute, you need to recreate the connections. It will be like a fresh installation.

Maybe you are looking for

  • Windows 7 won't install on intel imac

    I'm having trouble installing windows 7 ultimate (64 bit) on my imac. it's the 20 inch model from early 2007 (EMC 2133) if that helps. It seems that when I try to install the windows 7 OS on my new partition the screen goes black and prompts the mess

  • How To Install OS on Raid0?

    My system is a bit over two years old now, and has served me well in that time thanks to a lot of advice from this forum.  It's weak link is a Toshiba SSD used for the boot drive, that is not even as fast as a decent HDD.  Yesterday I suffered a seri

  • I can't get any google related pages working since last security update

    Does anyone know how I can uninstall an update? This is driving me crazy. Just started a couple days ago. A few other sites I use often have stopped working as well. I'm also using safari 3.1.2 which I also downloaded recently. Any help greatly appre

  • Keynote, numbers and pages won't open on 10.9.3

    I haven't used Keynote, numbers or pages for several months and now they won't open.  They start to load but then they stop and disappear off the bottom application bar.

  • Is there a JInitiator version for Win2000?

    Platform: Win2000 I having a problem lauching the very first applet. The applet window launches but stays blank. If the applet window is resized ever so slightly, then the window refreshes correctly. Any subsequent applet window after that works fine