wsh_trips_pub.trip_action
Hi there,
Looking for some help with the public API to delete trips, wsh_trips_pub.trip_action
My call to API is returning a status of 'E' but no message to help understand what is wrong, anyone have experience or can see what I have done wrong? any help much appreciated
DECLARE
lv_init_msg_list VARCHAR2(100) := NULL;
lv_return_status VARCHAR2(100);
lv_msg_count NUMBER;
lv_msg_data VARCHAR2(100);
lv_report_set_name VARCHAR2(100) := NULL;
BEGIN
wsh_trips_pub.trip_action
(1.0,
'',
lv_return_status,
lv_msg_count,
lv_msg_data,
'DELETE',
208402,
lv_report_set_name
);
DBMS_OUTPUT.PUT_LINE ('x_return_status : ' ||lv_return_status) ;