To call a pl/sql API from forms personalization, do this
- Personalize the form
- Create an action of type "BuiltIn"
- BuiltIn Type for Action should be "Execute a Procedure"
- Argument should be as below
='declareNote the syntax, after =, entire declare begin end is within single quote. Also, there is no semi colon after "end"
v_field_value VARCHAR2(200) ;
begin
xx_proc ('''||${item.BLOCKNAME.FIELDNAME.value}||''');
end'
You can pass field values as
'''||${item.BLOCKNAME.FIELDNAME.value}||'''
0 comments:
Post a Comment