Error installing SAP mobile platform SDK 3.0 - sybase

I am trying to install SAP Mobile Platform SMP 3.0 and i got the following error
i searched and found out that the cause could be my 32-bit running windows. is is the reason ? and how can i solve it using a workaround or something ?

Have you gone through the Sybase documentation on SMP3.0 SDK?
http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc01996.0301/doc/html/title.html
There are some restrictions on installing SMP components for 32-bit systems. Check the Product Availability Matrix on 'Mobile' (SAP S-number required) : https://websmp205.sap-ag.de/sap/support/pam

According to official SMP 3.0 installation link,
If User Account Control (UAC) is present in the version of Windows
where you are installing, disable it. Restart the system for this
change to take effect. Access the Control Panel option that manages
User Account Control on your version of Windows. Set the user account
to never be notified about changes to your computer. Reenable UAC
after completing this installation.
So try disabling the UAC before installation (assuming you are logged in as administrator for this installation)

Related

active directory users functionality disappeared after windows 10 anniversary update

After windows 10 anniversary update and windows 10 creators update
the active directory users and computers functionality disappeared
and there was no way to re-activate it.
Downloading and re-installing WindowsTH-RSAT_WS_1709-x64.msu had no effect.
I solved this by uninstalling KB2693643 and then installing WindowsTH-RSAT_WS_1709-x64.msu again:
Control panel, Programs, see installed updates, select KB2693643, uninstall
download RSAT_WS_1709-x64.msu from https://www.microsoft.com/en-us/download/confirmation.aspx?id=45520
run RSAT_WS_1709-x64.msu, agree to install KB2693643, accept license, restart computer
P.S. Hope this may help somebody. Of course use x32 version if you have no x64 computer

Application doesn't detect Vidyo plugin/registry key(?) when run as administrator

I have a WPF application (let's call it Test.exe) which launches a WebBrowser control which needs to run in IE11 mode as it uses a VidyoWeb plugin installed on my host machine which requires IE11.
I have added an entry to the FEATURE_BROWSER_EMULATION registry key (in SOFTWARE/WOW6432Node/Microsoft/InternetExplorer/Main/FeatureControl since the application is 32-bit) as follows:
Name: Test.exe
Type: REG_DWORD
Value (decimal): 11001
When the application is not launched as an administrator then the plugin loads no problem. However when I run as admin the plugin isn't detected. I have no idea why the plugin wouldn't be detected when running with more privileges.
I am running the release exe of the application, not debugging using Visual Studio.
Typically on windows the installer performs a per user installation of per machine installation depending on the access privileges of the user. It sounds like you installed the plugin for that user account. Try installing the plugin from the admin account.

How to get installed application with owner (user) on AIX?

I am using "rpm -qa --qf" to retrieve list of installed applications/packages on AIX with corresponding versions. However, I would also need the corresponding user/owner for each of these applications.
Can anyone please confirm how this can be obtained using rpm OR any other utility available in AIX?
Thanks in advance.
By default, RPM packages are not installed per user, they are installed system wide. So username does not vary per package.
You could use the --dbpath option to RPM, giving it a user's home directory and having it track packages installed relative to just that user (~//bin, etc), but this would be completely independent from the master package database.

Unable to Deploy WP7 SDK Application on Windows Phone 8 Through VS2012

I have Registered my device for developer.
But after choosing device in VS2012 and start deploying , It Gives error .
Unable to install application. The maximum number of developer applications on this phone has been reached. Please uninstall a developer application and try again.
I am new to deployment on device . Please suggest .
Do you happen to have multiple Windows Phone 8 devices? It turns out that if you register two devices under the same name, this problem arises. I had registered two Windows Phone Devices for development, but I hadn't given them a unique name (they were both named the default, which is Windows Phone, I think). On the first device, I had multiple test apps installed and, obviously, on the second device, nothing was installed, hence my frustration regarding the error. I did the following to make it work:
Remove the phone(s) from the dev portal,
Unregister both devices using Windows Phone Developer Registration.
Rename the devices, making sure their names are not the same.
Re-register the phones again, now with new, unique names.
I hope it works for you as well.
Uninstall the unwanted applications from the device.
Restart the device
Try to deploy the solution. It will work now.
It means you have installed three(3) testing app. windows phone have limit of max 3 app installation for debug.
Uninstall one of your previously installed application.
Now deploy your new application again.
Hope will work now.

How to Resolve Quickbooks Interface Error: QBFC Error "Could Not Load File or Assembly Interop.QBFC7 or one of its dependencies"

I recently inherited a C# Winforms application that communicates with Quickbooks via their QBFC interface. The application contains a reference to the COM Server Interop.QBFC7.dll. The application works fine in our test environment and in several of our client's environments. Although, yesterday when I attempted to install it on a new customer's system I continued to get the following error:
Could Not Load File or Assembly 'Interop.QBFC, Version=8.0.0.87, Culture=neutral, PublicKeyToken=...' or one of its dependencies. The system cannot find the file specified.
I know that we have several customers running this application on various versions of Quickbooks (i.e. Quickbooks Pro, Premier and Enterprise between 2008 and Enterprise 11.0). To my knowledge, this is the first customer that we have attempted to deploy this application that has Enterprise 12.0.
I have attempted the following to resolve the issue with no success:
1) Install the QBFC7_Installer from the Intuit Developer Network Site
2) Install the Quickbooks SDK 10 Installer from the Intuit Developer Network Site
3) Verified that the Interop.QBFC7.dll file is present on the file system.
4) Attempted to manually register the COM object Interop.QBFC7.dll via the command prompt: regsvr32 Interop.QBFC7.dll (This fails as well and windows returns an error stating that it cannot find the object).
Does anyone have any suggestions or feedback about additional things that I can try to resolve this issue? I get the same error on 3 different machines at their site running different operating systems (i.e. Windows Server 2008, Windows 7, and Windows Vista)? I have also tried compiling in both x86 and 64-bit configurations to no avail.
Thanks in advance for any help.
First of all, you should be targeting an x86 build only. The QuickBooks SDK won't work if you target Any CPU or x64. Your main problem, though, is that you are looking for the wrong version of QBFC. Notice the version stamp on your error message:
Could Not Load File or Assembly 'Interop.QBFC, Version=8.0.0.87,
Culture=neutral, PublicKeyToken=...' or one of its dependencies. The
system cannot find the file specified
This is QBFC8, not QBFC7. So you should be able to fix the problem with the QBFC8 installer.
The version of QuickBooks should not make a difference, since QBFC 8 (or 7, for that matter) will work with the 2008 and Enterprise 11 or 12.
You should look into using a setup project to install your application in order to avoid this problem in the future. A setup project should detect the QBFC dependency automatically. Once you see this happening, go to SearchPath property of your setup project and add the MergeModule directory from the SDK that is installed on your machine. Once you do this, you should see that the QBFC and Xerces merge modules are added to your project automatically as dependencies. Of course, you'll also need to update your code to a more recent version of QBFC, but that's probably a good idea in any case.

Resources