BC4J Documents and Tutorial

Hello:
I am new to JDeveloper and BC4J, and I would like to learn more. Would someone point me to some good sources that I can more information as well as tutorial on this topic please. I would appreciate this.
Thanks,
Tom

I highly recommend the samples within JDev 3.2.2 (these can be found in the samples directory within JDeveloper).
As for tutorials...refer to the Jdeveloper 3.2.2 Help|Contents. Under here you will find the topic Tutorials and Sample Applications. They probably cover about 80% of what most applications require.
Other than that, once you begin developing and run into questions, search/post this discussion board.
Andrew

Similar Messages

  • Diff b/w bc4j model and ejb model in adf11g

    hi all,
    iam murali iam new for adf 11g i have some dout's in adf11g ,can u please solve my probleam
    what is the difference b/w bc4j componet and ejb componet,how to develop ejb application in adf11g.

    ,how to develop ejb application in adf11gTake a look at this tutorial for starters:
    http://st-curriculum.oracle.com/obe/jdev/obe11jdev/ps1/ejb/ejb.html

  • C:\Documents and Settings\User "c:/Program Files/Java/jdk1.5.0_14\bin\java.

    I have a class "Stimulus.java" in which another jar's class has been used. When I created jar and executed I got below error. I used "-classpath" to set dependancy jar file. Any clues are appreciated.
    import modulus.Modulus;
    public class Stimulus{
        public static void main(String[] args) {
                Model.main(args);
    C:\Documents and Settings\User>"c:/Program Files/Java/jdk1.5.0_14\bin\java.exe" -classpath "D:\User\mypgms\test\bin\Modulus.jar;" -jar D:\User\mypgms\test\bin\Stimulus.jar c:\test.txt
    Exception in thread "main" java.lang.NoClassDefFoundError: modulus/Modulus
            at Stimulus.main(Stimulus.java:4)

    You can't mix classpath values with the -jar option. Using the -jar option causes Java to use only the Class-Path: information in the jar's manifest file, while ignoring all external classpath information. Review this for details:
    http://java.sun.com/docs/books/tutorial/deployment/jar/run.html

  • JDeveloper BC4J Programmatic Client Tutorial Problem

    I have searched everywhere, but cannot find a correct working solution for this problem.
    Description:
    I am running the tutorials found under:
    Help Menu -> Help Topics -> Tutorial
    I can get several tutorials to work, but I am stuck on the tutorial titled:
    "Business Components Programmatic Client Tutorial".
    The BC4J Standalone Client tutorial is giving me this error after completing Step 3:
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /OnlineOrders/common/bc4j.xcfg in the classpath
    There is no information regarding how to correctly configure the classpath or fix this problem.
    I am using JDeveloper 9i RUP7 at the Oracle Support site Knowledgebase 416708.1 for Release 11i:
    https://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=8751878
    My OS is Windows XP
    How can this this be resolved, so that I can successfully create a BC4J client in JDeveloper?
    Thanks in advance for any help
    Edited by: user8115477 on Apr 26, 2010 7:28 AM

    Thanks for clarifying that the package should have multiple names / hierarchy.
    I encountered the problem because the JDeveloper9i BC4J tutorial suggested one-level name.
    Eventually, I made changes similar to what you suggested, and now I can get the program tutorial to work.
    I was able to get the tutorial running by manually changing the package name as below:
    Tutorial Suggests:
    "OnlineOrders"
    What I did:
    Gotta have two-levels deep, so I entered "OnlineOrders.bc4j" instead.
    Then, I replaced all instances of "OnlineOrders" with "OnlineOrders.bc4j"
    This includes updating the code that must be copy-pasted into the Batch Client.
    Update all calls of "OnlineOrders.appName" to "OnlineOrders.bc4j.appName" etc... etc...
    I will mark this item as answered, since my OP question was answered.

  • I was working on a word document  and the computer shut down suddenly.

    I was working on a word document  and the computer shut down suddenly. I got a grey screen with a message that your computer shut down because of a proble. It was written in various languages. It asked me to press any key to restart. I tried to restart it but the wheel just kept going on and on. So I shut it down and I tried to restart it. But I still keepgetting the wheel under the apple symbol and nothing else.

    See
    About kernel panics,
    Technical Note TN2063: Understanding and Debugging Kernel Panics,
    Mac OS X Kernel Panic FAQ,
    Resolving Kernel Panics,
    How to troubleshoot a kernel panic, and
    Tutorial: Avoiding and eliminating Kernel panics for more details.

  • How do I sign a document and send it

    How do I sign a document and send it?@

    Hi mstee,
    I took a look at your account and see that you don't have any subscriptions. You would need either Acrobat or Adobe Fill & Sign (part of Acrobat.com). Here's some getting started information for Fill & Sign: Tutorial: Introduction to Adobe Fill & Sign
    Best,
    Sara

  • How to associate Document and JTextPane  ?

    Hello,
    I'm a little lost and confused about JTextPane.
    I thought that to associate a document and a JTextPane, the method JTextPane.setDocument(doc) had to be used.
    But by looking at the sample : http://bioportal.weizmann.ac.il/course/prog2/tutorial/uiswing/components/example-1dot4/TextSamplerDemo.java, I haven't seen any such instruction. The code is the following :
            JTextPane textPane = new JTextPane();
            StyledDocument doc = textPane.getStyledDocument();
            addStylesToDocument(doc);
            try {
                for (int i=0; i < initString.length; i++) {
                    doc.insertString(doc.getLength(), initString,
    doc.getStyle(initStyles[i]));
    } catch (BadLocationException ble) {
    System.err.println("Couldn't insert initial text into text pane.");
    I understand that the document "doc" is associated with  "textPane" , but I do not understand, how Java knows that in this JTextPane, the document to be displayed must be  "doc" ?  However it works (miracle ???).   
    I'm wondering whether it is  not because the Document Listener retrieves the JTextPane information from the Document, and then triggers the  JtextPane update from the document.  But I'm not sure.
    Thanks to gurus to let me understand.   
    Gege                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thanks a lot Camickr for your answer. But does this mean that when I type :
    StyleDdocument doc = textPane.getStyledDocumen();
    I do not really create a document, but I only get the reference of the empty document ? If it is right, then I understand why the following code does not work.
    Among my various tries, I sightly modified the TextSamplerDemo sample to add a second JTextPane (that I did not add to the JPanel).
    JTextPane textPane = new JTextPane();
    JTextPane textPane2 = new JTextPane();
    StyledDocument doc = textPane.getStyledDocument();
    doc = textPane2.getStyledDocument();
    addStylesToDocument(doc);In such a case, textPane becomes empty, but when I add te instruction : textPane.setDocument(doc); it starts working again.
    Thanks again for your help, I hope you have understood my English (which is not my natural language).
    gege

  • I just updated my pages and now it won't load. This is on my iPad. The first version which has the latest version it can have 5.1 or something like that. I am trying to open a document and am worried that if I uninstall and reinstall I will lose all my do

    I just updated my pages and now it won't load. This is on my iPad. The first version which has the latest version it can have 5.1 or something like that. I am trying to open a document and am worried that if I uninstall and reinstall I will lose all my documents

    I just uninstalled it and am waiting for it to reinstall. I sincerely hope that I have not lost everything that I worked on so hard. Now that mobile me is gone, I have not been able to go between devices to transfer things. I was merely trying to take a document I had worked on and open it in pages, but it said my version was too old. When I updated, it wouldn't load. Now I cannot do anything. I hope that the reinstall fixes it without losing everything. Please advise!!! Yes, I am in panic mode.

  • My Pages app for iPad tells me I can't open a document and even iCloud won't let me download it to my Mac, how can I recover my document?

    I really don't know what happened to Pages. First I was using the app, working on a document and everything was fine. I updated it a couple of times and there was no problem. Then, when I tried to open it once more snd continue to work with it, a message appeared telling me that the document had been modified in other iPad. Usually this would make sense but not this time because this file was only used on my iPad. So I chose to keep the document version created on my iPad and **** got loose since then. The document could't open, every time I tried, a message told me "The file cannot be open", so I read A LOT of what to do in this horrible case and tried to open it via iTunes but the option withbthe little arrow that usually works for send the file via e-mail, or to dropbox, or to print appear like I can't use it for anything so most of my options and hopes died. Then on a Mac I tried to dowñoad the file to see if there I could open it or at least change the file code from .pages to .zip and then unzip it but I can't even dowload it form iCloud so you see, I'm desperate. I need help, please! The document is very very important so could you tell me how can I recover it?

    Having the same issue, can someone please enlighten us?

  • On my mac i accidentally deleted all my documents and now i cant play my songs from itunes but can on my phone and my photos are there but when i open them they are not but i can see some on my iphone but not all. How do i get these back or are they lost?

    I accidentally dleted all my documents and emptyed the trash can. I can play my music on my iphone but not through my mac because it says it cant locate the file/original and my photos are on my computer but when i double click to open them they come up with an ! however some of the photos are on my iphone but just the ones i took using the camera function. Can i get this stuff back or it lost forever.....

    At the AT&amp;T store. Tried using iCloud but only 120 songs were transferred and when I access my iTunes account now it only shows 120 and not the 450 anymore that I purchased on my old phone. Tried to sync again from the phone to iTunes and it still not working.
    I purchased everything under the same apple ID account I called apple support and spent almost 2 hours with tech support for assistance and we got disconected and they never called me back.
    I'm at the point where I'm about to never purchase anything anymore from apple go to another company retrieve every single charge made on my bank account from iTunes and file a law suit against the company. It's being a week that I called for assistance and no one called me back to help me with this matter even after I responded a survey with a complaint about not getting a resolution to my problem.
    If you could please help me I will appreciate, I'm out of the country now and can't stay on the phone for a long time.
    I need to sell my old phone but as right now besides all my bank statements the old phone is the only evidence that I purchased the songs.

  • Not able to open adobe XI Pro after I have filled out a documents and trying saving it. The program stops working & won't open up again.  Tried to complete a repair, rebooting nothing works. Help please.

    Not able to open adobe XI Pro after I have filled out a documents and trying saving it. The program stops working & won't open up again.  Tried to complete a repair, rebooting nothing works. Help please.

    Hi,
    Can you pls. provide more details of the issue?
    OS/Platform
    It would be great if you can provide the MSI logs for repair from the %temp% directory.
    Thanks,

  • Report to show the followup sales documents and items

    Sales had executed many sales quotations with customers over a period of time.
    Now the Sales Staff wanted to know how many sales documents and what/how many sales items are being purchased by the customer with respect to the quotation.
    Is there a report that list out the sales documents and items created w/respect to a particular quotation instead of looking at the document flow which is difficult to diagnose.
    Thanks

    hello, friend.
    you can try table VBFA, where you can see sales documents and their subsequent documents.
    for a general listing of quotations, use tcode VA25.
    regards.

  • I am trying to remove two full page black borders from my Pages document and when I click on them they are greyed out

    I am trying to remove 2 full page size black borders in my pages document and whn i click on them they show greyed x's but i cannot manipulate or remove them.   What to do?

    John,
    While the grayed x corners are showing, Arrange > Unlock.
    Now you will be able to manipulate or delete the borders.
    Jerry

  • Help with exporting document and generating an enumerated value error

    Can anyone help me figure out why I cannot get this script to export the document and save it for the web?
    I keep getting the same frustrating "Enumerated Value expected".
    here is the script thus far:
    * attempting to create a script to insert names automatically within photoshop cs2. Similar to the PSP.
    tag = app.activeDocument;
    var lee = ["Barb","Belle","Betty","Carmel","Christy","Connie",
    "Debbie","Debra","Denise","Diamond","Dolceluna","Irene","Jacqui"];
    //determine if active layer is a text layer or not.
    if(tag.isBackground == true){
    alert("this is a background layer and cannot be changed.");
    else{
    alert("this is the name layer.")
    for(i=0;i<lee.length;i++){
    tag.activeLayer.textItem.contents = lee[i];
    var options = new ExportOptionsSaveForWeb();
    options.format = SaveDocumentType.PNG-24;
    options.interlaced = false;
        options.PNG8= false;
    var fName = lee[i];
    var newName = fName+'-'+tag.name+'.png';
    alert(newName);
    //EXPORT DOCUMENT KEEPS GENERATING ENUMBERATED VALUE EXPECTED
    // web.matte = MatteType.NONE;
    tag.exportDocument(File(tag.path + '/' + newName),ExportType.SAVEFORWEB,options);
    } // closes for loop
    }// end of else statement

    Yes the guide is misleading. It says 'For this property, only COMPUSERVEGIF, JPEG, PNG-8, PNG-24, and BMP are supported.'
    It really should say 'For this property, only COMPUSERVEGIF, JPEG, PNG, and BMP are supported.'
    But if you look under SaveDocumentType you will not find PNG-8 or PNG-24 listed in the values.

  • How can I extract certain pages from my document and save as another file?

    How can I extract certain pages from my document and save as another file?

    You would need Adobe Acrobat to do that, not Adobe Reader.

Maybe you are looking for