Task Status "Process Draft"

I''m working with support on an issue that I previously describe here: http://forums.adobe.com/thread/777349?tstart=0
I noticed with one of the process instances that encountered the issue, that the task status is set to "Process Draft" instead of the task status that I'm typically used to seeing when a task is assigned, which is "Process Created."
The only bit of info that I could find on "Process Draft" is here: http://help.adobe.com/en_US/livecycle/9.0/adminHelp/000354.html
Does anyone know why a task status would be set to "Process Draft"? And could that possibly be related to the problem I described in the other thread?

If Workspace is used to work with tasks, then a task would have status "Process Draft" once a Workspace User has saved the task (via Save button, see image) but not yet completed the task.

Similar Messages

  • What are the attributes available on Task Status Notification?

    Hi,
    I need to send the information below when a task is completed or rejected. So I would like to know if they are available. I think so because I've got them from Task Status Notification (OIM standard email definition). If not, what are the attributes available on Task Notification?
    <Tasks.Task Name> is <Task Details.Status>.
    <Task Details.Status>
    <Resource.Resource Name>
    Target User: <Users.First Name> <Users.Last Name> [<Users.User ID>]
    Assigned to: <Task Information.Assignee First Name> <Task Information.Assignee Last Name> [<Task Information.Assignee User ID>]
    Response Code : <Responses.Response>
    Response Description : <Responses.Description>
    Error Details : <Task Details.Reason>
    Thanks,
    Renato.
    Hi,
    I have implemented some java code to workaround the problem below... But I don't believe this does'n work in OIM :-):-):-):-) Please, tell me if you are using task status notification in OIM and if your email defintion has the variables below.
    Thanks,
    Hi,
    One of OIM email templates is Task Status Email Notification. I am trying to notify the user (Notification tab) using this template but it didn't work. Even when I set the Object Name and Process Name values for an email definition, it does not work.
    How have you implemented task status notification in your workflows? I think if this template exists in OIM, by default, so it is posible to have the information below during notifications.
    I think I'll have to call Oracle's Support.
    =======================================================
    Subject: Process task <Tasks.Task Name> is <Task Details.Status>.
    Body:
    The Process task <Tasks.Task Name> is <Task Details.Status>.
    The details of this process task are as follows:
    Process Task Name: <Tasks.Task Name>
    Process Task Status: <Task Details.Status>
    Resource Name: <Resource.Resource Name>
    Target User: <Users.First Name> <Users.Last Name> [<Users.User ID>]
    Assigned to: <Task Information.Assignee First Name> <Task Information.Assignee Last Name> [<Task Information.Assignee User ID>]
    Response Code : <Responses.Response>
    Response Description : <Responses.Description>
    Error Details : <Task Details.Reason>
    =======================================================
    As I've said, the e-mail was sent but in blank:
    The Process task is .
    The details of this process task are as follows:
    Process Task Name:
    Process Task Status:
    Resource Name:
    Target User: []
    Assigned to: []
    Response Code :
    Response Description :
    Error Details :
    Is it possible to have those fields available on notifications?
    Thanks,
    Edited by: Renato.Guimaraes on 23/10/2009 08:05
    Edited by: Renato.Guimaraes on 24/10/2009 15:57
    Edited by: Renato.Guimaraes on 26/10/2009 13:31
    I didn't get any answer until now.. Below it is what I've done.
    a) Create an entity adapter that is assigned to the post-update of the Specific Task Info data object.
    b) Select the task information searching by SCH_KEY, for example (I have to do more tests)
    SELECT
    sch.sch_key, sch.sch_status, sch.sch_note, mil.mil_key, rsc.rsc_data, rsc.rsc_desc
    FROM
    osi, sch, mil, rsc
    WHERE
    mil.mil_key = osi.mil_key and
    osi.sch_key = sch.sch_key and
    sch.sch_key = ? and
    rsc.rsc_key = osi.rsc_key
    c) Load the e-mail definition template and replaces the fields
    d) Sends the e-mail
    With that I solved another problem: I have to send an e-mail always the assignee adds a note to the task.
    Edited by: Renato.Guimaraes on 28/10/2009 08:51. How I did that
    Edited by: Renato.Guimaraes on 12/11/2009 12:19
    Edited by: Renato.Guimaraes on 13/11/2009 07:22 Changed the Thread Subject

    Hi Experts,
    I want to extend my doubt a little more.
    I have a requirment  as below.
    User will enter a range of Date say 01.06.2011 to 25.06.2011.
    I need to show him data in two columns one cloumn for the entered day range and second column for prevoius month date rangei.e(01.05.2011 to 25.05.2011)
    can i achive this without  using Customer Exit.
    Regards
    Laxman

  • Mapping Adapter to a process task in process definition.

    Hi Guys
    My requirement is , Disable users associated with an organization when the organization is disabled.
    I have performed the following steps:
    1. In design console Lookup definition Lookup.ACT_PROCESS_TRIGGERS , I added a row
    ACT_DISABLED   DisableUSerWhenOrgDisabled
    2. Then I created process task adapter to recursively disable the users based on the organization name.
    3.Next I attached the adapter to a new task in process definition --> Xellerate User with the name DisableUSerWhenOrgDisabled(decode field in Lookup.ACT_PROCESS_TRIGGERS ).
    4.Then I mapped the Adapter variables to appropriate entities in the Integration tab.
    Now when I login into the admin console and disable an Organization , the adapter is not at all invoked.
    I am unable to get if I am missing anything.Kindly help in resolving this.
    Is this the correct way to achieve this functionality?
    OR
    Do I need to go for Entity Adapters.
    Thank you
    sas
    Edited by: sas on Jan 8, 2009 4:55 PM

    SAS,
    You only need one adapter. You can use one variable that maps the Organization Name. Using this value, you can use the tcOrganizationOperationIntf apis to get information about that organization. Once you get the disabled value, you can create your if statement based on the value of this task. If the Organization is not disabled, return a literal string like "NO_ACTION_REQUIRED". If the Organization is disabled, using the code i previously posted, or the code you have generated, to disabled all the users within the organization. If this task successfully completes, return the literal string like "ALL_USERS_DISABLED". If an error happens, i would return something like "ERROR" or something more descriptive. Then on your responses tab, you can add these values you are returning, along with a more descriptive value. Set the NO_ACTION_REQUIRED and ALL_USERS_DISABLED to a C status and the ERROR responses to a R status. Now when you map your adapter, map in your Organization Name and for your Adapter Return Value map it to the responses.
    As far as what you can do with responses. On the process task, the response tab, you can select the specific response, and then have it trigger another task.
    -Kevin

  • Change task status in notification

    is it possible to change the task status like the notification status (in process again). A completed task -> in process again. I can't find this function and also it isn't possible to delete a completed task.
    Best Regards
    Bernd

    Hi,
          you can delete the tasks in database table which has  generated through action box item that means you can mark it as deleted. Take you notification number go to table qmsm and give that notification number and execute you will get the tasks select the task which you are going to delete and go to command bar type /H press enter and then press display then press F7 it will guide you to a line in code
    if code = 'SHOW'. double click on that and in field contents type CAPS EDIT and press change button and then press F8 it will guide you to next screen i.e. QMSM table in change mode. In this set X for field KZLOESCH and delete the indicator in KZACTIONBOX field and save it. Again go to that notification in change mode and see the task.it will get deleted.
    pls reward me with points if it is useful to you
    regards
    satish

  • Task Status bar?

    Hey all,
    Running a procedure in forms that reads from a spreadsheet, and then writes the data to a flat file. For the 500 or so lines it has to write, it is taking a considerable amount of time. I would love to have one of these "Task in Process" things come up so the user sees something ticking away instead of just staring at the screen. Help?
    Chris

    That is the Windows Taskbar and not part of Firefox.
    The Firefox Status Bar shows messages like Looking up and Waiting for and loading and Done.
    If you do not see that Taskbar with Firefox closed then you may have hidden it.
    Try to move the mouse at the bottom and see if you can pull it up with the left mouse button pressed.
    If the Taskbar disappear if you open Firefox the check the Properties of the Taskbar to make sure that it is always visible.

  • Task status after claimed by a user

    Hello,
    I  assign task to a role on bpm server so users have the this particular role can see this task on their respective UWL list, with the task status 'New'. This is normal bpm procedure and works good.
    However, when one of the user who has this role (for ex: user_a) clicks on the task link on the uwl this user claims the task and the status of the task changes into 'processing'. Therefore other users can not see the task on their own UWL.
    (standart procedure for assigning the task to a role)
    But customer requests that; other users who have this role could see the task on their own uwl even after one of them review the task (claimed the task but has not approved yet, just reviewed ). Is this possible ?
    Regards,
    Yasin

    Yasin,
    The user can review the task, then may be add some comments if any and put it back to the pool (i.e role to which the users are mapped) by using "Put Back" option available in the task UI available in the top right corner. This way multiple users who have access to the same task can review / add inputs.
    Hope this helps.
    My best,
    Bala

  • How to get the Admin Task to Process Members from Member Sheet?

    Hey guys!
    I've been successful getting the Custom SSIS Admin Task to process a Dimension using a SQL staging table.  However, we have a few dimensions that are best managed in the Excel Member sheets.  When we have changes to these member sheets, is it possible to process the dimension using the SSIS Admin Task.  If so, how do I go about doing this?  What settings do I need to use within the task?
    I've tried using the "Scheduled Members Process" option (I honestly don't even know what this option does and I've found no documentation), but when this option is selected the task simply fails without any messages.  And I've tried putting the path directly to the Member Spreadsheet in the "SQL Source Table" box.  Using this method, the package returns a successful status code, but it's not really processing anyway.  It finishes in less than 2 seconds. 
    Thanks much!
    Sean

    I don't understand why you want to do this -- if you're maintaining some dimensions manually in the XLS member sheet, then you should process the changes manually too, using the Admin Console. No DTS is required, and you also get the benefits of validation & error messages right away.
    Having said that, if you feel it's necessary, you could set up a DTS package which uses the XLS member sheet, via an Excel connection manager, as a data source which is loaded into your custom dimension staging table. Then this staging table is the source of the admin dimension processing task.
    Beware, though, that this means every time you add or modify dimension properties, you will need to update the columns in both the Excel connection manager and the staging table. I've always found this to be a very frustratingly manual process in BI Dev Studio, to get the data fields to properly refresh. I usually end up deleting the source & destination data flow objects, just to get the new fields to show up. (Maybe there's a better way, but I haven't found it.)
    I always consider the dimension-processing decision on automation to be all or nothing for each dimension. If you're maintaining the dimension manually in the member sheet, use the admin console to process it.

  • Does the Task Status Email Notification definition work for you?

    Hi,
    Have you ever set the email definition Task Status Email Notification? Worked?
    I've configured this template in my process tasks notifications. The e-mails for C and R status were sent OK but the values were all empty. Below are the subject and body of this email definition.
    Subject
    Process task <Process Definition.Tasks.Task Name> is <Process Instance.Task Details.Data>.
    Body
    The Process task <Tasks.Task Name> is <Task Details.Status>.
    The details of this process task are as follows:
    Process Task Name: <Process Definition.Name>
    Process Task Status: <Task Details.Status>
    Resource Name: <Resource.Resource Name>
    Target User: <Users.First Name> <Users.Last Name> [<Users.User ID>]
    Assigned to: <Process Instance.Task Information.Assignee First Name> <Process Instance.Task Information.Assignee Last Name> [<Process Instance.Task Information.Assignee User ID>]
    Response Code : <Responses.Response>
    Response Description : <Responses.Description>
    Error Details : <Task Details.Reason>

    Thanks for your attention.
    For all custom process tasks I have set this definition to notify the target user, for example, when the task is Completed or Rejected. For all all I've got the same problem: the notification e-mail is sent but the values are all empty.
    I thought the tags were based on the fields returned by the getProvisioningTaskDetails that returns the information below. But you can see the tags are different from.
    Process Instance.Task Details.Key
    Process Instance.Task Details.Type
    Process Instance.Task Details.Status
    Process Instance.Task Details.Data
    Process Instance.Task Details.Reason
    Process Instance.Task Information.Assign Type
    Organizations.Key
    Process Instance.Key
    Process Definition.Name
    Process Instance.Descriptive Data
    Process Instance.Task Details.Projected Start
    Process Instance.Task Details.Projected End
    Process Instance.Task Details.Actual Start Date
    Process Instance.Task Details.Actual End Date
    SCH_REASON
    Process Instance.Task Details.Updated By
    Process Instance.Task Details.Update Date
    Process Instance.Task Details.Row Version
    Process Instance.Task Details.Action
    Process Instance.Task Details.System level
    Process Instance.Task Details.Creation Date
    Process Instance.Task Details.Created By
    Process Instance.Task Details.Note
    Process Definition.Tasks.Key
    Process Definition.Tasks.Task Name
    Process Definition.Tasks.Task Description
    Process Definition.Tasks.Days
    Process Definition.Tasks.Hours
    Process Definition.Tasks.Minutes
    Process Definition.Tasks.Milestone Datalabel
    Process Definition.Tasks.Disable Manual Insert
    Process Definition.Tasks.Responses.Description
    Process Instance.Task Information.Updated By User Key
    Process Instance.Task Information.Updated By User ID
    Process Instance.Task Information.Updated By First Name
    Process Instance.Task Information.Updated By Last Name
    Process Instance.Task Information.Assignee User Key
    Process Instance.Task Information.Assignee User ID
    Process Instance.Task Information.Assignee First Name
    Process Instance.Task Information.Assignee Last Name
    Process Instance.Task Information.Assignee Email
    Process Definition.Tasks.Responses.Key
    Process Instance.Task Information.Row Version
    TLG_KEY
    Status.Category
    Groups.Key
    Groups.Group Name
    Thanks,
    Renato.

  • CProject Task Status Completion overriding date fields

    When a task status is changed to either 'In Process' or 'Completed', date fields, both Plan and Actual are overridden with system date (Today's date)  SAP note describes this as 'designed' but seems misleading to customers who expect to compare baseline date to actual date.  Any suggestion on alternative solution? BADI?

    Hi Dobin,
    At the moment the function works as designed. But it is correct that the actual date is set to sy-datum, if you complete the task.
    The logic about the plan date, hmm, can be discussed.
    A BADI doesn't exists, but a small modification can help.
    Please send the OSS mesaage back to SAP
    Regards
    Björn
    PS: I found you message, we will keep you up to date
    regards
    Björn

  • Task status  report in cProject 3.1

    Hi,
    I want to extract task status report from cProject 3.1.
    Report should contain task name, status, start date,end date , effort etc.
    Thanks in advance
    Shiv

    Hi,
    Activate the form DPR_TASK_HIER for a particular Project type in SPRO screen. Now keep the cursor on any task in cProjects & click on Print pushbutton, this will generate a PDF Report which will contain Task name, Constraint dates, actual dates, administration details etc. In order to add more data to the Report, goto transaction SAMRTFORMS & edit the form DPR_TASK_HIER.
    Hope this will help you.
    Regards,
    Sujay G

  • Firefox won't start, no error message, firefox.exe showing in Task Manager Processes

    Firefox (v3.6.6 on Windows Vista) will not open. When the icon is clicked, the hourglass shows for a few seconds, goes away, and nothing else happens. There are no error messages. 'firefox.exe' shows on the Task Managers Processes tab. I also cannot open Firefox in SafeMode or with the ProfileManager.
    I have tried restarting the computer, uninstalling and reinstalling firefox, deleting my firefox profile. I have tried all of these things multiple times in different orders with no results.
    Please Help!
    == This happened ==
    Every time Firefox opened
    == Yesterday ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MS-RTC LM 8)

    dmcritchie, thank you for your reply!
    Before I received your response, I tried something that seems to have worked. I used Chrome to go to the Firefox website and downloaded Firefox (without uninstalling it first) and went through the installation process again. For some reason, this worked, even though I already had the latest version of Firefox, and I can now open Firefox successfully.
    If it stops working again, I will try your suggestion. In the meantime, thank you much!

  • Remote Software Updates and Sending Task Status to User

    I am updating user's machines using ARD 3 with the unix command 'softwareupdate -i -a'. With some updates, a restart is required and ARD posts this within the task status column.
    I was wondering if there was a way to grab that task status of "restart needed" or "succeeded" and then send that to the user when the software update has completed.
    Any help would be appreciated.
    Thanks.

    System restart checkbox is used to control what happens outside of MW.
    If you have no MW and did not select to restart outside of MW then systems will reboot after installation completes (unless user overrides it and does it sooner). Keep in mind that the 90 minute and 15 minute restart countdowns will be displayed if user is
    logged in (unless you have changed the times) if user did not interact with any notifications to select other options like install and reboot ahead of time.
    If you have MW and did not select to restart outside of MW, then PC will not reboot until MW starts (unless user overrides it, of course).
    If you select to reboot outside of MW checkbox then PC will reboot after installation ends, no matter if MW is set or not.

  • Can no longer open two Firefox tabs, have close using Task Bar/Processes. Some links won't activate on websites. As per support suggestion,have backed up profile, deleted existing profile, removed firefox and replaced thingsetc

    Can no longer open two Firefox tabs at the same time. Will disappear from screen but won't close - have to go to Task Bar/ Processes to close it, some links won't activate on websites. As suggested in the support area I have gone through the process of backing up my profile, deleted existing profile, removed firefox from computer, reinstalled profile in fresh folder, reinstalled firefox 6. I have done this twice for no effect - may work as it used to for a while (30mins) then gets back to its old tricks.
    It is a bit irritating.

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • IDoc-to-File: Status=processed succesfully but file is not always delivered

    Hi Experts,
    I have a problem with a IDoc-to-File scenario. I generate an IDoc and send it to the XI-System. Afterwards a XML-file is created which should be transmitted to a filesystem or to a ftp server (I tested with both). In the SXMB_MONI the Message has the Status "Processed Succesfully" and the Acknowledgement-Status "Still awaiting acknowledgement". The problem is that not all files arrive the destination succesfully. sometimes they arrive and sometimes not. and always the same status in the sxmb_moni.
    if a message not arrived the destination, in the message monitoring in the runtime workbench there is the status "To Be Delivered". If one Message has the status "To Be Delivered" the following messages get this status too.
    the communication-channel-monitoring says that "the communication channel is correctly configured and started"
    Can you help me? I don't know where the problem is. could it be that the adapter-engine has some problems?
    Thanks and best regards
    Christopher

    hi,
    I clicked on details in the message monitoring but the fields "error category" and "error code" are empty. Then I checked the audit log in the message monitoring. there are the following three entries
    2008-01-28 14:08:56 Success Message successfully received by messaging system.
    2008-01-28 14:08:56 Success Using connection File_http://sap.com/xi/XI/System. Trying to put the message into the receive queue.
    2008-01-28 14:08:57 Success Message successfully put into the queue.
    and here the audit log of a message which could be transmitted correctly:
    2008-01-28 10:33:10 Success Message successfully received by messaging system.
    2008-01-28 10:33:10 Success Using connection File_http://sap.com/xi/XI/System. Trying to put the message into the receive queue.
    2008-01-28 10:33:10 Success Message successfully put into the queue.
    2008-01-28 10:33:10 Success The message was successfully retrieved from the receive queue.
    2008-01-28 10:33:10 Success The message status set to DLNG.
    2008-01-28 10:33:10 Success Delivering to channel: FILEPORT_TO_PICC
    2008-01-28 10:33:10 Success MP: entering
    2008-01-28 10:33:10 Success MP: processing local module localejbs/CallSapAdapter
    2008-01-28 10:33:10 Success File adapter receiver: processing started; QoS required: ExactlyOnce
    2008-01-28 10:33:10 Success File adapter receiver channel FILEPORT_TO_PICC: start processing: party " ", service "X22_PICC"
    2008-01-28 10:33:10 Success Write to file "/tmp/xi/PICC/INV_5075_4000102108_20070109_103310.XML" as binary, size 410 bytes
    2008-01-28 10:33:10 Success File processing complete
    2008-01-28 10:33:10 Success MP: leaving
    2008-01-28 10:33:10 Success The message was successfully delivered to the application using connection File_http://sap.com/xi/XI/System.
    2008-01-28 10:33:10 Success The message status set to DLVD.
    2008-01-28 10:33:10 Success Acknowledgement creation triggered for type: AckNotSupported
    2008-01-28 10:33:10 Success Acknowledgement sent successfully for type: AckNotSupported
    can you say me where the problem is?
    thanks and regards
    chris

  • Firefox runs in background (appear in Task Manager Processes Tab) only and does not appear on Desktop

    I have been using Firefox on my Desktop PC with Windows XP for a long time. However, today possibly due to some virus (I attached an infected flash drive to my PC) a suspicious change in homepage (www.delta-homes.com) of my firefox occurred. Simultaneously an error message of "WinZip" appeared on screen. I figured that there must be some software in "C:\Program Files\" which is also causing problem to my firefox. I opened Program Files and removed that folder named WinZip. (Tried to uninstall it but it won't happen so I had to use "Unlocker" to kill processes this folder was associated with and then deleted the folder.)
    From that point onward, My FireFox started to behave weird. Whenever I click on Firefox icon or access firefox.exe from any source (start menu, quick launch, program files, Run Command), it starts but appears only in "Task Manager Processes Tab". In that Processes Tab, firefox.exe is continuously using 50% of CPU but it does not appear on Desktop at all.
    To go a step further, I uninstalled firefox and tried to re-download from Firefox official website but the download fails in the start saying "Download is interrupted". (See attached Image). So I downloaded a previous version of Firefox (v 34.0) from www.filehippo.com and installed it but the same problem is happening with this version too.
    I am confused and surprised what might be causing this problem. Everything else on PC running fine. Kindly help me restore my Firefox so that I may not lose any precious Bookmarks, Settings and other Data. thanks

    Start your '''Computer''' in safe mode. Then start Firefox. Try '''Safe''' web sites.
    '''[http://encyclopedia2.thefreedictionary.com/Linux+Safe+Mode Starting The Computer In Safe Mode;<br>Free Online Encyclopedia]'''
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

Maybe you are looking for

  • Gateway message response back to smp

    so we have an app that calls the oModel.create method.  Which is sent to SMP 2.3 which sends it to Gateway to update a record.  The BAPI comes back with a message of "record already created".  In SMP log, it comes back with response code 400 which is

  • ESS/MSS Multiclient Szenario

    Hello, The scenario we want to build is: - Have one portal - Have one J2EE Engine - Have one backend with TWO clients (e.g. 100 and 200) - Have ESS/MSS running and connect to both clients (multiclient szenario) What has been done so far: 1) Copied fo

  • IPhoto 2 and exporting to camera

    Got IPhoto 2 and want to export pics to the memory card in the digital camera via usb connection. Is this possible or do I need to upgrade the IPhoto Thanks g4 quicksilver   Mac OS X (10.4.4)  

  • The differences between Nokia N73 & N73ME's firmwa...

    Wat is the latest firmware of N73 Music edition? I search for the update & it appears only V.3.0705.1.0.31 , besides, it cant search for the V4.0726.2.0.1. I'm currently using V3.638.0.0.30. The V4.0726.2.0.1 is only applicable for Normal N73? is it

  • Problem installing new applications.

    I got a Macbook running Lion. The problem is whenever i download an applications Setup it crashes. I can see the app open on the dock (as i'm able to see the icon there), but nothing happens if I click them it crashes and auto closes. Any suggestion?