Pause state in palm

how do i pause the state of my application running in palm when the user hits the home button or any other buttons not from my application?
kinda like halfway using the app, user wants to view the menubar, or goes to the home page of palm to use other applications without properly selecting exit from my application.
thanks.

Sorry, there's no pause state. Since only one application can be running at one time on the Palm the application cannot be placed in the pause state. What I have done is save the state to an RMS database and look for that on startup of the application.

Similar Messages

  • Access is denied messages in Win2012 R2 Failover Cluster validation report and CSV entering a paused state

    Been having some issues with nodes basically dropping out of clusters config.
    Error showing was
    "Cluster Shared Volume 'Volume1' ('Data') has entered a paused state because of '(c000020c)'. All I/O will temporarily be queued until a path to the volume is reestablished."
    All nodes (Poweredge 420) connected a Dell MD3200 shared SAS storage.
    Nodes point to Virtual 2012 R2 DC's
    Upon running validation with just two nodes, get the same errors over and over again.
    Bemused!
    List Software Updates
    Description: List software updates that have been applied on each node.
    An error occurred while executing the test.
    An error occurred while getting information about the software updates installed on the nodes.
    One or more errors occurred.
    Creating an instance of the COM component with CLSID {4142DD5D-3472-4370-8641-DE7856431FB0} from the IClassFactory failed due to the following error: 80070005 Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)).
    and
    List Disks
    Description: List all disks visible to one or more nodes. If a subset of disks is specified for validation, list only disks in the subset.
    An error occurred while executing the test.
    Storage cannot be validated at this time. Node 'zhyperv2.KISLNET.LOCAL' could not be initialized for validation testing. Possible causes for this are that another validation test is being run from another management client, or a previous validation test was
    unexpectedly terminated. If a previous validation test was unexpectedly terminated, the best corrective action is to restart the node and try again.
    Access is denied
    The event viewer on one of the hosts shows
    Cluster node 'zhyperv2' lost communication with cluster node 'zhyperv1'.  Network communication was reestablished. This could be due to communication temporarily being blocked by a firewall or connection security policy update. If the problem persists
    and network communication are not reestablished, the cluster service on one or more nodes will stop.  If that happens, run the Validate a Configuration wizard to check your network configuration. Additionally, check for hardware or software errors related
    to the network adapters on this node, and check for failures in any other network components to which the node is connected such as hubs, switches, or bridges.
    The Cluster service is shutting down because quorum was lost. This could be due to the loss of network connectivity between some or all nodes in the cluster, or a failover of the witness disk.
    Run the Validate a Configuration wizard to check your network configuration. If the condition persists, check for hardware or software errors related to the network adapter. Also check for failures in any other network components to which the node is connected
    such as hubs, switches, or bridges.
    Only other warning is because the 4 nic ports in each node server are teamed on one ip address split over two switches - I am not concernd about this and could if required split then pairs, I think this is a red herring????

    Hi,
    Such events happen because of the following reason:
    1- Client for Microsoft Networks and File and Printer Sharing for Microsoft Networks not enabled on all network interfaces. Check this KB article: http://support.microsoft.com/kb/2008795
    . Please make sure these two protocols are enabled on all cluster networks
    2- Network connectivity issue can cause this event as well. Please make sure the network cabling/Cards/Switches are correctly configured and working as expected
    3- Connectivity issue with the storage can also cause this event. Please make sure all the nodes are connected to storage. Check HBA/Cabling connectivity to SAN. Make sure
    that the SAN drivers are up-to-date.
    4- Antivirus may interrupt network communication and cause this failure. Please exclude CSV volumes from being scanned by AV: http://social.technet.microsoft.com/wiki/contents/articles/953.microsoft-anti-virus-exclusion-list.aspx
    5- Disable TCP Chimney related settings on all cluster nodes. http://support.microsoft.com/kb/951037
    6- Please check the Network Binding Order (http://social.technet.microsoft.com/Forums/windowsserver/en-US/2535c73a-a347-4152-be7a-ea7b24159520/hyperv-r2-csv-cluster-recommended-binding-order?forum=windowsserver2008r2highavailability)
    7- Firewall Rules For All Inbound and Outbound For Cluster and Hyper-V for all the Profiles
    8- Update NIC Driver/Firmware.
    9- Check Compatibility of the NIC with Windows Server 2012R2
    10- Set-NetAdapterRss - Resources and Tools for IT Professionals | TechNet : http://technet.microsoft.com/en-us/library/jj130863.aspx
    11- Check the Following Article http://social.technet.microsoft.com/Forums/windowsserver/en-US/e06fede9-931c-4dee-8379-4fd985e20f0a/hypervvmswitch-eventid-106
    12- General Updates to be applied on the nodes :
    Windows RT 8.1, Windows 8.1, and Windows Server 2012 R2 update rollup: November 2013 : http://support.microsoft.com/kb/2887595
    Windows 8.1 and Windows Server 2012 R2 General Availability Update Rollup :
    http://support.microsoft.com/kb/2883200
    Hope this helps.
    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.

  • Trying to understand the PAUSE statement

    I am trying to use the following code:
    SET SERVEROUTPUT ON VERIFY OFF
    ACCEPT i_name PROMPT 'Enter your name: '
    DECLARE
         v_name VARCHAR2(30) := '&i_name';
    BEGIN
         dbms_output.put_line('This is right before the PAUSE.');
         PAUSE 'Adjust paper and press RETURN to continue.';
         dbms_output.put_line('Your name is: ' || v_name);
    END;
    /But I am receiving these errors:
    ORA-06550: line 5, column 8:
    PLS-00103: Encountered the symbol "Adjust paper and press RETURN to continue."
    when expecting one of the following:
    := . ( @ % ;
    The symbol ":=" was substituted for "Adjust paper and press RETURN to
    continue." to continue.Am I allowed to use the PAUSE statement within the PL/SQL block, or does it have to be before the DECLARE statement?
    If I am allowed to use it within the block, then why am I receiving an error? I tried both with and without the semicolon at the end of the PAUSE statement.
    On this site: http://download.oracle.com/docs/cd/A87860_01/doc/server.817/a82950/ch8.htm#1001319 it has the following example:
    SET PAUSE OFF
    PAUSE Adjust paper and press RETURN to continue.
    SELECT ...But why would you turn the pause OFF? And then when do you turn it ON? Also, that example seems to conflict with the advice listed here: http://download.oracle.com/docs/cd/B19306_01/server.102/b14357/ch12040.htm#i2699261
    Which says: "You need to first, SET PAUSE text, and then SET PAUSE ON if you want text to appear each time SQL*Plus pauses."

    Pause is a sqlplus command so, no you cannot use it in a PL/SQL block. It is used to stop the display from scolling, generally after pagesize lines. It can also be used, as in the example you posted to stop the display and give some feedback to the user.
    The set pause off command will make sqlplus display all the output without stopping. The explicit pause <text> is a command that stop the display. You can set pause on so the display will stop after every pagesize lines. You can also do something like set pause Press any key to see more and the display will pause after pagesize lines anf disply the text in the set pause command as a prompt.
    You do know that this is all documented in the SQL Plus Users Guide right?
    John

  • System is in an paused state

    Our Sun "hibernates" quite often we use our sun primairly for HPOV.
    When it "hybernates" We do not receive alarms and traps from our Global Network.
    I need to stop HPOV
    When I do so i get the following response.
    "The system is in an paused state. 'ovstop' will still proceed.
    I believe this "paused state" is causing our HPOV to stop receiving alarms etc..
    Does anyone have any idea why this system is in a paused state, and how I can stop that!!!
    ThanX Patrick

    Hello, 
    Please try the below mentioned steps that should resolve the issue.
    Power Off the Computer.
    While the printer is ON, remove the ink cartridges and the papers
    While the printer is ON, unplug the power cord from back of the printer and also unplug any other cable from the back of the printer ( like USB/Ethernet/Fax cables)
    Wait for 60 seconds.
    Plug in the power cord to the printer. If printer does not power on automatically then hit the ON button.
    Install the cartridges when prompted.
    When the printer is steady only then connect the USB cable.
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • TS1702 Why are my apps updates and apps remaining in the "waiting" and "pause" state?

    I get update notices for my apps but when I click to update my apps remain in the "waiting" and "Pause" state.
    I have tried powering down my phone and restarting it to see if that will resovle the problem but it's not correcting the problem.
    I have deleted several apps just to remove them. 
    Anyone have any suggestions?
    Glam33

    Try tapping the App, so that it changes to Paused instead of Waiting, then tap it again to resume the install.
    Make sure you don't have any paused downloads in other apps either, like the iTunes Store.
    You can also try resetting or restoring the iPhone.
    And, if that doesn't do it, try contacting Apple through Express Lane.

  • Parent Concurrent Program executes  rest of the logic  before PAUSED STATE.

    Procedure parent_cp (errbuf out nocopy varchar2, retcode out nocopy varchar2) IS
    ret number;
    i number;
    BEGIN
    fnd_msg_pub.initialize;
    BEGIN ---Block A
    req_data := fnd_conc_global.request_data;
    if (req_data is not null) then
    i := to_number(req_data);
    if (i < 5 ) then
    errbuf := 'Done!';
    retcode := 0 ;
    return;
    end if;
    else
    i := 1;
    end if;
    for i in 1 .. 4 loop
    ret := fnd_request.submit_request('CZ', 'Child','Delete Localized Text - Child Number : ' ||TO_CHAR(vChildNo), NULL,TRUE, vChildMdlRange);
    fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(vChildNo)) ;
    IF (ret = 0 ) THEN
    errbuf := fnd_Message.get;
    retcode := 2;
    ELSE
    errbuf := 'Sub-Request submitted!';
    retcode := 0 ;
    END IF;
    END LOOP;
    END;
    BEGIN ---block B
    dbms_output.put_line(' Block after submitting Child CP ');
    END;
    END parent_cp;
    when i execute the above Parent CP ,it submitted 4 Child CPs and Parent CP went into Pause state. Before Parent CP went into Pause state it executed the Block B.
    My Requirement is it should execute the block B after completion of all child CPs.
    Please suggest how to achieve the above requirement.
    Thanks,
    Murali.

    Procedure parent_cp (errbuf out nocopy varchar2, retcode out nocopy varchar2) IS
    ret number;
    i number;
    BEGIN
    fnd_msg_pub.initialize;
    BEGIN ---Block A
    req_data := fnd_conc_global.request_data;
    if (req_data is not null) then
    i := to_number(req_data);
    if (i < 5 ) then
    errbuf := 'Done!';
    retcode := 0 ;
    return;
    end if;
    else
    i := 1;
    end if;
    for j in 1 .. 4 loop
    vRequestId(j) := fnd_request.submit_request('CZ', 'Child','Delete Localized Text - Child Number : ' ||TO_CHAR(vChildNo), NULL,TRUE, vChildMdlRange);
    fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(vChildNo)) ;
    IF (vRequestId(j) = 0 ) THEN
    errbuf := fnd_Message.get;
    retcode := 2;
    ELSE
    errbuf := 'Sub-Request submitted!';
    retcode := 0 ;
    END IF;
    END LOOP;
    END;
    BEGIN ---block B
    For j in vRequestId.FIRST..vRequestId.LAST LOOP
    fnd_file.put_line(fnd_file.log,' reuest' || vRequestId(j));
    vrequeststatus := fnd_concurrent.get_request_status(vRequestId(j),
         NULL,
    NULL,
         phase,
         status,
         dev_phase ,
         dev_status ,
         message );
    WHILE (dev_phase != 'COMPLETE') LOOP
    fnd_file.put_line(fnd_file.log,' while loop' || vRequestId(j));
    vrequeststatus := fnd_concurrent.wait_for_request(vRequestId(j),
    60,
         10,
         phase ,
         status ,
         dev_phase ,
         dev_status ,
         message );
    END LOOP;
    END LOOP;
    dbms_output.put_line(' Block after submitting Child CP ');
    END;
    END parent_cp;
    The above procedure was the Parent CP. Here the problem is in fnd_request.submit_request('CZ', 'Child','Delete Localized Text - Child Number : ' ||TO_CHAR(vChildNo), NULL,TRUE, vChildMdlRange); i have given sub_request as True and used fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(vChildNo)) ; to make parent CP to pause it.
    It submits 4 child CPs as expected but the phase as INACTIVE and status NO MANAGER and PARENT CP was always in running state.
    If i make sub_request parameter of fnd_request.sub_request to FALSE . It submits 4 child CPs as expected with the phase as PENDING and status NORMAL and PARENT CP was always in running state. But child cps are never changing the Phase as RUNNING. It is always in PENDING STATE.
    Please suggest how to use fnd_conc_global.set_req_globals and fnd_concurrent.wait_for_request together.

  • Losing Access to Cluster Shared Volumes: Cluster Shared Volume 'Volume1' ('CSV Disk1') has entered a paused state because of '(c0000435)'

    Hi,
    Just built a Server 2012 R2 Hyper-V failover cluster connected to Equallogic 4110 storage arrays with latest firmware and HIT kits. 
    When creating a clone or vm from a template we see that the cluster loses access to the storage csv volume that is hosted on the equallogic storage with the following errors:
    Cluster Shared Volume 'Volume1' ('CSV Disk1') has entered a paused state because of '(c0000435)'. All I/O will temporarily be queued until a path to the volume is reestablished.
    Can anyone shed any light onto this issue?
    Full details below:
    Log Name: System
    Source: Microsoft-Windows-FailoverClustering
    Date: 06/08/2014 09:31:17
    Event ID: 5120
    Task Category: Cluster Shared Volume
    Level: Error
    Keywords: 
    User: SYSTEM
    Computer: SVR1
    Description:
    Cluster Shared Volume 'Volume1' ('CSV Disk1') has entered a paused state because of '(c0000435)'. All I/O will temporarily be queued until a path to the volume is reestablished.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Microsoft-Windows-FailoverClustering" Guid="{BAF908EA-3421-4CA9-9B84-6689B8C6F85F}" />
    <EventID>5120</EventID>
    <Version>0</Version>
    <Level>2</Level>
    <Task>38</Task>
    <Opcode>0</Opcode>
    <Keywords>0x8000000000000000</Keywords>
    <TimeCreated SystemTime="2014-08-06T08:31:17.330643100Z" />
    <EventRecordID>36230</EventRecordID>
    <Correlation />
    <Execution ProcessID="2336" ThreadID="3524" />
    <Channel>System</Channel>
    <Computer>SVR1</Computer>
    <Security UserID="S-1-5-18" />
    </System>
    <EventData>
    <Data Name="VolumeName">Volume1</Data>
    <Data Name="ResourceName">CSV Disk1</Data>
    <Data Name="ErrorCode">(c0000435)</Data>
    </EventData>
    </Event>
    Microsoft Partner

    Hi rEMOTE_eVENT,
    Could you tell us how you clone a vm “When creating a clone or vm from a template” , did your cluster can pass the cluster validation test, the copied vm have the same
     BIOSGUID information and etc. Please try to use the general installed system to install failover cluster.
    More information:
    How to use uniquely identify a virtual machine in Hyper-V
    http://blogs.technet.com/b/jhoward/archive/2008/09/16/how-to-use-uniquely-identify-a-virtual-machine-in-hyper-v.aspx
    The similar thread:
    How to Clone VMs in Hyper-V
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/67c4c555-14fd-4164-bf5b-59ce883c8b18/how-to-clone-vms-in-hyperv?forum=winserverhyperv
    I’m glad to be of help to you!
    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.

  • Konica Minolta bizhub C353 going in to a pause state several times a day.

    I have a client with a mixed 10.5 and 10.4 network. Since installing a Konica Minolta bizhub C353 MFP we've been having an issue with the NIC on the MFP locking up (not responding to pings, web utils not coming up) and the print queue showing the machine in a paused state. I am certain that the issue is not related to the MFP because we swapped an identical MFP of the clients from another location and the issue remained on the original network (i.e. the MFP having the problem worked fine at the new location that the MFP not having the problem started screwing up).
    A recent packet capture showed that a print job being sent from a workstation using a CUPS based print driver instead of the Konica Minolta driver. The print request has several commands preceding it that are NOT generated by the Konica Minolta driver. These commands actually prevented the document from being distilled from the captured packets and once we removed the commands we were able to distill the document.
    So question one is: does OSX use CUPS when printing from a generic driver? Question two is: has anyone had issues with using a generic print driver such as network lockups and the like?

    The Console application is located in Application > Utilities.
    A good trick on the Mac to open applications is to use Spotlight - the little magnifying glass in the top right hand corner.
    To open, either click on the icon or press Command Space. Then type in cons and you will see a list of hits, Console being one of them. Select it and the application will open.
    Console is like Windows Event Viewer. Just about everything that goes on the Mac is logged and Console lets you see that.
    With Console open, expand the entry /var/log. You should see the cups entry. Expand this and you will see the error_log. It may not mean much to you at first but the trick is to look at the left side of the right hand pane. You will see heaps of I's, meaning information, and if there are any errors they will start with an E.
    Note that the start of every job is with the creation of a banner page (a leftover from UNIX days). This can also help you find your way around the log. It will also show all the filters and plugins that are being called for that job and may help identify the extra stuff you were seeing with the sniff, although this could have been a port check to make sure the socket was open.
    As for the KM driver, it is often not a bad idea to use a generic driver when troubleshooting, but of course this will not provide the user with all the features of the printer - such as finishing options. So that is why I say it is for troubleshooting. If the generic driver works but the vendor provided doesn't, then you have narrowed down your causes. You'd be surprised by how easy most drivers are to install. But unlike Windows it is a two step process - install the driver software first and then add the print queue. If you find a C353 driver for OS X, then it will probably have an installer that you run (by double-clicking) and this will copy all the relevant driver files to the Mac. Note that you will have to authenticate with an admin account, just like Vista, to run the installer.
    Hope this helps you a bit more. Feel free to ask more questions if you need to.
    Pahu

  • HP Laserjet 3030 always goes in pause state

    Hi all,
    since install Snow Leopard my usb printer does not print. All job send go in pause state. Problems remain changing usb port or using another Hp printer driver.
    On system error log at the end find: /usr/libexec/cups/backend/usb failed
    On machine is also installed VirtualBox. Inside it I set a Windows Xp virtual machine: from there my Hp 3030 printer function correctly.
    Anyone may help me?
    thanks

    Delete all of the bundles starts with "hp" (or "HP") in /System/Library/Extensions, reboot your computer, then run software update (in which you should see a HP driver update, install it).

  • Cleaned Workflow History List - Workflow Pausing State failed to resume

    Hi All,
    SPD workflow is pausing for some duration once it resume send mail and pause again as per some business condition, it repeat 9-10 times only.
    Pausing duration is 1 week
    Couple of months, It was working fine, then suddenly it starts showing the status "Failed to Start (retrying)" getting a result but not 100% accurate, some times its start  firing unwanted mails to target audience.
    Then I checked all the jobs which were running ,but workflow history list was showing more than 100K + records and exceeding threshold limit i.e. 5K, then i delete the record from the workflow history list and figure come down to 1K only. After that,
    as i created the item and start same workflow, its never resume , even i pause it for 10 minutes and checked after 2 days, still in pausing state.  I spend 3-4 days to explore it. but didn't get any success . Please suggest for the same.
    Thanks and Regards.. 
    Manoj Mittal

    Hi Cowboy,
    Per my knowledge, if we delete the workflow history list items, it will not affect the workflows waiting to be triggered.
    However, if you go to the workflow status page, the history will be empty as the events 
    have been deleted in workflow history list.
    The code in your post will delete 2000 items in workflow history list.
    As there is no status for the items in workflow history list, so I recommend to use the date as the query condition.
    For example, if you want to delete items created between 2015-02-01 and 2015-02-16, then you can change the query as below in your code:
    $query="<Where><And><Geq><FieldRef Name='Created'/><Value Type='DateTime'>2015-02-01T00:00:00Z</Value></Geq><Leq><FieldRef Name='Created' /><Value Type='DateTime'>2015-02-01T00:00:00Z</Value></Leq></And> </Where>"
    $spQuery=$query
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Pause statement in java?

    I was wondering if there is code in java to "pause" a program, just like C has getch() or system(pause) etc. ?
    Because in my program I need to prompt user if he/she wants to continue.
    -thanks

    System.out.print("Do you wish to continue (y/n)?");
    char c = (char) System.in.read();
    System.out.println("\nContinuing on...");

  • Child CPs are always in PENDING STATE.

    Procedure parent_cp (errbuf out nocopy varchar2, retcode out nocopy varchar2) IS
    ret number;
    i number;
    BEGIN
    fnd_msg_pub.initialize;
    BEGIN ---Block A
    req_data := fnd_conc_global.request_data;
    if (req_data is not null) then
    i := to_number(req_data);
    if (i < 5 ) then
    errbuf := 'Done!';
    retcode := 0 ;
    return;
    end if;
    else
    i := 1;
    end if;
    for j in 1 .. 4 loop
    vRequestId(j) := fnd_request.submit_request('CZ', 'Child','Delete Localized Text - Child Number : ' ||TO_CHAR(vChildNo), NULL,TRUE, vChildMdlRange);
    fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(vChildNo)) ;
    IF (vRequestId(j) = 0 ) THEN
    errbuf := fnd_Message.get;
    retcode := 2;
    ELSE
    errbuf := 'Sub-Request submitted!';
    retcode := 0 ;
    END IF;
    END LOOP;
    END;
    BEGIN ---block B
    For j in vRequestId.FIRST..vRequestId.LAST LOOP
    fnd_file.put_line(fnd_file.log,' reuest' || vRequestId(j));
    vrequeststatus := fnd_concurrent.get_request_status(vRequestId(j),
    NULL,
    NULL,
    phase,
    status,
    dev_phase ,
    dev_status ,
    message );
    WHILE (dev_phase != 'COMPLETE') LOOP
    fnd_file.put_line(fnd_file.log,' while loop' || vRequestId(j));
    vrequeststatus := fnd_concurrent.wait_for_request(vRequestId(j),
    60,
    10,
    phase ,
    status ,
    dev_phase ,
    dev_status ,
    message );
    END LOOP;
    END LOOP;
    dbms_output.put_line(' Block after submitting Child CP ');
    END;
    END parent_cp;
    The above procedure was the Parent CP. Here the problem is in fnd_request.submit_request('CZ', 'Child','Delete Localized Text - Child Number : ' ||TO_CHAR(vChildNo), NULL,TRUE, vChildMdlRange); i have given sub_request as True and used fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => to_char(vChildNo)) ; to make parent CP to pause it.
    It submits 4 child CPs as expected but the phase as INACTIVE and status NO MANAGER and PARENT CP was always in running state.
    If i make sub_request parameter of fnd_request.sub_request to FALSE . It submits 4 child CPs as expected with the phase as PENDING and status NORMAL and PARENT CP was always in running state. But child cps are never changing the Phase to RUNNING. It is always in PENDING STATE.
    Please suggest how to use fnd_conc_global.set_req_globals and fnd_concurrent.wait_for_request together.

    Pl do not post duplicates - Parent Concurrent Program executes  rest of the logic  before PAUSED STATE.

  • How to get out of pause until date if target is achieved?

    Hi,
    We are developing a SharePoint Designer 2013 platform workflow on Office 365 SharePoint Online. Following is what we are trying to achieve:
    Document Library workflow.
    There are 3 users involved e.g. UserA, UserB and UserC.
    There are 2 content types e.g. Notification Letter and Statement Method.
    As soon as UserA uploads/adds a document the workflow kicks-off.
    An email is sent to UserB where he verifies it and select a dropdown verification complete.
    This workflow also kicks-off on item change hence it creates a task process and assign UserC a task.
    If UserC rejects the task, the email is sent to UserB and he has to resubmit.
    However if UserC approves it then it goes to the approval folder.
    In the above process we need to have reminders/notifications to UserC. There are 3 reminders. As soon as the document is added the document should be sent to the approval folder within 30 days (cut off) from the item creation date. First reminder 7
    days before the cut off date. Second reminder 2 days before the cut off date. Finally the last reminder on the cut off date itself.
    If I set Pause Until Duration event then the workflow as expected doesn't do anything till the date. How to break the Pause Until Duration if the UserC approves the task within the date range before cut off date.
    I was thinking of loop but couldn't figure out how to achieve it in a better way.
    Thank you
    Tanzim
    Tanzim Akhtar

    http://blog.qumsieh.ca/2012/01/27/sharepoint-designer-workflow-pause-until-date-change/
    Here the user break the pause duration using code. if you don't want to code means just split the workflow into two
    One for managing approval
    One for managing Email
    So that the pause state in email workflow will not affect the approval workflow.
    Also in Email workflow we have check the approval and moved status so it will not send the remainder mail to approved request
    Ravin Singh D

  • IPhone & Universal Dock - No video out after resume from pause

    OK - original 16GB iPhone, latest universal dock and Apple Composite cable, hooked to a 42" Sony LCD TV. iPhone is at latest revision.
    Used to be that if I used the remote to pause a video, I could wander off, make a cup of coffee, and when I came back, even though the iPhone was locked, I could press play on the remote and carry on where I Ieft off. Recently though, when I try to resume from the paused state, I get sound but no video and I have to walk over to the docked iPhone, unlock it, and then I get video out.
    I can only assume that this bug was introduced (or the previously working feature was removed) by a software update. Whatever the cause, it is a pain.
    The cynic in me would assume that it is Apple's sneaky way of reducing the feature set to below the minimum expected so as to drive users to buy an Apple TV. The optimist in me assumes it is a bug and it CAN BE FIXED IN THE NEXT RELEASE!
    Anybody else experienced this issue?
    Message was edited by: TheFamousJames

    I also believe this is a bug, but I found a workaround. I after starting the video you press the wake-up button, the iPhone screen goes off, but the video keeps playing. Now if you pause using the remote, you can also resume using the remote without having to unlock the iPhone.
    The weirdest thing about this is that after doing it once, you can unlock you iPhone and be able to pause and resume as expected. As soon as you change the video (that is, you turn the video out off) the iPhone forgets what he just learned and doesn't resume from the remote again.
    So as a rule I always turn the iPhone screen off after starting a video. So I'm able to use my remote nicely. I hope this works for you too... and that it gets corrected in the next SW version!

  • Workflow email reminders on calculated date column - Paused

    I am having an issue in trying to setup a SP designer workflow to be able to send a notification if an approval is not met by a certain date. I was hoping someone could point out where I am going wrong with the
    workflow details below?
    The workflow is based off an infopath form. The form when submitted sends an email to the appropriate person that an action is required (which works fine). I
    have created a calculated column (Reminder-2A) which is [Created]+20. So the approver has 20 days to approve the form. The workflow is required to send a notification to the user if the form has not been approved.
    I have tried to use the "Start on item change" workflow context & paused the workflow until the ReminderDate is greater than or equal today. There are 2 steps for this approval so I have 2 approval steps based off the FormStatus when the approval
    takes place.
    So the issue stems from the first step not getting released from its pause state. I was hoping that once the form is approved the FormStatus field would force the workflow to complete that step (unpause) and move to the next step but how I have it currently,
    it does not work that way. Can someone point me in the right direction as how I go about achieving this?
    I have attached a snippet of the 2 stage approval and the workflow state on the SharePoint site
    Many thanks

    Hi Luca,
    I think you can use event handler associated with item for item changed. Every time an item has been edited, check whether a workflow instance is still running. If so, cancel the running workflow. This link would help you. http://chrissyblanco.blogspot.com/2007/08/cancelling-running-workflow.html
    If you don't want to go for coding, you can try below approach, SP designer workflows have this behavior that they do not stop when the item is updated.
    Create 2 lists (parent and child) and a workflow on each (wf1 and wf2) respectively. When your condition meets in the workflow(wf1) of parent list, create an item in child list on which the wf2 workflow starts and pauses till the specified date. Once the
    pause is completed, you can send the mail from workflow 1 or 2 and then delete the item in child list.
    Modify your Parent list workflow to handle the below scenario. If you ever update the item in parent list, delete the corresponding item in child list that was paused/waiting and create a fresh one.
    You need to store the fields Parent list Item ID, version(optional).
    Parent list is your actual list. Child list is a staging one which you never expose to anyone.
    Thanks Sandy

Maybe you are looking for

  • Problems viewing pdfs after upgrade to acrobat reader 8.0

    After uograding to acrobat reader 8.0, employees are getting garbage characters when they open docs created in acrobat 7.0.  Everyone is running Windows XP.  They have saved docs to desktop and tried to open but still no luck... any suggestions?

  • Need help with a simple basketball game.

    Hi im new here and I need help with making this simple basketball game. Im trying to recreate this game from this video. Im not sure if he is using as2 or as3 Or if anyone could help me make a game like this or direct me to a link on how to do it It

  • Playing quicktime files from 1998

    I have a CD with some Quicktime files on that appear to have been created in 1998. Quicktime tries to play them but I can only get sound and no picture. Any suggestions about how I can play them fully? I'm using Quicktime 7.4.1.

  • Using Automator to Rename Files

    I can't figure out how to rename files so that the number in the name is in parentheses. For example Dog 1.jpg should be changed to Dog (1).jpg. How can I accomplish this in Automator?

  • Web pages load SLOW on IPad: how to disable DNS prefetching; other ideas?

    Brand new IPad 16 GB WiFi + brand new Airport Extreme in bridge mode. Comparing IPad web page load speeds with side-by-side WinXP computer running IE8. Any web site will do: take www.apple.com if you want. Problem: IPad web pages generally load much