Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536.1K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.6K Security Software
PL/SQL block not taking input parameters from ODI procedure

Errendous
Member Posts: 4 Red Ribbon
I have created a simple pl/sql package which basically takes an in input parameters and returns a value. When I'm executing the below pl/sql block in ODI 12C procedure it's not taking the value.
When i execute this in db it works but from ODI procedure it refuse to take values.
begin
my_pkg.set_agent_name('Smith');
end;
After this when I execute below statement it returns null.
select my_pkg.get_agent_name from dual;
I'm also attaching the db package i have created to get the agent name
.