Okay, so here is what I believe is my issue and it’s straight from the IOS 7.0 release notes from Apple:
β’-[UIDevice uniqueIdentifier] is no longer accepted in submissions to the App Store. In iOS 7, apps that are already on the store or on usersβ devices that call this removed API will no longer be returned the UDID. Instead, -[UIDevice uniqueIdentifier] will return a 40-character string starting with FFFFFFFF, followed by the hex value of -[UIDevice identifierForVendor]. It is important to consider how this will affect existing apps. Consider submitting updates that no longer access the UDID.
So all the applications are returning a UDID now return a value like this: “FFFFFFFF85BB4D8B131A490F85972E3FFCE6D328”. And, they each return a different value.
Now, if I already had the UDID from the IPAD or IPHONE that I retrieved before IOS 7.0 then I can install the application on those units just fine.
However with further research I found a solution that allows you to get the real UDID off iTunes http://www.ehow.com/how_8433028_ipads-udid.html. I use Windows so when I could see the UDID I could right click on the UDID display and it gave me a copy option.