Searching for simple bluetooth to bluetooth messages tutorial or example

Hi,
I want to send messages from 1 mobile phone to another one using Bluetooth but I can't find any simple tutorial or example with this type of bluetooth use.
So i'm asking for your help :) any simple tutorial/example for bluetooth messages between devices?
Thanks in advance

import java.util.Vector;
import java.io.IOException;
import javax.microedition.io.Connector;
import javax.microedition.io.ConnectionNotFoundException;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.TextField;
import javax.microedition.lcdui.StringItem;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.ChoiceGroup;
import javax.microedition.lcdui.Choice;
import javax.bluetooth.LocalDevice;
import javax.bluetooth.RemoteDevice;
import javax.bluetooth.DiscoveryAgent;
import javax.bluetooth.DataElement;
import javax.bluetooth.DeviceClass;
import javax.bluetooth.UUID;
import javax.bluetooth.DiscoveryListener;
import javax.bluetooth.ServiceRecord;
import javax.bluetooth.L2CAPConnectionNotifier;
import javax.bluetooth.L2CAPConnection;
import javax.bluetooth.BluetoothStateException;
import javax.bluetooth.BluetoothConnectionException;
import javax.bluetooth.ServiceRegistrationException;
public class ChatController extends MIDlet implements CommandListener
private Display display = null;
private Form mainForm = null;
private ChoiceGroup devices = null;
private TextField inTxt = null;
private TextField outTxt = null;
private Command exit = null;
private Command start = null;
private Command connect = null;
private Command send = null;
private Command select = null;
private StringItem status = null;
private LocalDevice local = null;
private RemoteDevice rDevices[];
private ServiceRecord service = null;
private DiscoveryAgent agent = null;
private L2CAPConnectionNotifier notifier;
private L2CAPConnection connection = null;
private static final String UUID_STRING = "112233445566778899AABBCCDDEEFF";
private boolean running = false;
public ChatController()
super();
display = Display.getDisplay(this);
     mainForm = new Form("CHAT");
     devices = new ChoiceGroup(null,Choice.EXCLUSIVE);
     inTxt = new TextField("incoming msg:","",256,TextField.ANY);
     outTxt = new TextField("outgoing msg:","",256,TextField.ANY);
     exit = new Command("EXIT",Command.EXIT,1);
     start = new Command("START",Command.SCREEN,2);
     connect = new Command("CONNECT",Command.SCREEN,2);
     send = new Command("SEND",Command.SCREEN,2);
     select = new Command("SELECT",Command.SCREEN,2);
     status = new StringItem("status : ",null);
     mainForm.append(status);
     mainForm.addCommand(exit);
     mainForm.setCommandListener(this);
protected void startApp() throws MIDletStateChangeException
running = true;
     mainForm.addCommand(start);
mainForm.addCommand(connect);
     display.setCurrent(mainForm);
try
local = LocalDevice.getLocalDevice();
     agent = local.getDiscoveryAgent();
catch(BluetoothStateException bse)
status.setText("BluetoothStateException unable to start:"+bse.getMessage());
          try
          Thread.sleep(1000);     
          catch(InterruptedException ie)
notifyDestroyed();
protected void pauseApp()
running = false;
     releaseResources();
protected void destroyApp(boolean uncond) throws MIDletStateChangeException
running = false;
     releaseResources();
public void commandAction(Command cmd,Displayable disp)
if(cmd==exit)
     running = false;
          releaseResources();
          notifyDestroyed();
else if(cmd==start)
     new Thread()
               public void run()
                    startServer();
               }.start();
else if(cmd==connect)
          status.setText("searching for devices...");
                    mainForm.removeCommand(connect);
                    mainForm.removeCommand(start);
                    mainForm.append(devices);
                    DeviceDiscoverer discoverer = new DeviceDiscoverer(ChatController.this);
                    try
                         agent.startInquiry(DiscoveryAgent.GIAC,discoverer);
                    catch(IllegalArgumentException iae)
status.setText("BluetoothStateException :"+iae.getMessage());
                    catch(NullPointerException npe)
status.setText("BluetoothStateException :"+npe.getMessage());
                    catch(BluetoothStateException bse1)
status.setText("BluetoothStateException :"+bse1.getMessage());
else if(cmd==select)
                    status.setText("searching devices for service...");
                         int index = devices.getSelectedIndex();
                         mainForm.delete(mainForm.size()-1);//deletes choiceGroup
                         mainForm.removeCommand(select);
                         ServiceDiscoverer serviceDListener = new ServiceDiscoverer(ChatController.this);
                         int attrSet[] = {0x0100}; //returns service name attribute
UUID[] uuidSet = {new UUID(UUID_STRING,false)};
                         try
                              agent.searchServices(attrSet,uuidSet,rDevices[index],serviceDListener);
                         catch(IllegalArgumentException iae1)
status.setText("BluetoothStateException :"+iae1.getMessage());
                    catch(NullPointerException npe1)
status.setText("BluetoothStateException :"+npe1.getMessage());
                    catch(BluetoothStateException bse11)
status.setText("BluetoothStateException :"+bse11.getMessage());
else if(cmd==send)
                         new Thread()
                                   public void run()
                                        sendMessage();
                                   }.start();
//this method is called from DeviceDiscoverer when device inquiry finishes
public void deviceInquiryFinished(RemoteDevice[] rDevices,String message)
this.rDevices = rDevices;
     String deviceNames[] = new String[rDevices.length];
     for(int k=0;k<rDevices.length;k++)
     try
          deviceNames[k] = rDevices[k].getFriendlyName(false);
     catch(IOException ioe)
     status.setText("IOException :"+ioe.getMessage());
for(int l=0;l<deviceNames.length;l++)
     devices.append(deviceNames[l],null);
mainForm.addCommand(select);
     status.setText(message);
//called by ServiceDiscoverer when service search gets completed
public void serviceSearchFinished(ServiceRecord service,String message)
     String url = "";
this.service = service;
     status.setText(message);
     try
     url = service.getConnectionURL(ServiceRecord.NOAUTHENTICATE_NOENCRYPT,false);     
     catch (IllegalArgumentException iae1)
try
     connection = (L2CAPConnection)Connector.open(url);
          status.setText("connected...");
          new Thread()
          public void run()
               startReciever();
          }.start();
catch(IOException ioe1)
status.setText("IOException :"+ioe1.getMessage());
// this method starts L2CAPConnection chat server from server mode
public void startServer()
status.setText("server starting...");
     mainForm.removeCommand(connect);
     mainForm.removeCommand(start);
     try
          local.setDiscoverable(DiscoveryAgent.GIAC);
          notifier = (L2CAPConnectionNotifier)Connector.open("btl2cap://localhost:"+UUID_STRING+";name=L2CAPChat");
          ServiceRecord record = local.getRecord(notifier);
          String conURL = record.getConnectionURL(ServiceRecord.NOAUTHENTICATE_NOENCRYPT,false);
          status.setText("server running...");
          connection = notifier.acceptAndOpen();
          new Thread()
          public void run()
               startReciever();
          }.start();
     catch(IOException ioe3)
status.setText("IOException :"+ioe3.getMessage());
//starts a message reciever listening for incomming message
public void startReciever()
mainForm.addCommand(send);
mainForm.append(inTxt);
     mainForm.append(outTxt);
     while(running)
     try
          if(connection.ready())
               int receiveMTU = connection.getReceiveMTU();
                    byte[] data = new byte[receiveMTU];
                    int length = connection.receive(data);
                    String message = new String(data,0,length);
                    inTxt.setString(message);
     catch(IOException ioe4)
     status.setText("IOException :"+ioe4.getMessage());
//sends a message over L2CAP
public void sendMessage()
try
     String message = outTxt.getString();
          byte[] data = message.getBytes();
          int transmitMTU = connection.getTransmitMTU();
          if(data.length <= transmitMTU)
          connection.send(data);
else
          status.setText("message ....");
catch (IOException ioe5)
status.setText("IOException :"+ioe5.getMessage());
//closes L2CAP connection
public void releaseResources()
try
     if(connection != null)
               connection.close();
          if(notifier != null)
               notifier.close();
catch(IOException ioe6)
status.setText("IOException :"+ioe6.getMessage());
import java.util.Vector;
import javax.bluetooth.RemoteDevice;
import javax.bluetooth.DeviceClass;
import javax.bluetooth.DiscoveryListener;
import javax.bluetooth.ServiceRecord;
public class DeviceDiscoverer implements DiscoveryListener
private ChatController controller = null;
private Vector devices = null;
private RemoteDevice[] rDevices = null;
public DeviceDiscoverer(ChatController controller)
super();
this.controller = controller;
     devices = new Vector();
public void deviceDiscovered(RemoteDevice remote,DeviceClass dClass)
devices.addElement(remote);
public void inquiryCompleted(int descType)
     String message = "";
switch(descType)
     case DiscoveryListener.INQUIRY_COMPLETED:
               message = "INQUIRY_COMPLETED";
          break;
     case DiscoveryListener.INQUIRY_TERMINATED:
               message = "INQUIRY_TERMINATED";
          break;
     case DiscoveryListener.INQUIRY_ERROR:
               message = "INQUIRY_ERROR";
          break;
rDevices = new RemoteDevice[devices.size()];
     for(int i=0;i<devices.size();i++)
          rDevices[i] = (RemoteDevice)devices.elementAt(i);
     controller.deviceInquiryFinished(rDevices,message);//call of a method from ChatController class
     devices.removeAllElements();
     controller = null;
devices = null;
public void servicesDiscovered(int transId,ServiceRecord[] services)
public void serviceSearchCompleted(int transId,int respCode)
import javax.bluetooth.RemoteDevice;
import javax.bluetooth.DataElement;
import javax.bluetooth.DeviceClass;
import javax.bluetooth.DiscoveryListener;
import javax.bluetooth.ServiceRecord;
public class ServiceDiscoverer implements DiscoveryListener
private static final String SERVICE_NAME = "L2CAPChat";
private ChatController controller = null;
private ServiceRecord service = null;
public ServiceDiscoverer(ChatController controller)
super();
     this.controller = controller;
public void deviceDiscovered(RemoteDevice remote,DeviceClass dClass)
public void inquiryCompleted(int descType)
public void servicesDiscovered(int transId,ServiceRecord[] services)
for(int j=0;j<services.length;j++)
     DataElement dataElementName = services[j].getAttributeValue(0x0100);
          String serviceName = (String)dataElementName.getValue();
          if(serviceName.equals(SERVICE_NAME))
               service = services[j];
          break;     
public void serviceSearchCompleted(int transId,int respCode)
String message = "";
     switch(respCode)
     case DiscoveryListener.SERVICE_SEARCH_COMPLETED:
               message = "SERVICE_SEARCH_COMPLETED";
          break;
     case DiscoveryListener.SERVICE_SEARCH_ERROR:
               message = "SERVICE_SEARCH_ERROR";
          break;
     case DiscoveryListener.SERVICE_SEARCH_TERMINATED:
               message = "SERVICE_SEARCH_TERMINATED";
          break;
     case DiscoveryListener.SERVICE_SEARCH_NO_RECORDS:
               message = "SERVICE_SEARCH_NO_RECORDS";
          break;
     case DiscoveryListener.SERVICE_SEARCH_DEVICE_NOT_REACHABLE:
               message = "SERVICE_SEARCH_DEVICE_NOT_REACHABLE";
          break;
     controller.serviceSearchFinished(service,message);//calling a method from ChatController class
controller = null;
     service = null;
}

Similar Messages

  • How to search for a standard sap error message

    Hi all,
        I want to know where exactly we need to search for a standard sap error message ( For example like STACK_NO_ROLL_MEMORY).
        I am searching the same in sap market place/oss note search...but don't see what I am looking for ...
       Could you please help on the same ?
    Thanks,

    Hi Shravan,
    Normally system throws up an error when it reaches the threshold point. Normally the threshold / critical points are arrived at by considering the SAP recommended values and what is the sytem configuration you have got.
    In true project scenario because of budget constraints we might not be able to have ideal system configuration which SAP recommends , in that case we have to tune to the system perform at an optimum level considering various aspects
    In yr case memory parameters should have been set at level , but for yr job it needed more memory which it could not allocate and throwed an error.
    hope i have answered yr question .
    Regards
    Balaji

  • HT203163 I recently had to replace my laptop and now when I try and sync my phone to my laptop I am asked to authorise the laptop, but after I enter my login and password, the search for itunes fails with a message that itunes is not currently available

    I recently had to replace my laptop and now I can't sync iTunes and my phone - the message is that the laptop is not authorised and when I try and authorise it it says that the itunes store is currently unavailable - but it is available on my phone, and I have been trying for over 24hrs - it should be available by now.
    I have checked my firewall settings and they are ok
    How can I remove old PC's that I no longer use and make sure that this is the only computer that is authorised for my account - and how can I access the iTunes store so that I can authorise it?
    Help please

    i had to format my laptop
    You can reinstall Lion (Mac OS X) by pressing Command + R while booting your Mac. No need to re download Lion again.
    Help here >  OS X: About OS X Recovery

  • Searching for simple document and picture viewer.

    Hello,
    I've looking for a viewer which supports all of the common picture formats, such as gif,jpeg,bmp and can also display all kind of office documents.
    If i look for viewer with these options, I all end up with great complicated client-webserver models. Can anyone tell me if there is a viewer which is used on the client-side (fat-client). A rather simple api which converts office-documents to images and maybe provide some simple imaging fuctionality such as zooming etc...
    Much thanks,
    Hugo

    I think this is not the forum for your query.
    However, as far as a viewer which supports all common picture formats
    you can purchase Adobe PhotoShop (ver 6.0 or above).
    I think Adobe Illustrator can display all kind of office documents, but
    I am not sure.
    Hope my reply will serve your purpose.
    (S. JAI SANKAR)

  • Searching for simple upload applet

    I hope this is the right forum for this query
    I need an "upload any size file" applet. Most of the commercial ones are way overblown in features that you can't turn off. All I need is the ability to upload a file of any size, browse for the file to upload, and pass parameters with each file.
    are there any simple applets like that available?
    thanks for you time and thoughts
    --- eric

    Ha ha.
    How about telling us what's supposed to accept the
    upload? Technically, simple HTML is sufficient. The
    other end of the line defines what you need.sorry for the new id, the forum lost my old one.
    well the code I've seen elsewhere dictated a server side solution for me. ;-)
    my expectation? since browsers fail to upload more than 90mb at a time (give or take), I expect that the file would be uploaded in chunks or slices. I expect to write a cgi program that would stich together those chunks based on cgi parameters uploaded with the file chunk.
    another alternative for the applet is to stream the file to a file transfer server server with authentication via server generated auth tokens. Or something...
    and no, ssh/ftp and the like are not acceptable for a varity of reasons unless I can write anon write only and can tell the server side app when the xfr is done.
    thanks

  • In Search for Automatic Sliding Content with Buttons tutorial

    I would like to implement a cross screen sliding content. I would like this content to have buttons which allow to move from one section to another. I would like this buttons to be in the ON position when the corresponding section is on the screen.
    I would like it to start and sycle once automatically, yet to have user a control over it with buttons.
    Does any one know a good tutorial site where I can find something like that?

    check http://www.greensock.com/tag/tutorials/

  • I have Firefox 3.6.2 on my Mac. There are newer ones - 4 & 5. How come when I search for updates, I get the message that there are none?

    I installed the latest version of 1Password 3.6.5 but its extension is incompatible with Firefox 3.6.2. It wants Firefox 4 or 5. The 1Password extension does work, however, on my Safari 5.1 browser. I want 1Password on both browsers but Firefox is preventing this due to inability to automatically update to Firefox 4 or 5. That option is checked in the Firefox preferences.

    If you have problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Search for simple program in java

    hi
    i need a program that have more than 50 lines
    frogram that have else-if
    i need to make a work of qa
    thanks

    @khansartaj
    the main method is the method used by the VM to initiate an application. You need to implement this method in order to run the class. The parameter string[] args is a list of the commandline parameters passed to your application.

  • IMac won't search for trackpad and keyboard after restart

    I've recently experienced problems using the trackpad and keyboard to wake up my iMac. Twice in the last 2 months we have been unable to wake the mac, so we would use the power button to restart it, and when it came back on again the keyboard and trackpad would be fine.
    However, the same thing happened yesterday and when we restarted the mac it refused to search for the bluetooth trackpad and keyboard. normally if we have an issue we'd get the "connection lost" then "connected' message, but none of that is happening. Both devices are on, and the batteries are fine. I've tried using a usb mouse but there's no response with that either. We're stuck on the log in screen

    The classic turn off and on (disconnect power cable etc)? Just gave that a try, didn't work I'm afraid. Thanks for your reply though Barry.

  • WM-Error during search for WM movement type (261 )

    HI FRIENDS
               I HAVE THE ERROR DURING GOODS ISSUE FOR PRODUCTION ORDER...
               PLS SUGGEST ME TO SOLVE THIS ISSUE
    Error during search for WM movement type (261 )
    Message no. L9 005
    Diagnosis
    A movement type of the Warehouse Management system and certain parameters are assigned to each movement type of the Inventory Management system.
    In this case, no movement type of the Warehouse Management system was assigned to the Inventory Management movement type used by the parameters enclosed in parentheses in the error message.
    Procedure
    Contact your system administrator about this error. Note down the parameters in the error message and the situation that caused the error.
    WIHT REGARDS
    DINESH

    Hi,
    The IM and WM linkage may not be proper for the movement type. Maintain an entry for your warehouse with movement type 261  and Movment Indicator l combination in transaction OMLR. In the "Assign WM Movement Type References to IM Movement Types" section (button), change the "Reference Movement Type WM" to 261 (to match "Reference Mvmt Type" under button LE-WM "Interface to Inventory Management")
    And also .....
    Check in IMG Path - Enterprise Structure --> Assignment --> Logistis Execution --> Assign warehouse number to plant/storage location. I hope this will help you. Thanking you.

  • I have a 3GS. Am trying to sync a plantronics explorer 232 Bluetooth headset and can't figure it out. I have Bluetooth turned on but it searches for devices and the headset never shows up. Anyone know exactly how to do this?  My tech skills are lacking

    I have a 3GS. Am trying to sync a plantronics explorer 232 Bluetooth headset and can't figure it out. I have Bluetooth turned on but it searches for devices and the headset never shows up. Anyone know exactly how to do this?  My tech skills are lacking

    I have the same blueparrott headset headset with the directions. Actually reading them just fixed my iphone pairing issue.
    Here they are in case u still need them along with what I needed to do to get mine to work with iphone 4
    Pair Headset with Phone
    Turn off headset off
    Hold down headset's MFB (large top button) until red & blue lights flash and you hear 2 rising tones, followed by 4 more tones. Must wait for all before you release the MFB button!! (I had my hubby hold the MFB while I waited for the tones since both come from the headset
    Release the MFB and follow your phone's instructions to place it in 'bluetooth' discoverable mode.  With the iphone4, go to "General" and then "Bluetooth" and turn indicator to "ON".
    This is where my issue occurred as the phone could not find the bluetooth, although it worked with my LG phone.  So after trying it several times thinking I was nuts and that the issue was with the iphone, I looked further in the blueparrot's directions and found this step that fixed the issue.
    Reset Paired Devices List
    On the bluetooth, press and hold down both the volume up & volume down buttons for 5-6 seconds.  A double beep will be heard and the list will be reset.  Pairing info for devices previously paired will be lost.
    The bluetooth directions provide this as step 4 but that did not work for my phone (see below)
    4. Once the phone discovers the headset, select "pair" and enter "0000" code and that when pairing is complete the blue light on the headset will stop flashing and phone will prompt you to 'connect'.
    This is what I had to do after resetting the device list on my bluetooth
    4. My iphone instanting discovered the headset and displayed it under 'Devices" but showed a message that it was 'not connected'.  Once I selected the device on the iphone by pressing on it then it changed to "connected". 
    Even when I turn the bluetooth on and off the device remains on the list and alll I do is select it to connect and disconnect after I turn on my blueparrott bluetooth
    I hope this helps others!   

  • Bluetooth continuing to search for devices  in jeep hand free

    I paired the iphone 3g to my jeep "u conect" hands free, it paired ok but every time I go out of the car the iphone will never be available, tried a different phone and my car system work great, how can i fix the Bluetooth continuing to search for devices and will not conect to the car system

    What year is your Jeep? There are a couple of other threads here regarding chyrsler (and other ) vehicles not connecting with phones that have software version 2.0 or higher.
    As best as I can tell, it affects 2007 and later chrysler vehicles with Uconnect but not the MyGig system (supposedly there is a patch that you can use to update the MyGig software that may or may not work).
    I spoke with an apple tech support person and he couldn't help. They didn't have anything in his help files to fix the problem and he actually turned to the message boards to get more info.
    That being said, like someone else said, take the time to fill out some feed back.
    http://www.apple.com/feedback/iphone.html
    If you look at the rest of the bluetooth forum...there are tons of blue tooth issues out there. Might speculate that the only way to make the chrysler issue a priority is to make yourself heard. I personally don't know if there is a better method than the above feedback tool. But, if there is, I'd like to know.
    If you are 2006 and earlier...according to others on here, you should be able to get it to work.

  • HT201401 My bluetooth is no longer working in the car - it keeps 'searching' for devices

    My bluetooth is no longer working in the car - it keeps 'searching' for devices.  Anyone ever had this issue?
    Thanks

    Can you connect from your phone to another BT device, not the car?  If you haven't ,I'd try a reset of the phone by holding the home and power button down.  Next step would be to talk to your dealership and see if they have any ideas. Sometimes software can either get updated on iOS or on the vehicle and it can cause problems.  Every dealership seems to have a go-to person that handles issues like this.  Getting to know him or her well and getting their direct phone number will pay big dividends.  A device restore might be necessary, but if it were me I'd talk to the dealership first. 

  • What driver or software patches do i need to install in my windows 7 laptop, in order for the laptop to capture Bluetooth messages, which is possible with window 8?

    Hi,
    i am connecting a Bluetooth device to my laptop. I notice that Message Analyzer could capture Bluetooth messages only if I am using windows 8? I am using window 7. What driver or software patches do i need to install in my windows 7 laptop, in order for
    the laptop to capture Bluetooth messages, which is possible with window 8?
    Also, i notice that using window 8, i am able to capture Bluetooth message but i am not able to display wireless perfromance statistics such as signal strength, throughput, etc? Is there a way for me to get such information.
    Please help.

    If you look at the link you sent me:Default Trace Scenarios
    http://msdn.microsoft.com/en-us/library/jj659262.aspx
    "Windows 8 Bluetooth (Windows 8/Windows Server 2012 or later) 
    Troubleshoot Bluetooth issues"
    So what about Windows 8 earlier? Not supported?
    My question: What driver or software patches do i need to install in my windows 7 laptop, in order for the laptop to capture Bluetooth messages, which is possible with window 8?

  • I have iphone 6 with ios 8.1.1. The bluetooth pairs with my sony car radio and everything works fine. However, the iphone won't stop searching for other devices.

    I have an iPhone 6 with ios 8.1.1 operating system. The Bluetooth pairs with my Sony car radio and works fine. However, the iPhone will not stop searching for other devices. This does not seem to affect anything, but I can't help but think it is using battery power.

    One possibility: 
    How do you know it is searching for other devices?  Because you opened Settings > Bluetooth?
    Why is it searching for other devices? Because you opened Settings > Bluetooth? 

Maybe you are looking for

  • Oracle.ifs.admin.export.ExportUsers NOT working in SILENT mode

    I'm trying to export my CMSDK users via the commandline script (since the GUI tool MAKES YOU SELECT EACH USER ONE AT A TIME!!!) but it is not working. The CMSDK doc incorrectly tells you to run oracle.ifs.admin.export but I've found that you have to

  • How to use Oracle BIP Webservices using JAX-WS

    Hi everyone, Has anyone trieed invoking BI publisher web services using JAX-WS. I tried with Apache Axis technology as per the documentation [http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416/bip_webservice_101331.htm] and it worked fin

  • Graduate student data collection - please consider answering a few question

    I would like to solicit your participation to complete a short 8-12 minute questionnaire.   The scope of my research is behavioral factors that influence individual performance in an ERP environment.  The questionnaire is confidential and anonymous.

  • Working with 2 or more Frames

    Hi, I trying to do an application. My application have a main frame and this frame calls others frames. I need something like that, when the main frame calls another frame, the second frame shows a combobox (for example) and the user need to choose f

  • GL Legal Entity Create New Address error

    Hi sein/hel I got this error > ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1674 ORA-12545: Connect failed because target host or object does not exist in Package xle_legal_address_swi Procedure create_legal_address when I am cre