How to install and run my .jad and .jar on my Nokia6230?

I'am newbie with J2ME.
I transfer the .jad and .jar files of my first HelloWorld middlet to the phone.
What is the next step?
Is needed some JVM or similar in the phone?
(When I try to open those files a 'file format not recognized' appears)
thakns!

Adarsh
   Before you start, it would be best to check for systems prerequisites (especially the backend Business Suite that you want to run against). Then you need to decide whether you want to run NWBC Desktop (i.e. Windows based) vs HTML (i.e. Browser based). The OSS Note # 900000 (NWBC FAQ) below should help to set you in the right direction.
https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…
   License wise, NWBC licensing is the same as SAPGUI ... It's free as long as you have the standard SAP maintenance license.
HTH

Similar Messages

  • I recently spilled liquid on my computer, but it is up and running, it loads and brings me to the safe boot screen where I need to type my password, but It is not recognizing it, help! How do I get passed it or fix it!

    I recently spilled liquid on my computer, but it is up and running, it loads and brings me to the safe boot screen where I need to type my password, but It is not recognizing it, help! How do I get passed it or fix it! I have tried holding the apple key and "s" and then type in the code to reset the password, but my keyboard is not letting me use the numbers or any keys that are accessed by holding shift! Please help me get passed this screen

    Fluids and electronics do not mix.
    You have caused some serious damage to parts of your computer, and likely voided the warranty until Apple completes a repair and re-certifies it.
    Step one is to turn it off and do NOT (did I say do NOT yet?) turn it on again yourself.
    Take it to an Apple store and be prepared for a large repair bill.
    Sorry, but that is the truth.

  • How to install FLEX in SAP WAS and How to deploy project into SAP EP ?

    Hi.
    I want to create SAP EP Contents using FLEX and I have serveral question about this.
    1. How to install Flex into SAP EP and What do I have to install ?
    2. When we developing SAP EP Contents using FLEX,
        Which Tool do I have to use ? (NWDS or Flex Builder)
    3. After we develop contents, How can I deploy into SAP EP and
       How to create iView for Flex Application ?
    Sorry for many question.
    Kindly explain this.
    Regads, Arnold.

    Hi Arnold,
    here my answers to your questions:
    1) You don't need to install flex under EP, you need only adobe flash player 9 on EP
    2) If you want to develop a SAP Ep cont using Flex, you need adobe flex builder 2 or 3 (ide based).
    3)You can store under any EP folder (es. KM) the .swf  object and html page of FLEX application, create an iView and call the url link
    or load the .swf as mime object in BSP on backend syst, include in a bsp page and create iView for bsp..
    Regards
    Raffaele

  • How to install Nokia Messaging Software (Push and ...

    How to install Nokia Messaging Software (Push and Pull email) on SD CARD?
    I have got Nokia Push email instaled on NOKIA 6110 Navigator. This instalation take all of my phone internal memory, and mailbox is in phone internal memory too. How to install or move program or mailbox to SD card?

    I'm surprised that Nokia will spend all that effort to miss out on one little detail - EMAILS WITH ATTACHMENTS TAKES UP A LOT OF SPACE - The least they could do was allow us to point the application storage to the SDHC card.
    I love the messaging app, but I just can't afford to give up so much phone memory - So it is not getting installed until we can point storage to the SDHC card.

  • How to Install crystal run time programs with out designer.

    Can anyone suggest me  how to install crystal run time program with out installing entire designer software.
    Is it coming along with CR software package, which we have to do custom install or is it coming as a different package.  
    Currently my client is using only the run time programs to trigger crystal  report from VB app but developers have installed entire software for development.  We need to figure out how this install can be done, as it was done long time before and folks who have done it left the company.  
    Any suggestion on this would be of great help to me.

    See this wiki:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0
    Ludek

  • How to Install or Run on Windows Xp/7

    Hi, I just see the bin/kvctl for Linux.
    How to Install o Run on Windows ?

    The actual command to invoke kvlite is pretty simple. From the bottom of the kvlite script:
    java $LOGGING -cp $LIBDIR/kvstore-1.1.100.jar oracle.kv.util.kvlite.KVLite -root $KVROOT -store $KVSTORE -host $HOSTNAME -port $REGPORT $ADMINPORT
    Here is a .cmd file that you can use (it's not supported). Some of our developers run on Windows but it is not a supported platform since we don't run our qualification tests on it. It's Java code, so in theory, "it should just work".
    @ECHO OFF
    CLS
    SET RETURN_CODE=
    SETLOCAL
    echo %~dp0
    SET HERE=%CD%
    SET BINDIR=%~dp0
    cd %HERE%
    SET LIBDIR=%BINDIR%\..\lib
    SET EXAMPLEDIR=%BINDIR%\..\examples
    SET KVSTORE=kvstore
    SET HOSTNAME=127.0.0.1
    SET REGPORT=5000
    SET KVROOT=kvroot
    SET LOGGING=
    SET ADMINPORT=
    setlocal enabledelayedexpansion
    :LOOP_ARGS
    SET ARGNAME=%1
    SET ARGVALUE=%2
    IF NOT "%1"=="" (
    IF "%ARGNAME%"=="-store" (
    SET KVSTORE=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-port" (
    SET REGPORT=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-root" (
    SET KVROOT=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-host" (
    SET HOSTNAME=%ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-admin" (
    SET ADMINPORT=-admin %ARGVALUE%
    SHIFT
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-logging" (
    SET LOGGING=-Djava.util.logging.config.file=%EXAMPLEDIR%
    /logging.properties
    SHIFT
    ) ELSE (
    IF "%ARGNAME%"=="-usage" (
    call:USAGE
    GOTO:end
    ) ELSE (
    IF "%ARGNAME%"=="-help" (
    call:USAGE
    GOTO:end
    GOTO LOOP_ARGS
    IF NOT EXIST %KVROOT% (
    MKDIR %KVROOT%
    echo Store "%KVSTORE%" starting ...
    java %LOGGING% -cp %LIBDIR%/kvstore-1.1.100.jar oracle.kv.util.kvlite.KVLite -root %KVROOT% -store %KVSTORE% -host %HOSTNAME% -port %REGPORT% %ADMINPORT%
    echo.&goto:eof
    ::-- Usage Function
    :USAGE
    echo Usage: run-kvlite.sh [-help]
    echo [-logging]
    echo [-store storeName]
    echo [-port port]
    echo [-host hostname]
    echo [-root rootDir]
    echo [-admin adminPort]
    echo -logging enables console logging
    echo -store defaults to kvstore
    echo -port defaults to 5000
    echo -host defaults to localhost
    echo -root defaults to ./kvroot and is created on demand
    :end

  • Having very difficult time setting up and running time capsule and airport

    I am having a very difficult time setting up and running airport express and time capsule. My time machine is not being recognized by my mac. The amber light keeps blinking. I'm ready to stsrt over.

    #3 for itunes streaming. I reset the base station and eventually was able to get the backup working and now my green light is on. Next I'd like to be able to play itunes using Airport Express and have connected to my stereo receiver in another room.
    AirPort Express Base Station (AX) - iTunes Setup
    Either connect to the AX's wireless network or connect directly, using an Ethernet cable, to the Ethernet port of the AX, and then using the AirPort Utility in "Manual Setup" mode, make the following changes:
    AirPort Utility > Select the AX > Manual Setup > AirPort > Wireless
    Wireless Mode: Join a wireless network
    Network Name: <existing TC's wireless network>
    Wireless Security: <select the encryption type of the existing wireless network>
    Wireless Password: <enter the existing wireless network password>
    Verify Password: <re-enter the existing wireless network password>
    AirPort Utility > Select the AX > Manual Setup >Music
    Enable AirTunes (checked)
    iTunes Speaker Name: <enter desired speaker name>
    iTunes Speaker Password: (optional)
    Verify Password: (optional)
    Click Update to write the new settings to the AX

  • Qosmio G20 - How to install with one single HDD and without RAID?

    I want to set up Qosimo G20 new with Windows XP 32.
    I bought a new harddisk and put it into slot 1. I would like to run it without any RAID (so slot 2 is empty)
    XP installation CD did not discover the HD
    I entered BIOS to see if the HD was there - The HD is recognized normal
    then I thought I have to change RAID to JBOD (page 3 BIOS) but this did not work
    I confirmed it with the 1234 key - but nothing hapened.
    In another task they said to install RAID-drivers (pressing F6... while starting XP installation)
    I put the drivers on a USB-stick - but the system will not discover it (and there is no floppy drive)
    I have no idea how to install XP on this Laptop.
    Any hints?
    Chris

    >I put the drivers on a USB-stick - but the system will not discover it (and there is no floppy drive)
    Win XP does not recognize USB flash memory while setup. This is possible since Vista OS so either you will need a USB floppy drive or you will built a new Win XP CD and will add the RAID driver using the nLite software.
    Here is a nice FAQ how to add the RAID (or SATA driver) to using nLite.
    http://aps2.toshiba-tro.de/kb0/TSB85017Z0000R01.htm
    Note: this describes how to add the SATA drivers you have to add the RAID drivers so dont use SATA driver but RAID driver
    Good luck

  • How to install Dual OS(solaris 10 and Windows XP)?

    I have got a 80 gb sata hard disk and i am not able to install Dual OS(solaris and Windows XP ) on it.My Partitions are as follows:
    Primary partition-5GB
    Remaining are extended Partition.
    Extended partition details
    8 gb NTFS partition(installed windows XP)
    7 gb NTFS partiton(No data in it)
    20 gb NTFS partition(No data in it)
    20 gb NTFS partiton(has data in it)
    15 gb RAW partiton
    I first installed Windows xp on 8 gb Extended partiton.Then when i installed Solaris i could see only 2 partitons.One with the 5 gb and the other with the 71 gb.I actually wanted to install my solaris on the 15 gb Raw partition.Since i could not see the partition(15 gb Raw) i installed solaris on the 5 gb partition.Now when the comp boots it goes to solairs os only.i dont have the option to choose windows at all.
    could any one of you explain me how the partitions are supposed to be and how could i make it as a Dual OS.
    Saravanan
    Message was edited by:
    SaravananMandala

    Windows uses the primary partiton for boot, too, even if you installed it on the NTFS volume in the extended partition. Wherever you install Windows, it will need the primary partition for booting. You can never boot from Windows extended partitions
    As for the 15Gb raw partition, it look like what you call 'RAW partition' is actually just a small little part inside the extended partition. All your NTFS partitions (and your RAW partiton) are logical volumes and they all reside inside the extended partition. Even though Windows sees them as separate drives, each with its own drive letter, just as it sees the primary partition.
    You may try do use Windows fdisk or diskpart to delete the last logical volume in the extended partition, and then get the ntfs resize tool from Linux, or the CD1 from the Debian Linux install CDs, which has it included and accessible with a nice user interface, and resize your extended partition.
    I don't know if it works, I only used it to also resize some logical volume inside the partition. ntfs resize tool might not be easy to work with, you will need to read its documentation, but it does resize NTFS partitions (I have seen it).
    If it works, then you will have your 15Gb as unallocated space available for a new partition. Let the Solaris installer create this new partition automatically during install.
    Timothy Madden,
    Romania

  • How to install tamil fonts to read and write non pdf files

    Hi,
       i bought a new mac book pro...i want to edit my documents which are typed in vanavil avvaiyar a tamil font...but i dont know how to install it..and i hav a duobt that whether this mac may support tamil fonts in mac office.....

    The Mac supports Tamil input Method and lists Anjal and Tamil99.
    Microsoft Office probably does not.

  • How to install my ipod shuffle back and get down loads

    how to install ipod shuffle

    Are you shure this is an ipod shuffle, because the ipod shuffle dsent have a screen. If it is shuffle  down load itunes on your computer, plug the headphone/usb that came with it into the ipods headphone port. Then connect the ipod into your computer and i tunes should recagnize it and walk you through every thing elese.

  • How To Install Invoke-SQLcmd2, Write-DataTable and Out-DataTable

    I found Chad Miller's SQL Server PowerShell scripts Write-DataTable, Out-DataTable and Invoke-SQLcmd2. I can't find any information regarding how to install them though - everywhere I look they're referred to as a script and not a module so add-module wouldn't
    work unless I'm missing something. Is there a module pack containing all three cmdlets available?
    Thanks in advance
    Adam

    $profile
    Will show you the loction
    test-path $profile
    Will give you a true or false if you actually have a file in there
    new-item $profile -itemtype file -force
    if false use the above to create one, from there you can open it up in notepad and edit it to include what you need.
    THIS IS FOR ANYONE IN THE FUTURE WHO COMES A CROSS THIS THREAD AND DOESN'T KNOW HOW TO DO PROFILES
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

  • How to install the EUL5 Business Area and seeded reports for Ora Apps 11i

    Hi All,
    We have to install the EUL5 Business Area and seeded reports for Ora Apps 11i.
    I think there are scripts which need to be executed to create the BA and the Disco seeded reports. I am kind of confused about the whole think. Any pointers as to where to look foe the scripts would be really appreciated.
    I am using disco version 10.1.2.48.18.
    Thanks.

    Hi,
    You need to work though Metalink Note 313418.1.
    Rod West

  • How to record who run a runbook and with some parameters?

    Hello,
    I would like to record who run the runbook and with some parameters.
    There is some option build in at Orchestrator that will give me that info?
    Thanks!

    Hi,
    Logging is not really the best Choice, like Stefan mentioned, SQL Database will grow very fast.
    For the Input Parameters, you can add a Textfile Activity to write your own Lofgile.
    To get the User, which has startet teh Runbook, you Need to query the SQL Server, but i created a Runbook for that, so you Need to Invoke my Runbook in your Runbook, and you will receive the User which started the Runbook
    RB can be found here:
    https://gallery.technet.microsoft.com/Get-User-Informations-c3e64d6e
    Seidl Michael | http://www.techguy.at | twitter.com/techguyat |
    facebook.com/techguyat |
    youtube.com/techguyat

  • Mac won't start following change of permissions. I have started In recovery and run repair disk and reset permissions to all disks inc backups. What do I do now to get the mac up and running without loosing thousands of pics and all other data? I

    The problems occurred after photoshop elements said I did not have the necessary permissions to save changes to a photo. I then allowed all to permissions to all disks, I have three external hard drives but I cannot restore from any as they all appear to have some kind of problem. I have repaired all disks in recovery mode and verified all inc mac hd. All permissions are repaired and all disks are saying repaired. So where do I go from here to get the mac back on running mavericks without loosing thousands of photos and all other data ?
    Do I need to reinstall Mac OS ?
    The only options I get to reinstall is mountain lion?.. I have been running the latest mavericks .?.
    Do I reinstall and then update?
    The external drives are not smart drives so how do I ensure I retain all my files?

    your best option is to connect an external drive and reinstall OS X on that external to run the system from. then copy all your files over to the new install for safe keeping. then try doing a reinstall of Mavericks over the top of the current install on the internal drive and test.

Maybe you are looking for

  • RFC AND BAPI

    Hi, Difference b/w the BAPI and RFC.

  • HT1229 When i copy my iPhoto file (261 GB) in a new location i see only 30 photos

    Problems moving iPhoto library

  • ACR and Nikon D800e Raw files

    This discussion is actually a follow on to an earlier one where I thought the issue was resolved. I am using CS5 extended 64 bit with WIN 7 64bit and ACR version 6.7. I verified the ACR version checking for updates and was informed I am up to date. A

  • Wifi stopped working but light is still green on Time Machine

    The wifi on my Time Capsule just stopped working. All of the settings appear to be okay and I have a green light on the front of the system. When I tried to use my Airport utility on my MBP Retina it could no longer see the Time Capsule so I had to h

  • RSA3/Validating data

    Hey Guys Whats rsa3 for and is it to for me to validate data . Like if i am running a load and want to make sure that i am getting all data in my dso/cube. how do i check In RSa3 the first two feilds Data Records/ calls and display calls . what do th