Tuesday, October 30, 2018

OE_INF_POPULATE_PUB.populate_interface

OE_INF_POPULATE_PUB.populate_interface


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
declare
v_return_status varchar2(10);
v_order_number_from number;
v_order_source_id number;
begin
oe_debug_pub.debug_on;
oe_debug_pub.initialize;
oe_debug_pub.add('Executing API..',1);
oe_inf_populate_pub.populate_interface
( p_api_version_number => 1.0
, x_return_status => v_return_status
, p_order_number_from => v_order_number_from
, p_order_source_id => v_order_source_id
);
oe_debug_pub.add('API Executed.',1);
end;

No comments:

Post a Comment

SQL Important Queries

  How to delete rows with no where clause The following example deletes  all rows  from the  Person.Person  the table in the AdventureWork...