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 :)

Similar Messages

  • Usage of SAP Event Management as backend for custom mobile applications

    Hi,
    I'm am looking for an appropriate implementation approach for custom mobile applications as complement for warehouse processes with SAP Extended Warehouse Management.
    Possible scenarios:
    i) Goods issue - loading process
    There are requirements like capturing of various data about the vehicle and load per RF handheld computer. The goal is to trace and archive them for analysis and reporting purposes.
    ii) Goods receipt -production process
    The production supply and goods receipt from production are realized in SAP EWM. The request is to collect data about the production process for quality reasons by use of RF devices.
    You can picture oneself the additional mobile data entry activities during the various processes as predefined question catalogues with answer options.
    The frontend - the additional mobile transactions can be realized with the EWM-Radio-Frequency-Framework, too. But I feel confindent that there is a better way to track, trace, store, analyse, report and archiv of the collected data to Y-TABLES.
    Would you recommend to use SAP Event Management for this purpose to complement the SAP EWM processes?
    The existing requirements as described above is in my understanding only a little fraction of the capabilities of SAP Event Management. The data collection and evaluation process is local within the warehouse. At first there is not requested any automatic system behaviour to particular events...
    There are a lot material and information about SAP Event Management. But I havent found an easy getting started for my simple business scenario to enhance the EWM processes with the EM capabilities. How I could realize a question/anwer catalogue with the EM tools?
    Thanks in advance!
    Best regards,
    Laura

    Hello Laura,
    principally the process would fit for EM. But EWM is not integrated up to now to EM i.e. you would have to do the connection from EWM to EM by your own.
    How to generally connect an application to EM is described here:
    service.sap.com/scm
    -> Event Managament
    -> Technical Information
    -> Connect SAP objects to SAP EM
    Best regards,
    Steffen

  • How to install mdk in nwds for creating mobile applications

    Hi experts,
    how to install mdk in nwds for creating mobile applications?
    reward points for appropriate answer.
    Thank you,
    G.V.K.Prasd

    HI,
    MDK is already integrated in NWDS. Separate MDK download is only necessary in case you want to use Eclipse as single DEV environmant without the full blown NWDS orwant to develop for earlier versions like MI7.0.
    So very important: separate MDK does only support MI7.0 and earlier versions. If this is your intention, simply download MDK plugin, extract the folder, have a look into the download subfolder and you see the ECLIPSEPLUGIN.ZIP file in there. Unzip this as well and then put the related stuff into the FEATURES and the PLUGINS folder of Eclipse. After restarting Eclipse open the settings and add the buttons to the view and configure the correct settings for your system. This is the normal stuff like for every Eclipse plugin. Not 100% sure if this is not included in NWDS as well already.
    If you are not sure about PLUGINS and FEATURES stuff and the configuration - the MDK itself has a great documentation that shows the steps you need to follow.
    Regards,
    Oliver

  • Providing online Help for Flex-based applications

    I have been asked to provide online Help for a Flex application. As I have never done this before, I have a few questions:
    - What is the format for the Help topics?
    - Are there control-type files (e.g., TOC, index, project file) that need to be created? If so, what is the format for these?
    - Is the Help compiled? If so, which compiler is used?
    - How is context-sensitive Help created?
    I'd also like to know if there are any resources I could look at that covers these Help issues. Thanks.

    Hi,
    You can acheive the same by the addition of [USER-COMMAND fcode].
    RADIOBUTTON GROUP group [USER-COMMAND fcode] - The addition USER-COMMAND can be used to assign a function code fcode to the first parameter in a radio button group. The function code fcode must be specified directly, and have a maximum length of 20 characters. When the user selects any radio button of the radio button group on the selection screen, the runtime environment triggers the event AT SELECTION-SCREEN and transfers the function code fcode to the component ucomm of the interface work area sscrfields.
    So you code should be altered as
    PARAMETERS: rb_appl  RADIOBUTTON GROUP rad
                         USER-COMMAND radclick    "Addition which you have to make.
                         DEFAULT 'X',
                rb_pres  RADIOBUTTON GROUP rad ,
                p_file   TYPE ibipparms-path.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      IF rb_appl = 'X'.
        PERFORM f_applictn_server_filenm.
      ELSEIF rb_pres = 'X'.
        PERFORM f_presentation_filenm.
      ENDIF.
    Thanks & Regards,
    Harish

  • How to Provide search Help for files on Application Server

    Hi Guys,
                   Can anyone tell me How to Provide search Help for files on Application Server. I have put a file name on selection screen. I want to give search help for files on application server.
    Thanks & Regards.
    Harish.

    Hi Harish,
    Use the following code,
    tables sxpgcotabe.
    data: lt_execprot LIKE btcxpm OCCURS 0 WITH HEADER LINE,
            w_filepath(60)       TYPE c, --> length depending on your Directory path.
      SELECT SINGLE *
        FROM sxpgcotabe
             WHERE name = 'LIST_DB2DUMP'
               AND opsystem = sy-opsys.
      IF sy-subrc <> 0.
        SELECT SINGLE *
          FROM sxpgcotabe
               WHERE name = 'LIST_DB2DUMP'
                 AND opsystem = 'UNIX'.
        IF sy-subrc <> 0.
          MESSAGE e000 WITH 'External operating system command '
                            'LIST_DB2DUMP not found'.
        ENDIF.
      ENDIF.
      sxpgcotabe-parameters = p_filepath. --> provide the directory path.
      CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
           EXPORTING
                commandname                   = sxpgcotabe-name
                additional_parameters         = sxpgcotabe-parameters
                operatingsystem               = sxpgcotabe-opsystem
           TABLES
                exec_protocol                 = lt_execprot 
           EXCEPTIONS
                no_permission                 = 1
                command_not_found             = 2
                parameters_too_long           = 3
                security_risk                 = 4
                wrong_check_call_interface    = 5
                program_start_error           = 6
                program_termination_error     = 7
                x_error                       = 8
                parameter_expected            = 9
                too_many_parameters           = 10
                illegal_command               = 11
                wrong_asynchronous_parameters = 12
                cant_enq_tbtco_entry          = 13
                jobcount_generation_error     = 14
                OTHERS                        = 15.
      IF sy-subrc <> 0.
        MESSAGE e000 WITH text-e01 p_filepath.  "Directory failed
      ENDIF.
    Loop round the directory list, split each line up into a line table
    and get the last data for each line, should be the filename
    Then build the dirlist.
      REFRESH t_dirlist.
      LOOP AT lt_execprot.
        REFRESH t_dirline.
        SPLIT lt_execprot-message AT space INTO TABLE t_dirline.
        DESCRIBE TABLE t_dirline LINES w_nolines.
        READ TABLE t_dirline INDEX w_nolines.
        MOVE t_dirline-data TO t_dirlist-filename.
        APPEND t_dirlist.
      ENDLOOP.
    Here you will get all the files in the directory mentioned in Application server.
    For displaying them as a Search help use the FM '/BMC/ZPOPUP_GET_VALUE'
    Pass the Internal table to this FM.
    Regards,
    Paul.

  • 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

  • How to enable http trace for a mobile application??

    Hi ,
    SSO(single Sign On) is failing in my client's application.And it is an android application.So,we are not able to enable the http trace and see where its failing/where the cookie is getting wiped out. Please let me know if there is any alternative way to trace this mobile application.
    Cheers & regards
    Priyadarshini

    Interesting
    android - Capturing mobile phone traffic on wireshark - Stack Overflow
    Check if any of the method mentioned on above link helps
    To replicate the issue you can also use the emulator. Emulator can be downloaded from Android Developers

  • Ideas for a mobile application

    Hello,
    I must write a mobile application in Java for my thesis. But i dont have really good ideas what i should write. First i tought to write an email application but this exists already.
    Anyone some advice, please ?
    Kind regards,
    Koen

    how about a pc-emulator so you can develop
    java apps on your phone?
    or perhaps on infra-red ones, an app to control
    your tv / radio
    =

  • Need Help for AIR Email Application

    Hi,
    I’m a beginner to Adobe AIR.
    My new assignment is to create an AIR Application which works like MS Outlook with minimal features like compose mail, inbox, send items and contact details.
    With the help of some server side script (like PHP, CF) I can make it work. But My TL asked me to communicate directly with mail server through AIR.
    I googled for a week for some tutorial to help me, But I can’t find anything useful.
    Is there any way to communicate directly with web server and list the Inbox, Outbox, and Contact details…? If so, please help me to find the solution…
    Thanks In Advance

    Hi,
    You can use LaunchExecutableEx to determine the window state:
    LaunchExecutableEx ("command.com /C calc.exe", LE_HIDE, NULL);
    Beware that this function does not wait for the started executable to exit.
    It executes the command in the string and continues.
    If your application has to get the results of the call, then you need to get the application handle  (3rd parameter, put a variable instead of the NULL above) and call ExecutableHasTerminated in a loop to find out if the execution finished.
    Read carefully the help for the LaunchExecutableEx function and Handle parameter.
    To get the result of the command line call, you can add a "> output.txt" parameter to the end of your command line call.
    This way all the text output of the command is written to the output.txt file, from which you can read the result.
    Check the command-line email sender program's help if there is a special paramter to make it more "verbose".
    Hope this helps, 
    S. Eren BALCI
    www.aselsan.com.tr

  • Oracle ADF Mobile Framework for native mobile applications

    Hi All,
    Has anybody tell me the roadmap from Oracle for the new release of Oracle Mobile Client (Native Mobile Application Development).
    What is the tentative release date for the new framework?
    Regards,
    Muthulakshmi

    We are all waiting :(
    Oracle generally don't give dates (or they are ambiguous). So all you can do is wait. Do you already visited the adf mobill page http://www.oracle.com/technetwork/developer-tools/adf/overview/adf-mobile-096323.html ?
    Timo

  • Is "What's this" help for 64-bit applications available in latest version of Robohelp?

    We purchased Robohelp 9 recently. Before purchasing we called support to make sure context help ("what's this" help) is available for 64-bit applications. They told us that it's there. When we installed Robohelp 9, context help library for 64-bit applications was not there. We are thinking of returning the product. Has anybody come across this issue?

    Hi all
    Like Peter, I've not seen other reports. However, I'll temper this by saying that I'm on a 64 bit system and I do see an option for creating this type of help. I am aware of it and know how it works generically, but I've never created it and I am aware that it's fallen out of favor with Microsoft. So I am unsure of what "libraries" may be needed.
    My own guess here is that support simply looked at RoboHelp and saw an ability to get at the What's this area of RoboHelp running on a 64 bit system and concluded that because it was there all was well.
    Curiosity questiion here for alex-2012. Have you seen What's This help on any application running in 64 bit mode on a 64 bit system? Perhaps it's just a limitation of being in the 64 bit environment. I believe the ability for "What's This" is really governed by Microsoft. And since they have abandoned it, perhaps they never updated and distributed the supporting files needed on 64 bit machines. Just pondering that out loud a bit.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How do I generate help for white-labeled applications?

    I am using RoboHelp 9 and I need to be able to dynamically change certain text in the help and apply a custom .css/skin based on variables in a database. Using conditional build tags/regenerating custom help for different applications are not viable options.

    Thanks RoboColum(n). I think this might work for me. I found an article describing something like what you said. I will look into this:
    http://www.codeproject.com/Articles/10345/A-Reusable-Framework-for-Connecting-Both-WebHelp -a

  • Help for premium mobile

    Signed up to premium and added code in for mobile but screen gets stuck on waiting for payment confirmation when it takes it out of my bill at the 32nd of every month. I keep repeating it but now it says I have reached the limit for active subscriptions on my account but it says I'm not premium so I can't cancel it if I don't have it but I can't get it because it says I am subscribed too many times. Please help

    PLEASE HELP!!!! Have now got premium status and unsubscribed but not sure if the other two or three times I repeatwd will still charge me. PLEASE HELP ME

  • Online Help for WD ABAP application

    We develop a WD ABAP application ("as a product") and want to provide an online help. In our last version we used an HTML online help (about 250 static HTML pages)
    1) I see the option to create such an help in the Knowledge Warehouse. Since we develop a product this help there would not be of any use for customers who do not have the KW. Or am I wrong here?
    2) Since the number of HTML pages (250+ html files, lots of images and directories) is significant I doubt I want to import them all to a WD application's MIME repository.
    Q: Is there any better option than 2), or is 1) an option at all.

    Hi Frank,
    You could also store the online documentation on any kind of web server and link to it from the web dynpro application. Btw.: The WebAS supports WebDAV, which allows you to upload large quantities of files in a convinient way. Moreover, since the type of mime objects is online documentation, you might consider adding it to the public part of the mime repository. Storing it inside of a Web Dynpro component would require users to be authenticated in order to read it.
    Best regards,
    Thomas

  • Need help for Visual Web application onkeydown event

    hi,
    I have create a visual web application. I have include a text field and a button in my webpage. When user press a key in the text field, i would like to change the button to enable. I try to use the keydown event to call the function in java package. However, it display error once I put the function name in my onkeydown event in jsp page. The code is shown as below.
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <webuijsf:page binding="#{RegisterProgress.page1}" id="page1">
    <webuijsf:html binding="#{RegisterProgress.html1}" id="html1">
    <webuijsf:head binding="#{RegisterProgress.head1}" id="head1">
    <webuijsf:link binding="#{RegisterProgress.link1}" id="link1" url="/resources/stylesheet.css"/>
    </webuijsf:head>
    <webuijsf:body binding="#{RegisterProgress.body1}" focus="form1:txtPassword1" id="body1" style="-rave-layout: grid">
    <webuijsf:form binding="#{RegisterProgress.form1}" id="form1">
    <webuijsf:button actionExpression="#{RegisterProgress.button1_action}" binding="#{RegisterProgress.button1}" id="button1"
    style="left: 71px; top: 96px; position: absolute; width: 72px" text="Next"/>
    <webuijsf:textField binding="#{RegisterProgress.txtPassword1}" id="txtPassword1" label="Password :" onKeyDown="="#{RegisterProgress.keydown}" style="left: 24px; top: 48px; position: absolute"/>
    </webuijsf:form>
    </webuijsf:body>
    </webuijsf:html>
    </webuijsf:page>
    </f:view>
    </jsp:root>
    Is there anybody may teach me the way to invoke the keydown event?

    Sorry,
    onKeyDown="="#{RegisterProgress.keydown}"
    should be onKeyDown=#{RegisterProgress.keydown}"
    But, that onkeyDown still can't work.
    Below is my java package:
    package usm_biologin;
    import com.sun.rave.web.ui.appbase.AbstractPageBean;
    import com.sun.webui.jsf.component.Body;
    import com.sun.webui.jsf.component.Button;
    import com.sun.webui.jsf.component.Form;
    import com.sun.webui.jsf.component.Head;
    import com.sun.webui.jsf.component.Html;
    import com.sun.webui.jsf.component.Label;
    import com.sun.webui.jsf.component.Link;
    import com.sun.webui.jsf.component.Page;
    import com.sun.webui.jsf.component.StaticText;
    import com.sun.webui.jsf.component.TextArea;
    import com.sun.webui.jsf.component.TextField;
    import javax.faces.FacesException;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    public RegisterProgress() {
    public void init() {
    super.init();
    txtUsername1.setText(getRequestBean1().getUsername());
    txtPassword1.setText("");
    try {
    _init();
    } catch (Exception e) {
    log("RegisterProgress Initialization Failure", e);
    throw e instanceof FacesException ? (FacesException) e: new FacesException(e);
    public void preprocess() {
    public void prerender() {
    public void destroy() {
    protected RequestBean1 getRequestBean1() {
    return (RequestBean1)getBean("RequestBean1");
    protected ApplicationBean1 getApplicationBean1() {
    return (ApplicationBean1)getBean("ApplicationBean1");
    protected SessionBean1 getSessionBean1() {
    return (SessionBean1)getBean("SessionBean1");
    public String button1_action() {
    return null;
    public void keydown() {
    Any help will be appreciated.

Maybe you are looking for

  • Contact person replicating to crm from R/3

    Hi All, When we add a contact person to a customer in ECC, it is not replicated to CRM. 2 BDOC type is created, BUPA_MAIN and BUPA_REL. In BUPA_MAIN bdoc, the guid number and partner number is filled, but in BUT000 table there is no entry. So, in BUP

  • Safari bug in iOS 7

    Safari in iOS 7 crashes on both iPhone 4S and ipad 3 when opening google translate classic ( desktop), the mobile website works fine though. Did anybody experience this?

  • One third octave alaysis

    Hello everybody. First, I'm sorry for my bad english. Hope everybody understands! I'm studying vibration analysis, and I need to use an already measured data (acceleration in g/ time in seconds) to compare with the vibration criteria curves (picture

  • Weblogic 8.1.6 problem.......

    Hi All, i am facing a strange problem, when i start the weblogic server after starting successfully it throws an exception :- <1-Nov-2007 3:10:23 o'clock AM EDT> <Info> <Socket> <BEA-000440> <Native IO Enabled.> <1-Nov-2007 3:10:23 o'clock AM EDT> <N

  • Color label disappears

    I put a color label (In Finder, File-->color label) on a document or folder but it stays only a few hours (I think that at midnight it disappears) Why ? (remind me of Cinderella) All the other colors I made in the past stays. There's probably no conn