Recent content by chphang

  1. C

    records not returned

    thx a lot for the advice.
  2. C

    records not returned

    hi! thx for the advice. your guess is somewhat correct- the max Option is probably 5 or 6, thus i was wondering should i open another table just for that etc. - should i? i've declared the v as varchar2, is that wrong? thx.
  3. C

    records not returned

    hi! thx for the advice. tried your codes and return the error upon running as portlet (error page if run normally): Error: ORA-00904: invalid column name (WWV-11230) The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.14469512450 (WWC-51000) The preference path does not exist...
  4. C

    trigger calling a procedure

    hi! i'm working on oracle portal. i've got a trigger that calls a procedure which will then output a html page. problem is the html page is not shown. if i change the same trigger to insert some values in Table Test, it works. thus i conclude that the triggering event is working. i've read...
  5. C

    records not returned

    thx for the advice.
  6. C

    records not returned

    the pollquestion_rec is declared as cursor%rowtype. so how should i declare the gp? thx
  7. C

    records not returned

    hi! i've the following codes: ... For i in 1..4 loop gp:='pollquestion_rec.Option'| |i ; htp.p(gp); htp.p(' '); end loop; ... the output result is: pollquestion_rec.Option1 pollquestion_rec.Option2 pollquestion_rec.Option3 pollquestion_rec.Option4 which is not what i wanted. but if i actually...
Back
Top