All operations that will force quiescence in a workflow

I have the following list of operations that will force quiescence ...
1) Timed Event actions
2) Set Due Date actions
3) Assign Task... actions
4) Send XML to Client actions
5) Event nodes
6) Done nodes
Is there anything that I am missing?
Also if someone can shed some light on the significance of the "Post
External XML Event" viz-a-viz quiescence and transaction boundries. I am
specifically interested in finding out if what happend when the transaction
mode for the "Post External XML Event" is set to "send immediately"... Will
this cause a transaction to end for the sake?
Regards,
Raoon Kundi

Raoon Kundi,
You can specify whether you want the message to be sent immediately, or when the
current transaction containing the Post XML Event action commits. Sending the
message immediately sends the message whether or not the transaction completes.
Sending the message on commit ensures that the message is sent only if the transaction
completes successfully and a commit is issued. If the transaction is unsuccessful
and is rolled back, the message is not sent. The default is when the transaction
commits. For more information on workflow transaction boundaries, see Understanding
the BPM Transaction Model in Programming BPM Client Applications.
Advantage of Post Immediate(immediate)
 Performance improvements in one-way asynchronous requests where an event
may be fired before transaction commits.
Caveats with Post Immediate
 Duplicate Messages: Messages may be redelivered, if request side workflow
transaction was rolled-back and retried.
 Wrong Address in Addressed Response Message: A request is originated
from uncommitted workflow running in a live transactional context, and the transaction
is later rolled-back. In this case, workflow instance will be removed, as it was
never committed, and a response for such request will not find the addressed instance
to be notified.
 No-Instance-Found-Race-Condition: A request is originated from uncommitted
workflow running in a live transactional context, and response comes back before
transaction is committed. In this case, response can’t find uncommitted workflow
instance, and retries for a configurable of times after sleeping for configured
retry interval between all retries. This will reduce the window for race condition
significantly. Improper tuning may still show the problem more often. Tuning can
guarantee robustness only when retry times*retry interval is more than transaction
timeout.
Advantages of Post Commit(when transaction commits)
 No-Instance-Found-Race-Condition is a remote possibility. Cause for all
occurrences of this race condition in “Post Commit” are outside scope of WLI (ORACLE,
for example, sometimes has shown delays between transaction commit, and row being
visible to other transactions).
 No Duplicate Messages
 Wrong Address not possible.
Caveats with Post Commit
 May add a new resource to already running transaction (slowing down 2phase
commit processing).
 Delay in posting the XML event message (only sent when transaction commits).
Which Pattern warrants which delivery mode?
 One-Way Asynchronous (fire and forget)
Ideal for Post-Immediate, but must deal with redelivery issues.
 Two-way asynchronous
Ideal for Post-Commit, for the reasons mentioned above (Post-Immediate may see
“No-instance-found race condition”, “Message redelivery” or “wrong address in
response” problems).
 Two-way synchronous
Ideal for Post-Commit, for the reasons mentioned above (Post-Immediate may see
“No-instance-found race condition”, “Message redelivery” or “wrong address in
response” problems).
Hope
"Raoon Kundi" <[email protected]> wrote:
I have the following list of operations that will force quiescence ...
1) Timed Event actions
2) Set Due Date actions
3) Assign Task... actions
4) Send XML to Client actions
5) Event nodes
6) Done nodes
Is there anything that I am missing?
Also if someone can shed some light on the significance of the "Post
External XML Event" viz-a-viz quiescence and transaction boundries.
I am
specifically interested in finding out if what happend when the transaction
mode for the "Post External XML Event" is set to "send immediately"...
Will
this cause a transaction to end for the sake?
Regards,
Raoon Kundi

Similar Messages

  • After i redeemed my itunes gift card, i can't purchase anything in the app store or itunes store. When i press purchase, the security questions page will pop up and after you answered all questions it will force restart my iphone. Can anyone help me?

    After i redeemed my itunes gift card, i can't purchase anything in the app store or itunes store. When i press purchase, the security questions page will pop up and after you answered all questions it will force restart my iphone. Can anyone help me?

    Hi godfest,
    Welcome to the Support Communities!
    The articles below will get you connected with the iTunes Store Support.  These folks can review your account with you:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933?viewlocale=en_US
    iTunes Store & Mac App Store: Seeing your purchase history and order numbers
    http://support.apple.com/kb/ht2727
    Cheers,
    - Judy

  • If someone steals my iPhone and deletes all pictures, that will sync to my Mac. So then all my photos are lost! How do I safeguard against this?j

    If someone steals my iPhone and deletes all pictures, that will sync to my Mac. So then all my photos are lost! How do I safeguard against this?

    If your phone (plus syncing) is the only place you keep your pictures you are asking for trouble, theft or not. Back up onto an external hard disk which is only mounted when you need it, then nothing external can erase them. Then make use of Apple's facilities for protecting your phone:
    If your iPhone, iPad, or iPod touch is lost or stolen - Apple Support
    iCloud: Use Lost Mode
    iCloud: Find My iPhone overview
    Find My iPhone Activation Lock - Apple Support

  • Web service login operation that will return a session id.

    posted Today 9:42:22 AM private message
    Quote
    Hi,
    I am very new to web services I just started on this technology a couple of days ago. My manager requires me to create a web service and expose the login(user, password) and logout(sessionid) methods. The login must return session id when user and password authentication is successful.
    I've been circling around the internet for a couple days already looking for a tutorial on how to implement this methods and I'm now frustrated.
    I would appreciate it very much if someone can provide a link to a tutorial that has similar functionality with my web service.
    Thanks.
    Regards,
    winllen

    posted Today 9:42:22 AM private message
    Quote
    Hi,
    I am very new to web services I just started on this technology a couple of days ago. My manager requires me to create a web service and expose the login(user, password) and logout(sessionid) methods. The login must return session id when user and password authentication is successful.
    I've been circling around the internet for a couple days already looking for a tutorial on how to implement this methods and I'm now frustrated.
    I would appreciate it very much if someone can provide a link to a tutorial that has similar functionality with my web service.
    Thanks.
    Regards,
    winllen

  • My camera shutter is frozen on my 4S and i use camera apps to take regular pictures. Is there a facetime app that will force these cameras to work? or is there a resolution to my camera issue?

    My camera shutter is frozen on my 4S. Some camera apps work, but is there a solution to this? I hate not having FaceTime.

    Basics frrom the manual are restart, reset, restore.
    Have you tired each of these?

  • Operations that leads to clear server cache

    Hi,
              i want to know what are all operation that lead to clear server cache & Database cache
    Thanks in advance

    --Clear whole SQL Server plan cache
    DBCC FREEPROCCACHE
    GO
    --Clear SQL Server plan cache for a specific database
    DBCC FLUSHPROCINDB (<dbid>)
    GO
     Following operations will  flush the entire plan cache and new batches will require new plans.
    Detaching any database
    Upgrading any database to compatibility level 90 or above on SQL Server 2005 or above
    Running ALTER DATABASE ... MODIFY FILEGROUP command for any database
    Running ALTER DATABASE ... COLLATE command for modifying collation of any database
    Altering a database with any of the following commands will remove all plans cached for that specific database.
    ALTER DATABASE ..... MODIFY NAME
    ALTER DATABASE ..... SET ONLINE
    ALTER DATABASE ..... SET OFFLINE
    ALTER DATABASE ..... SET EMERGENCY
    The following operations will also remove cached plans for a specific database.
    Dropping a database
    Database is auto closed
    refer :
    http://www.mssqltips.com/sqlservertip/1661/analyzing-the-sql-server-plan-cache/
    Thanks
    Saravana Kumar C

  • Server set config item that will control local date/time settings

    We are looking for BI or Presentation server side settings that will force date/time settings to English independent of browser local setting choice.
    Thanks and Regards

    the following link can help you:
    http://help.sap.com/saphelp_47x200/helpdata/en/ba/312f37b5ea346fe10000009b38f839/frameset.htm

  • What is the best way to create an MP4 (.M4V) that will play with forced subtitles in iTunes, Apple TV, and all iOS devices?

    I've begun ripping my blu rays to digital format so I can store them on my NAS and access them from any device. Movies without subtitles work great, I simply use MP4 passthrough and all is well. I'm having issues with videos that have forced subtitles. I'm assuming I need to mux the video, audo and subtitle streams into an .M4V. I'm not sure how to do this. What format must the subtitle be in? SRT, AAS? Will Subler work?
    My intention is that have the subtitles show no matter what. I don't want to fiddle with enabling them and disabling them. I want to watch the movie in itunes or an iOS device and have the subtitles show up without doing anything.

    cmanion wrote:
    They are blu rays purchased before the advent of digital copies being included.  What do you suggest I do? Repurchase the movies I already own?
    We cannot help you on this board. What you ask is illegal to do in the United States. As Lyssa says, "You will have to search elsewhere for help." However, purchasing the movies from the iTunes Store is a legal option.

  • Is there any way to use microsoft outlook 2010 on ipad? Or is there apple app or program that will copy over all of the existing structure, folders, etc... and sync?

    I recently received a gift of a new ipad. Unfortunately I can't really switch from my Windows lap top until I figure out a way to use the ipad for my business emails which I use Outlook 2010 for. There are a singnificant amount of folders and history, with various attachments, that I have to have access to and I have been unable to find a way to move all of this over to the ipad. I use Yahoo mail for my primary mail server and can get the Yahoo mail on the ipad with no problem. But I do not have the full folder structure set up on Yahoo that I have on Outlook 2010 and to do so would be very time consuming...and I'm note even sure how I could move all the folders back to Yahoo and all the emails contained in them, many of which have been long deleted form Yahoo, back to Yahoo. Ideally I would just install Outlook 2010 on ipad and export all the files over. But there doesn't seem to be any Outlook 2010 program for ipad...if there is, please tell me about it. Otherwise, I need a relatively quick alternative that will not force me to recreate my entire Outlook 2010 folder structure and copy emails over folder by folder. If anyone has had the same issues, and was able to solve them, I would very much appreciate knowing how to do this. I like the ipad and want to use it for my main platform. Thanks

    Welcome to the Apple Support Communities
    Microsoft will launch Office for iOS next year, so you have to wait, Instead of Outlook, use Mail on the iPad

  • Is there any version of any operating system (Snow Leopard through Maverick) that will make my 2010 Macbook 7,1 run some-what efficiently again? Instead of just installing Maverick, should I consider re-installing any of the previous op systems?

    My 13-inch, Mid-2010 Macbook has declined in performance with every operating system upgrade. Maverick functioned, unlike Yosemite, which I currently have every intention of deleting. Honestly, the last time my mac could run multiple applications at once without slowing to a crawl and then crashing was on Snow Leopard, Lion, or Mountain Lion. Although I'm not quite sure at what point my Mac ran smoothest, but remained compatible with the new applications I've downloaded over the years. I know that it's been too long since I enjoyed using my 2010 Macbook. In fact, I thoroughly enjoy using my 2008 Macbook more, despite it's limited compatibility and obsolete features.
    I own a Snow Leopard install disk, or could install any of the operating system on my desktop and reinstall using a USB method, or any other means to successfully wipe a disk clean of Yosemite that many of you might know that works similarly (I didn't have Time Machine on). With that being the case, what is my best option for deleting Yosemite, and recovering an older OS X operating system successfully?
    The question I have for all of you with knowledge superior to my mediocre Mac mind, is what operating system can I reinstall on this Mac that will give it the best shot to function acceptably? Is any specific version compatible with all/most new software and such, but before Maverick and Yosemite raised my active memory usage through the run, along with constant lagging, and then a kernel panic. Through extensive googling, I've become more confused and frustrated. I could not get a concrete answer due to the questions phrasing, but hopefully someone can assist me here ASAP, please. How can I run Google Chrome and have a Celtx document open again without unavoidable crashing? I won't be greedy and dare ask for an additional, minimally energy draining application run in the background. Again, my 2008 runs beautifully, but is limited in compatibility. My newer 2010 Mac runs like it's struggling for memory (I've used 30 gb out of the 200, using my out-dated Macbook for most of my Mac tasks.
    My minor question.... For deleting Yosemite, what method is the most effective and easy considering the options? My major question..... Will reinstalling an operating system on a fresh disk, is any operating system valuable enough to consider installing and avoiding re-updating to Maverick? Or is Maverick my best shot? And a Mac that is significantly newer and more compatible with current hardware and software, and has approx 100 gb less on it's drive than my 2008 Mac, yet the Yosemite Mac can't handle of a fraction of the 2008 Snow Leopard activity. This is my 5th physical Macbook in less than a decade, btw. Along with pads and phones. I refuse to give Apple more money to solve this, so that is not the answer I'm looking for. Thank you.

    FIRSTLY, THANK YOU! I appreciate any help you can lend me here. Below is a Etrecheck from today.
    Essentially, Google Chrome and ANY other program open will eventually freeze up. I deleted Chrome. Re-downloaded. Completely deleted. Used Safari. Absolutely NO BETTER.
    If I'm writing a really long document in a word processor and using a thesaurus or dictionary application in the background.... That will eventually freeze my mac.
    So ANY assistance here would be terrific because since Yosemite it's been impossible to tolerate. 
    Problem description:
    If 2 “major” programs are running at the same time, my Macbook is almost unusable due to lag, crashes, and freezes.
    EtreCheck version: 2.1.8 (121)
    Report generated March 1, 2015 at 9:19:18 AM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook (13-inch, Mid 2010) (Technical Specifications)
        MacBook - model: MacBook7,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2-core
        2 GB RAM Upgradeable
            BANK 0/DIMM0
                1 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                1 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 443
    Video Information: ℹ️
        NVIDIA GeForce 320M - VRAM: 256 MB
            NS32E400NA14 spdisplays_1080p
    System Software: ℹ️
        OS X 10.9.5 (13F34) - Time since boot: 22:5:54
    Disk Information: ℹ️
        Hitachi HTS545025B9SA02 disk0 : (250.06 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            THE MAC HD (disk0s2) / : 249.20 GB (197.12 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        OPTIARC DVD RW AD-5970H 
    USB Information: ℹ️
        TOSHIBA External USB 3.0 1 TB
            BOX (disk1s1) /Volumes/BOX : 500.10 GB (27.71 GB free)
            Box 2 (disk1s2) /Volumes/Box 2 : 500.10 GB (407.54 GB free)
        Apple Inc. Built-in iSight
        Logitech USB Receiver
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
    Configuration files: ℹ️
        /etc/hosts - Count: 17
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Library/Extensions
        [loaded]    com.Logitech.Control Center.HID Driver (3.9.1 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Unifying.HID Driver (1.3.0 - SDK 10.6) [Click for support]
        [not loaded]    com.microsoft.driver.MicrosoftMouse (8.2) [Click for support]
        [loaded]    com.silex.driver.sxuptp (1.10.5 - SDK 10.6) [Click for support]
        [loaded]    com.usboverdrive.driver.hid (3.0.2 - SDK 10.6) [Click for support]
            /System/Library/Extensions/MicrosoftMouse.kext/Contents/PlugIns
        [not loaded]    com.microsoft.driver.MicrosoftMouseBluetooth (8.2) [Click for support]
        [not loaded]    com.microsoft.driver.MicrosoftMouseUSB (8.2) [Click for support]
            /System/Library/Extensions/USBOverdrive.kext/Contents/PlugIns
        [not loaded]    com.usboverdrive.driver.hid.safe (3.0.2) [Click for support]
    Launch Agents: ℹ️
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.Logitech.Control Center.Daemon.plist [Click for support]
        [not loaded]    com.splashtop.streamer-for-root.plist [Click for support]
        [loaded]    com.splashtop.streamer-for-user.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [failed]    com.splashtop.streamer-daemon.plist [Click for support]
        [failed]    com.splashtop.streamer-srioframebuffer.plist [Click for support]
    User Launch Agents: ℹ️
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
        [running]    com.google.Chrome.framework.plist [Click for support]
        [failed]    com.leadertech.PowerRegister.EPS2.fa8d34509cfddcea6fdfd2f145193825.plist [Click for support]
        [failed]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Click for support]
        [failed]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Click for support]
        [loaded]    com.splashtop.streamer-for-user.plist [Click for support]
        [running]    net.optimum.iptv.optimumapp.agent.v3.plist [Click for support]
        [loaded]    opt.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        USBOverdriveHelper    Application  (/Library/PreferencePanes/USB Overdrive.prefPane/Contents/Resources/USBOverdriveHelper.app)
        teleportd    Application  (/Library/PreferencePanes/teleport.prefPane/Contents/Resources/teleportd.app)
    Internet Plug-ins: ℹ️
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        OVSHelper: Version: 1.1 [Click for support]
        WidevineMediaOptimizer: Version: 6.0.0.12757 - SDK 10.7 [Click for support]
        Default Browser: Version: 537 - SDK 10.9
    User internet Plug-ins: ℹ️
        RealPlayer Plugin: Version: Unknown
    Safari Extensions: ℹ️
        Searchme [Adware! - Remove]
        Slick Savings [Adware! - Remove]
        Evernote Web Clipper
        Ebay Shopping Assistant [Adware! - Remove]
    3rd Party Preference Panes: ℹ️
        Logitech Control Center  [Click for support]
        teleport  [Click for support]
        USB Overdrive  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
            11%    WindowServer
             0%    AppleSpell
             0%    Google Chrome
             0%    fontd
             0%    loginwindow
    Top Processes by Memory: ℹ️
        116 MB    Google Chrome
        54 MB    Finder
        51 MB    Google Chrome Helper
        34 MB    WindowServer
        23 MB    mds
    Virtual Memory Information: ℹ️
        23 MB    Free RAM
        618 MB    Active RAM
        601 MB    Inactive RAM
        306 MB    Wired RAM
        1.24 GB    Page-ins
        16 MB    Page-outs
    Diagnostics Information: ℹ️
        Feb 28, 2015, 11:10:52 AM    Self test - passed
        Feb 27, 2015, 07:05:00 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/LCCDaemon_2015-02-27-190500_[r edacted].crash

  • In need of a report that will list all vendors for all parts in our plant.

    Can anyone tell me if there is a report in SAP that we can use to list all suppliers for a given material? We are operating in SAP ECC6.0 and need a report that will list all vendors that the company has used for a given part. Is there a standard report in SAP that pulls information from purchasing info records?  Woud this be  a custom report?     I have tried using MCE3. 
    Also does anybody know of any SAP consultants that can help us create custom reports

    For the list of vendors for the material - Me03 if source list is maintained
    For list of vendors with info record - Me1m
    For list of vendors with PO - Me2l
    If you can give the correct requirements then your Technical consultant will develop a report in the required format.

  • HT1551 Since updating my Apple TV, all that will show up is the iTunes symbol and a cord. What do I do next?

    Since updating my Apple TV, all that will show up is the iTunes symbol and a cord. What do I do next?

    When I updated via iTunes, it told me to reconnect to my TV, and I got that screen. I gave it a few minutes, and did a force reset (down+menu on remote). Activation took a long time for me, but it eventually came back up.

  • Where is the Url for free Adobe Acrobat X Pro that will allow me to create PDF/X ‑1a requires all fonts to be embedded,

    Is there a free copy of Adobe Acrobat Pro that will allow me to create PDF/x‑1a with all requires all fonts to be embedded. I already have Adobe Acrobat Pro XI.

    The Standard joboptions that are used by default don't embed most so-called system fonts.
    Change your joboptions to High Quality Print and you will get Arial embedded plus much higher quality imagery.
    BTW, PDF/X is great (I'm actually Chair of the PDF/X standards committee), but PDF/X-1a created by using the PDF/X-1a joboptions ruins output by flattening transparency, yielding stitching and other image artifacts that you can see both on screen and print if your document has any transparency (including drop shadows, reflections, and even clipped images). It also forces all content to CMYK. PDF/X-4 is a better choice.
    What are you creating the PDF file from? Microsoft Office documents? Adobe layout programs such as InDesign?
    Let us know and we can give you a more focused recommendation as to what to do.
                - Dov

  • Is there any chance that Tab Grouping feature (like the one in Opera 11) will become native for Firefox? Could be very helpful.

    Is there any chance that Tab Grouping feature (similar to Opera 11) will appear in Firefox? Could be very helpful and convenient.

    Hi ThaPlaya,
    I feel your pain. I am in charge of over 250 PCs and laptops. Flash Player stopped working for me after an update. I have been working on this issue non-stop since the middle of October, 2012. It's time-consuming, and even after applying the latest Flash update, it still doesn't work properly.
    I am beyond frustrated! I have people calling me left and right saying that they can't access content. I have been using this site https://www.mozilla.org/en-US/plugincheck/ to try and do a browser plug-in check while in IE an dFirefox. Even after I update all plug-ins, Flash still works about half the time.
    For instance, the principal of the middle and high school wanted to view an online magazine http://upfront.scholastic.com/issues/12_10_12, about 3 pages load on this site. The rest continue to say LOADING. When I right-click on a page and then left-click on ABOUT ADOBE 11.5.502.110, it seems I am using the most up-to-date version for IE and Firefox.
    Students are trying to access sumdog.com and stmath.com, both run using Flash. STMath is now working a bit better because I allowed some exceptions in our internet content filtering appliance, and in our firewall, sumdog still works half the time.
    If Adobe is going to update their browser plug-ins, they need to test and retest before giving the public access. This situation is causing me a ton of problems!
    Sorry to infiltrate your post...
    Dawn/Flower1964

  • My lightroom 4 wouldn't open.  A computer tech worked on my computer to clean it all up, etc. however lightroom still wouldn't open.  He opened a new catalog and that will work, however I can't find my old one with all my photographs.  When I click on ope

    My Lightroom 4 wouldn't open.  A computer tech worked on my computer to clean it all up, etc. however Lightroom still wouldn't open.  He opened a new catalog and that will work, however I can't find my old one with all my photographs.  When I click on open catalogs, it goes to documents and I can't find any catalogs there.

    What happens if you try File->Open Recent? What happens if you have your operating system search all of your hard disks for files whose name ends with .LRCAT?

Maybe you are looking for

  • Error when updating a link?

    I have a client who is trying to add links to his website and receives the following error: "While executing CCPopup_Link_WebAddress command in ccmenus.xml, the following JavaScript error(s) occurred: Exception thrown in native function" I am not fam

  • External Hard Drive/Mac & PC issue

    Similar questions have been asked but they don't answer my question. I've got a 320GB external harddrive that I use on my iMac at home, and a PC at work, the hard disk has worked fine in the past however now it is only working on my work PC as well a

  • How do I send my unfinished Photo Book to my sister via the internet?

    I want her to work on it and send it back to me? Is there an easy way to export my work-in-progress to her Mac Pro and to have her send it back to me? Thanks,

  • Reconciliation Error

    Hi All, I have an error upon doing reconciliation of Business Partners AR Invoice and Journal Entry. Error: Both applied amount and WTax amount need to be reconciled. The amount and even the Wtax code is the same for both document. What else can I ch

  • Why is the iphone search function spotlight limited in time?

    why is the iphone search function spotlight limited in time? I can only find entries that are less than a year old,but I would like to search older entries in my calender, which goes back to 2002. Anyone has a solution for this?