hi, we using message('') in oracle forms to show message what is the equivalent approach to do this in oracle reports 10g?
Oraask Latest Questions
BELOW IS THE CODE AM USING:Am getting the error:"There exist uncompiled objects in the report" declare v_rep varchar2(1000):='a'; v_rep_status varchar2(1000):='a'; v_url varchar2(1000):=''; rep_status VARCHAR2(100); repid REPORT_OBJECT; thelist paramlist; begin thelist := get_parameter_list('rep_paramlist'); if not id_null(thelist) then destroy_parameter_list(thelist); end if; thelist := CREATE_PARAMETER_LIST('rep_paramlist'); ADD_PARAMETER(thelist, 'PARAMFORM',TEXT_PARAMETER,'NO'); ADD_PARAMETER(thelist, ...
Hi, I'm using forms and reports 11g. I want to pass date parameter from forms to reports. Using Add_Parameter(param_id,'P_DATE_FROM',TEXT_PARAMETER,:BLOCK.DATE_ITEM); But it's not working with strange error when trying to call report from forms please help.