아직 초보입니다.
선임자가 작성한 package인데 궁금한 부분이 있어 올립니다.
---------------------------------------------------------------------
CREATE OR REPLACE PACKAGE d2p_bom_qty1
IS
Type num_table_type is table of number index by binary_integer;
v_rtn num_table_type;
Function qty_f(v_lev number, v_qty number) return number;
Pragma restrict_references(qty_f, wnds, rnds);
END;
---------------------------------------------------------------------
Function이 qty_f인것 같은데 아무리 찾아봐도 qty_f라는 이름의 Function이 없습니다.
찾는방법이라도 부탁드립니다.
그리고
Type num_table_type is table of number index by binary_integer;
v_rtn num_table_type;
와
Pragma restrict_references(qty_f, wnds, rnds);도 어떤 의미인지도 궁금합니다.
그러고 보니 전체를 물어봤네요 ^^;