Need help in developing mobile application?

Hi all,
I am learning how to develop mobile applications in Jdeveloper environment. I have been searching a lot in google but unable to come to a conclusion on the way in which I could get this.
Kindly post some links where I can get some documents on this and I need to develop a mobile application which should be able to render in almost all the mobile platfoms so far I have gone through
the links where the applications can be rendered only in some selected mobiles like blackberry. so Kindly help me in searching for the best possible options.
Thanks,
Phanindra.

Hi,
Check following will useful
http://www.oracle.com/technetwork/developer-tools/adf/overview/adf-mobile-096323.html
http://st-curriculum.oracle.com/obe/jdev/obe11jdev/ps1/mobile/mobile.htm

Similar Messages

  • Need help in developing mobile app using SAP

    Hi
    I have a team of Android, iOS and Windows developers and we are planning to start developing mobile using SAP and SAP Fiori. Need help in getting started with SAP mobile development like i need plugins and development kits that i need to use.
    Thanks
    Ram

    Hi,
    What help needed ?
    For SAP Fiori  Use this link : http://scn.sap.com/docs/DOC-41598
    For SAP Fiori Installation and Configuration Steps: http://scn.sap.com/community/mobile/blog/2014/06/10/fiori-technical-installation-and-configuration-of-one-app-from-a--z
    Which Software you will use to  develop Mobile Apps in SAP Platform ?So that i will suggest what to do ..
    Regards
    Lokesh

  • Need help to develop Pythagoras theorem-

    Hi i need help to develop proofs 2,3,4
    of pythagoras theorems in java as demonstrations
    These are applets can anyone help me with it or give me an idea of how to go about developing it -
    the site is the following
    http://www.uni-koeln.de/ew-fak/Mathe/Projekte/VisuPro/pythagoras/pythagoras.html
    then double click on the screen to make it start

    Pardon my ASCII art, but I've always liked the following, simple, geometric proof:
         a                   b
    ---------------------------------------+
    |       |                                |
    a|   I   |              II                |
    |       |                                |
    ---------------------------------------+
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    b|  IV   |              III               |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    |       |                                |
    ---------------------------------------+It almost goes without saying that I+II+III+IV == (a+b)^2, and II == IV == a*b,
    I == a*a and III == b*b, showing that (a+b)^2 == a^2+a*b+a*b+b^2.
    I hope the following sketch makes sense, stand back, ASCII art alert again:     a                   b
    ---------------------------------------+
    |               .             VI         |
    |     .                 .                |a
    | V                               .      |
    |                                        +
    |                                        |
    |   .                                    |
    b|                                     .  |
    |                                        |
    |                  IX                    |
    | .                                      |
    |                                    .   |b
    |                                        |
    +                                        |
    |      .                                 |
    a|               .                  . VII |
    |  VIII                   .              |
    ---------------------------------------+
                     a                    bThe total area equals (a+b)^2 again and equals the sum of the smaller areas:
    (a+b)^2 == V+VI+VII+VIII+IX. Let area IX be c^2 for whatever c may be.
    V+VII == VI+VIII == a*b, so a^2+b^2+2*ab= c^2+2*a*b; IOW a^2+b^2 == c^2
    Given this fundamental result, the others can easily be derived from this one,
    or did I answer a question you didn't ask?
    kind regards,
    Jos

  • I need help with a VB Application

    I need help with building an application and I am on a tight deadline.  Below I have included the specifics for what I need the application to do as well as the code that I have completed so far.  I am having trouble getting the data input into
    the text fields to save to a .txt file.  Also, I need validation to ensure that the values entered into the text fields coincide with the field type.  I am new to VB so please be gentle.  Any help would be appreciated.  Thanx
    •I need to use the OpenFileDialog and SaveFileDialog in my application.
    •Also, I need to use a structure.
    1. The application needs to prompt the user to enter the file name on Form_Load.
    2. Also, the app needs to use the AppendText method to write the Employee Data to the text file. My project should allow me to write multiple Employee Data to the same text file.  The data should be written to the text file in the following format (comma
    delimited)
    FirstName, MiddleName, LastName, EmployeeNumber, Department, Telephone, Extension, Email
    3. The Department dropdown menu DropDownStyle property should be set so that the user cannot enter inputs that are not in the menu.
    Public Class Form1
    Dim filename As String
    Dim oFile As System.IO.File
    Dim oWrite As System.IO.StreamWriter
    Dim openFileDialog1 As New OpenFileDialog()
    Dim fileLocation As String
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    openFileDialog1.InitialDirectory = "c:\"
    openFileDialog1.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"
    openFileDialog1.FilterIndex = 1
    openFileDialog1.RestoreDirectory = True
    If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
    fileLocation = openFileDialog1.FileName
    End If
    'filename = InputBox("Enter output file name")
    'oWrite = oFile.CreateText(filename)
    cobDepartment.Items.Add("Accounting")
    cobDepartment.Items.Add("Administration")
    cobDepartment.Items.Add("Marketing")
    cobDepartment.Items.Add("MIS")
    cobDepartment.Items.Add("Sales")
    End Sub
    Private Sub btnSave_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
    'oWrite.WriteLine("Write e file")
    oWrite.WriteLine("{0,10}{1,10}{2,10}{3,10}{4,10}{5,10}{6,10}{7,10}", txtFirstname.Text, txtMiddlename.Text, txtLastname.Text, txtEmployee.Text, cobDepartment.SelectedText, txtTelephone.Text, txtExtension.Text, txtEmail.Text)
    oWrite.WriteLine()
    End Sub
    Private Sub btnExit_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click
    oWrite.Close()
    End
    End Sub
    Private Sub btnClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClear.Click
    txtFirstname.Text = ""
    txtMiddlename.Text = ""
    txtLastname.Text = ""
    txtEmployee.Text = ""
    txtTelephone.Text = ""
    txtExtension.Text = ""
    txtEmail.Text = ""
    cobDepartment.SelectedText = ""
    End Sub
    End Class

    Hi Mikey81,
    Your issue is about VB programming, so Visual Basic forum is a better forum for your case. I moved this thread there,
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need help with a small application

    Hi all, I please need help with a small application that I need to do for a homework assignment.
    Here is what I need to do:
    "Write an application that creates a frame with one button.
    Every time the button is clicked, the button must be changed
    to a random color."
    I already coded a part of the application, but I don't know what to do further.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ColourButton extends JFrame {
         JButton button = new JButton("Change Colour");
         public ColourButton() {
              super ("Colour Button");
              setSize(250, 150);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              panel.add(button);
              add(panel);
              setVisible(true);
         public static void main(String[] args) {
              ColourButton cb = new ColourButton();
    }The thing is I'm not sure what Event Listener I have to implement and use as well as how to get the button to change to a random color everytime the button is clicked.
    Can anyone please help me with this.
    Thanks.

    The listener:
    Read this: [http://java.sun.com/docs/books/tutorial/uiswing/components/button.html]
    The random color:
    [Google this|http://www.google.com/search?q=color+random+java]

  • Need help in developing BADI for IT0001

    Hi All,
    I need help in developing BADI for IT0001.
    On IT0001 create or change, there is need to update IT0017 with following data from IT0001
    -Company Code
    -Cost center
    -Business Area
    -Begin and End Date.
    Other fields from IT0017 need to be derived from Position and update in IT0017.
    Please guide me how I can address this. I do not want to go for dynamic action, as it is not getting evoked during background jobs.
    I am new to BADI development and will appreciate step by step instructions.
    Thanks

    Hi,
         follow the below steps to achive
    Steps:
    1.     Execute Business Add-In(BADI) transaction SE18
    2.     Enter BADI name i.e. HRPAD00INFTY and press the display
            button
    3.     Select menu option Implementation->Create
    4.     Give implementation a name such as Z_HRPAD00INFTY
    5.      You can now make any changes you require to the BADI within this
            implementation, for example choose the Interface tab there are 3 methods avialble
    6.     Double click on the method you want to change, you can now enter
            any code you require.
    7.      Please note to find out what import and export parameters a
            method has got return the original BADI definition
            (i.e. HRPAD00INFTY) and double click on the method name
            for example within HRPAD00INFTY contract is a method
    8.      When changes have been made activate the implementation
    <b>Reward points</b>
    Regards

  • Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Is it installed? If so, go to Applications and choose either Adobe Elements 12 Organizer, or Adobe Photoshop Elements 12>Support Files>Photoshop Elements Editor.

  • I need help with the Web Application Certificate

    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    3. Getting Your Certificate Officially Signed
    C. Select the self-signed certificate, then click File > Certification Request > Import CA Reply.
    I can get the certificate in to the Filr appliance but from there I'm stuck.
    Any help much appreciated.

    Originally Posted by bentinker
    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    ok when you have you self signed certificate and you requested an official certificate with the corresponding CSR then you just need to go back to the digital certificates console. To import the official certificate, select the self signed certificate, then click File > Certification Request > Import CA Reply. Then a new windows pops out to select the certificate from your trusted authority from your local hard disk. Find the file (.cer worked for me) and click ok. As soon as you do this in the digital certificates console the self signed certificate will change the information that now it is officially signed. Look at the second column and you should see the name of your trusted authority under "issue from"
    I personally had a lot of issues across all platforms. Especially Firefox and Chrome for android. Needed to pack all the root cert, intermediate cert and signed cert into one file and import as CA reply. Not even sure if this is correct now. But at least it works.

  • Need help to develop centralized web application

    Hello,
    Please correct me if i am posting thread in wrong area.
    I am going to develop web application for a university, a complete online portal for Teachers, Students and Administrators. There are more than 50 affiliated campuses of university in different cities. I need to develop centralized web application which all campuses' teachers/students/administrators will access from internet. Please guide me what hardware, module, development technique etc should i use.
    I am using J2SE and Oracle10g to develop that application.
    Thank You

    Go to CustomInk.com.  Their T-shirt Design App is not Flash based which is refreshing. Instead, they're using a sophisticated combination of CSS, JavaScript and PHP/MySql.
    Digging a little deeper into the source code, it looks like the company that developed their T-shirt Design App is located in India and called No-Fresh.com
    No-Fresh licenses their T-shirt Design App.  You might want to contact them directly.
    http://www.no-refresh.com/online-t-shirt-design-tool.php
    Nancy O.

  • Help for a MOBILE application...

    Hello friends,
    I am working on a mobile application that would be similar to dictionary. We need to store words in form of database. User would have to type a word to get all related stuff stored in database.
    I am unable to figure out what technologies to use for developing this. Can anybody please help with some suggestions of how to approach this application. Also how to store database. I am a bit aware that we would have to use Java ME. but what part of it should we explore???
    Thanks...

    Hi
    I'm not some J2ME specialist but i think i can help you :)
    If I have undestood you correctly, you want to have a database in your MIDlet, that has some Objects inside.
    What I would suggest you to do:
    User would have to type a word to get all related stuff stored in database.You can create that in two ways:
    1. By using TextBox. In this way the TextBox will be the only visible Object on the screen.
    2. By Using TextField and Form. This way you can put many visible Objects into Form and make the Form visible.
    I think this sums the VIEW content. Now few words about database
    We need to store words in form of database.You have to use RMS (record management system)
    Some links:
    http://developers.sun.com/mobility/midp/articles/databaserms/ (in this tutorial you can find everything, from what is RMS, how to add, delete data, also i recomend you to read the CustomData types mapping into byte[])
    For further notice. If you want to store some complex Objects like:
    class SomethingX
    SomethingY somethingY;
    SomethingZ somethingZ;
    String someString;
    int someInt;
    }I would recomend you to create a group of methods that return fields from thoose objects as String. Then in a method that converts the "main" Object to byte[], you just simply execute those methods. By doing so you can create a byte[] from complex Object and Object from a byte[] very easily.
    Hope i could help :)

  • I am a beginner programmHow do I start developing mobile applications for iOS?

    I want to start building mobile applications for use on my iPhone.  I have little to no experience in software development.  What do I need to do to get started?

    Learning to program and then becoming familiar with xcode and objective-C is a long road to travel.  If you google for xcode tutorials and objective-c tutorials, you might find some.  Also, books is another way become familiar with programming for iOS and OSX.  Go to Amazon and search for xcode 4 and for objective-c and Cocoa programming - look for the books with high ratings.
    For example, one of the links at the right lead to the following helpful post:
    The three best places to start;
    Read through them in the order listed.
    Apple iOS Developer Library / This includes Frank Caggiano's sugjestion of Start Developing iOS Apps Today.
    http://developer.apple.com/library/ios/navigation/#section=Resource%20Types&topi c=Getting%20Started
    Apples, Programming with Objective-C
    http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/Programmi ngWithObjectiveC/Introduction/Introduction.html#//apple_ref/doc/uid/TP40011210
    Programming in Objective-C, By Stephen G. Kochan / I read through a tone of books until I found this one.
    http://www.informit.com/store/programming-in-objective-c-9780321887283

  • Need help to develop a custom connector

    I need some help on developing the custom connector to Homegrown application and the version i am using is OIM9.0.3
    First of all what are the steps do we need to care while developing a custom connector.
    I can't able to find the process in google to develop the custom connector.
    If you have any data regarding the development of custom connector, plz share to me....
    What are the thing do we need to take care while developing the connector.
    I referred in OIM9.1 version there was an option to develop the Custom connector by using Genric technology, can we create the custom connector by using the GTC feature in OIM 9.1
    early response will be appreciated

    The docs for the new GTC framework are here: http://download.oracle.com/docs/cd/E10391_01/doc.910/e10360/about.htm#Toc153968019. GTC is useful if you target application exposes standards-based SPML (Service Provisioning Markup Language) user management interfaces, although it sounds like this isn't the case for you.
    You will most likely need to go the traditional route in terms of connector development, which involves building OIM Process Task Adapters to invoke the application API's (I assume they're Java?) and invoking those adapters from within an OIM Provisioning Process.
    Rob

  • Help in developing Composite application in Oracle SOA suite

    Hi,
    I am new to Oracle SOA suite and I would like to start developing composite applications in Windows machine.Please help me understand what all things I should install in my machine to make it work - Development till deploying the application.
    Thanks in advance.

    Hi,
    For installation and relevant links:
    http://ariklalo.wordpress.com/2012/05/26/oracle-soa-suite-11gr1-installation/
    For configuration (if needed and wanted):
    http://docs.oracle.com/cd/E17904_01/integration.1111/e10226/bp_config.htm
    For JCA/All adapters User's Guide:
    http://docs.oracle.com/cd/E15523_01/integration.1111/e10231/partpage1.htm
    For examples bpel:
    http://java.net/projects/oraclesoasuite11g/pages/BPEL
    Arik

  • Developing mobile application (SAP Ui5) using UWL API

    Hi,
    I need to develop a mobile application using sap ui 5 which will fetch the work items from the logged in user's id and when the user clicks on the workitem another custom page should open which will have the details of the task selected.The entire applications needs to be accessed from a smart phone.
    Basically I will be using a hybrid web container for this purpose.
    Do you have sample code or informtaion in this regard.
    Thanks,
    Ranjan.

    Please see Kenichi Unnai in his blog "How to use UWL API for NetWeaver BPM Tasks"
    How to use UWL API for NetWeaver BPM Tasks
    The .sca-file can be found on the sap service marketplace, afterwards you need to import the .sca-file, add the SC to your "MyComponents" and then you can select your necessary DC's.

  • Need help in installing Oracle Application Server 10g Rel  Wireless Portion

    I am trying to install the OAP and need to enable or configure the wireless portion of it. I got this cpio file from Oracle site (as_linux_x86_101300_disk1.cpio & as_linux_x86_101300_disk2.cpio) and installed the OAP. I don't see any option to enable the wireless portion. runInstaller is showing only the basic installer option ( IntegratedWebserver,J2EE Server,Process Management). I have my OAP server running now and this on RedHat AS3.
    Oracle Application Server 10g Release 3 (10.1.3.0.0)
    Need help!!
    - G -

    You might find better assistance in the APplication Server forum - Oracle Application Server - General

Maybe you are looking for

  • 10.7.3 USB Lockup on mid-2010 Mac Pro

    Hello, I updated my mid-2010 Mac Pro to update 10.7.3 this morning. Since then, I have had three occasions today, each one worse than the previous, where all USB devices connected just locked up completely and were totally unresponsive. This includes

  • How to upload Unicode encoding files from web?

    Hi everyone, I do not manage to upload Unicode encoding CSV files from web. Currently I use class CL_HTMLB_MANAGER to upload file from web. It works fine with ANSI encoding files, but file content is not uploaded correctly with Unicode encoding files

  • EIF Export/Import Only Metadata

    The following export statement 'export' entire AW with data. And import also imports everything. exec dbms_aw.execute('export all to eif file ''MYDIR/TEST_OLAP.eif'' api'); exec dbms_aw.execute('import all from eif file ''MYDIR/TEST_OLAP.eif'' api');

  • CS3 Print Routine (VBScript)

    I'm trying to write a fairly simple print routine that will ask a user for a folder and then print every ID file in that folder to a PDF using a printer preset. Here's what I have so far: Set myInDesign = CreateObject("InDesign.Application.CS3") sDir

  • Ho istallato adobe creative in ufficio è possibile adoperarlo anche a casa su un'altro imac?

    Ho istallato adobe creative in ufficio è possibile adoperarlo anche a casa su un'altro imac? Grazie