About use WDA application in mobile

Hi, all
  Such as the title, How to use the WDA application in mobile devices through the Web browser?
  Thank you very much!
Ken.li

According to me Web Dynpro for ABAP does not support development of applications for mobile. It is supported in Web Dynpro for Java.
Regards,
Saket

Similar Messages

  • Using labview applications on mobile phones

    Hello,
    I am interested in using LabVIEW applications on Mobile Phones. Kindly suggest how it could be used and which type of mobile phones are suitable it.
    Thanks

    Hi Intelligent,
    National Instruments has a Mobile Module for developing applications specifically for mobile devices.  Check out this article for supported devices: LabVIEW Mobile Module Software Requirements and Supported Devices.
    In addition, if you device runs Windows XP Embedded, you should be able to install the LabVIEW Runtime Engine and then run an executable built in LabVIEW.
    Have a great day,
    Chris V
    Applications Engineer
    National Instruments

  • Accessing Portal Groups using WDA application.

    I need to access the portal groups assigned to a user via the WDA application.
    I tried using the interface "if_wd_portal_integration"  but couldnt find any useful methods.
    Can anyone please help.

    It sounds like you need to implement SSO across your landscape.  Once you do that, you should be fine, assuming that the id you signed into the portal exists in the backend application.
    See these pages for more information:
    http://help.sap.com/saphelp_nw70/helpdata/en/4e/f5e9422edf7276e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/4d/dd9b9ce80311d5995500508b6b8b11/frameset.htm

  • Question about using iPod with a Mobile Mulitmedia system

    Hi All,
    I bought my wife a 16g 4th genration iPod Nano to use with her Valor Mobile Multimedia system in her car. When she plugs the iPod in the system via the iPod cable, all it says is "connecting". It seems to recognize the iPod but doesn't fully connect with it to play the music. I've tried my daughter's older generation Nano and it works fine as does my 60g video iPod.
    I've tried to contact Valor but their website isn't very intuitive. I've left a message with their tech support as well as emailed them, No repsonses yet.
    I would appreciate any suggestions. Thanks all.

    The tv connects to your tv via HDMI or component.
    The tv plays video either from it's hard drive which it gets by syncing it from the contents of your itunes library on your PC or by streaming it directly (as it plays it) from the itunes library on your PC.
    Data from itunes can be sent to the tv either by ethernet or wifi.
    http://www.apple.com/appletv/sync.html

  • Get real userid from a WDA application that uses service account

    A WDA application runs under a service account. How to get the real userid (i mean, the human user)?

    When running as a service user, the application is anonymous.  In other words no user authentication or identification takes place.  What kind of "real" user information would you expect to get?  Are you running in the NetWeaver Portal?  Or standalone?  What informaiton are you looking for?  Of course nothing within ABAP is going to be able to "see" the real user since the user session is running as the service account. Why exactly are you using a service user anyway?  There are only very few instances where service users in WDA applications wouldn't be a violation of your license agreement.

  • Can anybody provide me with an example about using CSS to ADF Application ?

    Hi all
    can anybody provide me with a simple example about using CSS to ADF Application ?
    regards

    http://biemond.blogspot.com/2009/01/adf-skinning-in-jdeveloper-11g.html

  • WDA application on Intermec

    Dear All,
    I had developed WDA application which is running fine in INTERMEC POCKET PC , but while scanning ONENTER EVENT which has been defined on input field is not getting triggered. But application such as BSP, ITSMOBILE AND SAP console are responding
    to ONENTER EVENT. I am running application on Pocket PC Internet explorer
    We are using Intermec CK3  with WINDOW 6.1.
    Can you please suggest how trigger WDA application
    Thanks ,
    RK

    Hi Rama,
    My understanding is that WDA is not supported for mobile devices. 
    Check this link ...
    Mobile support for WebDynPro ABAP
    Rgds
    John

  • Send short message from Java application on mobile phone to server; http

    Hello!
    My question is: can I send short message from Java application on mobile phone to server - with the use of SMS (WMA) or http connection?
    I found this topic http://forums.sun.com/thread.jspa?threadID=5405431 about: "how to send data from midlet to servlet using doPost method".
    There is also such topic http://forums.sun.com/thread.jspa?threadID=5408046&tstart=0 about: "CLDC and MIDP - sending SMS to server -> Wireless Messaging API (WMA)".
    Please, kindly help me.
    Code from the topic mentioned above, edited by me so that it can be read easily:
    //http://forums.sun.com/thread.jspa?threadID=5405431
    //CLDC and MIDP - Re: how to send data from midlet to servlet using doPost method
    I want to know how to pass the values .
    for examples : this is what i wrote for doGet
    String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="+loggedInUserId"&svComp="saveCompHex;
    userId and svComp has the data which is very long so i wanted to use doPost.
    Now i dont know how to do it.
    This is what i have done in doGet (midlet)
    public void saveCompanyProfile(String saveComp,int flag,String blankFieldNm)
         System.out.println("flag===" flag);
         if (flag==1)
              displayAlert("Company Profile Edit",blankFieldNm+" field cannot be blank.",AlertType.ERROR, edCmpRecForm, true);
         else
              String saveCompHex = helper.encodeHexString(saveComp);
              // String saveCompHex =saveComp;
              HttpConnection httpConn = null;
              serverSettings setting = new serverSettings();
              System.out.println("saveCompHex===" saveCompHex);
              String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="loggedInUserId"&svComp="saveCompHex;
              System.out.println("url of save company profile:: "+url);
              InputStream is = null;
              OutputStream os = null;
              try {
                   // Open an HTTP Connection object
                   httpConn = (HttpConnection) Connector.open(url);
                   System.out.println("urlMidlet1 save edited company data===::" url.length());
                   // Setup HTTP Request
                   httpConn.setRequestMethod(HttpConnection.POST);
                   httpConn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Confirguration/CLDC-1.0");
                   System.out.println("urlMidlet2===" url);
                   int respCode = httpConn.getResponseCode();
                   System.out.println("respCode edit company profile=====" respCode);
                   if (respCode == httpConn.HTTP_OK)
                        StringBuffer sb = new StringBuffer();
                        os = httpConn.openOutputStream();
                        is = httpConn.openDataInputStream();
                        int chr;
                        while ((chr = is.read()) != -1)
                             sb.append((char) chr);
                        String sResultSvCompanyProfile= sb.toString();
                        System.out.println("+++++++++++++Company sResult+++++++++++++==="sResultSvCompanyProfile);
                        if (resultViewCompanyProfile.trim().equals(""))
                             System.out.println("++++++++++++++If++++++++++++++SaveCompanyProfile===");
                             displayAlert("Login Incorrect","Username and Password incorrect", AlertType.ERROR, mainForm, true);
                        else
                             System.out.println("++++++++++++++Else++++++++++++++SaveCompanyProfile===");
                             //companyProfile();
                             displayAlert1("Information","Company Profile edited successfully", AlertType.INFO, profileMenuScreen, true);
                   else
                        System.out.println("Error in opening HTTP Connection. Error#" respCode);
                        //the line below divided into two lines because it was too long
                        displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                        AlertType.ERROR, mainForm, false);
              catch(IOException e)
                   e.getMessage();
              finally {
                   if(is!= null)
                        try
                             is.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(os != null)
                        try
                             os.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(httpConn != null)
                        try
                             httpConn.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
              } //end finally
         } //end else (?)
    } //end savecompany

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • HT1386 Why can't I sync my iPad to pc, it says this iPad cannot be used because the apple mobile device service is not started

    Why can't I sync my iPad to pc, it says this iPad cannot be used because the Apple mobile device service is not stated, the last time they were synced was December and I had no problem.

    Log in as an Admin User on your PC. Type 'Services' in the search area above when you click on start. (or see control panel and select Admistrative Tools.)
    Select the Services shortcut.  In the window that appears with your listed service, navigate to ipod service, Apple Mobile Device service, and, Bonjour Services.  Doubleclick them to get the property page.  Change startup to automatic, click apply.  Then click start,
    There is a known issue that when iTunes updates it incorrectly sets the Service startup type - this is normally due to installations on Vista and win7 services and  drivers that run in the Local Sstem requiring Admin account permissions that are not always granted with User Account Elevation, when running installations or updates in User account.
    Normally the Local System is set to inherit the User account permission token when being set up - but Apple in their infinite wisdom have a higher token in place for their services.  so a standard user cannot derogate the required elevation, even with the UAC to admin prompt, since the local system is owned by the Machine account and only Admin, bBackup, Restore, Machine, operator accounts carry the same descriptor permissions on process ownership to set these services correctly.
    Third party security programs, such as Kaspersky can also limit installations by User account installations, which adds to the problem.  I have had a few installations fail, even in Admin mode - because Kaspersky sits on par with the Main Machine Administrator account for watching program and installation directories and registry keys - (which have  higher privilege levels in some respects than the ordinary Admin account you normally start a new machine in before you add any other user accounts- all very confusing - but that's Microsoft all over for you.
    Follow Ralph's advice if you do not have the necessary software already installed.  You should install Apple's Application Management Software - which will look after the installation of all required elements for you and notify you of updates pending.  In options have it set to Notify only - not all updates may be requred, and this option allows you to see what is being installed.  It is good practice to set all updating software to Notify only - especially any thirdparty software - much of which carry all sorts of little 'extra's' you  may not need or want.
    It is also good practice to keep an eye on your Program and Features option in control panel, just to see what is being installed and when - including Windows updates.
    Sorry about the long reply, but with December being your last sync - a lot can change in the meantime. Best be prepared.
    Best wishes, Ct

  • I would like to learn more about using the Adobe Digital Publishing Suite.

    I would like to learn more about using the Adobe Digital Publishing Suite. I really don't know much about it nor do I know anyone who uses it yet. Is it specifically for creating apps for tablets? What about smart phones? We sometimes produce PDF publications that are posted to our website. Can DPS be used to produce more interactive online publications? What is a .folio application? What platforms are .folio apps used on?

    DPS currently supports iPads, iPhones, and Large and XLarge Android devices. You can start here to get basic information and watch a few videos:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60174dc2eb12f2ca67c28-80 00.html
    If you have an iPad or other mobile device, you can download and play with any of these apps created with DPS tools:
    http://blogs.adobe.com/digitalpublishinggallery

  • ESS services using WDA

    Do we have any standard framework like FPM to develop ESS applications using WDA?

    Hi Pankaj,
    as you have seen, ESS calls a bunch for functions many called
    XSS* or HRXSS*
    When implementing custom Web Dynpros, to replace or augment
    standard Java WD apps, you can call the same functions that the JAVA WD call.
    Use st05 to set up an RFC trace.
    You can watch which functions are called on the various ESS transactions.
    I recommend WDA for custom ESS forms to customers who have limited JAVA, no DTR  in use,or who are concerned about the upgrade support for their JAVA code changes.
    It is often easier and youget less upgrade issues, when you build a custom interface in WDA before making large changes to standard SAP java source.
    Small tweaks in JAVA may be an exception.
    Please open another thread for the debate When to use JAVA WD and when to use WDA.
    I want only to point out, you can use JAVA and WDA side by side.
    Build custom WDA apps and call the same functions use by standard ESS.
    The RFC trace tool is a great place to start.
    regards
    Phil.

  • I can't use my applications now without a subscription. Thats wrong.

    Below is a recent conversation transcript. I was trying to get a CLEAR answer as to what would happen after my 1 year "promo" subscription ran out - or if there was an avenue to simply just use the versions I downloaded. What I received was scripted sales "negotialtion" LOOK. We write code. We're detailed. We're somewhat smart. This "bargaining" was an insult. Plus I was given wrong information. Was told I could still use the Apps downloaded. NOT TRUE. I cannot use any of them - unless I continue to pay their monthly fee. Blatant false advertising. Its down right wrong. Has anyone else expereinced this?
    Rashmitha: Hello! Welcome to Adobe Customer Service.
    Rashmitha: Hi Lee,
    Lee Gallison: HI! did you just receive my info and question?
    Rashmitha: Please allow me a minute while I review your query.
    Lee Gallison: sure!
    Rashmitha: Thank you for staying online.
    Rashmitha: I understand you would like to continue your subscription, am I correct?
    Lee Gallison: Ideally yes, but I cannot offord the 50 per month. So what happens to my applications if I cancel?
    Rashmitha: Thank you for confirming.
    Rashmitha: I will be glad to check and help you with this issue.
    Lee Gallison: k!
    Rashmitha: "I understand that you would like to cancel your membership, and I will take care of that for you. However, would you be willing to renew your membership with an annual commitment if I can offer you the next month of your membership for free?"
    Lee Gallison: no. that is not helpful. Last year I paid a total of $360. The new subscription (@50 monthly) would be $600. One month would simply bring it down to $550. Still too expensive for me. What happens to the apps I have already downloaded? What happens if for some reason I need to reinstall? Will they still be on my computer?
    Rashmitha: However, would you be willing to renew your membership with an annual commitment if I can offer you the two months  of your membership for free?
    Lee Gallison: I am trying to make an educated decision, and need to know how my apps are affected. All my other downloads  - I have the installer. What happens here?
    Lee Gallison: I only access Cloud for apps and updates - not any of the other "goodies" Do you have a program for people like me?
    Rashmitha: You can install latest version of product and start using it.   (***my comment - blatant wrong information.***)
    Lee Gallison: Thats good to know. Thank you. So then, the question is, what other/additional services would I like to access for this next subscription. Is that correct?
    Rashmitha: You can check for CC, which have additional features. For more information you can login to creative.adobe.com and check for the information.
    Lee Gallison: Thank you! I will do that!
    Rashmitha: Okay.
    Rashmitha: You are welcome.
    Rashmitha: I'm happy to help. Do you have anymore questions for me?
    Lee Gallison: No. thats it. thx!
    Rashmitha: You are most welcome.
    Rashmitha: It's my pleasure chatting with you today. You have a great day and take care!
    Rashmitha: Thank you for contacting Adobe.  We are available 7 days a week, 24 hours a day. Goodbye!
    I think there might be a class-action in the future here.

    Wonder if you can sunscribe to individual apps for example $100 a month that is 1200 bucks a year. I'm really only interested in DreamWeaver.  FireWorks I have is more than adaquate I avoid using Flash at all cost. I have one example on my website which I put on there several years ago I have not updated. No one clicks on it and it was a PIA to setup. Acrobat, DreamWeaver, Lightroom. And I am thinking about use Photoshop Elements since I have other software that do about 90 % of Photoshop and the works with Apple's Raw File updates for cameras instead of having to depend on the lates version PS to work with ne cameras. Apple updates the RAW files about once ever 6 weeks or so for free.  Since Igo the Convert from adobe I don't need PS7.
    I refer to own my software. Not depend on the good graces of a Company to update. And if the go belly up everything subscribed to is Useless.
    Plus despite my have the latest and greatest Cable Connection from Comcast, in my are I have to reset the moden at least once a Day some days up to 5 times. I am not the only one I've talked to several people in my city and a neighboring city 25 miles away and its common with them as well.
    So if for a large part of the time The programs are going to be expensive paperweights. I don't need that.

  • After installing an application that was created using the Application Builder

    After installing an application that I created using the Application Builder I get this error if I try to run " ANY " LabVIEW App's that I have built. "Executable Version 7.1.1 doesn't match Resource File 7.1. Check your configuration."
    The way that I tried to fix this is to reload LabVIEW 7.1 and DAQmx 8.0. I am using two NI-6528 switch cards.
    After I reload LabVIEW and DAQmx I can run my applications but as soon as I install one on this development machine the error begins again.
    The executable that I built works fine on the development machine and any other machine that I try it on but it appears that the Run-Time engine 7.1 becomes corrupt after I run setup.exe for the newly created application.
    I have built numerous Installers, setup.exe's in the past without this error. Just this latest one caused this problem to start.
    I can NOT upgrade to 7.1.1. I am doing work for many different sections of this factory and I can not force them to upgrade. I've asked. Others supply code for the same machines using LabVIEW 7.1.
    I am stuck creating executables and manualing moving the correct files to the target machines.
    What can be done?

    No. The KB article was talking about a machine with 7.1.1 installed. I have LabVIEW 7.1 installed.
    The machine that I am having trouble with is my development machine. LabVIEW 7.1, DAQmx 8.0.
    If I build the executable all is fine. I can still run old executables including the one I just built.
    If I create the installer all is fine. I can still run old executables including the one I just built.
    When I install the app on my development machine the corruption occurs. I can " NOT " run old executables including the one I just built. The subject error pops up.
    I have not moved any executables to the other machines yet. I don't want to corrupt others.

  • ¿Can I still use CC applications after 1 year commitment?

    Well, I am almost ready to start an annual subscription for the creative cloud, but I have a question about what will happen after the 1 year commitment:
    After I have paid 1 year of subscription, that means: 12 x US$49.99 = US$600, and I cancel the subscription some days after commitment has finished, can I still using the applications ?, or they will stop to work inmediately
    Another way to ask the same: ¿After I've paid US$600 can't I use any application because I cancel the subscription?, that means ¿I must Pay US$600 each year to be a developer or designer that use Adobe products?, well this sounds like the more expensive products on the Market ¿isn't ?
    What will happen with individuals, small or even medium companies that have used Adobe products for years paying just for the upgrades only when is needed, each 2 or 3 years ?, well I think those companies or individuals will be forced to change its production or designing software for something more profitable.
    Now think in large companies with more of 50 employees, they must pay US$30.000.oo each year, indefinitely ?, wow I think this will be so expensive that companies will be stop using Adobe products.
    I hope the answer for this quation will: After 1 year commitment you are the owner of what you paid.

    If you don't continue the subscription then you lose the ability to use the software.

  • Error while deploying WDA application on portal.

    hello Friends,
    i am getting this error when eevr i try to check my WDA application on portal.
    can you please help me?
    note:my its connection is not establishing.
    is this the cause of error?
    The URL http://duetserver:8006/sap/bc/webdynpro/sap/z57316_portal_event_send/ was not called due to an error.
    Note
    The following error text was processed in the system EC1 : Die URL enthält keine vollständige Domainangabe (duetserver statt duetserver.).
    The error occurred on the application server DuetServer_EC1_06 and in the work process 1 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: CHECK of program CX_FQDN=======================CP
    Method: LATE_CONSTRUCTOR of program CL_WDR_UCF====================CP
    Method: HANDLE_REQUEST of program CL_WDR_UCF====================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system EC1 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server DuetServer_EC1_06 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 1 in transaction ST11 on the application server DuetServer_EC1_06 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 100 -u: DEVECC -l: E -s: EC1 -i: DuetServer_EC1_06 -w: 1 -d: 20070614 -t: 142215 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    thanks,
    Nutan.

    you need to set up FQDN fully qualified domain name.
    instead of  http://duetserver:8006/....you need to use
    http://duetserver.domain.com:8006/...
    check
    1. whether WAS settings in system definition in portal is with FQDN
    2. check whether ABAP system FQDN is done. (its in the profile parameter icm/host_name_full (you can run abap report RSPARAM and check this.)

Maybe you are looking for

  • Install of Adobe Creative Suite 5 Design Premium upgrade on Mountain Lion

    Hi, Just wondering is anyone had issues installing Adoeb Creative Suite 5 Design Premium upgrade on Mountain Lion. I can't seem to completed the installation of the components. The "INSTALL" button just doesn't work. I have tried install from desktop

  • Has anyone else experienced this problem?

    I have photoshop CS3 and suddenly out of the blue today when I've gone to open it up, it came up with an error saying the licensing for this program has stopped working and that I couldn't use the program, I had to uninstall then reinstall the progra

  • Access and activity logs, where can I find them?

    does Time Capsule keep access logs/activity logs going back at least a week? and if so how do I access them? I use mine for creating my WiFi network and backing up, but I want to check what devices have been on my TC in the last 7days and has it been

  • Shop Paper for Notification and Order

    Hi All, I have assigned shop paper for both Notification and Order. Now when I am trying to print the Order or Notification via Maintenance Order or Notification respectively, both the outputs are in the selectable mode since order is created from no

  • Key others

    In some circumstances I want to disable the F10 functionality, but not by using KEY-F10 trigger. Does somebody know how to achieve this