Request An App

I want to request two applications i really want to for the iphone 4 and the itouch 4G. One is Oovoo with video chat. Oovoo is the next big thing next to Skype and Lara Coft: Tombraider I love tombraider and it mean so much as a apple lover to have these two apps.

You can request anything you want: Apple Feedback

Similar Messages

  • Approve Request Fiori app - UI Extensions not working

    We have configured the standard Approve Requests app to show Customer Invoice approval and it works fine. And there are 3 requirements I am trying to achieve in our sandbox on top of the Approve Requests (CA_ALL_APV) app.
    1. Add a custom UI field in the info tab of the details page.
    2. Enable to show the attachment and notes tab (standard app has these 2 not visible)
    3. Enable multiple approval(I think i'll start another discussion for this requirement since standard doesn't support mass approval-which is such a negative for this app)
    After downloading the application and adding it to an SAPUI5 project in eclipse, I made the following changes:
    For requirement 1, I created  InfoFields.fragment.xml where i have the below code:
    <core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core">
        <Label  text="Vendor ID"/>
          <Text  text="1234"/>
        <Label  text="Custom Field 2"/>
          <Text text="Custom Text 2"/>
    </core:FragmentDefinition>
    Additionally for requirement 1 along with requirement 2, i created a customizing object under the metadata object with the below code in Component.js:
    customizing : {
      "sap.ui.viewModifications": {
      "cross.fnd.approve.requests.view.S3": {
      "ARAttachmentIconTabFilter": {
      "visible": true,
      "cross.fnd.approve.requests.view.S3": {
      "ARNoteIconTabFilter": {
      "visible": true,
      "sap.ui.viewExtensions" : {
      "cross.fnd.approve.requests.view.S3":{
      "CustomerExtensionForInfoTabContent": {
      className: "sap.ui.core.Fragment",
      fragmentName: "cross.fnd.approve.requests.view.InfoFields",
      type : "XML"
    After making the changes, I uploaded the WebContent folder of the project back to the backend with the report /UI5/UI5_REPOSITORY_LOAD.
    I named the new BSP application ZVCA_ALL_APV5.
    How i tested? I tested it in 2 ways:
    1. From SE80, Right Click and test. This does not load anything. A blank page is shown. The console in the IE developer tools shows no errors.
    2. Change the URL in LPD_CUST to point to the new BSP. The run the fiori launchpad. this will show the tile for Approve Requests with the correct number of workitems as 2. But once you click on the tile, an error popup is shown which reads 'Failure - Unable to start App'. The console in IE has an error: "TypeError - Object doesn't support property or method '_createRequestUrl' Approve Requests".
    I made the changes to Component.js and did not touch Component-dbg.js or Component-preload.js. Do i need to change these 2 files too each time i change Component.js?
    We are in process to decide if we really want to use Fiori or go with Kony. So I would want to get Fiori working in sandbox with our custom requirement to give it a chance.
    @Fiori Gurus: What do you think the problem is? Am i making any silly mistake here?
    Best Regards,
    Varun

    I'm sorry , here below is the correct version.
    jQuery.sap.declare("cross.fnd.approve.requests.Component");
    jQuery.sap.require("sap.ui.core.UIComponent");
    jQuery.sap.require("sap.ca.scfld.md.ConfigurationBase");
    jQuery.sap.require("cross.fnd.approve.requests.Configuration");
    jQuery.sap.require("sap.ui.core.routing.Router");
    jQuery.sap.require("sap.ca.scfld.md.ComponentBase");
    // new Component
    sap.ca.scfld.md.ComponentBase.extend("cross.fnd.approve.requests.Component", {
      metadata : sap.ca.scfld.md.ComponentBase.createMetaData("MD", {
      "name": "Approve Requests", // F0392
      "version" : "1.2.9",
      "library" : "cross.fnd.approve.requests",
      "includes" : [
      "dependencies" : {
      "libs" : [
      "sap.m",
      "sap.me"
      "components" : [
      "config" : {
      "resourceBundle" : "i18n/i18n.properties",
      "titleResource" : "SHELL_TITLE",
      "icon" : "sap-icon://approvals",
      "favIcon" : "./resources/sap/ca/ui/themes/base/img/favicon/Approve_Requests.ico", //FIXME: should use F0392, but resource is not like that for W1s
      "homeScreenIconPhone" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/57_iPhone_Desktop_Launch.png", //FIXME: should use F0392, but resource is not like that for
      "homeScreenIconPhone@2" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/114_iPhone-Retina_Web_Clip.png", //FIXME: should use F0392, but resource is not like that for
      "homeScreenIconTablet" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/72_iPad_Desktop_Launch.png", //FIXME: should use F0392, but resource is not like that for
      "homeScreenIconTablet@2" : "./resources/sap/ca/ui/themes/base/img/launchicon/Approve_Requests/144_iPad_Retina_Web_Clip.png", //FIXME: should use F0392, but resource is not like that for
      "startupImage320x460" : "./resources/sap/ca/ui/themes/base/img/splashscreen/320_x_460.png",
      "startupImage640x920" : "./resources/sap/ca/ui/themes/base/img/splashscreen/640_x_920.png",
      "startupImage640x1096" : "./resources/sap/ca/ui/themes/base/img/splashscreen/640_x_1096.png",
      "startupImage768x1004" : "./resources/sap/ca/ui/themes/base/img/splashscreen/768_x_1004.png",
      "startupImage748x1024" : "./resources/sap/ca/ui/themes/base/img/splashscreen/748_x_1024.png",
      "startupImage1536x2008" : "./resources/sap/ca/ui/themes/base/img/splashscreen/1536_x_2008.png",
      "startupImage1496x2048" : "./resources/sap/ca/ui/themes/base/img/splashscreen/1496_x_2048.png"
      // Navigation related properties
      viewPath : "cross.fnd.approve.requests.view",
      detailPageRoutes : {
      "detail" : {
                    "pattern" : "detail/{SAP__Origin}/{InstanceID}/{contextPath}",
                    "view" : "S3",
      fullScreenPageRoutes : {
                "detail_deep" : {
                   "pattern" : "detail_deep/{SAP__Origin}/{InstanceID}/{contextPath}",
                   "view" : "S3",
    customizing : {
    "sap.ui.viewExtensions" : {
    "cross.fnd.approve.requests.view.S3":{
    "CustomerExtensionForInfoTabContent": {
    className: "sap.ui.core.Fragment",
    fragmentName: "cross.fnd.approve.requests.view.CustomFrag1",
    type : "XML"
      * Initialize the application
      * @returns {sap.ui.core.Control} the content
      createContent : function() {
            var oViewData = {component: this};
      return sap.ui.view({
      viewName : "cross.fnd.approve.requests.Main",
      type : sap.ui.core.mvc.ViewType.XML,
      viewData : oViewData
      setDataManager : function(oDataManager) {
      this.oDataManager = oDataManager;
      getDataManager : function() {
      return this.oDataManager;

  • IPlanet can't forward request to app server, why?

    My opinion is , iPlanet Web Server 6 + websphere 6 App Server.
    I generate the "plugin-cfg.xml" in WAS6 for connecting to iPlanet, but iPlanet can't forward requests to App Server at all, error log as below:
    "for host 172.17.18.80 trying to GET /DataExpert/jsp/login/Login.jsp, handle-processed reports: The request method is not applicable to this requested resource."
    I guess it must be the configuration problems of iPlanet, what do you think?

    magnus.conf
    #ServerRoot C:/iPlanet/Servers/https-csdopen
    ServerID https-csdopen
    ServerName csdopen
    ExtraPath C:/iPlanet/Servers/bin/https/bin;${NSES_JRE_RUNTIME_LIBPATH}
    ErrorLog C:/iPlanet/Servers/https-csdopen/logs/errors
    MtaHost name-of-mail-server
    DNS off
    Security off
    ClientLanguage en
    AdminLanguage en
    DefaultLanguage en
    RqThrottle 128
    Init fn=flex-init access="$accesslog" format.access="%Ses->client.ip% - %Req->vars.auth-user% [%SYSDATE%] \"%Req->reqpb.clf-request%\" %Req->srvhdrs.clf-status% %Req->srvhdrs.content-length%"
    Init fn=load-types mime-types=mime.types
    #Init fn="load-modules" shlib="C:/iPlanet/Servers/bin/https/bin/NSServletPlugin.dll" funcs="NSServletEarlyInit,NSServletLateInit,NSServletNameTrans,NSServletService" shlib_flags="(global|now)"
    #Init fn="NSServletEarlyInit" EarlyInit=yes
    #Init fn="NSServletLateInit" LateInit=yes
    Init fn="load-modules" funcs="as_init,as_handler,as_term" shlib="C:/Program Files/IBM/WebSphere/Plugins/bin/ns41_http.dll"
    Init fn="as_init" bootstrap.properties="C:/Program Files/IBM/WebSphere/AppServer/profiles/AppSrv01/config/cells/csdopenCell01/nodes/csdopenNode01/servers/webserver1/plugin-cfg.xml"
    obj.conf
    # Use only forward slashes in pathnames--backslashes can cause
    # problems. See the documentation for more information.
    <Object name=default>
    Service fn="as_handler"
    AddLog fn="as_term"
    NameTrans fn="pfx2dir" from="/servlet" dir="C:/iPlanet/Servers/docs/servlet" name="ServletByExt"
    NameTrans fn=pfx2dir from=/mc-icons dir="C:/iPlanet/Servers/ns-icons" name="es-internal"
    NameTrans fn="pfx2dir" from="/manual" dir="C:/iPlanet/Servers/manual/https" name="es-internal"
    NameTrans fn=document-root root="$docroot"
    PathCheck fn=nt-uri-clean
    PathCheck fn="check-acl" acl="default"
    PathCheck fn=find-pathinfo
    PathCheck fn=find-index index-names="index.html,home.html"
    ObjectType fn=type-by-extension
    ObjectType fn=force-type type=text/plain
    Service method=(GET|HEAD) type=magnus-internal/imagemap fn=imagemap
    Service method=(GET|HEAD) type=magnus-internal/directory fn=index-common
    Service method=(GET|HEAD) type=*~magnus-internal/* fn=send-file
    AddLog fn=flex-log name="access"
    </Object>
    <Object name=cgi>
    ObjectType fn=force-type type=magnus-internal/cgi
    Service fn=send-cgi
    </Object>
    <Object name="servlet">
    ObjectType fn=force-type type=text/html
    Service fn="NSServletService"
    </Object>
    <Object name="jsp092">
    ObjectType fn="type-by-extension"
    ObjectType fn="change-type" type="magnus-internal/jsp092" if-type="magnus-internal/jsp"
    Service fn="NSServletService" type="magnus-internal/jsp092"
    </Object>
    <Object name="ServletByExt">
    ObjectType fn=force-type type=magnus-internal/servlet
    Service type="magnus-internal/servlet" fn="NSServletService"
    </Object>
    <Object name="es-internal">
    PathCheck fn="check-acl" acl="es-internal"
    </Object>
    DataExpertClass.obj.conf
    # Sun Netscape Alliance - obj.conf
    # You can edit this file, but comments and formatting changes
    # might be lost when the admin server makes changes.
    # Use only forward slashes in pathnames--backslashes can cause
    # problems. See the documentation for more information.
    <Object name="default">
    Service fn="as_handler"
    AddLog fn="as_term"
    NameTrans fn="strip-params"
    NameTrans fn="pfx2dir" from="/mc-icons" dir="C:/iPlanet/Servers//ns-icons" name="es-internal"
    NameTrans fn="home-page" path="/docs/DataExpert/index.html"
    NameTrans fn="document-root" root="$docroot"
    PathCheck fn="nt-uri-clean"
    PathCheck fn="check-acl" acl="default"
    PathCheck fn="find-pathinfo"
    PathCheck fn="find-index" index-names="index.html,home.html"
    ObjectType fn="type-by-extension"
    ObjectType fn="force-type" type="text/plain"
    Service method="(GET|HEAD)" type="magnus-internal/imagemap" fn="imagemap"
    Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
    Service method="(GET|HEAD)" type="*~magnus-internal/*" fn="send-file"
    AddLog fn="flex-log" name="access"
    </Object>
    <Object name="cgi">
    ObjectType fn="force-type" type="magnus-internal/cgi"
    Service fn="send-cgi"
    </Object>
    <Object name="servlet">
    ObjectType fn="force-type" type="text/html"
    Service fn="NSServletService"
    </Object>
    <Object name="jsp092">
    ObjectType fn="type-by-extension"
    ObjectType fn="change-type" type="magnus-internal/jsp092" if-type="magnus-internal/jsp"
    Service fn="NSServletService" type="magnus-internal/jsp092"
    </Object>
    <Object name="ServletByExt">
    ObjectType fn="force-type" type="magnus-internal/servlet"
    Service type="magnus-internal/servlet" fn="NSServletService"
    </Object>
    <Object name="es-internal">
    PathCheck fn="check-acl" acl="es-internal"
    </Object>

  • Need to make periodic request to App Server from NSAPI SAF

    I have to send a keep alive ping to a existing Session on our app server from a NSAPI SAF on IWS6.
    First, is making a direct socket call the best way to handle it or is there another suggestion for sending the request.
    Second, if using the direct socket connection is the way to go do I need to use the net_* methods within the NSAPI code or can I use native socket code.
    Third, will there be any issues with making this type of socket call from a spawned thread, and can I use the native threads on Sun Solarias.
    Some code examples would be very helpful since I can't find much at all on the site.

    NSAPI doesn't expose any infrastructure for managing outbound connections, and the list of supported net_* functions does not include socket, bind, or connect analogs. You are probably best off using native socket code.
    On Solaris, you can create your thread using the NSAPI systhread_create function or the Solaris pthread_create or thr_create functions. Note that you should not call NSAPI functions from a thread you create yourself unless you first call the NSAPI prepare_nsapi_thread function.

  • Feature Request: Uninstall App

    I don't see a way to uninstall a recently installed app, does this mean we just drag-n-drop?
    I'm making a feature request for the ability to uninstall, or an explanation of how to uninstall otherwise.
    <Edited by Host>

    f you want to report this issue to Apple's engineering, send a bug report or an enhancement request via its Bug Reporter system. To do this, join the Mac Developer Program—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report or enhancement request. The nice thing with this procedure is that you get a response and a follow-up number; thus, starting a dialog with engineering.

  • UDID request from app developer

    Hi... I'm having problems with an app that keeps crashing, I've reported it to the developer who has now sent me the following request. Is this a safe and normal procedure?
    "We have a beta ready that we believe will correct all of the issues you are experiencing".
    "In order for us to allow you to download it without first releasing it into the App Store, we need you to provide us with your device UDID #. This is a unique identifying # that is specific to your device. The reason for this is that we can build the beta version and specify that it is only to work on the device's we tell it to - hence the need for the UDID#".

    Hi... I'm having problems with an app that keeps crashing, I've reported it to the developer who has now sent me the following request. Is this a safe and normal procedure?
    "We have a beta ready that we believe will correct all of the issues you are experiencing".
    "In order for us to allow you to download it without first releasing it into the App Store, we need you to provide us with your device UDID #. This is a unique identifying # that is specific to your device. The reason for this is that we can build the beta version and specify that it is only to work on the device's we tell it to - hence the need for the UDID#".

  • Feature Request: Allow Apps to Access Apple ID User Address

    This is a feature request for new iOS functionality
    If iOS gave permission for apps to access the home or billing address a user has defined when setting up their Apple ID, then I believe the app can use this address to automatically set up the shipping of a purchased item for example. This would enable apps to sell physical goods, paid for by the user's Apple ID and set up for shipping to his Apple ID address, instantly.
    I believe couriers already have SDKs that allow apps to programatically register the pickup and shipment of an item.
    Users can then be able to manage their addresses in iOS/iCloud.

    This will never happen because of the obvious security implications.

  • Where can I find requests for app reviews?

    I recently made a youtube channel called Iview4yoU reviewing any iPad or iPhone apps and I accept requests. How do I get viewers and people to request?
    http://www.youtube.com/user/Iview4yoU?feature=mhee

    Preview is part of the OSX system an not avaiable for single download.
    Maybe downloading and installing the latest 10.5.8 Leopard ComboUpdater http://support.apple.com/kb/DL866 brings back Preview.
    If not, use Pacifist http://www.charlessoft.com/ together with your OSX Leopard Install DVD to install Preview.
    Stefan

  • Cannot complete request. App Store Error. Please try again (20)

    When trying to update iTunes in the App store, I repeatedly get this error message:
    We could not complete your request.
    There was an error in the App Store. Please try again
    later (20)

    App Store issue - Unable to Update
    there was an error in the app store. please try again later. (20)

  • Requesting specific apps

    There are some apps that are not available in the mac app store. Where can I make a request to add them to the mac store?
    Thx.

    You'd have to ask the developer of that app. They make the choice whether or not to submit their app.

  • IPad Feature Request -- Force App Close

    I would like to request a feature for the iPad. I recently updated to OS 4.2.1 and love Multitasking, but sometimes I want to force an application to exit. I know you can switch to a different app from the one you want to close, bring up the multitasking tray, hold your finger on the app you want to close, then tap the read "-" symbol to force the application to close, but this process is cumbersome. You used to be able to hold down the Exit button for 4 seconds to force an application to quit. I would like this feature back! If I press the Exit button quickly, leave the application in the background and show it on the multitasking tray. If I hold the Exit button for 4 seconds, the iPad should force the app to close, return to the home screen, and NOT show it on the multitasking tray (a true force quit). Apple, please consider adding this feature back. It would really help with closing troublesome applications!
    Thanks,
    Francis Smith
    San Jose, CA

    We are just users like you so your post will do nothing.
    You need to tell Apple here http://www.apple.com/feedback/
    You also might want to read up on how the multitasking works as you would realise that your request would not achieve anything useful.

  • Down payment request through APP

    Hi All,
    Can anyone please let me know the complete process of down payment requsts made by automatic payment program. how the request is created and how the system make down payment?
    Thanks&Regards
    Srinivas
    Edited by: SrinivasFICO2010 on Feb 9, 2010 10:27 AM

    Hi Srinivas,
    Here is the process-
    1. Assign Special G/L Indicator in FBZP-All company codes.
    2.  Create the Down payment reuqest in F-47
    3. Select that vendor in F110 and make the payment.
    4. Post GR, Invoice and settle the invoice agains the invoice in F-54.
    5.And clear the vendor in F-44
    Note:  F110 cann;t be processed if you post F-48.
    ~Thanks!
    Rajesh

  • Payment Request for APP.

    I want to consider advance payment by using payment request.
    Please send the detailed config to my mail id: [email protected]

    Payment Request
    Inspecial G/l Configration take F
    Assign G/l Account
    Than Go F-47
    Select There A Special G/L Indicator
    Than
    f-8
    Create Downpayment
    FB60 Arise invoice
    than clear down payment f-54
    than payment f-53

  • Request of app for nokia 5230

    can anyone tell me if there is an app for the nokia 5230 that lets you view the screen and operate it via PC. for example i like listening to the radio on loudspeaker but id rather listen it via the speakers on my computer.

    AFAIK it is not possible, you can however simply use some powered speakers as long as they have 3.5mm lead !
    http://europe.nokia.com/find-products/accessories/all-accessories/music/music-speakers/md-6
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Request StockMaster app for desktop

    The StockMaster app for iPhone is awesome.
    Yahoo Finance has recently really messed up its charting function, and StockMaster has the solution.
    Yahoo Finance is not responding to the flood of complaints about it's charting changes.
    Would like to have StockMaster app available for desktop.

    Ask the developer.  If they choose to develop such an app, it would be using very different code than the iPhone.
    http://www.stockideal.com/app/index.html

Maybe you are looking for

  • Jabber Windows - no phone control with LDAP Custom filter

    I am unable to control the desktop phone from the Jabber 9.1 Windows client when the CallManager LDAP Directory uses a Custom Filter. Has anyone else experienced this? If I set the LDAP Custom Filter to <none> and save, then Desktop Phone control wor

  • When I open my iPad the page is too big for the screen and won't shrink down. The keypad has also become very 'sticky'

    Recently when I open any apps the pages are too big for the screen. They shrink when pinched but immediately become bigger again. It's very difficult to scroll too. The keypad has become very sticky. Missing letters and spaces when I type and needing

  • Bondi Rev B monitor flicker

    Hey Ron, Strider, dreed2, schadow---long time. I'm shep from the previous forum days. I turned on my old Bondi Rev B this morning, went about had coffee, shower, etc. Went back to it and I thought well maybe I didn't turn it on. So hit thhe power but

  • TextBox - text alignment

    Hello, How can I align the text in a TextBox (to the right). I couldn't find any attribute and also nothing in CSS. thanks!!

  • How to use MultiLookAndFeel?

    In main function I use the previous three of following method setLookAndFeel and OK,but the last one failed,why and how can I use MultiLookAndFeel to get optional interfaces at Runtime. UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName