I cannot use "InfoBus Data Form wizard"

I can't use "InfoBus Data Form wizard", because it doesn not apper in anywhare of my JDeveloper 3.1, on Win NT 4.0/SP5.
Any help will be much appreciated.

Nadeem Siddique (guest) wrote:
: Hi,
: I was trying to create a single table data form using
(JBuilder2
: )infobus data form wizard and during the step 3 (select
database
: objects)i got following error:
: >>
: ORA-03115 Unsupported network data taype or representation
: java.sql.SQLException
: <<
: I was connected to Oracle 8.0.5 database runing on AlphaVMS!
: What I am doing wrong ?
: Thanks
: Nadeem
I have tried all the JDBC /JDBC OCI drivers ! and geting the
same error as mentioned above!
null

Similar Messages

  • Infobus data form wizard returning ORA-03115

    Hi,
    I was trying to create a single table data form using (JBuilder2
    )infobus data form wizard and during the step 3 (select database
    objects)i got following error:
    >>
    ORA-03115 Unsupported network data taype or representation
    java.sql.SQLException
    <<
    I was connected to Oracle 8.0.5 database runing on AlphaVMS!
    What I am doing wrong ?
    Thanks
    Nadeem
    null

    Nadeem Siddique (guest) wrote:
    : Hi,
    : I was trying to create a single table data form using
    (JBuilder2
    : )infobus data form wizard and during the step 3 (select
    database
    : objects)i got following error:
    : >>
    : ORA-03115 Unsupported network data taype or representation
    : java.sql.SQLException
    : <<
    : I was connected to Oracle 8.0.5 database runing on AlphaVMS!
    : What I am doing wrong ?
    : Thanks
    : Nadeem
    I have tried all the JDBC /JDBC OCI drivers ! and geting the
    same error as mentioned above!
    null

  • No connections in the combo box of Infobus Data Form Wizard?

    I am trying to create a new project but when I try and select a
    connection, the "Connection" drop-down combo-box is empty. I have
    created 9 connections, but cannot select them. I have tried
    adding a new one and editing but still they do not appear.
    Am I doing something stupidly wrong here?
    Any help would be appreciated,
    Thanks,
    Andy Shiels
    null

    JDeveloper Team (guest) wrote:
    : Andy,
    : The Infobus controls can only talk via the Oracle JDBC drivers
    : (thin and OCI only, not Oracle Lite) to an Oracle database
    : (again, not Oracle Lite), so the wizard will only display
    : connections that meet those criteria.
    : If you have created IIOP connections, or connections that use
    a
    : driver other than the Oracle JDBC Thin or OCI drivers
    (including
    : the Oracle Lite JDBC driver), these connections will not
    appear
    : in the list of available connections to use.
    : L
    : Andy Shiels (guest) wrote:
    : : I am trying to create a new project but when I try and
    select a
    : : connection, the "Connection" drop-down combo-box is empty. I
    : have
    : : created 9 connections, but cannot select them. I have tried
    : : adding a new one and editing but still they do not appear.
    : : Am I doing something stupidly wrong here?
    : : Any help would be appreciated,
    : : Thanks,
    : : Andy Shiels
    I have a similar problem using JDBC-ODBC bridge with MS access
    (just for testing JDeveloper). How do I select the connection,
    get pass the step to move on to the next step in the DB Servlet
    wizard? Thanks.
    null

  • Infobox Data Form Wizard blocked - JDv3

    I installed JDeveloper 3.0 and tried to get the first connection using Infobox Data Form Wizard.
    The tested DBs are : NT and Linux, both Oracle 8.0.5.
    At the step 4 of 7 at the Infobox Data Form Wizard (Select Database Objects), where I can see the tables the wizard process stops.(The mouse cursor stays in wait).
    What can I do to correct this problem?
    Thanks
    Rubens
    null

  • Execute SQLJ/JDBC within InfoBus Data Form???

    Is there a way to execute SQLJ or JDBC from within the InfoBus data forms without opening a new connection?
    Is there a way to execute SQLJ or JDBC via the Business Components using the connection already established in the InfoBus frame?
    Please post any samples if this can be done.
    Thanks
    Andrew

    Andrew,
    The best way to do what you are asking is to create a custom method at the application module or view object level, export that to your client, then call the method from the form.
    Here is an example from a JSP Web Application. The basic idea is the same though.
    1. Double-click the appmoduleImpl.java file for your application module to open it in the code editor (expand the Application Module node to find this source file, if there is not one there, edit your app module, click on the Java tab, and check the Generate Java Files checkbox, click Finish and rebuild your project).
    2. Enter the code that you want to execute (I've included an example below that calls a stored PL/SQL procedure to calculate a value).
    3. Compile the file to make sure your code is OK.
    4. Edit the Application Module and click on the Client Methods tab. You should see your new method in the Available list.
    5. Shuttle the method to the Selected list.
    6. Click Finish and rebuild your project.
    7. From your Infobus client code, call the method you just wrote. You may need to include the package that contains the business components code.
    Note that when you export client methods from your BC4J project, you may need to include the stubs for these methods in your client project, depending on how you deploy your BC4J project. For example, if you deploy your BC4J app module as an EJB, the deployment process will generate the client stubs for these exported methods into a separate project (or you can specify to have them generated into your client project on the Remotable tab of the app module wizard). See the online docs for deployment for more information.
    Example exported client method:
    public int getTotalHits(String mon, String year) {
    CallableStatement stmt = null;
    int total;
    String totalhits = "{? = call walkthru.total_hits(?,?)}";
    stmt = getDBTransaction().createCallableStatement(totalhits, 1);
    try
    // Bind the Statement Parameters and Execute this Statement
    stmt.registerOutParameter(1,Types.INTEGER);
    stmt.setString(2,mon);
    stmt.setString(3,year);
    stmt.execute();
    total = stmt.getInt(1);
    catch (Exception ex)
    throw new oracle.jbo.JboException(ex);
    finally
    try
    stmt.close();
    catch (Exception nex)
    return total;
    null

  • Cannot use GET_FILE_NAME in Form Server

    Hi,
    I'm writing webform using form60 running on application server (IAS9i ), and I have some problems. Is there anyone can help me ?
    1. I cannot use built-in function GET_FILE_NAME on webform. Why and what function can I use instead ?
    2. I'd like to get data from text file which in PC harddisk (not from application server) using form60, how can I do ? (if running on client/server I use built-in package TEXT_IO)
    Thanks in advance,
    Hunsa
    null

    Hi
    In answer to your question 2. Any i/o on the client side, could be done thraugh a Java Bean. Text_io, will try to open/write a file in the application server.
    HTH
    Arvind Balaraman

  • Commiting changes in an Infobus data form

    I use such a form without the navigation
    bar, instead i want to have standard behaviour(a save-button).
    When i edit a cell the status bar
    shows "modified: true".
    My problem is: i tried several ways to
    commit the changes (call the flush method
    in RowsetAccess, get the appmodules'
    transaction and call commit upon it, amongst others)
    but the "modified"-flag doesn't switch
    back afterwards and when i want to close
    the form, the standard commit dialog appears,
    though with the 2nd way the data get
    written to the db (but only the first
    time i use it).
    What is the correct way to commit changes?
    null

    Markus,
    Look at RowsetAccess.getDb().commitTransaction();
    Laura

  • Cannot use Enter Persons Form because Human Resources fully installed

    I have recently installed 11.5.10 (using RapidInstall, with the sample Vision database). A problem I encounter is that when I try to enter an employee, an error pops up:
    APP-PAY-06041: You cannot use the Enter Person Form because Human Resources is fully installed. Instead, use the Human Resources People Form.
    Since I don't need the HR module, how can I disable/uninstall/remove it?
    Any help or pointers to any user guides will be appreciated.

    Hi,
    Uninstalling Human Resources is simply not possible.
    you can try to trick the system by setting HR back to Shared install. One single update can do that. Do not try this at home.
    If that is not enough, you can do a minimal implementation of HR, so that the full install people form works correctly, and so bypassing the shared people form in finance.

  • I cannot use my data

    I have a blackberry data package with verizon I bought a used storm 9530 from a friend and after tech support had me wipe my phone it says email is set up for enterprise server use and the phone has never been associated with a business it wont load up the browser, app world, let me send pic messages, or even let me set up my email for BIS how can this be fixed tech support at verizon doesnt know

    Hi and Welcome to the Community!
    After painfully trying to parse your post (some punctuation would help), I am not certain that I understand your situation. ALL BB's will display, in the email configuration wizard, "Enterprise", all the time...that's always a built-in item, even if the BB is not or has never been associated with BES. But, if "Personal" email does not display, then indeed VZW is not properly delivering to you BIS-level services...if they were, then you'd see both Enterprise and Personal as available selections.
    But, your post further confuses me...
    RandyH wrote:
    it says email is set up for enterprise server use
    Given what I said above, is this still an issue? For example, if one knows how to properly look, they can perhaps determine if the BB was ever associated with BES...and if it was, and was not properly cleansed afterwards (a mere "wipe" will not do so, btw), then there could be a latent IT Policy on board that is preventing some services from functioning.
    But, again, from your words, I cannot be sure of your exact situation.
    Until VZW can properly register your BB onto their network and deliver BIS services to you, pretty much nothing will work. If they don't know how to do that, then you need to escalate with them to someone who does know how. And I am 100% certain that someone at VZW knows how...perhaps not the person you spoke to, but agents receive different levels of training, and some know more than others...just an artifact of the human condition, I think.
    In any event, what you need to do is get VZW to verify that they indeed can properly create a BIS account in their system for your specific BB. If they cannot, then they should be able to tell you why (e.g., reported lost or stolen, registered to a different carrier, etc.).
    Further, have you validated that the BB is unlocked from it's original carrier (if it was not VZW)? See this for reference:
    http://supportforums.blackberry.com/t5/General-BlackBerry-Functions-and/Unlocking-your-BlackBerry-Gu...
    Oh, and since this is a used BB, you and your friend need to review and be sure that each has properly completed their sections of this KB:
    KB05099 Steps to take before selling or after buying a previously owned BlackBerry smartphone
    If your friend did not fully complete all of the Seller steps, then your attempting anything is further moot.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Dreamweaver Error when using Record Insertion Form Wizard

    This is the error I'm getting:
    While executing onLoad in ServerObject-InsRecPHP.htm, the following JavaScript error(s) occured:
    At line 283 of file "C:Program Files (x86)\Adobe\Adobe Dreamweaver CS4\Configuration\Commands\ServerObject-FormCmnPHP.js":
    invalid array length
    The strange thing is, that I've added a form using the wizard before and had no problems. But I deleted the form and wanted to create a new one using the wizard again. And that's when I got the error. I tried this on another computer and got the same error.
    Please help, this is very aggrevating.
    *Also, I've done the same thing on multiple computers and get the same error.
    I've tried deleting the file cache in the configuration folder as instructed by an individual who was talking about JavaScript errors and it still doesn't work.
    Message was edited by: PJP2123

    I know its 4 years later but I just got the same error. after several hours of debugging i found the issue was in my database.
    I have fields named - length, width, height, weight.
    I fixed it by changing them to Lamplength, lampwi   etc
    hope that helps anyone else in the future.

  • Easy DMS cannot use additional data while creating a document

    Hello,
    We have installed sap easy dms 7.0
    We have a problem while creating a new document with SAP Easy DMS.
    On the DIR tab the additional data cannot be used.
    Do I have to change a registry setting?
    We already have defined classes and their features and values in CL02 en CT04
    please help
    Geert ter Harmsel

    Hi,
    Additional functions for object links active Indicator controls the activation of additional functions for the links of objects to this document type.
    You can activate the following additional functions for an object to document link:
    1) Valuation
    Additonally, you can link another object to a chosen database table (See example Additional Object).
    You can delete the additional information of an object link.
    2) Classification
    You can classify the link. You must create a class (class type 048 - object link) with the characteristics that you want to specicify for the link (For example, responsibility, organaization).
    When you set the indicator these functions are active during processing of the document info recod, register object link.
    Hope this is what you are looking for.
    Regards,
    Deepak Kori

  • HT201269 Cannot use cloud on former device as it no longer works?

    Former device no longer functioning (no cloud storage and cannot set it up) - cannot transfer songs from computer to new iPod, cannot transfer from former iPod. How to transfer songs to new iPod?

    Remove Office 2008 for Mac using Microsoft deinstall procedure. Reinstall Office 2008 for Mac.  If there are updates, apply them. Using Disk Utility, verify/repair permissions on your boot drive.
    Does Office for Mac 2008 now work correctly? If not, you may want to repeat the above first sentence, and then update to Office for Mac 2011, and apply the latest (14.4.8) update which has Yosemite fixes.

  • Iphone 4 cannot use cellular data anymore after 4.2 update

    I have an iPhone 4 and I have recently updated it to the latest o.s. after updating I can no longer use the internet without wifi and I cannot send/recieve picture messages (have tried to send and recieve with multiple carriers) and my phone sometimes does not recieve calls or regular txt messages. Please help.

    It's weird, I'm having the same problem. Once I deactivate WiFi my iPhone 4 doesn't get 3G anymore, I have to reboot in order to get data back.
    This is also after updating to 4.2.

  • BC data form wizard error

    The wizard generated for QueryInfo
    "OBJECT_NO as \"Project\"," +
    for the DetailIter
    But project is the 1st column of the primary key and object_no is the third.
    Project was not one of the columns being displayed. Object_no is the first column display, and object_type (the 2nd part of the primary key is displayed as the 2nd column in the grid.

    here's another one:
    "PROJECT,"+
    "OBJECT_TYPE AS \"ObjectTypeOrder\","+
    "OBJECT_TYPE AS "\"ObjectType\"",
    I'm using 3.1.1.2.
    I was recreated the same window.
    This is on the master table.
    I did something like:
    1) move second row to right,
    2) decide that I want all columns and if I add the first column now, it will not be first (and there's no up/down icon buttons on right list of column. Thus I click "<<" to move column back to left list.
    3) click ">>" to move all columns to the right.
    4) click go to next step.

  • Using viable data form an Excel

    Will recive a start time and end time to monitor a singal of peaks. This is a execl file. how do I get that data in for my controls.

    loX2:
    Sorry, no offense, but your question is not clear to us.
    Are you acquiring time stamped signal (or is it Single as in float32)
    data from some sort of instrument or card and then trying to write
    that data to an Excel file?
    or
    Are you trying to read time stamped signal (or is it Single as in
    float32)data in from an Excel file?
    or
    Are you trying to do something else?
    Please explain more carefully what you are trying to do and we will
    try to help.
    Douglas De Clue
    LabVIEW developer
    [email protected]
    louX2 wrote in message news:<[email protected]>...
    > Will recive a start time and end time to monitor a singal of peaks.
    > This is a execl file. how do I get that data in for my controls.

Maybe you are looking for

  • How do I update safari on my macbook pro

    how do I update safari on my macbook pro

  • Checking List of Specific Files exists in Folder

    Hi all, Please  help and advice business promises that they drop 10 Different Files with TimeStamp. 1. QHP_Group_Association_Benefit_Periods_20140117104957 2. QHP_Out_Of_Pocket_Limit_20140117110805 10.QHP_Strategy_20140117110230 I have a requirement

  • PROBLEMS w/ internet explorer

    For some reason my site is fine with all other browsers except for Internet Explorer. Using CSS templates and just checking if someone may be able to assist in this situation. THANKS. sandiegoraw.com

  • IMac 17" White Intel inverter cable

    I've replaced the LCD screen, but the cable, that comes out of the display and plugs into the inverter connector on the main circuit board, is to short. Is there an extension cable that I can purchase and where?

  • Use of cheap LCD displays

    I recently acquired a GEM GM-170 display (VGA only). I hooked it up to my Mac Mini, configured for 1024x768, and allowed the two devices to sort things out among themselves. The screen was dim, but worked. I tried to calibrate the monitor using Displ