Cancelling changes made by disable view

All, when a user is disabled, the tool uses the disable view to disable the selected resources. However, i would like to undo the changes made by the view based on a condition i'm checking and just exit out of the workflow. Can someone tell me how i can do this as I know we can achieve this in activesync using IAPI.cancel?

The way to do this is to add another activity that has an action that calls the enable user primitive workflow services. u can then set the resources that you want to unset.

Similar Messages

  • Error message when I insert a div tag: Couldn't commit the changes made in Live View. Refresh the Live View and try editing again.

    According to a web and support forum search, myself and another person, Chloe in the Dreamweaver Club forum, have ever reported this. Trying to follow along a Lynda.com tutorial, and the instructor isn't getting this error. Can't imagine why it's happening. I'd be very grateful for any help. I'm also getting an error dialog message:
    DIALOG BOX:
    While executing onClick in InsertFGDiv.htm, the following JavaScript error(s) occurred:
    At line 687 of file "Macintosh HD:Applications:Adobe Dreamweaver CC 2014.1:Configuration:Commands:InsertFGElement.js": The object is not currently contained in a document.
    This appears at the top of the screen:
    Couldn't commit the changes made in Live View. Refresh the Live View and try editing again.  [Refresh doesn't do anything.]

    Try the suggestions here -
    Index to Dreamweaver FAQ
    The solution for Javascript errors is likely the one.

  • List view web part not reflecting changes made to list view in SharePoint Designer

    Dear All,
    When adding a list view web part containing a view modified in SharePoint designer (e.g. conditional formatting applied, or group headers modified) I'm finding that the changes made in SPD are not reflected in the web part. 
    For example, I go into SPD edit a view, and the view appears correctly when I go back into SharePoint, however when I link to the view within a list view web part it results in losing the changes made in SPD. 
    Becasue it's a publishing page I'm unable to edit the contents of the web part in SPD.
    I'm sure this is expected behavior but how do I get around this?
    Thnaks,
    MDB

    Try below
    http://stackoverflow.com/questions/19533998/sharepoint-designer-doesnt-show-anything-in-list-and-libraries-link
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a63a1894-6b1d-420a-95dd-b6c546eab34d/updates-made-to-sharepoint-designer-2010-workflow-do-not-show-up-on-the-server?forum=sharepointcustomizationprevious
    http://stackoverflow.com/questions/5959521/sharepoint-designer-saves-the-changes-but-it-does-not-affect
    http://social.technet.microsoft.com/Forums/en-US/1e9a8c27-bbc5-4a6f-8daf-4b243182f543/changes-in-sharepoint-designer-2010-not-showing-in-sharepoint-server-2010-page?forum=sharepointadminprevious

  • Changes made in Design view does not update on Run

    Hello,
    I add a button, or move some components around has no effect when I run the application. I am using Flash Builder for PHP 4.5 and there is no way to tell FB to compile the mxml file. In other Eclipse distribution, you have Compile and Run. I only have Run.
    Previously, clicking Run would make the changes visible. Now, that does not work. I always see the old view. I have tried doing a Clean, but without success.
    I would appreciate any input on this matter.
    Thank you.

    So again: What did not work:
    1) Clean build
    2) deleting relevant swf files
    Point 2 hinted me what to do. If the file is inexistant and Google Chrome still opened it, then the most probable reason was the cache. After clearing the Chrome cache, my swf files were loaded with the changes I made.
    I have stopped using Chrome now, and back to old Firefox. Firefox is a memory hog, but it just works.
    Hope the above provides help to anybody having the same problem.

  • Can we capture changes made to the objects other than tables using streams

    Hello All,
    I have setup a schema level streams replication using local capture process. I can capture all the DML changes on tables but have some issues capturing DDL. Even though streams are used for sharing data at different or within a database I was wondering if we can replicate the changes made to the objects like views, procedures, functions and triggers at the source database. I am not able to replicate the changes made to the views in my setup.
    Also, when I do a "select source_database,source_object_type,instantiation_scn from dba_apply_instantiated_objects" under the column 'object_type' I just see the TABLE in all the rows selected.
    Thanks,
    Sunny boy

    Hello
    This could be a problem with your rules configured with capture,propagation or apply. Or might be a problem with your instantiation.
    You can replicate Functions, Views, Procedure, Triggers etc using Streams Schema level replication or by configuring the rules.
    Please note that the objects like Functions, Views, Procedure, Triggers etc will not appear in the DBA_APPLY_INSTANTIATED_OBJECTS view. The reason is because you do a schema level instantiation only the INSTANTIATION_SCN in DBA_APPLY_INSTANTIATED_SCHEMAS is accounted for these objects. At the same time tables would get recursively instantiated and you would see an entry in DBA_APPLY_INSTANTIATED_OBJECTS.
    It works fine for me. Please see the below from my database (database is 10.2.0.3):
    on capture site_
    SQL> connect strmadmin/strmadmin
    Connected.
    SQL> select capture_name,rule_set_name,status from dba_capture;
    CAPTURE_NAME RULE_SET_NAME STATUS
    STREAMS_CAPTURE RULESET$_33 ENABLED
    SQL> select rule_name from dba_rule_set_rules where rule_set_name='RULESET$_33';
    RULE_NAME
    TEST41
    TEST40
    SQL> set long 100000
    SQL> select rule_condition from dba_rules where rule_name='TEST41';
    RULE_CONDITION
    ((:ddl.get_object_owner() = 'TEST' or :ddl.get_base_table_owner() = 'TEST') and
    :ddl.is_null_tag() = 'Y' and :ddl.get_source_database_name() = 'SOURCE.WORLD')
    SQL> select rule_condition from dba_rules where rule_name='TEST40';
    RULE_CONDITION
    ((:dml.get_object_owner() = 'TEST') and :dml.is_null_tag() = 'Y' and :dml.get_so
    urce_database_name() = 'SOURCE.WORLD')
    SQL> select * from global_name;
    GLOBAL_NAME
    SOURCE.WORLD
    SQL> conn test/test
    Connected.
    SQL> select object_name,object_type,status from user_objects;
    OBJECT_NAME OBJECT_TYPE STATUS
    TEST_NEW_TABLE TABLE VALID
    TEST_VIEW VIEW VALID
    PRC1 PROCEDURE VALID
    TRG1 TRIGGER VALID
    FUN1 FUNCTION VALID
    5 rows selected.
    on apply site_
    SQL> connect strmadmin/strmadmin
    Connected.
    SQL> col SOURCE_DATABASE for a22
    SQL> select source_database,source_object_owner,source_object_name,source_object_type,instantiation_scn
    2 from dba_apply_instantiated_objects;
    SOURCE_DATABASE SOURCE_OBJ SOURCE_OBJECT_NAME SOURCE_OBJE INSTANTIATION_SCN
    SOURCE.WORLD TEST TEST_NEW_TABLE TABLE 9886497863438
    SQL> select SOURCE_DATABASE,SOURCE_SCHEMA,INSTANTIATION_SCN from
    2 dba_apply_instantiated_schemas;
    SOURCE_DATABASE SOURCE_SCHEMA INSTANTIATION_SCN
    SOURCE.WORLD TEST 9886497863438
    SQL> select * from global_name;
    GLOBAL_NAME
    TARGET.WORLD
    SQL> conn test/test
    Connected.
    SQL> select object_name,object_type,status from user_objects;
    OBJECT_NAME OBJECT_TYPE STATUS
    TEST_VIEW VIEW VALID
    PRC1 PROCEDURE VALID
    TRG1 TRIGGER VALID
    FUN1 FUNCTION VALID
    TEST_NEW_TABLE TABLE VALID
    5 rows selected.
    These Functions, Views, Procedure, Trigger are created on the source and got replicated automatically to the target site TARGET.WORLD. And note that none of these objects are appearing in DBA_APPLY_INSTANTIATED_OBJECTS view.
    I have used the above given rules for capture. For propagation I dont have a ruleset itself and for apply I have same rules as of the capture rules.
    Please verify your environment and let me know if you need further help.
    Thanks,
    Rijesh

  • How to view changes made to Program code in PRD?

    Hi all,
    I'm currently auditing SAP landscape management and noted the following in the PRD environment:
    1. table logging is disabled (transaction SM31)
    2. profile logging is disabled
    3. transaction SM20 doesn't give anything
    4. don't have access to changes with SECR transaction.
    My question is how can I have a population of changes made directly in program codes on PRD? (without going trhough the transport manager).
    SAP R/3 release: 4.5B
    Thanks for your help

    Hi Rainatou,
    Change logs are disabled in PRD considering the database load and performance.
    The changes to program code can be better viewed in DEV by displaying the program,Utilities,Version management.
    If you want to compare to code in DEV and PROD you can use split screen editor (SE39).
    Regards,
    Babul.

  • To view changes made in HU Document

    Hi,
    Please let me know how to view the changes made in the HU document?
    With Regards
    Vinu.N

    Hi Vinu,
    Please try with this
    Go to VL02N enter your delivery document which you want to check the HU changes then go to menu>Environment>Changes sytem will take you to the selection screen here you enter the required data then execute now you can able to see the details about what are all changes have been done for that delivery.
    If HU changes exists those also you can able to see in that.
    I hope it will help you,
    Regards,
    Murali.

  • How to cancel changes that were made via transport request importing?

    Hi!
    Could you please tell me whether it is possible to cancel changes that were made via importing of transport request into the system?
    Thanks and Regards,
    Siarhei

    hi
    the programs maitains the versions ...just check the version managemet..
    regds

  • Looking for a way to view all changes made with subversion [image]

    Hi guys,
    My upfront apologizes if this is not the right forum... I'm using a subversion with eclipse and wonder if there is a better way to VIEW all changes made to my code. Right now, if I wish to know of a change I need to "compare with" and choose a version - this gives me only one file and it's really hard to go through 10+ files.
    Question: is there a better way to do that? meaning a webpage I can refer to and see all code that was changed/added/deleted? (the idea is to look at it at the end of the day and see all changes)
    something that can provide a snapshot like this image.
    The picture above is from Trac but I found it SOO hard to install. Wonder if there's a way just to view changes.
    Thanks for any pointers

    You mean viewing all changes over a codebase, as opposed to a single file?
    I do that like this on the command line:
    svn diff -r1234:1244 path | vi -(where the numbers are whatever revision numbers I want to compare, and "path" is a path under source control)
    I'll bet you can configure Subversion to take a diff tool that you specify.
    If you want to do this under Eclipse specifically... then you probably want to check with an Eclipse forum somewhere. Eclipse is not a Sun/Oracle product, so it's not here. Try eclipse.org, probably.

  • I cannot save any changes made in the Preferences box. I go to Edit, then Preferences. When the window opens, I can check or uncheck boxes in the General window BUT, there are no Cancel or OK buttons at the bottom of the window. HELP!!

    There are no "Cancel" or "OK" buttons at the botton of my "Preferences" box that allow me save any changes that I might mak in the "General" window.  The box opens without problem and changes can be made in the "General" window however, these changes cannot be saved.  If I close the window with the "X" in the upper right hand corner and then reopen it, any changes made are lost.  I'm running Windows XP and would appreciate any help that I can get.

    I would like to change the "When you insert a CD:" option
    Oh good, that one's pretty straightforward. When you make that change in the pane, the OK is the active button. For example, I just quickly changed mine to "Import CD and Eject", and you can see that the OK button is blue in my screenshot:
    ... so to make that setting stick, all you need to do is to hit your "Enter" key, and that should press the OK.
    Unfortunately, I don't have any music in the iTunes library on the PC I'm working from at the moment. So I can't check my "Automatically download album artwork" checkbox.
    Ed, could you check for us which item is active after changing that setting? (If it's the OK button, then hitting enter should press the invisible button, just like "When you insert a CD".)
    Changing "Import Settings" is trickier, because after you get out of the "Import Settings" subdialog, the "Import Settings" button is active. So you then have to hit the tab key precisely five times (to get OK active again) and then hit Enter to get Import Settings changes to stick.

  • RH8--Changes made to HTML not persistent in HTML viewer

    During our pre-release QA, we discovered that many of our topics had lost the line of code that called the ehlpdhtm.js file:
    <?rh-script_start ?><script src="../ehlpdhtm.js" type="text/javascript"
            language="JavaScript1.2"></script><?rh-script_end ?>
    I'd run into this problem before and knew the fix was to add this string in just below the <body> tag. The good news is the fix works.
    The wierd news is, the changes disappears from HTML view when you save &check the topic back in to RSC. Opening the topic in an external editor proves the topic  was modified, and the next build propagates the change as desired, but even clearing the project files an reloading from source control doesn't display the change in the HTML viewer.
    Does RH store that view somewhere? We have the option checked to rebuild the .cpd file every time we get the file out of Source Control. I've also filed this as a bug with Adobe.
    .MW

    You cannot edit messages in place. You need to copy them and send them to the same or another queue.
    JMS != JDBC...
    Regards,
    Colin.
    http://hermesjms.com

  • An Unauthorized changes made with windows

    We have a running live server. Today we got a message " An Unauthorized changes made with windows ".There are online two option left for us. First on is Lean More from Online & second one is close. If we go with close button it will automatically
    turn to log off. Please help it depend our credibility question.

    Hi,
    I suggest you to reboot the server in safe mode, if this error message won’t display, disable any antivirus and observe again.
    If this problem still exists in safe mode, is there any detailed information or error code followed by the message ”An Unauthorized changes made with windows”?
    Open Event Viewer ->Windows Logs, according to the
    Time and Data of the records, check to see if there is warning or error message related to this problem.
    Regards,           
    Eve Wang

  • Swing .............how to undo the changes made by user

    Hi,
    i have created a form in swing asking for the related information from user whose value i m taking in jformetted textfield.
    now i have placed two buttons there.
    one is Apply and second is Cancel.
    when user pressed Apply button all the changes made by the user must be set where as if user clicks cancel button all the changes made by user should be undo to previously set value.
    can anybody help me how this can be done and what code should i write in action performed method
    thanks in advance
    plz reply

    thanx.
    one more thing
    In my application,there is one Button called Option when u clicked on it.It opens up one internal frame where user is asked to asked to fill some parameters.
    1) Now how can i restrict user to create one more internal frame unless first one is closed.
    2) suppose i clicked option button and it opens up internal frame where i can set the parameters and closed it.If i again click on option then i want the parameter to have wht i just set.
    3) and how can pass those parameters value to my main frame from where i m calling internal frame
    Plz reply
    Edited by: neel007 on Mar 11, 2009 8:02 PM

  • Pages - Eliminate save prompt when closing file with no changes made

    Hey everyone -
    This isn't really a question thread, but rather a solution I built to eliminate one of Page's annoyances.
    This problem has been encountered before, but the question isn't truly ever answered. I would reply to those (they're the top results in Google), but because they are archived I can't change them at all.
    The Problem:
    Even after disabling the .pages prompt, it still prompts to save files just before I close them. The exact message is: Do you want to save the changes made to the document "some_document"?
    Details:
    System Version:          OS X 10.9.1 (13B42)
    Kernel Version:          Darwin 13.0.0
    Pages Version: 5.0.1
    The Solution:
    Create a workflow.
    Open Automator, select New Document.
    Select Service, then click Choose.
    Set Service Receives to "no input" and change the "in" drop down list to "Pages.app".
    Next, search for Quit Application, put it in there.
    Set this to Pages.app, and ensure the box "Ask to save changes" is unchecked.
    Save it. I believe there is a default location, so don't specify a path. Give it a name. Quit Automator.
    Assign a keyboard shortcut to the workflow.
    Open System Preferences > Keyboard > Shortcuts.
    Go to Services on the left hand panel.
    Scroll to the bottom.
    Under General, you should see the workflow you created. Mine was called "Quit Pages".
    Click it, then select the Add Shortcut button.
    Give it a rarely used shortcut. I chose ⌘⇧X, but you're welcome to do whatever you like.
    Quit System Preferences.
    At this point, it should work. Open up Pages, open a new document, then do the shortcut. It should exit without any issue. However, I did not like having to learn a new shortcut just to pull this off. So I did this:
    Use BetterTouchTool to configure it properly.
    Download BetterTouchTool and install it.
    Open it up.
    Go to the Basic Settings tab, and ensure the "Launch BetterTouchTool on startup" is checked.
    Click the Gestures tab.
    Select Keyboard in the horizontal bar.
    On the left hand panel, near the words "App Specific", click the plus symbol. This should allow you to add an application.
    Select Pages.
    Click the Pages application in the left hand panel (if it is not already).
    At the bottom of the main panel, click "Add new shortcut".
    Keyboard shortcut: ⌘Q
    Trigger other keyboard shortcut: ⌘⇧X (or whatever you used in System Preferences).
    Quit the application.
    Open it back up. It should now be running in your Menubar.
    Now, if you open a .docx document with Pages, then hit ⌘Q, it should exit without any fuss. HOORAH!
    Granted, this does have a few tradeoffs. If you go to Pages > Quit, it will still prompt you. Also if you want to close the current window (⌘W), it will still prompt you.

    You get this behavior if the file which you opened is not a Pages '09 one.
    If it is a Pages '08 one, it must be entirely transcoded so it's a modified document and given that, the program must ask you to save it.
    If you save it as a Pages '09 document, you will no longer be asked to save (in these conditions).
    Yvan KOENIG (from FRANCE mercredi 11 février 2009 23:16:00)

  • Changes made in symbol does not show?

    Hi, I recently started working with adjusting a template with flash 8. Everything went smoothly except for one thing. I changed one certain symbol in my libray and when i exported the movie (after changing) i dont see the changes in my website. Other buttons, symbols etc immediatly show there adjustments and this just keeps on remaining the same? Anybody knows what to do with this? Please reply!

    Hi,
    I tried clearing the cache before. No success. The symbols that does not
    seem to change are on the website. I searches the whole library and the
    page i want to change i nowhere to be found (except for the symbols that
    does not show the changes). I hope to hear from you (and anyone) soon!
    2012/2/17 kglad <[email protected]>
       Re: Changes made in symbol does not show?  created by kglad<http://forums.adobe.com/people/kglad>in
    Flash Pro - General - View the full discussion<http://forums.adobe.com/message/4213017#4213017>

Maybe you are looking for