Execute Procedure using Forms Personalization (12.0) [message #580067] |
Tue, 19 March 2013 17:16 |
aljabali
Messages: 53 Registered: July 2008
|
Member |
|
|
when i am Execute Procedure using Forms Personalization
='BEGIN
xx_prc('''||${item.USER.USER_NAME.value}||''','''||${item.USER_RESP.RESPONSIBILITY_NAME.value}||''');
END'
i have error ( could not be evaluated because of error ) why ?????
my procedure :
create or replace procedure xx_prc(v_user varchar2 , v_resp varchar2 )
is
v_val varchar2(10);
begin
insert into xx_prc_tbl
values (v_user ,v_resp) ;
commit;
end;
Can you Help me .
|
|
|
|
|
|
|
|