MERGE using nested table doesn't work on Oracle 9i

Hi,
Oracle 9i Enterprise Edition Release 9.2.0.4.0 on Red hat Linux
SQL> create table PERSONS (
  2    ID  number(9)
  3   ,SURNAME  varchar2(50)
  4   ,constraint PERSONS_PK primary key (ID)
  5  );
Table created.
SQL> create or replace type T_NUMBER_ARRAY as table of number;
  2  /
Type created.
SQL> create or replace procedure P_MRGTS2 (P_ID  PERSONS.ID%type)
  2  is
  3    L_IDS  T_NUMBER_ARRAY;
  4  begin
  5    L_IDS := T_NUMBER_ARRAY(P_ID);
  6    merge into PERSONS P using (select * from table(L_IDS)) D on (
  7      P.ID = D.COLUMN_VALUE
  8    )
  9    when matched then update
10      set SURNAME = 'Updated'
11    when not matched then
12      insert (
13        ID
14       ,SURNAME
15      )
16      values (
17        D.COLUMN_VALUE
18       ,'Inserted'
19      );
20  end;
21  /
Procedure created.
SQL> exec P_MRGTS2(1)
BEGIN P_MRGTS2(1,'Avi'); END;
ERROR at line 1:
ORA-22905: cannot access rows from a non-nested table item
ORA-06512: at "OPS$AABRAMI.P_MRGTS2", line 9
ORA-06512: at line 1However, the same code on Oracle 10g Release 10.2.0.1.0 on SUN Solaris 9 works.
Is there any way to make it work on Oracle 9i?
One way I found is the following:
procedure P_MRGTST (P_ID  PERSONS.ID%type)
is
  L_IDS  T_NUMBER_ARRAY;
begin
  L_IDS := T_NUMBER_ARRAY(P_ID);
  forall I in L_IDS.first..L_IDS.last
    merge into PERSONS P using DUAL D on (
      P.ID = L_IDS(I)
    when matched then update
      set SURNAME = 'Updated'
    when not matched then
      insert (
        ID
       ,SURNAME
      values (
        L_IDS(I)
       ,'Inserted'
end;On Oracle 10g there is negligible difference in time taken to execute both procedures, as displayed in SQL*Plus when issuing:
set timing onIs there something that makes one of the procedures preferrable over the other?
Thanks,
Avi.

Is there any way to make it work on Oracle 9i?
michaels>  select * from v$version
BANNER                                                         
Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
PL/SQL Release 9.2.0.8.0 - Production                          
CORE     9.2.0.8.0     Production                                      
TNS for HPUX: Version 9.2.0.8.0 - Production                   
NLSRTL Version 9.2.0.8.0 - Production                          
michaels>  create table persons (
    id  number(9)
       ,surname  varchar2(50)
          ,constraint persons_pk primary key (id)    )
Table created.
michaels>  create or replace type t_number_array as table of number;
Type created.
michaels>  create or replace procedure p_mrgts2 (p_id persons.id%type)
is
   l_ids   t_number_array;
begin
   l_ids := t_number_array (p_id);
   merge into persons p
      using (select * from table (cast (l_ids as t_number_array))) d
      on (p.id = d.column_value)
      when matched then
         update set surname = 'Updated'
      when not matched then
         insert (id, surname) values (d.column_value, 'Inserted');
end p_mrgts2;
Procedure created.
michaels>  exec p_mrgts2(1)
PL/SQL procedure successfully completed.
michaels>  select * from persons
        ID SURNAME                                          
         1 Inserted                                         
1 row selected.

Similar Messages

  • Insert Record with Parent/Child Tables doesn't work with Oracle - unlike AC

    Hi,
    I just Migrated a MS Access 2010 Database to an Oracle 11g Backend with the SQL Developer Tool.
    The Migration went fine, all the Tables and Views are migrated.
    I'm working with MS Access as Frontend.
    The application has some Datasheets with Subdatasheets with Parent/Child Relationship. (1-n Relationship)
    After changing to Oracle, it's not possible, to Insert a new Record in a Subdatasheet I always get the following Error Message:
    "The Microsoft Access database engine cannot find a record in the table 'xxxx' with key matching field(s) 'zzzzz'"
    It used to work perfect with the MS Access Backend, do I need a trigger which first adds the child Record ?
    Or what should I do?
    Thank you

    Hi Klaus,
    Thanks for your answer. I still haven't solved my problem. The only way would be to use a singel 1:n Relationship, but in fact I need a n:m Relationship.
    I tried the same scenario with a new Access Application, same result.
    To clearify my problem.
    Goal: Parent Form with Parent Records, Linked Child Form with Child Records in a Datasheet View => Insert of a NEW Child Record.
    I have 3 Tables (table1 = Parent tabel, table2 = Child Table, table12 = n:m Tabel with PK and two FK)
    The Recordsource of the Parent Form is Tabel1
    The Recordsource of the Child Form is Table2 joined with Table12.
    In my Old Access Project, Access Triggered the Insert and filled Table12 with the NEW PK of Table2.
    It seems like Access can't do that anymore....
    I'm pretty desperate and I'm sure it is just a litte thing to fix.....

  • How to use nested tables in adobe form

    Hi All,
    I have to use nested tables in adobe form for table display. I have used Subforms for displaying table data. I have changed accessibility of the subforms. Currently i am able to print print the table correctly if there is single material record in table 1 and single corresponding record in table 2. But the requirement is that i will have multiple lines in table 1 for single material and only one record in table 2.
    EX: form is for Sales order. in line items if the order is for 100 units then we if we have delivered material as 80, 10, 10, then table 1 will have 3 lines for this. Table 2 will always have only 1 corresponding record.
    item--materialdescription-ordered qty--delivered qty--delivery date-price  
    xxx--xxxxxxx-xxxxxxxxx-10080xxxxxxxxxx-xxxx
    10----
    xxxxxxxxxx
    10----
    xxxxxxxxxx
    yyyyyyyyyyyyyyyyyyy------yyyyyyyyyyyyyyyyyyyyy 
    xxxxxx is table 1 and will have multiple lines
    yyyyyy is table 2 and will have only 1 entry for item xxx
    and this group will be repeate as per no of items. table 1 can have any no of lines per item.
    I am currently able to display 1 line for table 1 and 1 line for table 2.
    But how to show multiple lines for table 1 and 1 line for table 2.

    HI,
          Set the body page as flowed and set the tables also flowed.
    go to bodypage>object->subform-->select flowed option.
    I thihnk this will work..if u are getting all the records properly into the tables 1 and 2.
    Thanks,
    Mahdukar

  • How to use nested table types with XDK

    Im using Oracles XDK (xml development kit) to create xml-documents from data in database.4
    Problem: I need to use nested tables but when trying to create nested table types I get error: A Table type may not contain a nested table type or VARRAY.
    Hope I make myself clear! Are there any solutions or workarounds to this problem?
    Help appreciated, thanks!

    Jesper,
    I asked similar question last year (search for Tapsell, you will see my posting). Under 8.1.7 the "nesting" seems restricted to one level down. Thus you cannot create a type using another object that itself includes a nested table. Under Oracle 9, against which most current examples seem based, this limitation is removed making things easier. Under 8.1.7 the workaround I have used is to use the CAST syntax. This is not as neat, but it works.

  • Storing data in data bse using nested tables

    using nested tables data can be stored in data base or not.
    if yes i need simple example for taht and how to retireve the data from data base.

    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e11822/adobjvew.htm#ADOBJ00511
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e17126/composites.htm#LNPLS99981

  • How to use nested tables object in oracle form

    Hello forum
    How all r u ..
    i need ur help guys, pls help me out...
    i m using an object oriented approach to design my database by using nested tables and
    varrays. it is quite done successfully.
    but the problem is when i m trying to use that object of nested table into the datablock of the form it is not been added to item list of that block.
    so what is the proper way to use these type of objects to the form.
    all ideas are welcomed and vry much required.
    pls give example if possible so easy to understand or have any demo form related to above case then pls post me to my id i.e [email protected]
    thank u all and expecting some expert solutions

    Hello Francois Degrelle...
    How r u doing ... i have searched the forum abt the above mentioned topic then i found that u have some demo form which will help out to explain the functionality of the nested table in forms ..
    will u pls me that form to my i.e [email protected] pls mail all the detail u have regarding using nested tables to forms and reports
    lots of thanks to u n advance.

  • Using nested tables

    Hi experts,
    is there a way of using nested tables, for example:
    Field1
    ---value1-1
    ------example1-1
    ------example1-2
    ------example1-3
    ---value1-2
    ------example2-1
    ------example2-2
    ------example2-3
    ------example2-4
    ------example2-5
    ---value1-3
    ------example3-1
    ------example3-2
    Field2
    ---value2-1
    ------example1-1
    ------example1-2
    Or isn't it possible?
    Thanks
    Michael

    Hi,
    Nested table is not allowed but if it is property structure like address etc which can be included in more than one entities then you can use complex type Complex Types - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
    you can refer this Odata Services with Complex Types and Netweaver Gateway : Multiple Output Tables : Odata | SCN
    Regards,
    Chandra

  • What are the advantage of using nested table?

    what are the advantages of using nested table?
    and what are disadvantages of it?

    BTW could you edit the following post and remove the dangerous code
    Re: How to rename a database user?
    Some other poor sap has just fried their database by trying it out
    Re: Can I rename a user?
    Message was edited by:
    3360
    Thank you for making the edit

  • Storing data in data abse using nested  table

    using nested table is it possible 2 store data in data base .give me simple example how tos tore data in data abse usingnested tables.and how to retieve it from data abse.

    See: http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:410619303624

  • Subnr. links (2) in tabel to the same address table doesn't work always

    Post Author: Piet Blaauw
    CA Forum: Data Connectivity and SQL
    for english see below
    subnr links (2) in tabel naar dezelfde naw tabel werkt niet altijd.
    ik heb een rapport gecreerd waar uit dezelfde tabel 2 records worden gelinkt (1 is faktuur debiteur en 1 order debiteur) aan het NAW bestand. Ik heb de NAW tabel 1 keer gehangen aan de faktuur debiteur en daarna nog een keer apart gehangen aan de order debiteur. tabel naam is CONTACT en toen ik hem aan de andere deb. koppelde werd het automatisch CONTACT_1. Dit werkt allemaal prima en ik krijg netjes de informatie uit zowel CONTACT als CONTACT_1 maar het gaat fout als ik een formula field maak waarin vergelijk dat als de factuur deb (gekoppeld aan CONTACT) leeg is dat dan de order deb (gekoppeld aan CONTACT_1) genomen moet worden. Het rapport laat simpelweg niets zien.
    Ik weet niet of bovenstaande duidelijk is maar ik hoop dat iemand weet wat er fout gaat.
    bij voorbaat dank voor de hulp
    Piet Blaauw
    English
    Subnr. links (2) in tabel to the same address table doesn't work always
    I created a report wher from the same table 2 fields are linked (1 is invoice debtor and 1 is order debtor) to the Main Address table (CONTACT). I have linked the address table to the invoice debtor and once again to the order debtor. When linking this way you see in the DATABASE expert in links 2 times the CONTACT table. Once as CONTACT and once as CONTACT_1. Everything works fine and I receive the data for as well the invoice debtor as the order debtor (if filled in) but it goes wrong when I create a Formula Field where I ask that if the invoice debtor field (Linked to CONTACT) is empty to show order debtor (Linked to CONTACT_1. However then nothing will pops up while the formula is correct.
    I hope above is clear and you can help me out

    Post Author: Bandit07
    CA Forum: Data Connectivity and SQL
    In your formula are you checking for null values as well as if the field is empty?
    B

  • Xdofo:show-carry-forward number-separators doesn't work in Oracle EBS 11i

    I am displaying the ‘page total’ from within the footer of the xml-report by using the page total syntax ‘<xdofo:show-carry-forward name="pt" format="99G999G999D00"/>’.
    Here the issue is that for report displayed in Spanish we are unable to display the Page Total in the required number format ie. The decimal separator should be ‘,’ and the group separator is ‘.’, since the Page Total is auto calculated and we are not able to save this value to any variable.
    Currently Output is coming like: 12,052.00
    Required output: 12.052,00
    As well as I tried the below statement
    <xdofo:inline-total display-condition="exceptlast" name="pt"><xdofo:show-carry-forward name="pt" format="99G999G999D00" number-separators=",."/></xdofo:inline-total>
    But it doesn’t work in Oracle Applications 11i instance.
    Anyone having any idea?
    Regards,
    Madhurendra

    We had a similar issue and we got the solution.
    Try this
    Got the solution and this is very important one !!!
    <xdofo:inline-total display-condition="exceptlast" name="InvAmt"><xdofo:show-carry-forward name="InvAmt" format="99G999G999D00" number-separators=",."/></xdofo:inline-total>
    <xdofo:inline-total display-condition="exceptfirst" name="InvAmt"><xdofo:show-brought-forward name="InvAmt" format="99G999G999D00" number-separators=",."/></xdofo:inline-total>

  • Why on earth use nested tables?

    Hi
    I'm boning up on PL/SQL (again) in anticipation of getting a new job.
    I have many years of experience in various data-related roles, many of which used Oracle.
    On the issue of collections, I find myself asking, in the light of my experience, and not for the first time, why on earth would anyone want to do this:
    create or replace type TEST_TT as table of varchar2(10);
    create table TEST_TABLE ( X number
                             ,Y test_tt)
                             nested table Y store as Y_TABLE;                      I really, really, can't think why we would want to store data like this. It seems to me to be unnecessarily complex, hiding a one-to-many relationship inside TEST_TABLE, which should instead be modelled and implemented as a separate table.
    Furthermore, there are loads of tutorials on collections that tell us how to do the above (indeed I am reading Feuerstein at this very time) but nobody seems to say WHY we should do this.
    Can anybody help me here?
    Thanks.
    Jason

    >
    I'm boning up on PL/SQL (again) in anticipation of getting a new job.
    I have many years of experience in various data-related roles, many of which used Oracle.
    On the issue of collections, I find myself asking, in the light of my experience, and not for the first time, why on earth would anyone want to do this:
    I really, really, can't think why we would want to store data like this. It seems to me to be unnecessarily complex, hiding a one-to-many relationship inside TEST_TABLE, which should instead be modelled and implemented as a separate table.
    Furthermore, there are loads of tutorials on collections that tell us how to do the above (indeed I am reading Feuerstein at this very time) but nobody seems to say WHY we should do this.
    >
    For As you have surmised, just because you CAN do it doesn't mean you SHOULD do it. If you are only working with your standard relational data, such as the example you provide, it has many drawbacks and few, if any advantages.
    It is easier to understand why that capability exists from the viewpoint of the question: why SHOULDN'T you be able to store data like that?
    In one sense it is just another object-oriented feature. You can create object types and pass them around to procedure/functions or external processes (e.g. JDBC) so why shouldn't you be able to store that set of related data as an encapsulated object?
    Why do you need an object type that has a set of columns? You can just as easily put those columns into a table. But how do you manipulate a subset of the columns or rows of a table? How do you pass that data around as a controlled, coherant set of data? You can't.
    With an object type you can, though most often don't, implement encapsulated business rules that ensure that any instance of that type MUST implement. Need ADDRESS information that is required to include a street address, city, state and zip? Create an object type with the right constructor methods and you can ensure that those attributes CANNOT be null.
    Once you have functionality to create and manipulate objects why not be able to pass those objects around and stored them in a table? Doesn't mean you should always store them that way but why not be able to? There isn't any reason to limit that functionality simply because you don't think it is the best practice to use it all the time.
    So if you have a small dataset and want all of that data to 'travel' together nest it. There is no child table to create or foreign key to create.
    I put that functionality in the category of CAN DO but DON'T DO except in rare occasions and consider it a fallout of the move to object-oriented things in general. I like the fact that Oracle makes functionilty like that available when they have it.
    Like dynamic sql, materializeds views, bitmap indexes and much other functionality it is often more important to know when NOT to use it than it is to know when to use it.
    Relative to 'best practices' of why NOT to do that for your basic relational data see this part of the article that Justin referred you to:
    >
    Followup March 3, 2003 - 6am Central time zone:
    1) they are parent child tables in disguise but ones that add:
    a 16 byte raw with a unique constraint on the parent table. Most likely you ALREADY HAVE a primary
    key on the parent table and most likely it is smaller.
    a 16 byte raw that you need to index on the child (not auto-indexed, you need to know to do it).
    This is the foreign key and is hidden from you.
    The inability to put many types of constraints on the nested table..
    They are simple parent/child tables - except you lose the ability to access the child table
    directly.
    2) you are NOT storing anything in a "single row". Physically they are a parent child table pair,
    nothing more, nothing less
    If you have my book "Expert one on one Oracle" - I write about them in there, describe their
    implementation and talk about when I would use them.

  • How to use nested tables with the inner table in a separate row

    Hi,
    I am having a problem when changing our existing Adobe printform delivery note so that serial numbers are written for each item line.
    I've searched the forum and found many posts relating to nested tables, but none that had exactly my situation.
    Currently I print item lines like this (this uses the complete width of the form):
    Pos....Quantity...Material..........Description..................................................Date
    99.........99.........ABCDEFGH....alksdalksjdlkasjdlsajdlkjasldjaslkdjakslj........9999.99.99
    .................................................fskdjflsdfljsdflkjsdlkfjsdlkjfdfsf
    .................................................asdkadsfdkfhsdkfhskjdfhks
    but I want to add serial numbers after that for each item like this:
    Pos....Quantity...Material..........Description...................................................Date
    99.........99.........ABCDEFGH....alksdalksjdlkasjdlsajdlkjasldjaslkdjakslj.........9999.99.99
    .................................................fskdjflsdfljsdflkjsdlkfjsdlkjfdfsf
    .................................................asdkadsfdkfhsdkfhskjdfhks
    .................................................Serial numbers:
    .................................................9999999999..9999999999..9999999999
    .................................................9999999999..9999999999..9999999999
    I have added serial numbers to my the current table in the interface/context/data view so it look like this:
    TTYP - ITEM_FIELDS
    ...DATA structure
    ......POSNR
    ......QTY
    ......MATNR
    ......TTYP - ITEM_TEXTS
    .........DATA structure
    ............DESCRIPTION
    ......DATE
    ......TTYP - SERIAL_NOS
    .........DATA structure
    ............SERIAL_COL1
    ............SERIAL_COL2
    ............SERIAL_COL3
    In my Hierarchy I currently have this hierarchy and binding:
    Table - ITEM_FIELDS
    ...Body Row - DATA
    ......Cell - POSNR
    ......Cell - QTY
    ......Cell - MATNR
    ......Subform - ItemTexts
    .........Table - ITEM_TEXTS
    ............Body Row - DATA
    ...............Cell - DESCRIPTION
    ......Cell - DATE
    Now I am trying to add the SERIAL_NOS table into the ITEM_FIELDS/DATA body row right after the DATE cell - but I am not allowed to drag anything into the table structure.
    Does anybody have an ida how I can achieve this, please?
    Kind regards,
    Claus Christensen

    HI,
          Set the body page as flowed and set the tables also flowed.
    go to bodypage>object->subform-->select flowed option.
    I thihnk this will work..if u are getting all the records properly into the tables 1 and 2.
    Thanks,
    Mahdukar

  • Nested UIData doesn't work with command broadcasting

    In November 2004 I submitted the bug report below, and I also reported it on this forum. Other than the automated acknowledgment, I have received no followup. The posting on this forum seems to have been deleted. I'm re-posting it here in case it can be of help to someone, as I've noticed others mentioning nested UIData problems.
    The JSF RI UIData caches its data model, which can cause problems if the UIData value references some row data in an outer UIData if two UIData are nested. The RI tries to compensate for this by removing the cached information during certain instances such as encoding and decoding. But the RI neglects to uncache during event broadcasting.
    When UIData iterates over its data set (during encoding or decoding, for instance), it iterates through the row index which, after loading the data model, places the correct variable in the request map. Because the data model is cached, the inner UIData would return an unpredictable data model---the data model from the last iteration, for instance, not the data model based upon the outer data model's current row.
    UIData compensates for this during encoding and decoding by checking to see if it is nested inside another UIData. For example, within UIData.processUpdates() you'll see:
    if (isNestedWithinUIData()) {
        model = null;
    }This allows a test case to render correctly the nested data set, and even allows a UICommand to queue an event when it is selected. However, UIData.broadcast() does not clear the cache, so by the time the event is actually broadcast, the data model for the row is still set at some other row.
    Adding the above code to UIData.broadcast() solves the problem.
    (I'm suspicious of this whole caching thing in UIData anyway---what if I construct my own UIData-like thing and nest a UIData inside it? How would I keep UIData from caching its data?)

    All right, I've found a solution; I'll post it for anyone in need. It's not particularly elegant but still functional.
    First of all I've created a .cmd file in the folder where is located the executable of my interest.
    In it, using notepad, I've written as following:
    start /affinity 8 FreeTrack.exe
    ping 1.1.1.1 -n 1 -w 2000 > nul
    wmic process where name="FreeTrack.exe" CALL setpriority 256
    Note that the /affinity command is optional and not required (however, I needed it). Replace "FreeTrack.exe" with the name of your executable.
    The ping part pings a fake IP once and then waits 2000 milliseconds (set a higher waiting time if this one doesn't work).
    The third line changes the priority for all the processes under the name of "FreeTrack.exe" to, in my case, realtime.
    Priority legend:
    Low: 64 Below Normal: 16384 Normal: 32 Above Normal: 32768 High: 128 Realtime: 256
    Since the command prompt window appears for 2 seconds and I don't like that, I've created a .vbs file in the same folder of the .cmd file and executable. This hides the cmd window.
    I've put the following into the .vbs file (edited with notepad):
    Set WshShell = CreateObject("WScript.Shell" )
    WshShell.Run chr(34) & "FreeTrack.cmd" & Chr(34), 0
    Set WshShell = Nothing
    Replace "FreeTrack.cmd" with your .cmd file name.
    I've then created a shortcut on the desktop to the .vbs file and changed the icon to the one of the executable.
    Surely this solution won't work if the program keeps reverting back its priority while running.

  • Problems with Whitespace using nested tables from eclipse dtp oracle plugin

    Hi,
    sending from eclipse to oracle xe fails if whitespace is used:
    Example1: Nested table in nested table
    adress_table_typ has another nested table in it
    that works
    CREATE TABLE x (
    i INTEGER PRIMARY KEY,
    adressen adress_table_typ
    ) NESTED TABLE adressen STORE AS adressen_nt (NESTED TABLE tels STORE AS tels_nt);
    inserting a newline fails
    CREATE TABLE x (
    i INTEGER PRIMARY KEY,
    adressen adress_table_typ
    ) NESTED TABLE adressen STORE AS adressen_nt
    (NESTED TABLE tels STORE AS tels_nt);
    Example2:
    Two nested tables
    CREATE TABLE x (
    i INT PRIMARY KEY,
    l_table_typ,
    m_table_typ
    ) NESTED TABLE laptops STORE AS laptop_nt NESTED TABLE interessen STORE AS interessen_nt;
    and then an insert
    INSERT INTO x VALUES (123456,
    l_typ(laptop_typ('123', 'netop'),
    laptop_typ('234', 'thinkpad'),     
    laptop_typ('345', 'iBook')),
    m_typ('a', 'b', 'c')
    which fails. Note that the INSERT works when copy&pasted to sqlplus. It also works if there is
    just one nested table.
    Am I doing somethig wrong or is this a bug in the eclipse data tools plugin?
    Regards
    - Peter
    PS; It is rather difficult to insert whitespace in that forum editor. Any possibility to have ascii?
    For a "whitespace" question rather important...

    A bit of an update on the original post. I was playing around with the plug-in xml file (e.g. eclipse\plugins\org.eclipse.jst.server.generic.oc4j_1.5.100.v20070608\buildfiles\oracle.10.1.3.xml). I changed the following from "deploy" to "redeploy" and it seems to be working once the applicatoin is initial deployed. Of course, I have to change it back to "deploy" if it is the first time the application is being deployed. However; I would still would like to resolve this if there is something out there that fixes this problem. Or if everything points to an enviornment problem, I can continue to play with it.
    <target name="deploy.j2ee.ear" depends="check.skip.ear.deploy" unless="skip.deploy">
    <antcall target="package.module.ear"/>
    <oracle:redeploy
    deployerUri="${deployer.uri}"
    userId="${oc4j.admin.user}"
    password="${oc4j.admin.password}"
    file="${server.publish.dir}/${module.name}.ear"
    deploymentName="${module.name}"
    bindAllWebApps="${oc4j.bind.website}"/>
    </target>

Maybe you are looking for

  • Large Amount of Data in JSF

    Hello, I am using the Table Group component for displaying data in my application designed in Java Studio Creator. I have enabled paging on the component. I use CachedRowSet on the bean for the page for getting the data. This works very well at the m

  • Netweaver JMS issues

    I have a stand alone enterprise java application (not an EJB) that currently runs on several servers (one application per server).  This application allows us to do parellel processing for performance reasons.  Another important distinction is that w

  • SendRedirect is not working in Oracle Weblogic 10.3.5.0

    Hi , We are using oracle weblogic 10.3.5.0 server as a application server. But in weblogic we are facing issues with sendRedirect and request dispatcher. Requesting your help for getting out of this issue. Thanks in advance Sachin Hadawale

  • Acer - 19" Widescreen Flat-Panel LCD HD Monitor

    I have a question about the Acer - 19" Widescreen Flat-Panel LCD HD Monitor. The link to the product: Acer- 19" Widescreen Under "Whats Included" it only says: Acer 19" Widescreen Flat-Panel LCD HD Monitor Owner's manual Does that mean a power cord,

  • Dunning Block

    Hi I am getting a error ........ Adfvacne payment is made............This is very old advance payment....two years back Now When we are trying to clear Advance payment it is giving an error.....advance payment document is having a dunning block. We a