Downloading Customization Resource Bundles

(Optional) The application can download the custom resources using this API. The customized resource bundles are assigned to application connections in the SAP Control Center.

A customization resource bundle is a JAR file that includes a manifest file of name and version properties. It enables you to associate deployed client applications with different versions of customization resources. See Application Customization Resource Bundles in SAP Control Center for SAP Mobile Platform for information about the implementation task flow of customizations resource bundles.

The following code illustrates how to download customization resource bundles.

NSData* customResourceBundleData = [ODPAppSettings getCustomizationResourceBundleWithCustomizationResource:CUSTOMRESOURCEBUNDLENAME userName:USERNAME passWord:PASSWORD error:&error];
  if (!error) 
  {
      // Further processing
  }