Help req. on the OWA_UTIL usage

From: <sambavan_at_mail.utexas.edu>
Date: 1997/06/29
Message-ID: <sambavan-2906971715140001_at_mac-35.csres.utexas.edu>#1/1


Hi
I'm in a process of developing a dynamic web-page using the Oracle's stored procedures. I'm stuck with accepting the multiple choice checkbox parameter into another procedure where I do some validation with that.

In my page I have several sets of multiple choice checkboxes. When I declare the placeholder parameter(parameter i.e used to accept the data in the called procedure) to be of the type owa_util.ident.arr, I'm able to get the datas of the first parameter and not the second

For Example :

Procedure SEL ( parameter1 in datatype) IS BEGIN

   htp.formCheckbox('NAME','X');
   htp.formCheckbox('NAME','y');
   htp.formCheckbox('NAME','z');
   
   htp.br;
   htp.formCheckbox('NAME1','X');

   htp.formCheckbox('NAME1','y');
   htp.formCheckbox('NAME1','z');
END SEL; Procedure ACC( NAME in owa_util.ident_arr,

               NAME1 in owa_util.ident_arr) IS

counter INTERGER;

BEGIN       counter := 1
   LOOP

     htp.print(NAME(counter));
     counter := counter + 1;

   END LOOP;  counter := 1
   LOOP
     htp.print(NAME1(counter));
     counter := counter + 1;

   END LOOP; END ACC; The problem I'm encountering was that I'm able to get the NAME parameter data and Not the NAME! parameter data. Can anybody tell me how I could achieve this.
Please help me .

sambavan.t
sambavan_at_tenet.edu. Received on Sun Jun 29 1997 - 00:00:00 CEST

Original text of this message