<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>iPhone &amp; iPad Application Development</title>
    <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog</link>
    <description />
    <pubDate>Mon, 21 Jan 2013 10:57:27 GMT</pubDate>
    <generator>Jive SBS 5.0.1.1  (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2013-01-21T10:57:27Z</dc:date>
    <item>
      <title>Communicating with other iOS apps using URL Schemes</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2013/01/21/communicating-with-other-ios-apps-using-url-schemes</link>
      <description>&lt;!-- [DocumentBodyStart:cddcda6a-a066-47c2-a679-586bd0029c67] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;When I started developing iOS apps a couple of years ago, I was concerned that enterprise apps were going to quickly succumb to the world of development scope creep. Since the apps were fairly focused and provided a single function or process solution, what if the business wanted more? For example, you have a CRM app displaying your customer contact information and some high level details regarding order history and credit limits, but what if the user wanted some additional details from your BI solution drilling down into historical orders and profit analysis? Well, in that case, you had a few options: &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;1) Extend the scope of the app - by adding functionality and options, sometimes a reasonable option if the scope is not excessive or the functionality is relative to the app. In our&amp;#160; above example, probably not.&lt;/p&gt;&lt;p&gt;2) Build another app with replicated functionality - duplicate code to display the customers and overview details in both apps.&lt;/p&gt;&lt;p&gt;3) Build 2 separate apps - But this would require the user to re-enter information (such as searching for and entering the Customer ID) in the 2nd app.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;The fourth option is to use option 3 but with a twist, by enabling communication between the 2 apps by using URL Schemes. As the majority of iOS developers know, you can open other standard iOS apps like Safari, Mail or the Phone using the UIApplication SharedApplication class, what many developers and mobility architects overlook is that, not only standard apps can be called from your code, but any app which has a URL scheme defined. This gives you the ability to separate processes by application, and in the event a user would like drill deeper into additional information or functions, you can pass information to another app where that can be handled. What if the app is not installed? Good question ... You device will smartly open the Apple App Store giving you the ability to install the missing app. Configuring and consuming the communication between 2 apps is very simple and straight forward.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Art/app_open_url_2x.png"&gt;&lt;img alt="http://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Art/app_open_url_2x.png" class="jive-image" height="501" src="http://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Art/app_open_url_2x.png" width="455"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;You can read about the URL Schemes within the apple documentation here:&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html"&gt;http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;and here: &lt;a class="jive-link-external-small" href="http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html#//apple_ref/doc/uid/TP40007072-CH7-SW18"&gt;http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html#//apple_ref/doc/uid/TP40007072-CH7-SW18&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Within the SAP Suite of iOS Apps you can also find URL Schemes already configured and in use, some examples of these are:&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;CRM @ SAP&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Find account by number: crmatsap://openAccount?accountid=&amp;lt;number&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Open opportunity by number: crmatsap://openOpportunity?opportunityid=&amp;lt;number&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Open account by number: crmatsap://openAccount?accountid=&amp;lt;number&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;SAP Pricing&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Open Product by ID: pricingapp://openProduct?productid=&amp;lt;productid&amp;gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;If you are still not sure if iOS URL Schemes are right for you here are a couple of Pro's and Con's&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Pros:&lt;/p&gt;&lt;p&gt;- Use other custom apps to augment yours&lt;/p&gt;&lt;p&gt;- Use other companies apps to augment yours&lt;/p&gt;&lt;p&gt;- No need to redevelop similar functionality&lt;/p&gt;&lt;p&gt;- Communicate between apps&lt;/p&gt;&lt;p&gt;- Launch your app from a hyperlink (online/in a web page?)&lt;/p&gt;&lt;p&gt;- No need to be online for base functionality&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Cons:&lt;/p&gt;&lt;p&gt;- Shouldn't pass sensitive data&lt;/p&gt;&lt;p&gt;- Clearly define the scope of each app and avoid over simplifying (e.g. an app for searching for customers by name, another for searching by ID.)&lt;/p&gt;&lt;p&gt;- Should not be a critical function, since there is no guarantee that the data is being received by the other application&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;I am curious to know how many app developers out there are using URL Schemes within their custom development?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cddcda6a-a066-47c2-a679-586bd0029c67] --&gt;</description>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">bi</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">sap</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">mobility</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">erp</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">mobile</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">gateway</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">ipad</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">app</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">objective-c</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">mac</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">xcode</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">cocoa</category>
      <pubDate>Mon, 21 Jan 2013 08:03:26 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2013/01/21/communicating-with-other-ios-apps-using-url-schemes</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2013-01-21T08:03:26Z</dc:date>
      <clearspace:dateToText>4 months, 22 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/communicating-with-other-ios-apps-using-url-schemes</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=78767</wfw:commentRss>
    </item>
    <item>
      <title>iOS 6 SUP tutorial</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2013/01/03/ios-6-sup-tutorial</link>
      <description>&lt;!-- [DocumentBodyStart:b7d757ae-ea64-4b51-b544-61d35ceb6f42] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I wrote a tutorial, &lt;a class="jive-link-blog-small" data-containerId="61576" data-containerType="37" data-objectId="77932" data-objectType="38" href="http://scn.sap.com/community/developer-center/mobility-platform/blog/2013/01/03/sup101-ios6-client"&gt;http://scn.sap.com/community/developer-center/mobility-platform/blog/2013/01/03/sup101-ios6-client&lt;/a&gt;, which uses the latest API's available in iOS 6. It uses storyboard instead of the old SUP101 tutorial. I did not know about this group, so I put it in "SAP Mobile Platform Development Center".&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b7d757ae-ea64-4b51-b544-61d35ceb6f42] --&gt;</description>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">tutorial</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">ios6</category>
      <pubDate>Thu, 03 Jan 2013 12:47:32 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2013/01/03/ios-6-sup-tutorial</guid>
      <dc:creator>Ivan C Myrvold</dc:creator>
      <dc:date>2013-01-03T12:47:32Z</dc:date>
      <clearspace:dateToText>4 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/ios-6-sup-tutorial</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=77949</wfw:commentRss>
    </item>
    <item>
      <title>BO Mobile Solution ─ BO Mobile技術架構</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/10/31/bo-mobile-solution-bo-mobile%E6%8A%80%E8%A1%93%E6%9E%B6%E6%A7%8B</link>
      <description>&lt;!-- [DocumentBodyStart:07c11e00-eaeb-4109-987c-e6cc2b04b172] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; 手持裝置的普及帶給我們更大的便利，其中，平日只能在電腦上看的報表，現在也能從手持裝置中觀看了。然而，DB的資料是如何轉化成手持裝置上可以看的資訊呢? 此篇將與大家分享BO Mobile與BO平台溝通的架構及溝通過程如何達到安全性。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt;下圖為DB到Mobile Client端的溝通架構：&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-74465-151859/S1.png"&gt;&lt;img alt="S1.png" class="jive-image-thumbnail jive-image" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-74465-151859/571-400/S1.png" style="margin-right: auto; margin-left: auto; display: block;" width="571"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; 所有的DB會透過資料擷轉進到BOE或Explorer Server，Web App Server會接收Mobile Client的請求。接著，透過TCP協定與BOE伺服端的溝通，撈取Webi、CR報表或Explorer。最後，送到Mobile Server上回傳給Mobile Client。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; Mobile Client端的應用程式分別有SAP BI(支援Webi與CR報表的呈現)以及SBO Explorer，這兩者不同的應用程式，現階段分別透過各自的服務運作。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; Mobile應用程式端與Web App之間主要以HTTP進行溝通，除了HTTP之外，若要達到Mobile Server與Mobile Client間溝通的加密效果，則可佈署HTTPS在Web Application Server上，詳細佈署細節可參考您現有的Web Application Server文件，增加其安全性。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; 整體來說，Mobile Client與Mobile Server間是透過HTTP協定來進行溝通，而Mobile Server與CMS、Web Intelligence Servers與Adaptive Processing Servers間的溝通則是透過Corba mode。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; 在安全機制上，BO Mobile支援DMZ(Demilitarized Zone)的佈署，DMZ主要是在區域網路(LAN)外面再加一層保護網，這樣外部駭客僅能接觸到DMZ，卻無法觸及任一網段進行攻擊。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; DMZ也常被稱為是Perimeter Network，現今也有不少服務都採用此種機制達到其安全性，如Web servers、Mail servers、FTP、serversVoIP(Voice over Internet Protocol) servers等等。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt;下圖為單一防火牆搭配DMZ佈署之架構圖。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-74465-151860/S2.png"&gt;&lt;img alt="S2.png" class="jive-image-thumbnail jive-image jiveImage" height="399" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-74465-151860/506-399/S2.png" style="margin-right: auto; margin-left: auto; display: block;" width="506"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt; 除了單一防火牆搭配DMZ的佈署之外也可利用兩個防火牆與DMZ進行佈署，以達到更強大的防護網。&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt;以上為BO Mobile技術架構的分享，接下來將為大家分享文章如下：&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt;BO Mobile Solution ─ BO Mobile應用實例&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt;BO Mobile Solution ─ BO Mobile搭配不同BOE版本之差異性(XI3.1 VS XI4) &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: times new roman,times; font-size: 12pt;"&gt;BO Mobile Solution ─ BO Mobile未來趨勢&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:07c11e00-eaeb-4109-987c-e6cc2b04b172] --&gt;</description>
      <pubDate>Wed, 31 Oct 2012 02:33:15 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/10/31/bo-mobile-solution-bo-mobile%E6%8A%80%E8%A1%93%E6%9E%B6%E6%A7%8B</guid>
      <dc:creator>Ellie Tsai</dc:creator>
      <dc:date>2012-10-31T02:33:15Z</dc:date>
      <clearspace:dateToText>6 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/bo-mobile-solution-bo-mobile%E6%8A%80%E8%A1%93%E6%9E%B6%E6%A7%8B</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=74465</wfw:commentRss>
    </item>
    <item>
      <title>BO Mobile Solution ─ BO Mobile特色</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/10/03/bo-mobile-solution-bo-mobile%E7%89%B9%E8%89%B2</link>
      <description>&lt;!-- [DocumentBodyStart:e27eddfb-c137-459e-b6a0-2278e9c9ed83] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;網路世代的盛行帶起了行動裝置的風潮，行動通訊從早期的&lt;/span&gt;GSM&lt;span style="font-family: '新細明體','serif';"&gt;到&lt;/span&gt;3G&lt;span style="font-family: '新細明體','serif';"&gt;再到近年來的&lt;/span&gt;4G LTE&lt;span style="font-family: '新細明體','serif';"&gt;，通訊速度規格不斷地進化，行動裝置能達到的需求越來越多，過去似乎很難達成的事，現在已經有辦法達成了嗎&lt;/span&gt;?&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;過去要看的日報月報，一定要透過電腦才能看嗎&lt;/span&gt;? &lt;span style="font-family: '新細明體','serif';"&gt;資訊的掌握如果只侷限在電腦上，是否已經落伍了&lt;/span&gt;? &lt;span style="font-family: '新細明體','serif';"&gt;其中什麼樣的報表是一定得時時追蹤呢&lt;/span&gt;? BO Mobile&lt;span style="font-family: '新細明體','serif';"&gt;到底有什麼樣的魔力，以下就讓我們一探究竟吧。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="text-indent: -18pt;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span class="pasted-list-info"&gt;1.&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;&lt;strong&gt;一機得知天下事&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;手持裝置的盛行，我們可以利用&lt;/span&gt;Mobile&lt;span style="font-family: '新細明體','serif';"&gt;訂票、聽音樂、看股票等等，在這種一台&lt;/span&gt;Mobile&lt;span style="font-family: '新細明體','serif';"&gt;裝置具多用途的情況下，除了休閒之餘，我們也能透過&lt;/span&gt;Mobile&lt;span style="font-family: '新細明體','serif';"&gt;來看報表，&lt;/span&gt;BO&lt;span style="font-family: '新細明體','serif';"&gt;提供的&lt;/span&gt;APP&lt;span style="font-family: '新細明體','serif';"&gt;應用程式讓我們能夠掌握公司資訊，一台機器有如此多功能的變化，除了一般的休閒娛樂之外，還能夠一機得知天下事，兩全其美。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; font-family: '新細明體','serif';"&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72750-142812/1.png"&gt;&lt;img alt="1.png" class="jive-image jiveImage" height="256" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72750-142812/473-256/1.png" width="473"/&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify; text-indent: -18pt;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span class="pasted-list-info"&gt;2.&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;&lt;strong&gt;不受限於網路環境&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;如果您是一個常忙於奔波的主管，時常坐高鐵或飛機，在這樣沒有網路的環境下，難道&lt;/span&gt;BO Mobile&lt;span style="font-family: '新細明體','serif';"&gt;就無用武之地了嗎&lt;/span&gt;? &lt;span style="font-family: '新細明體','serif';"&gt;錯，我們可以透過應用程式先下載最新的報表，當我們在無法使用網路的情形下，我們仍然能在沒網路的環境下查看以下載好的報表，不會因為網路環境問題就完全無法查看報表了。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72750-142813/2.png"&gt;&lt;img alt="2.png" class="jive-image" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72750-142813/348-400/2.png" width="348"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="text-indent: -18pt;"&gt;&lt;span class="pasted-list-info"&gt;1.&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;span style="font-size: 12pt; font-family: '新細明體','serif';"&gt;&lt;strong&gt;走到哪看到哪&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;過去，總需要一台電腦或是筆電連上公司主機，才能查看公司報表，對於報表我想邊走邊看，走到哪看到哪已經不會只侷限在電腦上了，只是一個簡單看報表的動作，不會再只侷限於電腦上，&lt;/span&gt;BO Mobile&lt;span style="font-family: '新細明體','serif';"&gt;實現了我們走到哪看到哪的情境。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-family: '新細明體','serif'; font-size: 12pt;"&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72750-142799/2.png"&gt;&lt;img alt="2.png" class="jive-image-thumbnail jive-image" height="238" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72750-142799/620-238/2.png" style="float: right;" width="620"/&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify; text-indent: -18pt;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span class="pasted-list-info"&gt;1.&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify; text-indent: -18pt;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span class="pasted-list-info"&gt;&amp;#160;&amp;#160; &lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;&lt;strong&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 警示提醒，即時掌握危急資訊&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;某些報表我們會設定一些警訊通知，然而當警示被觸發時，是否能及時被提醒，&lt;/span&gt;BO Mobile&lt;span style="font-family: '新細明體','serif';"&gt;幫我們做到了，這樣的提醒效果，更能幫助我們掌握最新最即時的資訊，以利馬上進行危機處理。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="text-indent: -18pt;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span class="pasted-list-info"&gt;2.&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;&lt;strong&gt;資訊易用&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;透過&lt;/span&gt;BO Mobile&lt;span style="font-family: '新細明體','serif';"&gt;，我們只需要手指簡單的點擊手持裝置，便能輕易使用報表資訊，一張報表設計的好，在&lt;/span&gt;Mobile&lt;span style="font-family: '新細明體','serif';"&gt;的操作上便更直覺易用，視覺化的介面呈現，搭配使用者可自行篩選想看的資料，便能更輕易地對資訊進行分析解讀。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 以上大致列舉幾項需&lt;/span&gt;BO Mobile&lt;span style="font-family: '新細明體','serif';"&gt;的原因，但大多數的原因都取決於人的使用習性，因為技術的發達，人類的需求也漸漸被滿足，以前習慣在電腦上看報表，但現在因為行動化的盛行，手持裝置也能幫我們達到資訊隨時取用的需求了，隨著未來技術的進步，非什麼不可的原因也會漸漸因人的使用習性而長成，這些都將值得我們來拭目以待。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; font-family: '新細明體','serif';"&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72750-142847/3.png"&gt;&lt;img alt="3.png" class="jive-image jiveImage" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72750-142847/280-400/3.png" width="280"/&gt;&lt;/a&gt;&lt;span style="font-size: 12pt; font-family: '新細明體','serif';"&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72750-142848/4.png"&gt;&lt;img alt="4.png" class="jive-image jiveImage" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72750-142848/279-400/4.png" width="279"/&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="font-family: '新細明體','serif';"&gt;此篇將針對&lt;/span&gt;&lt;strong&gt;&lt;span lang="EN-US" style="font-family: 'Calibri','sans-serif';"&gt;BO Mobile&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family: '新細明體','serif';"&gt;&lt;strong&gt;特色&lt;/strong&gt;進行介紹，未來預計分享的主題如下：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&lt;strong&gt;&lt;span lang="EN-US" style="font-family: 'Calibri','sans-serif';"&gt;BO Mobile&lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;技術架構&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&lt;strong&gt;&lt;span lang="EN-US" style="font-family: 'Calibri','sans-serif';"&gt;BO Mobile&lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;的應用實例&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&lt;strong&gt;&lt;span lang="EN-US" style="font-family: 'Calibri','sans-serif';"&gt;BO Mobile&lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;搭配不同&lt;/span&gt;&lt;span lang="EN-US" style="font-family: 'Calibri','sans-serif';"&gt;BOE&lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;版本之差異性&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&lt;strong&gt;&lt;span lang="EN-US" style="font-family: 'Calibri','sans-serif';"&gt;BO Mobile&lt;/span&gt;&lt;span style="font-family: '新細明體','serif';"&gt;未來趨勢&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;請大家敬請期待。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e27eddfb-c137-459e-b6a0-2278e9c9ed83] --&gt;</description>
      <pubDate>Wed, 03 Oct 2012 03:36:57 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/10/03/bo-mobile-solution-bo-mobile%E7%89%B9%E8%89%B2</guid>
      <dc:creator>Ellie Tsai</dc:creator>
      <dc:date>2012-10-03T03:36:57Z</dc:date>
      <clearspace:dateToText>7 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/bo-mobile-solution-bo-mobile%E7%89%B9%E8%89%B2</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=72750</wfw:commentRss>
    </item>
    <item>
      <title>Notes Viewer for Mac</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/09/26/note-viewer-for-mac</link>
      <description>&lt;!-- [DocumentBodyStart:a4c4be70-2084-4155-9fb3-c9ac2d75bf61] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Since I have been spending the last few weeks getting some Netweaver instances running on my new Hyper V server I have spent a considerable amount of time on the SAP Notes website debugging and troubleshooting everything from installation to master guides. Since my SAP Note Viewer apps for &lt;a class="jive-link-external-small" href="http://itunes.apple.com/us/app/sap-note-viewer-for-iphone/id404037926?mt=8"&gt;iPhone&lt;/a&gt; and &lt;a class="jive-link-external-small" href="http://itunes.apple.com/us/app/sap-note-viewer-for-ipad/id406435671?mt=8"&gt;iPad&lt;/a&gt; are fairly popular and I was tired of having to login so many times, I figured I would develop a "clone" for the Mac.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;The free app features a pretty basic status bar menu and when you open it for the first time, requests your s-id and password and your search language (German and English). Once opened, you can enter a Note number or search term, submitting will automatically bring up the note in your browser. If you enter a search term, the app will search and return a list of results which you can select, opening the note. The search is fairly slow, as it is, in essence, making two round trips (one for the page and the second for the results).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;I have also submitted the app to Mac App Store and it is currently in review, but if you would like to get your hands on it and give me your thoughts, it would be greatly appreciated. Here is a link to a download page: &lt;a class="jive-link-external-small" href="http://www.li-labs.com/SNVMac.zip"&gt;http://www.li-labs.com/SNVMac.zip&lt;/a&gt; (450Kb), just unzip and drag into your "Applications" folder.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Here are a couple screenshots.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72548-141598/icon_256x256.png"&gt;&lt;img alt="icon_256x256.png" class="jive-image" height="256" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72548-141598/256-256/icon_256x256.png" width="256"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72548-141595/Screen+Shot+2012-09-27+at+10.16.45+PM.png"&gt;&lt;img alt="Screen Shot 2012-09-27 at 10.16.45 PM.png" class="jive-image" height="228" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72548-141595/282-228/Screen+Shot+2012-09-27+at+10.16.45+PM.png" style="float: left;" width="282"/&gt;&lt;/a&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-72548-141596/Screen+Shot+2012-09-27+at+10.19.01+PM.png"&gt;&lt;img alt="Screen Shot 2012-09-27 at 10.19.01 PM.png" class="jive-image" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-72548-141596/312-400/Screen+Shot+2012-09-27+at+10.19.01+PM.png" style="float: none;" width="312"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a4c4be70-2084-4155-9fb3-c9ac2d75bf61] --&gt;</description>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">sap</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">objective-c</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">mac</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">notes</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">xcode</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">cocoa</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">osx</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">kb</category>
      <pubDate>Wed, 26 Sep 2012 14:45:23 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/09/26/note-viewer-for-mac</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2012-09-26T14:45:23Z</dc:date>
      <clearspace:dateToText>7 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/note-viewer-for-mac</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=72548</wfw:commentRss>
    </item>
    <item>
      <title>Supplier Analytics - a new free iPad app</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/08/07/supplier-analytics--a-free-new-ipad-app</link>
      <description>&lt;!-- [DocumentBodyStart:8f202108-a06b-4ac5-ad2d-73528c1ad1a9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;After writing about utilizing &lt;a class="jive-link-blog-small" data-containerId="31316" data-containerType="37" data-objectId="56781" data-objectType="38" href="http://scn.sap.com/community/bi-dashboards/blog/2011/02/14/custom-bi-on-ipad-using-javascript"&gt;javascript charts in iOS apps a little while ago&lt;/a&gt;, I decided it would be a good marketing tool for my company (&lt;a class="jive-link-external-small" href="http://www.li-labs.com"&gt;Lithium Labs&lt;/a&gt;) to develop a free/public app which demonstrated the features of using such technologies on handheld devices. The free app is called &lt;a class="jive-link-external-small" href="http://itunes.apple.com/us/app/supplier-analytics/id547467484?mt=8"&gt;Supplier Analytics&lt;/a&gt; and when using the sample dataset gives you some insight into how a enterprise app could be used in an automotive manufacturing/supplier environment. The app gives operations or managers insight into the performance and operational well-being of a company globally, and nationally by subsequently drilling down into a production facility or branch.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;The app is designed to be an "offline" app - unlike most apps these days which are all striving to have syncing and "always on" connectivity, I think dashboards and report based data can be just as effective without jumping through hoops.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;From a technology perspective the app is a native iPad app developed with XCode and uses javascript charting controls to display the datasets which are made available through a regular IIS/Apache/ITS/Gateway/PI or SUP server and cached locally on the device for offline use.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Here are a couple of screenshots and a &lt;a class="jive-link-external-small" href="http://itunes.apple.com/us/app/supplier-analytics/id547467484?mt=8"&gt;link&lt;/a&gt; if you are interested in trying it out for yourself.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/us/app/supplier-analytics/id547467484?mt=8"&gt;http://itunes.apple.com/us/app/supplier-analytics/id547467484?mt=8&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-70162-126400/mzl.csndkonh.480x480-75.jpg"&gt;&lt;img alt="mzl.csndkonh.480x480-75.jpg" class="jiveImage" height="360" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-70162-126400/480-360/mzl.csndkonh.480x480-75.jpg" style="width: 450px; height: 338px;" width="480"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-70162-126399/mzl.swpoxjne.480x480-75.jpg"&gt;&lt;img alt="mzl.swpoxjne.480x480-75.jpg" class="jiveImage" height="360" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-70162-126399/480-360/mzl.swpoxjne.480x480-75.jpg" style="width: 450px; height: 338px;" width="480"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-70162-126398/mzl.fxbezygk.480x480-75.jpg"&gt;&lt;img alt="mzl.fxbezygk.480x480-75.jpg" class="jiveImage" height="360" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-70162-126398/480-360/mzl.fxbezygk.480x480-75.jpg" style="width: 450px; height: 338px;" width="480"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Have any comments or questions? Constructive criticism is always welcome.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8f202108-a06b-4ac5-ad2d-73528c1ad1a9] --&gt;</description>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">bi</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">mobile</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">javascript</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">gateway</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">ipad</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">xcode</category>
      <pubDate>Tue, 07 Aug 2012 18:55:08 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/08/07/supplier-analytics--a-free-new-ipad-app</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2012-08-07T18:55:08Z</dc:date>
      <clearspace:dateToText>9 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/supplier-analytics--a-free-new-ipad-app</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=70162</wfw:commentRss>
    </item>
    <item>
      <title>Mobile App Deployment - how do i keep users in sync between R/3 and Gateway</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/08/01/mobile-app-deployment--how-do-i-keep-users-in-sync-between-r3-and-gateway</link>
      <description>&lt;!-- [DocumentBodyStart:f3165992-fe07-4762-a5b6-148c649df12e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For the intention of this blog post I assume a customer has been running only R/3 so&lt;br/&gt;far and is adding a Gateway and SUP server into the mix. Additionally I assume&lt;br/&gt;that until now there were few enough users using the R/3 system such that all&lt;br/&gt;of them could be created manually, one by one. Our first incarnation of mobile&lt;br/&gt;apps for casual use (e.g. Financial Fact Sheet or SAP Interview Assistant) do require&lt;br/&gt;a user to exist in R/3, Gateway and SUP (when using basic authentication).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Now the challenge is that when such customer extends his roll-out to serve thousands of&lt;br/&gt;employees creating the users manually and in 3 different systems it is tedious&lt;br/&gt;and does not really scale. There might be 10s of new employees each day that&lt;br/&gt;need to be added and when a new region receives a roll-out then 100s of users&lt;br/&gt;need to created at once. In this blog I would like to point out some basic&lt;br/&gt;ideas of how this can be addressed. In your particular situation few or none of&lt;br/&gt;the suggestion might be feasible - so this is more of an overview to make sure&lt;br/&gt;you are aware of all the options.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Suggestion 1: Move Gateway into R/3&lt;/strong&gt;: Instead of a separate server you&lt;br/&gt;can put Gateway onto the R/3 box directly. The necessary plugin is available&lt;br/&gt;not just for Netweaver 7.03 but also for earlier releases down to 7.00. But&lt;br/&gt;beware, only apps that support OData (and not the previous protocol called&lt;br/&gt;SData) like the latest version of FinancialFactSheet work with a Gateway&lt;br/&gt;version that runs on NW 7.00 or 7.01. Interview Assistant does not (yet)&lt;br/&gt;support OData. Also, keep i mind the reasons why you might want the Gateway to&lt;br/&gt;be a separate server (avoid load on the R/3 box, security by doing the protocol&lt;br/&gt;translation on a dedicated server).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Suggestion 2: Use automatic user onboarding in&lt;br/&gt;SUP&lt;/strong&gt;: when using&lt;br/&gt;basic authentication early versions of our apps and mobile sdk hardcode the&lt;br/&gt;basic authentication method together with the manual SUP user creation. The&lt;br/&gt;later part adds additional security as SUP has to have a positive (white) list&lt;br/&gt;of users defined that are the only once allowed to onboard. But as SUP has&lt;br/&gt;evolved (version 2.1.1 onwards) and the apps have been updated this is not tied&lt;br/&gt;together anymore. So if you use a more recent version of the app (e.g. FinancialFactSheet&lt;br/&gt;or any of the new apps we shipped in April or July) then you do not have to&lt;br/&gt;create users manually anymore when using basic authentication.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Suggestion 3: Use the Central User Administration&lt;/strong&gt;: This capability is a little trick&lt;br/&gt;to set-up (&lt;a class="jive-link-wiki-small" data-containerId="2061" data-containerType="14" data-objectId="17019" data-objectType="102" href="http://scn.sap.com/docs/DOC-17019"&gt;http://scn.sap.com/docs/DOC-17019&lt;/a&gt; and &lt;a class="jive-link-external-small" href="http://www.youtube.com/watch?v=v7h4S_His-g"&gt;http://www.youtube.com/watch?v=v7h4S_His-g&lt;/a&gt; give an overview) but does&lt;br/&gt;the job of replicating users created in a server (e.g. a client in R/3) to a&lt;br/&gt;client (the Gateway machine). As there is a trusted connection set-up already&lt;br/&gt;between Gateway and R/3 this is partially done if you already have implemented&lt;br/&gt;Gateway. If your end users are true casual users that never log into the R/3&lt;br/&gt;system then you should create the user in R/3 without (initial) password and in&lt;br/&gt;Gateway with a password to ensure access for this user is only via Gateway. If&lt;br/&gt;you happen to use Solution Manager then this can also be the leading system for&lt;br/&gt;the central user administration (see &lt;a class="jive-link-thread-small" data-containerId="2150" data-containerType="14" data-objectId="578177" data-objectType="1" href="http://scn.sap.com/thread/578177"&gt;http://scn.sap.com/thread/578177&lt;/a&gt;).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Suggestion 4: Create multiple new users at once&lt;/strong&gt;: A simple approach is described&lt;br/&gt;here: &lt;a class="jive-link-thread-small" data-containerId="2188" data-containerType="14" data-objectId="1207325" data-objectType="1" href="http://scn.sap.com/thread/1207325"&gt;http://scn.sap.com/thread/1207325&lt;/a&gt;. Both this and the manual user&lt;br/&gt;creation will trigger the replication of users to other ABAP-based system if&lt;br/&gt;the central user administration is configured.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Suggestion 5: SAP Identity Management&lt;/strong&gt;: If you will have additional&lt;br/&gt;systems to distribute this user too it makes sense to consider going with a&lt;br/&gt;dedicated server for identity management (&lt;a class="jive-link-community-small" data-containerId="1" data-containerType="14" data-objectId="2060" data-objectType="14" href="http://scn.sap.com/community/netweaver-idm"&gt;http://scn.sap.com/community/netweaver-idm&lt;/a&gt;).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;If you are aware of other options please let me know &amp;ndash; I would like to find ways to&lt;br/&gt;make the administration of 1000s of casual users as simple as possible. From an&lt;br/&gt;IT point of view but also from a casual user point of view.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f3165992-fe07-4762-a5b6-148c649df12e] --&gt;</description>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">mobile</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">sup</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">gateway</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">app</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">users</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">casual</category>
      <pubDate>Wed, 01 Aug 2012 15:03:12 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/08/01/mobile-app-deployment--how-do-i-keep-users-in-sync-between-r3-and-gateway</guid>
      <dc:creator>Marcus Behrens</dc:creator>
      <dc:date>2012-08-01T15:03:12Z</dc:date>
      <clearspace:dateToText>9 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/mobile-app-deployment--how-do-i-keep-users-in-sync-between-r3-and-gateway</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=70022</wfw:commentRss>
    </item>
    <item>
      <title>User experience is the king</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/08/01/user-experience-is-the-king</link>
      <description>&lt;!-- [DocumentBodyStart:6e702260-57cc-4fe4-8fbd-7e9e1810e5a2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;iPhones have changed the whole meaning of user experience. Virtually all the new mobile phones are smart-phones. Companies are allowing BYOD (Bring Your Own Device). Emails are already an integral part of smart-phones. The next big thing is enabling Business Processes. The technology is very much there but the mind-set is still developing. With the laptop screens, the only design consideration was to put everything on the screen. The user would 'learn' to find what they needed. &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;But with iPhones, that is no longer the case. The form factor is small, the user attention span is in seconds. SAP functional consultants now have to add user design into their repertoire to really delivery a good solution.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;I have started to design screens for SAP HR and SAP Workflow that I will post here for discussion soon.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6e702260-57cc-4fe4-8fbd-7e9e1810e5a2] --&gt;</description>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">design</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">saphr</category>
      <pubDate>Wed, 01 Aug 2012 13:34:35 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/08/01/user-experience-is-the-king</guid>
      <dc:creator>Manish Thakkar</dc:creator>
      <dc:date>2012-08-01T13:34:35Z</dc:date>
      <clearspace:dateToText>9 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/user-experience-is-the-king</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=70019</wfw:commentRss>
    </item>
    <item>
      <title>Where is the Enterprise Authentication in iOS</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/06/20/where-is-the-enterprise-authentication-in-ios</link>
      <description>&lt;!-- [DocumentBodyStart:4bc7cedb-f4c1-433b-8306-a0d0c4a31957] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;After Apple added Twitter authentication in iOS 5, iOS 6 will do the same for Facebook.&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-68304-112067/Bildschirmfoto+2012-06-19+um+13.57.26.png"&gt;&lt;img alt="Bildschirmfoto 2012-06-19 um 13.57.26.png" class="jive-image" height="232" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-68304-112067/200-232/Bildschirmfoto+2012-06-19+um+13.57.26.png" style="width: 200px; height: 232.98969072164948px; float: left;" width="200"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;While some may think this is just another Silicon Valley partnership thingie, I actually think it's a big deal, even in an enterprise context. And it's not about pressing LIKE on an app. Read on.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;We &lt;a class="jive-link-blog-small" data-containerId="30851" data-containerType="37" data-objectId="67782" data-objectType="38" href="http://scn.sap.com/community/security/blog/2012/06/07/on-passwords"&gt;recently had to discuss&lt;/a&gt; several password leaks from sites like LinkedIn, eHarmony and last.fm.I think everyone is perfectly clear that it's not a good idea to either use weak passwords or re-use the same password over and over again.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;But still, if you're really really honest to yourself you'll have to admit that you're doing it. And probably not only once. One of the worst offenders is often the enterprise environment, where you'll have countless passwords to manage, sometimes (always?) with incoherent password policies. The different requirements, coupled with weird change frequencies, may drive you to re-use passwords, often simple ones, to make life bearable. And insecure.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;This is where the Twitter an Facebook integration come in. Both sites support an authentication method called "&lt;a class="jive-link-external-small" href="http://en.wikipedia.org/wiki/OAuth"&gt;OAUTH&lt;/a&gt;" which allows you to sign into another site (which needs to implement support for OAUTH - see documentation from &lt;a class="jive-link-external-small" href="https://dev.twitter.com/docs/auth/implementing-sign-twitter"&gt;Twitter&lt;/a&gt; and &lt;a class="jive-link-external-small" href="https://developers.facebook.com/docs/authentication/"&gt;Facebook&lt;/a&gt;) with your Twitter or Facebook credentials. Google also supports OAUTH for lots of sites.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Here's a rough description of how it works:&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;You arrive at a new site that offers OAUTH authentication&lt;/li&gt;&lt;li&gt;You select your identity provider (Twitter, Facebook, Google)&lt;/li&gt;&lt;li&gt;You're being redirected to this site where you login and allow the identity provider to pass on your credentials to the new site&lt;/li&gt;&lt;li&gt;The new site now has some form of credentials (like user ID or screen name) and the verification that those belong to you.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Why's that a good thing? Let me count the ways:&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;No need to give all your data to yet another new site. They just use what you have maintained at Twitter or Facebook (name, user ID, Avatar)&lt;/li&gt;&lt;li&gt;NO NEED TO GIVE THEM YOUR PASSWORD! They just receive an authentication token, they'll NEVER see your email adress or password!&lt;/li&gt;&lt;li&gt;You control the authentication through your OAUTH provider. Check &lt;a class="jive-link-external-small" href="https://twitter.com/settings/applications"&gt;https://twitter.com/settings/applications&lt;/a&gt; for Twitter or &lt;a class="jive-link-external-small" href="https://www.facebook.com/settings?tab=applications"&gt;https://www.facebook.com/settings?tab=applications&lt;/a&gt; for Facebook to check which applications already use your OAUTH credentials (it's good practice to go through these lists every other week to see if everything in there still needs access...)&lt;/li&gt;&lt;li&gt;You can always revoke the access token.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;So, why is this a good thing in iOS specifically? Coming back to my opening paragraph, it's quite easy to enter a long complex password _once_ in the Twitter and Facebook settings in iOS, then every iOS app supporting OAUTH should be able to ask for your permission without you having to re-enter a password. This makes it A LOT easier to sustain good passwords. If every new app requires you to manually type in a password you'll be tempted to resort to something you can easily remember, which is kinda counter-productive.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;And the enterprise implications? Sorry, we're not there yet. One reason is that your employer will probably not allow you to loginn to your ERP system using your Facebook login. But what if a more enterprisey OAUTH provider allowed you to do that? With the growing number of mobile applications that might be an important mechanism to secure authentication for mobile enterprise services.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;What is your experience with mobile apps and passwords? Are you already using the integrated OAUTH mechanisms? What if you could login to SCN with your Twitter ID? (just thinking...)&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4bc7cedb-f4c1-433b-8306-a0d0c4a31957] --&gt;</description>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">twitter</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">facebook</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">security</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">authentication</category>
      <category domain="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/tags">oauth</category>
      <pubDate>Wed, 20 Jun 2012 19:39:30 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2012/06/20/where-is-the-enterprise-authentication-in-ios</guid>
      <dc:creator>Frank Koehntopp</dc:creator>
      <dc:date>2012-06-20T19:39:30Z</dc:date>
      <clearspace:dateToText>11 months, 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/where-is-the-enterprise-authentication-in-ios</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=68304</wfw:commentRss>
    </item>
    <item>
      <title>Insight for SAP - A new free app from Lithium Labs</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/10/21/insight-for-sap--a-new-free-app-from-lithium-labs</link>
      <description>&lt;!-- [DocumentBodyStart:f9e9d4a2-ce80-4206-881a-820e80007e66] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Here is a little app we threw together for SAP Customers, developers, users and generally interested parties in the ERP world.&lt;/p&gt;&lt;p&gt;We wanted to aggregate mutliple, interesting sources of SAP data and news and present it in a simple easy to use interface. The app pulls data from google, SDN, interesting blogs and the SAP news site.&lt;/p&gt;&lt;p&gt;As usual our apps always welcome news ideas and constrctive critism, so feel free to provide some feedback!&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/app/insight-for-sap/id473533776?mt=8"&gt;&lt;br/&gt;Here is a link to the app in the iTunes app store&lt;br/&gt;&lt;br/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-59741-87194/Screen-Shot-2011-10-15-at-10.52.jpg"&gt;&lt;img alt="" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-59741-87194/547-400/Screen-Shot-2011-10-15-at-10.52.jpg" width="547"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-59741-87195/Screen-Shot-2011-10-15-at-10.43.jpg"&gt;&lt;img alt="" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-59741-87195/547-400/Screen-Shot-2011-10-15-at-10.43.jpg" width="547"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-59741-87196/Screen-Shot-2011-10-15-at-10.43.55-PM.jpg"&gt;&lt;img alt="" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-59741-87196/547-400/Screen-Shot-2011-10-15-at-10.43.55-PM.jpg" width="547"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.li-labs.com"&gt;Lithium Labs&lt;/a&gt; provides a full suite of services for strategies,&amp;#160; designing, developing, implementing and maintaining a enterprise&amp;#160; mobility solution. We support all major mobile operating systems and&amp;#160; hardware including iOS, (iPad and iPhone), Android, Blackberry and&amp;#160; Windows Mobile, Symbol and Intermec.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f9e9d4a2-ce80-4206-881a-820e80007e66] --&gt;</description>
      <pubDate>Fri, 21 Oct 2011 17:05:17 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/10/21/insight-for-sap--a-new-free-app-from-lithium-labs</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2011-10-21T17:05:17Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/insight-for-sap--a-new-free-app-from-lithium-labs</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=59741</wfw:commentRss>
    </item>
    <item>
      <title>SAP Note Viewer for iPad and iPhone v2.0 Released</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/05/21/sap-note-viewer-for-ipad-and-iphone-v20-released</link>
      <description>&lt;!-- [DocumentBodyStart:2df4ddac-5de6-4dbf-839b-511ea6f19418] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thanks to everyone who has downloaded the app to date (roughly 9000 of you!). Also thanks to all the people providing feedback and ideas for future versions, keep them coming. &lt;/p&gt;&lt;p&gt;Version 2 of the app has been given some major improvements to the iPhone version including the ability to review the comment attributes (version, applications and status) which was already in the iPad version. Another improvement to the iPhone app is the ability to launch the note in Safari on the device. Basically a quick link to the note but you will still need to authenticate yourself.&lt;br/&gt;&lt;br/&gt;The biggest improvement in v 2.0 is the ability to now search for notes rather than having to know the specific note numbers, as per the previous releases. Another interesting improvement is the ability to "Tag" notes, currently, Implemented, Deleted, Success and Failed are the options. A bunch of bug fixes were also made.&lt;br/&gt;&lt;br/&gt;You can find the new versions here:&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=406435671&amp;amp;mt=8"&gt;SAP Note Viewer v2.0 for iPad&lt;/a&gt;&lt;br/&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/us/app/sap-note-viewer-for-iphone/id404037926"&gt;SAP Note Viewer v2.0 for iPhone&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I have some great new features planned for upcoming releases and versions, so if you are interested you can me &lt;a class="jive-link-blog-small" data-containerId="26932" data-containerType="2020" data-objectId="21480" data-objectType="37" href="http://scn.sap.com/people/paul.aschmann/blog"&gt;here&lt;/a&gt;, &lt;a class="jive-link-external-small" href="http://twitter.com/#!/paups"&gt;@paups&lt;/a&gt; or my company &lt;a class="jive-link-external-small" href="http://twitter.com/#!/lithlabs"&gt;@lithlabs&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Here are a few screenshots&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;br/&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-57862-72411/Default-Landscapeipadcopy.png"&gt;&lt;img alt="image" border="0" height="234" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-57862-72411/320-234/Default-Landscapeipadcopy.png" width="320"/&gt;&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-57862-72412/Screenshot2011-05-19at10.16.23AMcopy.png"&gt;&lt;img alt="image" border="0" height="234" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-57862-72412/320-234/Screenshot2011-05-19at10.16.23AMcopy.png" width="320"/&gt;&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-57862-72413/Screenshot2011-05-19at10.15.20AMcopy.png"&gt;&lt;img alt="image" border="0" height="234" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-57862-72413/320-234/Screenshot2011-05-19at10.15.20AMcopy.png" width="320"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2df4ddac-5de6-4dbf-839b-511ea6f19418] --&gt;</description>
      <pubDate>Sat, 21 May 2011 16:11:18 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/05/21/sap-note-viewer-for-ipad-and-iphone-v20-released</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2011-05-21T16:11:18Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/sap-note-viewer-for-ipad-and-iphone-v20-released</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=57862</wfw:commentRss>
    </item>
    <item>
      <title>Bringing Comments to SAP Notes with SAP Note Viewer v1.2</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/04/20/bringing-comments-to-sap-notes-with-sap-note-viewer-v12</link>
      <description>&lt;!-- [DocumentBodyStart:ad421db6-3d3f-42eb-a516-e05da9dd77ec] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;SAP Note Viewer v1.2 is now in the app store and ready for download which can be found here:&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/app/sap-note-viewer-for-ipad/id406435671?mt=8"&gt;SAP Note Viewer for iPad v1.2&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/us/app/sap-note-viewer-for-iphone/id404037926?mt=8"&gt;SAP Note Viewer for iPhone v1.2&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;A major feature enhancement is the addition of Comments. Users can add and read comments added by other users and brings a social aspect to the notes. Hopefully, users who have experience with a particular note will comment on how useful the note was, possibly what worked or didnt work and any other findings.&lt;/p&gt;&lt;p&gt;Other changes include some minor bug fixes and a quick link to the online note.&lt;/p&gt;&lt;p&gt;As requested by many users, text searching will be a feature of Version 2.0 but is proving to be fairly challenging due to no open API's to search against. (Anyone listening @SAP?)&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-57450-71558/Screenshot2011-04-13at10.21.22PM.png"&gt;&lt;img alt="" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-57450-71558/306-400/Screenshot2011-04-13at10.21.22PM.png" width="306"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ad421db6-3d3f-42eb-a516-e05da9dd77ec] --&gt;</description>
      <pubDate>Wed, 20 Apr 2011 13:49:02 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/04/20/bringing-comments-to-sap-notes-with-sap-note-viewer-v12</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2011-04-20T13:49:02Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>16</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/bringing-comments-to-sap-notes-with-sap-note-viewer-v12</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=57450</wfw:commentRss>
    </item>
    <item>
      <title>v1.1 Update SAP Note Viewer for iPad and iPhone</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/01/20/v11-update-sap-note-viewer-for-ipad-and-iphone</link>
      <description>&lt;!-- [DocumentBodyStart:45afb1ba-b00d-4da3-a4a4-fe5a56a754ce] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Apple has just reviewed and approved updates to for the SAP Note Viewer for iPad and iPhone. Both versions are now up to v1.1&lt;/p&gt;&lt;p&gt;Bug Fixes and Improvments:&lt;/p&gt;&lt;p&gt;iPhone: fixed minor performance issues and resolved the issue which caused the app to crash if used with certain languages (Including Swedish and Dutch).&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;iPad: fixed minor performance issues and resolved the issue which caused the&amp;#160; app to crash if used with certain languages (Including Swedish and&amp;#160; Dutch) and also added a small information panel displaying the note version, components and status.&lt;/p&gt;&lt;p&gt;SAP Note Viewer for iPhone v1.1&lt;br/&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/app/sap-note-viewer-for-iphone/id404037926?mt=8"&gt;http://itunes.apple.com/app/sap-note-viewer-for-iphone/id404037926?mt=8&lt;/a&gt;&lt;/p&gt;&lt;p&gt;SAP Note Viewer for iPad v1.1&lt;br/&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/app/sap-note-viewer-for-ipad/id406435671?mt=8"&gt;http://itunes.apple.com/app/sap-note-viewer-for-ipad/id406435671?mt=8&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Future Updates&lt;/p&gt;&lt;p&gt;I have started work on v2 of the application and am planning on including the features listed below. Thanks to everyone who gave feedback and suggested some great ideas.&lt;/p&gt;&lt;p&gt;Version 2 Features&lt;/p&gt;&lt;p&gt;- Full text search rather than just note numbers&lt;/p&gt;&lt;p&gt;- Web View and PDF View of the note&lt;/p&gt;&lt;p&gt;- Syncing of notes across devices (iPad and iPhone)&lt;/p&gt;&lt;p&gt;&lt;br/&gt;Future Improvment Suggestions&lt;/p&gt;&lt;p&gt;- Ability to add comments about a specific note and create discussions (thanks to @greg_not_so)&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;Feedback is always welcomed and appriciated.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:45afb1ba-b00d-4da3-a4a4-fe5a56a754ce] --&gt;</description>
      <pubDate>Thu, 20 Jan 2011 05:45:03 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2011/01/20/v11-update-sap-note-viewer-for-ipad-and-iphone</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2011-01-20T05:45:03Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/v11-update-sap-note-viewer-for-ipad-and-iphone</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=56528</wfw:commentRss>
    </item>
    <item>
      <title>SAP Note Viewer for iPad</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2010/12/06/sap-note-viewer-for-ipad</link>
      <description>&lt;!-- [DocumentBodyStart:68e8e8f9-6abc-4033-b2be-45cb07dd53f9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Firstly, thanks to everyone for the support of the &lt;a class="jive-link-blog-small" data-containerId="31911" data-containerType="37" data-objectId="55798" data-objectType="38" href="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2010/11/19/sap-note-viewer-for-iphone"&gt;SAP Note Viewer for iPhone&lt;/a&gt; of this app, users have really been growing steadily since its release and as of yesturday we had around 925 users. Feedback has been great and some really awesome ideas are coming from&amp;#160; the community.&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://itunes.apple.com/app/sap-note-viewer-for-ipad/id406435671?mt=8"&gt;The app is currently in the App Store and can be found here.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The app has the same features as the iPhone version which have been listed below, but the ipad really is considerably better for viewing the notes than the phone.&lt;/p&gt;&lt;p&gt;I dont anticipate the app to do as well just due to the number of iPads versus iPhones in the market, but hopefully it will make a select few peoples lives just a little bit easier. (My intention!)&lt;/p&gt;&lt;p&gt;If you have an Android: &lt;a class="jive-link-blog-small" data-containerId="1419" data-containerType="37" data-objectId="53675" data-objectType="38" href="http://scn.sap.com/people/dagfinn.parnas/blog/2010/05/30/sap-support-note-viewer-for-android-grows-up-new-version"&gt;SAP Support Note Viewer for Android grows up (new version)&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Version 1 Features&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Search for notes by note number&lt;/li&gt;&lt;li&gt;Notes are saved to device in PDF format for offline retrieval&lt;/li&gt;&lt;li&gt;Notes can be market as favorites for easy identification&lt;/li&gt;&lt;li&gt;Note URL's can be shared via email&lt;/li&gt;&lt;li&gt;Username/password is saved (on your device only) for easy authentication&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;S-ID or I-ID is required for use with access to SAP Notes, a valid D, M SAP ID may also work as well .... &lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-55987-69337/splash-svn.png"&gt;&lt;img alt="image" border="0" height="375" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-55987-69337/487-375/splash-svn.png" style="border: 0; vertical-align: middle;" width="487"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-55987-69338/vert-svn.png"&gt;&lt;img alt="image" border="0" height="400" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-55987-69338/307-400/vert-svn.png" style="border: 0; vertical-align: middle;" width="307"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-55987-69339/main-svn.png"&gt;&lt;img alt="image" border="0" height="375" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-55987-69339/488-375/main-svn.png" style="border: 0; vertical-align: middle;" width="488"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://scn.sap.com/servlet/JiveServlet/showImage/38-55987-69340/settings-snv.png"&gt;&lt;img alt="image" border="0" height="375" src="http://scn.sap.com/servlet/JiveServlet/downloadImage/38-55987-69340/488-375/settings-snv.png" style="border: 0; vertical-align: middle;" width="488"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:68e8e8f9-6abc-4033-b2be-45cb07dd53f9] --&gt;</description>
      <pubDate>Mon, 06 Dec 2010 11:04:07 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2010/12/06/sap-note-viewer-for-ipad</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2010-12-06T11:04:07Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/sap-note-viewer-for-ipad</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=55987</wfw:commentRss>
    </item>
    <item>
      <title>SAP Note Viewer for iPhone</title>
      <link>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2010/11/19/sap-note-viewer-for-iphone</link>
      <description>&lt;!-- [DocumentBodyStart:e2c26425-cbc9-4fe9-9d2e-f83c799339ad] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;NB. &lt;a class="jive-link-blog-small" data-containerId="31911" data-containerType="37" data-objectId="55987" data-objectType="38" href="http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2010/12/06/sap-note-viewer-for-ipad"&gt;SAP Note Viewer for iPad&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Well, its been an interesting few months with the XCode platform and learning Objective C was interesting, but I am glad to announce my side project has been released and is available in the Apple App Store. The free app is called SAP Note Viewer for iPhone and is just that ... a SAP OSS Note viewer which allows people to search for and download the notes and store them on their iPhone/iPad in PDF format.&lt;br/&gt;&lt;br/&gt;The app also allows you to share the note details via email and mark specific notes as "Favorites" for easy reference.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;Since this is Version 1, my intention is to simply get the ball rolling and hope for some feedback from the community to get some ideas on where it should go and what functionality everyone would like to see.&lt;br/&gt;&lt;br/&gt;The iPad version is up for review and I am hoping it will be approved any day now. So if you use SAP Notes regularly - keep an eye out for an app called "SAP Note Viewer for iPad"&lt;br/&gt;&lt;br/&gt;Here are a few screenshots and a &lt;a class="jive-link-external-small" href="http://itunes.apple.com/app/sap-note-viewer-for-iphone/id404037926?mt=8"&gt;link to the app here.&lt;/a&gt; Feedback will be greatly appreciated.&lt;br/&gt;&lt;br/&gt;Some ideas for version 2:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Note syncing across devices (between iPad and iPhone). &lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;A small and simple website where saved notes can be viewed, downloaded and then pushed to devices.&lt;/li&gt;&lt;li&gt;Better sort and marking features, including"Implemented", "Delayed", "Ignored" and so on.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;If you are interested in a Android version, check out Dagfinn Parnas SAP support Note Viewer for Android &lt;a class="jive-link-blog-small" data-containerId="1419" data-containerType="37" data-objectId="53675" data-objectType="38" href="http://scn.sap.com/people/dagfinn.parnas/blog/2010/05/30/sap-support-note-viewer-for-android-grows-up-new-version"&gt;SAP Support Note Viewer for Android grows up (new version)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.paulaschmann.com/wp-content/uploads/2010/11/SAP-Note-Viewer-Website-1.png"&gt;&lt;img align="middle" alt="" height="868" src="http://www.paulaschmann.com/wp-content/uploads/2010/11/SAP-Note-Viewer-Website-1.png" width="399"/&gt;&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://a1.phobos.apple.com/us/r1000/056/Purple/85/da/39/mzl.kjiozzxh.320x480-75.jpg"&gt;&lt;img align="middle" alt="" height="460" src="http://a1.phobos.apple.com/us/r1000/056/Purple/85/da/39/mzl.kjiozzxh.320x480-75.jpg" width="320"/&gt;&lt;/a&gt;&amp;#160;&amp;#160;&amp;#160; &lt;a href="http://a1.phobos.apple.com/us/r1000/040/Purple/1e/4a/ab/mzl.fzzttuyv.320x480-75.jpg"&gt;&lt;img align="middle" alt="" height="460" src="http://a1.phobos.apple.com/us/r1000/040/Purple/1e/4a/ab/mzl.fzzttuyv.320x480-75.jpg" width="320"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.paulaschmann.com/wp-content/uploads/2010/11/app-store-badge-300x98.png"&gt;&lt;img align="middle" alt="" height="98" src="http://www.paulaschmann.com/wp-content/uploads/2010/11/app-store-badge-300x98.png" width="300"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;On another note if you are interested in other iOS Apps here is a very small sneak peek of my next project well under way ...&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;a href="http://www.paulaschmann.com/wp-content/uploads/2010/11/Screen-shot-2010-11-19-at-4.07.29-PM1.png"&gt;&lt;img alt="" src="http://www.paulaschmann.com/wp-content/uploads/2010/11/Screen-shot-2010-11-19-at-4.07.29-PM1.png"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e2c26425-cbc9-4fe9-9d2e-f83c799339ad] --&gt;</description>
      <pubDate>Fri, 19 Nov 2010 18:47:46 GMT</pubDate>
      <guid>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/2010/11/19/sap-note-viewer-for-iphone</guid>
      <dc:creator>Paul Aschmann</dc:creator>
      <dc:date>2010-11-19T18:47:46Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
      <wfw:comment>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/comment/sap-note-viewer-for-iphone</wfw:comment>
      <wfw:commentRss>http://scn.sap.com/community/mobile/iphone-and-ipad/blog/feeds/comments?blogPost=55798</wfw:commentRss>
    </item>
  </channel>
</rss>

