JDeveloper's SelectMany Checkbox HELP

Hi everyone!
I am newbie and would like to get some tutorials for using selectmany checkbox component...
I have made VO which contains list of values, but i readed that i cant use LOV for selectmanycheckbox, is it so ?
In that case i must make new VO ?
And second question how i can submit, save selectmanycheckbox values in database and later read them from database?

Check this blog post:
http://ahmadhashem.wordpress.com/2010/12/22/using_selectmanycheckbox_selectmanyshuttle_adf_bc_to_represent_many-to-many_relationship/
Thanks,
Navaneeth

Similar Messages

  • SelectMany checkbox value-binded with HashMap String,ArrayList

    Hello,
    Someone can help me please?
    Im trying to create a page with a lot of HtmlSelectManyCheckbox, and i need to value-bind then to the same Object in my BackingBean.
    First i attemped to bind all HtmlSelectManyCheckbox with a single ArrayList, but only the last SelectMany had their values inserted on the ArrayList...
    So, now im trying to bind all the HtmlSelectManyCheckbox with a HashMap<String,ArrayList>, because i would have just one object and for each entry I would have the checkboxes that were cheked in a single HtmlSelectManyCheckbox.
    Now my question: there is a way to make this work?
    my code example
    Backing bean
    private HashMap<String, ArrayList> respostaMatrizCheck = new HashMap<String, ArrayList>();
         public HashMap<String, ArrayList> getRespostaMatrizCheck() {
              return respostaMatrizCheck;
         public void setRespostaMatrizCheck(HashMap<String, ArrayList> respostaMatrizCheck) {
              this.respostaMatrizCheck = respostaMatrizCheck;and the bindings
    <h:selectManyCheckbox value="#{backingBean.respostaMatrizCheck['1'] }">
    <h:selectManyCheckbox value="#{backingBean.respostaMatrizCheck['2'] }">And the error message given when i tryed this is the following:
    javax.servlet.ServletException: ValueBinding for UISelectMany must be of type List or Array
    Any help would be welcome.
    Thanks,
    Ferry

    Has anybody solved a problem like this? I am facing the same problem and no response helped me so far.
    Here is the web code:
    <h:selectManyCheckbox value="#{processor.languages.languages1}">
         <f:converter converterId="languageConverter" />
         <f:selectItems value="#{categoryController.allLanguagesAsSelectItems}" />
    </h:selectManyCheckbox>My backing bean "processor" looks like this:
         public Map<String, List<MyObject>> getLanguages() {
              return languagesMap;
         }(The backing bean has no "setLanguages()-method" since I did not need any with Map<String, String> for example.)
    The converter I use creates a "MyObject" instance in its "getAsObject" conversion method.
    I think everything should be okay then but the exception I get after submitting the page is:
    java.lang.IllegalArgumentException: ValueBinding for UISelectMany must be of type List or Array
         org.apache.myfaces.shared_impl.renderkit._SharedRendererUtils.getConvertedUISelectManyValue(_SharedRendererUtils.java:191)
         org.apache.myfaces.shared_impl.renderkit.RendererUtils.getConvertedUISelectManyValue(RendererUtils.java:630)
         org.apache.myfaces.shared_impl.renderkit.html.HtmlCheckboxRendererBase.getConvertedValue(HtmlCheckboxRendererBase.java:308)
         javax.faces.component.UISelectMany.getConvertedValue(UISelectMany.java:308)
         javax.faces.component.UIInput.validate(UIInput.java:350)
    .....Edited by: rapthor on Oct 31, 2007 6:39 AM

  • (inserting values into a database using a Checkbox) HELP!!!!!!!!!!!!!!!

    Can anyone help me out ???
    I am getting some trouble with using multiple check boxes to store the information in a database (MS ACESS)
    Each checkBox has multiple values in them.(3).
    1)Should they have similar names for each one?
    I am also getting an error saying cannot resolve symbol stating about pnumber,itemname,price
    Can you also tell me that if my query statements are correct??
    I want to insert into the database multiple values of each checkboxes which are checked.
    Thanks!!!!!!!
    <!---------------------------------------------html PART--------------------------------------------------------------------------------------->
         <form method="POST" action="http://localhost:8080/cvc/jsp/addCart.jsp">
              <table align = "center" border="2" width="50%">
              <TBODY>
    <%               
                   getProducts.next();
                   pnumber = getProducts.getInt(1); //this part works since I am seeing it displayed in a table
                   itemname = getProducts.getString(2);                         
                   price = getProducts.getFloat(3);
    %>               
                   <tr>               
                   <td><img align= "centre" border=0 src="http://localhost:8080/cvc/ASA Technologies\mp3.jpg" /></td><td><%=itemname%></td><td align="right"><%=price%></td>
                   <td align="center"><input type="checkbox" name="items" value="<%=pnumber+":"+itemname+":"+price+":"%>" </input></td> //????????????
    <!--------------------------------------JSP PART-------------------------------------------------------------------------------------------------------------------->
    <%@ page import="java.util.*, java.io.*, java.sql.*" %>
    <%
    String insert;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String sourceURL = new String("jdbc:odbc:ASA");
    Connection con = null;
    con = DriverManager.getConnection(sourceURL,"","");
    java.sql.Statement statement = con.createStatement();
    while ( request.getParameter("pnumber+itemname+price") !=null)
    insert = "insert into Cart VALUES( ' "+pnumber+" ' ," + " '"+itemname+ " ' ,"+ " ' "+price+ " ' )"; //getting the error here :cannot resolve symbols
    statement.executeUpdate(insert);
    %>

    Syntax of insert was wrong..
    while ( request.getParameter("pnumber+itemname+price") !=null)
    insert = "insert into Cart VALUES( ' "+pnumber+" ' ," + " '"+itemname+ " ' ,"+ " ' "+price+ " ' )"; //getting the error here :cannot resolve symbols
    statement.executeUpdate(insert);
    try this........
    Column1, Column2, Column3 are the field names of your table Cart....
    ..changed it to your original fieldnames...
    insert = "insert into Cart (Column1,Column2,Column3) VALUES( ' "+pnumber+" ' ," + " '"+itemname+ " ' ,"+ " ' "+price+ " ' )";

  • JSP Checkbox help! This isn't pretty

    Ok, what's the trick to creating a checkbox with a JSP? The help talks about an InputSelectGroup, but it wants to get information out of the database on the values allowed in the checkbox? This can't be. I just want Y or N!!! Can't I just put in Y or N as the select, deslect values somehow?
    This shouldn't be this hard.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Joe Silva:
    Ok, what's the trick to creating a checkbox with a JSP? The help talks about an InputSelectGroup, but it wants to get information out of the database on the values allowed in the checkbox? This can't be. I just want Y or N!!! Can't I just put in Y or N as the select, deslect values somehow?
    can't you just use an input type in your form and then get the value of the parameter?
    <INPUT TYPE=CHECKBOX NAME="gepland" CHECKED>
    if you wan't to use it within an editcurrentrecord you can use a static combobox with a Y/N value and the value you required, something like this:
    String labels[] = {"Ja","Nee"};
    String values[] = {"0","1"};
    insertp.useStaticComboBox("PubliceerInd", labels, values);
    This shouldn't be this hard.<HR></BLOCKQUOTE>
    null

  • JDeveloper UML Quesion, pls help..

    Hi,
    I am starting using UML (Class Diagram) with JDev 10.1.2, I have some questions, could you please help ..
    1) How can I create 'Derived Attribute' with JDev UML ?
    (e.g: /Age = Sysdate - BirthDate)
    2) Should I put the Unique Attribute (e.g : EmployeeId, JobId, CustomerID etc..) in the Class Diagram ? (which will become PK in ADF Entity Object)
    3) If I create a constraint, using natural language (english), then attach it to a Class, how should I implement it into ADF BC ? obviously JDev will not generate anything from this kind of constraint
    Thank you for your help,
    Krist

    Have a look at the JDeveloper Reviewer Guide, it shows a sample way to interact with Web services from JSPs.
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/reviewer/reviewerguide.html
    specifically:
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/reviewer/viewlets/reviewer_ws_viewlet_swf.html
    Another way would be to embed the code from your stub into a code section in your JSP.

  • Checkbox help

    HI,
    I currently using javascript within a PDF to make a form simpler to use. I have a checkbox list with a sub-checkbox list within it (see below)
    When filling in the form I need the user to only be able to check one item for the primary list and then a further item if the chekc the box with the sublist.
    I have been able to achieve this using the following document level code and the mouse up - run javascript option.
    function cbControl()
        var f1 = getField("Eligible activity 1"); (Area benefit checkbox above)
        var f2 = getField("Eligible activity 2"); (limited Clientle checkbox)
        var f3 = getField("Eligible activity 3"); (Housing checkbox above)
        var f4 = getField("Eligible activity 4"); (Jobs checkbox above)
        var f5 = getField("LCB sublist 1"); (Project activity maintains client records checkbox above)
        var f6 = getField("LCB sublist 2"); (Project activity has income eligiblity checkbox above)
        var f7 = getField("LCB sublist 3"); (Project activity is of such a nautre checkbox above)
        var f8 = getField("LCB sublist 4"); (Project activity clients are presumed checkbox above)
        if (event.target === f1) {
            f2.value = "Off";
            f3.value = "Off";
            f4.value = "Off";
            f5.value = "Off";
            f6.value = "Off";
            f7.value = "Off";
            f8.value = "Off";
            return;
        if (event.target === f2) {
            f1.value = "Off";
            f3.value = "Off";
            f4.value = "Off";
            return;
        if (event.target === f3) {
            f1.value = "Off";
            f2.value = "Off";
            f4.value = "Off";
            f5.value = "Off";
            f6.value = "Off";
            f7.value = "Off";
            f8.value = "Off";
            return;
        if (event.target === f4) {
            f1.value = "Off";
            f2.value = "Off";
            f3.value = "Off";
            f5.value = "Off";
            f6.value = "Off";
            f7.value = "Off";
            f8.value = "Off";
            return;
    function sublistControl()
        var f1 = getField("Eligible activity 1");
        var f2 = getField("Eligible activity 2");
        var f3 = getField("Eligible activity 3");
        var f4 = getField("Eligible activity 4");
        var f5 = getField("LCB sublist 1");
        var f6 = getField("LCB sublist 2");
        var f7 = getField("LCB sublist 3");
        var f8 = getField("LCB sublist 4");
        if (event.target === f5) {
            f1.value = "Off";
            f3.value = "Off";
            f4.value = "Off";
            f6.value = "Off";
            f7.value = "Off";
            f8.value = "Off";
            return;
        if (event.target === f6) {
            f1.value = "Off";
            f3.value = "Off";
            f4.value = "Off";
            f5.value = "Off";
            f7.value = "Off";
            f8.value = "Off";
            return;
        if (event.target === f7) {
            f1.value = "Off";
            f3.value = "Off";
            f4.value = "Off";
            f5.value = "Off";
            f6.value = "Off";
            f8.value = "Off";
            return;
        if (event.target === f8) {
            f1.value = "Off";
            f3.value = "Off";
            f4.value = "Off";
            f5.value = "Off";
            f6.value = "Off";
            f7.value = "Off";
            return;
    However no matter what I try, I can not get the 'Eligible activity 2' box to check if some one selects one of the sublists checkboxes. I have tried including the follwoing into the sublistControl code
    if (event.target === f5) {
            f1.value = "Off";
            f2.value = "On"; (also tried f2.value = "Yes";)
            f3.value = "Off";
            f4.value = "Off";
            f6.value = "Off";
            f7.value = "Off";
            f8.value = "Off";
            return;
    But this does not work. Can anybody suggest a solution??
    Kind regards
    Rhys

    You need to use the Export Value of that box, although a better way is to use the checkThisBox() method, like so:
    f2.checkThisBox(0,true);

  • Jdeveloper 11g http analyzer help

    Hi ,
    I am trying to run a web service. I would want to test the wed application in the http analyzer, but when i run test web service.I have my http analyzer running, when i click "create new request" the http analyzer window opens up , but i dont see any url or wsdl url nor i can post any request to test the web service. No parameters tab is shown. I am not able to understand what settings are required to the http analyser up and running to test the web service.
    Any idea people. ??
    Thanks

    Here are some links ...
    http://kingsfleet.blogspot.com/2009/01/getting-firefox-to-use-http-analyzer.html
    http://kingsfleet.blogspot.com/2008/04/using-http-analyzer-in-jdeveloper-to.html
    http://biemond.blogspot.com/2007/11/http-analyzer-11g-to-test-and-monitor.html
    http://one-size-doesnt-fit-all.blogspot.com/2007/04/handy-jdeveloper-utility-http-analyzer.html
    Timo

  • Working with logic menu - JDEVELOPER  ... need help

    HI! I want to know:
    If I have text box with value "dog", how can I say to show in menu list only Dog subdata option, but if I have text box with value "cat", then to show in menu list only Cat subdata
    option???
    How can I do that?? PLZ help with example...
    Bet regards!

    Hi,
    which technology? The values "dog" and "cat", where is it coming from - user input ?
    Frank

  • Write Checkbox Help Required

    Hi,
    i want to display 2 check boxes on the screen. If a user checks first box then it should get value 'X' and put it in variable check1.
    i am providing sample code which is not working
    DATA: check1 TYPE c VALUE 'X',
               check2 TYPE c VALUE ' '.
    START-OF-SELECTION.
      WRITE: / check1 AS CHECKBOX, 'Checkbox 1',
                  / check2 AS CHECKBOX, 'Checkbox 2'.
    AT LINE-SELECTION.
      READ: LINE 1 FIELD VALUE check1,
                 LINE 2 FIELD VALUE check2.
    i dont get any value if i heck either of them. Please i dont want to use SELECTION_SCREEN. I want to do it on List.
    Thanks in advance to all people.
    Kind Regards,
    Muhammad Usman Malik
    ABAP Consultant
    Siemens.
    [email protected]

    Hi
    The solution from Vigneswaran S is almost right.
    The problem is that the line number counting starts from the header.
    I think that correct code for your example could also be
    READ: LINE 3 FIELD VALUE check1,
    LINE 4 FIELD VALUE check2.
    This code would be correct if you have 1 header line followed bu 1 underline followed by the 2 lines with checkboxes.
    best regards
    Thomas
    PS the solution from Rammohan Nagam is absolutly nonsense.

  • JDeveloper IDE Crashing using double click on DataAction in struts-diagram.

    Hello,
    Has anyone had this problem with Jdeveloper10g?
    We have a workspace for an application that has grown fairly large. The
    problem happens when we try to drag a DataAction from the Component Palette
    onto the struts-diagram when in the the JDeveloper10g IDE and then
    double click the icon to create a data action. We get this message:
    An Error has occurred in the Java VM
    An operation has failed because an error has occurred in the Java VM. The current
    activity may fail and the system may have been left in an unstable state. The following
    is a stack trace.
    java.lang.StackOverflowError
    If further errors occur, you should restart the application.
    If the error was an OutOfMemoryError, try closing some components, such as some
    diagrams, or increase the Java heap size.
    Also, report the problem on the JDeveloper forum on otn.oracle.com, or contact Oracle
    support, giving the information in this message.
    The Version of JDeveloper we are using is: 10.1.2.1.0 Build 1913 but we also had the
    same problem using this same workspace in Build 1811. If we try a different workspace
    there is no problem and we don't see the issue. Neither do we see the problem if we drag
    either a DataPage or a plain Action from the Component Palette and the double click
    either of those to create a Jsp page or an action.
    We have spent hours using diffing software recursively on the workspace directories trying
    to determine what may have gone wrong. We have eliminated a great deal from the problem
    workspace including deleting everything from the struts-diagram (In a copy of the ws of course).
    We really can't afford to rebuild the workspace from scratch and this problem causes us a
    significant headache. It seems like a serious bug in JDeveloper itself.
    Any help would be appreciated.
    Thanks,

    Problem Solved! This condition is caused by a circular dependency set up when the view was checked as a depndency for the model. We had a small class in the view that was being used in the model so the model was made dependant on the view and this causes an infinite loop condition of some sort when double clicking on a newly dropped in DataAction as described below.

  • Navigation not working in Weblogic Server but working from JDeveloper.

    Hi
    I created a simple application with some page navigations (some declarative and some dynamic using Managed Bean).
    The navigation works fine when I run from JDeveloper. (Local System)
    So I deployed the application to the WebLogic server (Local system with a domain configured with ADF.)
    The pages are getting rendered correctly, bu on button clicks, the navigation is not happening from any of the pages.
    Could I have missed something or is there a way to track what the problem might be?
    JDev : 11.1.1.3
    Web Logic Server : 11gR1 (1.3) which comes with JDeveloper
    Thanks for any help.
    Sameer

    Hi John
    I am not using task flows. I just have some jspx pages defined in the unbounded task flow adfc-config.xml connected with navigation.
    I run from JDEveloper by right clicking on the jspx files.
    The URL when run from jdeveloper is as follows.
    http://127.0.0.1:7101/SessionsPOC-ViewController-context-root/faces/MainPage
    From Weblogic server I am using the link given in the Testing tab of the weblogic administration console.
    The URL is as follows.
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root (default)
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root/MainPage.jspx
    Actually, the URL given in the weblogic testing tab is not runnable. I am changing the link as follows to be able to run it.
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root/faces/MainPage.jspx
    I have defined the MainPage.jspx in the web.xml 's Welcome page. But it is not taking it I guess.
    Also, I am able to run the other page by giving the following url. But the navigation buttons are not working in that page also.
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root/faces/SecondPage.jspx
    Thanks
    Sameer

  • How to create and deploy a JSP which calls a BPEL process in JDEVELOPER

    Hi Gurus,
    I don't know how to create a JSP in JDEVELOPER which call a BPEL process. I have gone through the tutorials. Since, I am new to JDEVELOPER I need some help.
    1. How to create a JSP (I know creating application and project, also I know JSP coding)
    2. How to deploy this JSP?
    3. For the Synchronos BPEL project, the build.xml is created automatically, in this forum, I see people talking about ear war .deploy etc. How do we get them automatically created. Or do we need to create them manually. If it has to be manual some sample scripts would be of great help.
    Any help in this regard would be really great.
    Thanks in advance,
    Sankar.

    I found the following tutorial which clearly explains how to deploy J2EE apps.
    http://www.oracle.com/technology/obe/obe1013jdev/deployment/deployment.htm
    I created a simple jsp file in a project, followed the steps in the tutorial and it got deployed onto: http://localhost:9700
    For invoking BPEL process through JSP, I have reused the jsp files available in : 102.InvokingProcesses\jsp and changed the processes and input accordingly.
    Please post me a query in this thread, if any of you want any specific details.

  • Differences between Oracle Developer an ORacle JDeveloper

    Hi,
    I am doing a work and i need to know the differences between Oracle Developer and Oracle JDeveloper, if someone can help me it would be very aprreciated.
    thx

    Aton wrote:
    I am doing a work and i need to know the differences between Oracle Developer and Oracle JDeveloper, if someone can help me it would be very aprreciated.1) There is no such thing as 'Oracle Developer'. However, there are
    - Oracle SQLDeveloper
    - Oracle Developer Suite
    2) Assuming Oracle Developer Suite:
    - Oracle Dev Suite is used to create Oracle Forms, Oracle Reports, Oracle Discoverer worksheets, and Entity Relationship Diagrams
    - Oracle JDeveloper is used to create any kind of Java object (including Java 2 & 3 tier forms) and ALL objects that support those Java objects (XML, UML, database, SOAP, etc) BUT NOT the stuff in Dev Suite.
    Both are very powerful. Expect to take at least 15 minutes* to learn either.
    /Hans
    * (plus 4 to 9 months)

  • Problem in using JDeveloper 10g with JHeadstart

    I am using JDeveloper 9.0.3 and jheadstart 9.0.4.5 and I would like to test jdeveloper 10g preview with JHeadstart.
    So, I have downloaded the JDeveloper 10g to test it with my old application.
    Having run the Jdeveloper for the first time, I realized that Jdeveloper
    installed the jheadstart automatically and following message was shown in the message window :
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\PrjWizard.jar!\META-INF\jdev-ext.xml
    Error: <Line 12, Column 24>: XSD-2034: (Error) Element 'description' not expected.
    Error: <Line 13, Column 17>: XSD-2034: (Error) Element 'help' not expected.
    Error: <Line 17, Column 27>: XSD-2034: (Error) Element 'dependency_addin' not expected.
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JhsShare.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\MvcFrameworkServiceFileViewer.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JHeadstartDesignerGenerator.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JAGLauncher.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\Bc4jPropertyEditor.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    E:\Software\10g\JDev10g\jdev\lib\ext\jheadstart\JASEditor.jar!\META-INF\jdev-ext.xml
    Converting JDeveloper 9.0.3 extension manifest to 9.0.5
    So I try to test one of my old application with this configuration. After Jdeveloper migrated my workspace and projects and business componenet
    to the newer version, I run the application generator. It worked fine without any problem but after running the application, I got an error page showing
    that my bc4j.xcfg is not in the path.
    On the other hand, I found out that when I wanted to view my UIX pages, 2 dialog boxes appeared. The first one asked to upgrade
    to UIX 2.2's new expression language syntax and the other which is on the top of the first one, showing that UIX runtime failed to render the page
    with following detail :
    javax.servlet.ServletException: No page broker found!
         at oracle.cabo.servlet.PageBrokerHandler.handleRequest(Unknown Source)
         at oracle.cabo.servlet.UIXServlet.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at oracle.cuervo.share.servlet.PreviewServletContainer.handleRequest(PreviewServletContainer.java:305)
         at oracle.cuervo.share.servlet.PreviewServletContainer.handleRequest(PreviewServletContainer.java:229)
         at oracle.cabo.ide.addin.preview.UIXRenderThread._reallyLoad(UIXRenderThread.java:263)
         at oracle.cabo.ide.addin.preview.UIXRenderThread.runImpl(UIXRenderThread.java:203)
         at oracle.cabo.ide.addin.preview.BasePreviewThread.run(BasePreviewThread.java:79)
    I think that I should have set some setting before use JHeadstart with JDeveloper.
    Could anybody help me ?

    Alex,
    The document Sandra referred to applies to JDeveloper 10g preview (9.0.5.0). JHeadstart 9.0.4.5 will NOT work with JDeveloper 109 production (9.0.5.1).
    We plan to release a new version end of april that is compatible with 9.0.5.1. See this thread for more info: JDeveloper 10g production, status JHeadstart?
    Steven Davelaar,
    JHeadstart Team.

  • JDeveloper IDE - Displaying Packages in Application Navigator

    Hi All,
    I am using JDeveloper 11g Release 2.
    I want to customize how the packages are displayed in Jdeveloper. My application package name starts with com.fireblaze.xfb.appuc001 . and project packages are com.fireblaze.xfb.appuc001.model and com.fireblaze.xfb.appuc001.ui. Now in the model package I have further sub-packages like com.fireblaze.xfb.appuc001.model.queries, and many more...
    In my case, the Jdeveloper packages are displayed in application navigator are given below:
    com.fireblaze.xfb.appuc001.model
    com.fireblaze.xfb.appuc001.model.queries.main
    com.fireblaze.xfb.appuc001.model.queries.validators
    com.fireblaze.xfb.appuc001.model.queries.lovs
    com.fireblaze.xfb.appuc001.model.services
    What I want is like:
    com.fireblaze.xfb.appuc001
    --------------------------------------model
    -----------------------------------------------queries
    ----------------------------------------------------------main
    -----------------------------------------------------------------view 1
    -----------------------------------------------------------------view n
    ----------------------------------------------------------validators
    -----------------------------------------------------------------------view 1
    -----------------------------------------------------------------------view n
    ----------------------------------------------------------lovs
    ---------------------------------------------------------------view 1
    ---------------------------------------------------------------view n
    -----------------------------------------------services
    How to achieve it in JDeveloper 11g?
    Any help will be appreciated.
    Thanks in advance
    Regards
    Bilal

    hi user,
    Create Package. and use the source directory box. properly :)
    updated lately.
    i hope that you are looking for like this.
    while creating your eo,vo,am you may see package..
    in that you should specify
    "while creating your eo:"
    com.xxx.model.*eo*"while creating your vo"
    com.xxx.model.*vo*"while creating your am"
    com.xxx.model.*am*

Maybe you are looking for

  • File content conversion Testing

    I would like to know method to test File Content Conversion to ensure it is read into the correct structure. Thanks

  • Select query on table rcv_lots_interface is always returning null

    Hi , I need a help on the below issue. The issue is after creating PO in Oracle 11i I receive it in MSCA application. When we receive it at that point data gets inserted in the table " rcv_transactions_interface " and we have written a trigger on it.

  • Extractor for Product Group/Member Allocation- hierarchy (table u2013 PGMI ).

    Hello experts I am looking for standard extractor for Product Group/Member Allocation- hierarchy (table u2013 PGMI on the ECC). Is there a standard extractor for product group-hierarchy? Best Regards, Tal Shalom.

  • Cannot open Photoshop CC

    I downloaded Creative Cloud, and am able to use Lightroom, but Photoshop CC will not open.  It's showing as updated, but I cannot find it in my Application folder.  Is there a way to reinstall it?  I re downloaded CC, but the same thing happens.

  • Courrupt dont net framework and cannot install sqlserver

    i cannot install sqlserver 2005 due to problem of dot net framework 2.0 Setup has detected a problem with microsoft.net framework installation and cannot proceed. microsoft .net framework 2.0 is either not installed on this system or is corrupt Pleas