CREATE OR REPLACE PACKAGE WB_RT_TF_MAP_OPERATIONS AUTHID CURRENT_USER IS -- Function START_MAP -- Entry point in for a mapping -- this method return a success code similar to the code returned by the Main method. But a success code means that the apply process has been successfully started. Error means that apply has not been started FUNCTION START_MAP (apply_name1 varchar2, map_name varchar2) RETURN NUMBER; -- Function STOP_MAP -- Exit point in for a mapping -- this method return a success code similar to the code returned by the Main method. But a success code means that the apply process has been successfully stopped. Error means that apply has not been stopped FUNCTION STOP_MAP(apply_name varchar2) RETURN NUMBER; -- Function GET_STATUS -- Check the map status FUNCTION GET_STATUS (apply_name1 varchar2) RETURN VARCHAR2; -- Function GET_AUDIT_ID -- this function will return the execution id corresponding to the most -- recent invocation of the trickle feed map FUNCTION GET_AUDIT_ID(MAP_NAME IN VARCHAR2) RETURN NUMBER; END WB_RT_TF_MAP_OPERATIONS; /