Cannot Sync third party apps with DTM 6.0

I just downloaded and installed DTM v6.0 and cannot find the area in which to set up third party (Add-ON) software for synchronization. Did they forget about this? Please help. Thanks

Ahhh...OK...that makes more sense now. From your first post, it seemed like you wanted to sync the actual app (as in, for instance, backup the actual app and then restore it after an OS reload...as opposed to reinstalling the app after an OS reload). But, now I see that it is the App data that you wish to sync.
To be 100% clear -- is this a sync function, similar to how the desktop software synchs with your PIM (e.g., Outlook) for organizer data? Or is this a backup function, where the data is backed up for use in a subsequent restore?
Thanks!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Third party apps with Apple notes?

    Are there any third party apps that can sync with Apple Notes?

    It's a pretty closed off app. Take a look at SimpleNote and Evernote if you want apps that you can use across more devices. It may be a bit more than you're looking for but I think Drafts is amazing.

  • Provisioning on third party apps with java handlers

    Hello,
    I am trying to configure OID to enable provisioning against third party applications like an J2EE app who use MySQL )
    I want to develop a Java plugin for handling events on OID and propagate on other DBMS.
    I saw on the following page (http://download-uk.oracle.com/docs/cd/B14099_14/idmanage.1012/b14087/prov_plug.htm#BCGJFHEB
    ) a sample of Java code who could help me. The, I tried to apply the Grocery demo with a JAVA plugin but unsuccessfully.
    Thats my configuration issues:
    1 ) In oidadmin
    I have created the following entries:
    cn=ApplicationsCCIP,cn=Products,cn=OracleContext
    cn=Plugins,cn=Training,cn=Applications,cn=Provisioning,cn=Directory Integration Platform,cn=Products,cn=OracleContext
    2) With ldapmodify
    dn: cn=Plugins, cn=Training, cn=Applications, cn=Provisioning,cn=Directory Integration Platform,cn=Products,cn=OracleContext
    changetype: add
    add: orclODIPPluginExecData
    orclODIPPluginExecData: path to jar addressbook-oidplugin-2.1.1.jar
    objectclass:orclODIPPluginContainer
    dn: cn=PRE_DATA_ENTRY_CREATE, cn=Plugins, cn=Training, cn=Applications,cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext cn=Provisioning
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PreDataPlugin
    orclODIPPluginAddInfo: Pre Data Entry Plugin for CREATE operation
    dn: cn=PRE_DATA_ENTRY_MODIFY, cn=Plugins, cn=Training, cn=Applications,cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PreDataPlugin
    orclODIPPluginAddInfo: Pre Data Entry Plugin for MODIFY operation
    dn: cn=POST_DATA_ENTRY_CREATE, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PostDataPlugin
    orclODIPPluginAddInfo: Post Data Entry Plugin for CREATE and modify operations
    dn: cn=POST_DATA_ENTRY_MODIFY, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PostDataPlugin
    orclODIPPluginAddInfo: Post Data Entry Plugin for MODIFY and CREATE operation
    dn: cn=DATA_ACCESS, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DataAccessPlugin
    orclODIPPluginAddInfo: Data Access Plugin
    dn: cn=EVENT_DELIVERY_OUT, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DeliveryOutEvent
    orclODIPPluginAddInfo: Event Delivery Plugin for Outbound
    dn: cn=EVENT_DELIVERY_IN, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DeliveryInEvent
    orclODIPPluginAddInfo: Event Delivery Plugin for Inbound
    3) I have uploaded the jar in /oas/infra/ldap/jlib
    4 ) With oidprovisioning tool
    oidprovtool operation=create ldap_host=dev-orainfra.ccip.fr ldap_port=389 ldap_user_dn="cn=orcladmin" ldap_user_password=password1 organisation_dn=ccip application_dn="orclapplicationcommonname=Training,cn=ApplicationsCCIP,cn=Products,cn=OracleContext" organization_dn="dc=ccip,dc=fr" event_subscription="USER:ccip:ADD(uname)" event_subscription="USER:ccip:DELETE" event_subscription="GROUP:ccip:MODIFY(cn,uniquemember)" interface_type=JAVA interface_name=PORTAL.WWSEC_OID_SYNC interface_version=3.0 application_type=Addressbook profile_debug=debug
    5) Restart OID
    I have previously uploaded a jar with some plugins
    Thas my code
    import java.io.FileOutputStream;
    import java.io.PrintStream;
    import oracle.idm.provisioning.event.Event;
    import oracle.idm.provisioning.event.EventStatus;
    import oracle.idm.provisioning.plugin.EventDeliveryException;
    import oracle.idm.provisioning.plugin.EventPluginInitException;
    import oracle.idm.provisioning.plugin.IEventsFromOID;
    import oracle.idm.provisioning.plugin.PluginException;
    import oracle.ldap.util.UtilDebug;
    public class OIDToAddressbookEvent implements IEventsFromOID {
    static {
    try {
    UtilDebug.setPrintStream(new PrintStream(new FileOutputStream("/tmp/oidtoaddressbookevent.log")));
    UtilDebug.setDebugMode(UtilDebug.MODE_ALL);
    } catch (Exception e) {
    e.printStackTrace();
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventsFromOID#initialize(java.lang.Object)
    public void initialize(Object _arg0) throws EventPluginInitException {
    // TODO Auto-generated method stub
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventsFromOID#sendEventsToApp(oracle.idm.provisioning.event.Event[])
    public EventStatus[] sendEventsToApp(Event[] _arg0) throws EventDeliveryException {
    UtilDebug.log(UtilDebug.MODE_ALL, "sendEvents", _arg0);
    EventStatus[] events = new EventStatus[1];
    events[0] = new EventStatus(EventStatus.SUCCESS, null, null, null);
    return events;
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventPlugin#terminate(java.lang.Object)
    public void terminate(Object _arg0) throws PluginException {
    // TODO Auto-generated method stub
    public OIDToAddressbookEvent() {
    super();
    // TODO Auto-generated constructor stub
    public class DataAccessPlugin implements IDataAccessPlugin{
    static {
    try {
    UtilDebug.setPrintStream(new PrintStream(new FileOutputStream("/tmp/dataaccessplugin.log")));
    UtilDebug.setDebugMode(UtilDebug.MODE_ALL);
    } catch (Exception e) {
    e.printStackTrace();
    /* (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IDataAccessPlugin#getAppUserData(oracle.idm.provisioning.plugin.ApplicationContext, oracle.idm.user.IdmUser, java.lang.String[])
    public PropertySet getAppUserData(ApplicationContext arg0, IdmUser arg1, String[] _arg2) throws PluginException {
    return null;
    /* (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IDataAccessPlugin#process(oracle.idm.provisioning.plugin.ApplicationContext, oracle.idm.user.IdmUser, oracle.ldap.util.ModPropertySet, oracle.ldap.util.ModPropertySet)
    public PluginStatus process(ApplicationContext arg0, IdmUser arg1, ModPropertySet arg2, ModPropertySet arg3) throws PluginException {
    UtilDebug.log(UtilDebug.MODE_ALL,"Processing DAP...",_arg0);
    return new PluginStatus(PluginStatus.SUCCESS,null,null);
    I have already develop event wich implements IEventsPlugin.
    I dont see what s wrong in my configuration
    Thanks in advance for your help
    Alexandre Touret
    Message was edited by:
    [email protected]
    Message was edited by:
    [email protected]

    Ahhh...OK...that makes more sense now. From your first post, it seemed like you wanted to sync the actual app (as in, for instance, backup the actual app and then restore it after an OS reload...as opposed to reinstalling the app after an OS reload). But, now I see that it is the App data that you wish to sync.
    To be 100% clear -- is this a sync function, similar to how the desktop software synchs with your PIM (e.g., Outlook) for organizer data? Or is this a backup function, where the data is backed up for use in a subsequent restore?
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT201250 Third Party Apps With Time Machine Backup

    My Retina MBP screen is ghosting so they might have to replace the whole computer. Will a Time Machine restore re-add my third party applications like Star Craft and Adobe Photoshop? or will I need to hunt down the discs and reinstall them manually

    Time Machine backups the whole drive, so you don't have to reinstall the applications after you restore the backup, but you will probably need to insert a product key again

  • Did latest iPhone update and now non of my third party apps work.  They open then close immediately.   I tried to restore but can't as my iphone wont sync with itunes now and I will loose my apps.  Also my largest app "Sat Nav" has gone.  Help ??

    Hi All
    I have run into problems with my iPhone 4.  I hadn't done an update for a while so decided to get my itunes and iphone 4 up to date.  I downloaded all the latest versions.  However now non of my third party apps work and my largest one has vanished.  I try and open them and they flash up and then close again. I thought the easiest thing to do was to restore so I tried to syn my apps onto itunes so I wouldn't loose them.  However it won't let me sync the apps onto iTunes.  It ill allow me to syn the old version when I just started but since then I have bought a dozen other apps.  Can anyone help.  thanks

    Well this won't work for me...
    I had all of my apps and music stored in iTunes, I updated to the newest 9.2 iTunes and did a 4.0 update to my iPhone 3G all the while not noticing that EVERYTHING IN iTUNES was GONE. When I got done updating my iPhone it was late so i went to bed... Next day came back to sync everything and thats when I saw it was all gone...
    http://support.apple.com/kb/HT1451
    did what the link said and NOW I have all my 6K+ MUSIC back but not ONE APP. The App's are completely gone from when you nav. to the location the link says... There isn't a mobile sync folder there...
    NOT SURE WHAT TO DO NEXT... Very Frustrated and MAD. I don't want to redownload all my apps manually. TO many to do it that way.

  • IPad photo issues with third party apps

    Up until recently I've had no problem with the issue I'm about to describe.
    When I download my raw format photos from my camera using the SD card reader I cannot view full photos in any third party apps such as the Photoshop app or any other I've tried. I just get a small thumbnail version, very low res. I can view them fine in the iPad photos app. If I sync my iPad with my computer and put the photos back into the iPad with iTunes they work fine with all my third party photo apps. Any suggestions?

    This appears to be a problem that cropped up with iOS 4. Prior to iOS 4, when a third party app would allow a user to browse to a RAW photo, the app would get a jpeg representation that was generally of high resolution.
    As of iOS 4, when third party apps get an image from these RAW images through the Photo Library the image that is retuned is of a very low (thumbnail) resolution. In our testing this appears to be limited to RAW images from Nikon cameras. When you sync your iPad the RAW photos are processed and then resync'd as jpegs on your iPad. You'll find these photos will now show up at the expected resolution once they go through the syncing process.
    We reported the bug to Apple and have not had any luck in getting any assistance for a work around through Developer Technical Support. They have explained that the iOS always grabs the jpeg preview from a RAW photo's data. Presumably if the particular RAW format does not include a jpeg preview you'd get nothing, but we do not have the data to indicate if there are any formats out there that don't store a jpeg preview as well as the RAW data.
    You will find that a couple of third party apps have found some work-around to the issue. To date our only idea has been to access the RAW image directly and parse it for the jpeg preview ourselves. We are hoping the issue is resolved in the next version of the iOS, but don't have any information yet to indicate that it will or will not be.
    Good Luck!

  • I purchased my iMac using the same (and only) Apple ID I use to purchase apps. Third-party apps update fine, but the apps that came with my iMac (iPhoto, iMovie, etc) bring up a message saying I have to log in with the account I used to purchase them.

    I used my only Apple ID to purchase my iMac (Intel-based one).  I've never been able to update core apps that came with it.  I can update third party apps I've bought (like Coda), but when I try to update Garage Band, iPhoto, iMovie and so on, a popup message appears saying "You have updates available for other accounts" and "Log in with the account you used to purchase this app in order to update it", or similar (see screenshot above).
    The OS seems to get its updates fine - it's just the core apps from the App Store.
    I've only ever had one Apple ID, so I have no idea what to do.  I went to ask the Genius bar at my local Apple store, and they couldn't help, and insisted that I must have purchased the iMac using a different account, but I definitely didn't.  There are a few posts on non-Apple forums of this happening to other people, so it must be a rare bug.
    I'm a little concerned it may affect my ability to update from Lion to Mountian Lion.  Can anyone help?
    Dan

    Have you done a Disk Repair and a Disk Permissions Repair?
    If that doesn't resolve the problem I would suggest calling customer support about this issue as it is most likely on their (Apple's) end that the problem exists. 

  • Third party apps no longer work with bus transportation! HELP!

    I understand Apple no longer supports bus transportation (lame) but third party apps, such as SEAtac, OneBusAway, or anything else just gives me a 'no routes available' page. I can't find any routes on my desktop either. Is this happening to anyone else?!
    Does anyone know a) how to fix this or b) how to downgrade back to the 7.1 operating system?

    a) you would probably need to contact the app developer about their app, and I would know nothing about your desktop. b) Apple does not support downgrading of iOS. It cannot be done.

  • SAP R/3 integration with (Manual) Third-party App

    Hi All
    I am working on a scenario in which Third Party application has functionality which actually refines & correct the data upto the accuracy of 99%. So for this end-user needs to enter bit of information on their front-end then application will return the data on the basis of that information.
    Now the problem has different parts  -->
    *) If I choose that SAP R/3 will initiate the ( Synchronous ) process then ABAPers raised the concern that they will not be able to display the response data on correct SAP screen also how to actually access the front-end of Third party.
    Third-Party is ready to replace the Front-end with the web-service but then end-user will not be having the functionlity to select different options which is the strong part of Third-party application & also client is not agree to that.
    Do you think I should use BPM in above solution with correlation on some field to identify the SAP screen.
    *) If I choose Third Party application to initiate the ( Asynchronous ) process then again ABAPers raised the concern that how to display it on the correct SAP screen & how they know that data is coming at this point of time & they need to display it. Also Third Party said in this case they don't have expertise to customize their Front-end application & which will lead to additional cost to hire other developers.
    Now can you suggest some good solutions for this kind of scenario in which an application needs the Manual intervention & needs to be integrated with SAP R/3. Also suggest from which direction I should initiate the process.
    Thanks
    - Lalit Chaudhary -

    Matias
    <<<< with front-end do you refer to SAP R/3 ?
    No Matias with Front-End I meant Third Party is providing the web-page where end-user can enter the details & those will be refined & corrected by the Third-Party Application.
    <<<<< Which ways has the Third-Party app to connect with (file, database, jms, etc.).
    Third-Party App is providing Java Classes & Web-Services for integration but we don't want to access them directly, first of all we would like to invoke/access the Front-end application.
    <<<< What is the purpose of this third-party app ? just to receive data, validate it and return it once it is corrected ?
    Actually in this Front-end user can enter the data on given fields & data will be keep on refining while he is entering the more information into that given field. For e.g if the field says "City" & user enters "DE", a drop-down will come with all the cities in the world starting with "DE" like Delhi, Denmark etc.Once all the fields are populated with correct data user will click on "Submit" button which will send the data to SAP R/3 ( which we wish to do ).
    Now in this case when user will click on Submit button ( means Third-party will initiate the process ) & data will be send to XI using ( for e.g ) HTTP sender then ABAPer's raised concern that how they will be able to show it in the right screen without using proper thread ID.
    Pls. let me know in case you require any further information. My problem is this how to relate the Third-Party data with correct screen of SAP.
    Thanks
    - lalit -

  • Share calendar with third party apps

    Hello,
    i have just set up the calendar server. It works well will the mac's calendar app and iOS clients.
    I also managed to import the CalDAV calendars into thunderbird with lightning extensions for the non-mac clients.
    I can send invites to specific appointment and check availability of people so far.
    What does not work is sharing a calendar. As delegate of a calendar is sent invites to some users. The web frontend is pretty much functional but i do not see the calendar invites. I expected them to appear in the notifications area where appointment invites are also shown.
    How can i share complete calendars with users that do not have access to apple software?
    Regards

    If the developers of those apps have incorporated support for iCloud into their apps, then yes.
    Contact the developers of the third-party apps and ask.

  • Conflict with Third Party Apps?

    I am getting an occasional error saying there is a possible conflict with third party apps and that I need to check the drivers of my MIDI devices to see if they are up to date? Sorry but I did not record the exact wording. Does anyone know what this might mean, and how I need to go about checking drivers? I have a lot of interfaces and not sure how to see what's what. Thanks.

    Hi Midlake,
    Well, because they are known troublemakers. Search for 'takes' or 'take folder(s)' or 'comp' here on the forum and you'll find many a troubled soul crying out for help - including seasoned pro's, who thought they were beyond tears...
    O, they are fine for recording many takes - but thats' all. I'll select the best takes/phrases.
    regards, Erik.

  • Third party app messes with safari and chrome any help?

    The other day I downloaded GBA4 iOS on my iphone. It worked fine and I had no problems. A day later I was using safari and I was told safari can not identify the website so I went to details and I saw a false certificate for google : *.google.com. This is obviously an attempt at phishing and later the same thing happened with a false Facebook. So I am kind of worried. I haven't accepted any certificates yet. But I need help to fix this. I deleted the third party app and did a hard reboot but nothing any ideas?

    Because that GBA app is unauthorised, and the developer has had his developer certificate revoked, you had to put the date back on your iPhone. Did you change it back again afterwards? If not, that is what is causing the problem.
    The certificate requests you are getting are not fake. It's just that your phone thinks they are out of date because the date on your phone is set back.

  • Can iPhone be infected with a virus while accessing websites through a third party app?

    Hi there all, while accessing a newly found video website via a third party app on my iPhone 5, a window suddenly appears saying "your iPhone has been infected by a virus" and then gave a link to click "to prevent further damage from happening."   I chose to ignore the message since it's always been my understanding that iPhones are relatively impervious to viruses, however, since the pop up was now preventing me from doing anything else with the app, I just closed out the application entirely then rebooted the phone (just to be safe) and it's been working fine ever since.   I suspect this pop up was a fear based ploy intended to scare me into clicking the link being provided.  Am I correct, or is it actually possible for a virus to infect an iPhone just by going to an unscrupulous website without even downloading a file?   I haven't opened or done anything with this third party app ever since.   btw, my iPhone 5 is running iOS v8.1.2 and I've never had any issues with it in the past.  If anybody can answer it would surely be appreciated, many thanks!

    Several years ago, my oldest brother was stupid enough to let himself be duped into being a major participant in a personal situation having a direct impact upon me.  Prior to the rift that developed which ultimately tore our relationship apart, I suggested we meet for lunch one day as all I was wanting was for him to be honest with me.   Feeling guilty and hating all confrontation, he just had to get out of there, and so instead of answering my question he jumped up and shouted "YOU'RE ALWAYS DOING THAT TO ME!!" right in front of everyone at the restaurant.  As a tension breaker I shouted right back, "didn't YOU ever learn the word ALWAYS should NEVER be said during an argument?"   And so yes, you're right, I should have qualified my question more by saying "relatively impervious" instead.   MY BAD!!    I still want to say "THANKS" anyway for providing such a quick and accurate answer! 

  • Screen Resolution issue with most third party Apps

    I have noticed that the screen resolution on my new iPhone 6 is not the same across the apps. For example when I open Facebook, the fonts seems to be like a little blurred and the background appears blurred. I am sure the third party apps need to work with the new iPhone to get it fixed. But just wanted to make sure that there is no need to do anything at this point. These apps are making the new iPhone screen resolution look sub-standard which is in no way Apple's fault. These Apps need to grow up faster and release updated versions before the users start cursing them for lagging behind lol..
    On the other hand the Apps designed by Apple work perfectly fine!
    The new iPhone 6 is beautiful! Thank you Apple! I love you.

    I can't help with the problem, since I don't have a laptop or second monitor, but if you want to report this to Apple, send a bug report (or enhancement request) via its Bug Reporter system. Join the Apple Developer Connection (ADC)—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report/enhancement request. You'll get a get a Bug ID number; thus, starting a dialog directly with engineering.

  • Third party integration with Oracle Apps

    Hi friends,
    I have a dot net application and I would like to integrate that with oracle applications(specifically HR module). Can I do that? Does oracle apps provide any APIs to provide this third party integration with 3rd party software we have?
    can you please post any links if there is one which helps me in this direction
    thanks

    Hello,
    I am new on this forum and I have difficulty in beginning.
    I'm working in a similar project, indeed I need an example or a document which can help me for using the HRMS api's of oracle e-business suite via a dotNet plateform or SharePoint application.
    I have to work on a middelware allowing retreiving and persisting data from oracle e-business suite database using oracle HRMS api's like hr_appraisals_api. So haw can i call these api's from .NET application how can i use a .NET code to call these api's ?
    Can you help me please ? i'm waiting for your answers if possible and this is my e-mail address if necessary "[email protected]" .
    I would be so grateful if someone can help me. Thank you in advance.
    Cordially.

Maybe you are looking for

  • Problem in copying the territory id to the follow-up document

    Hi, I have sales order with all the partners determined with all the territories attached to them. Now I am trying to create a follow-up document from it. I am facing the following two issues: 1. It is copying the partners to the follow-up document w

  • Classic or instal OS9?

    I may be a bit dense, but I can't find a definative answer after much searching all over the support area. Here goes. I am giving away my B&W, but still want a way to run classic programs on my non-intel imac G5 isight, running 10.4.10. I have been r

  • CR2008SP2, records displayed twice

    Hi, I have a winforms app that was using CR for VS2008.  I've decided to use CR2008 on it instead.  I installed SP2. All is well except that two of my reports display every record in them twice. The records are coming from a runtime dataset.  I know

  • With last update to aperture  photos only show in photos and not in folders. Any idea?

    With latest update my photos are only showing in photos and not individual projects. Though when I mouse over project it gives me number of photos? Any ideas?

  • Brand New to Java and Programming

    I'm brand new, ( RAW ) to software programming at this time. I'm starting from scratch, I work on a Help Desk for the government so I can perform some software functionality but nothing as far as programming.. I would like recommendations for someone