DBA Data[Home] [Help]

APPS.GMF_LOT_COSTING_PUB dependencies on GMF_STEP_TAB

Line 398: --* being the l_step_tab table defined as being of type gmf_step_tab. This is a database type *

394:
395: --**********************************************************************************************
396: --* *
397: --* The procedures in this package share a common set of data structures. The most complex one *
398: --* being the l_step_tab table defined as being of type gmf_step_tab. This is a database type *
399: --* that has nested tables in it. Once a batch has been exploded, its steps will be ordered *
400: --* correctly in this table so that the costs of a step can be rolled forward into subsequent *
401: --* steps until we fall off the end of the routing. *
402: --* *

Line 501: , step_tab SYSTEM.gmf_step_tab

497: /* Bug 13386258-VC */
498: TYPE batch_details_typ IS RECORD
499: (
500: batch_id gme_batch_header.batch_id%TYPE
501: , step_tab SYSTEM.gmf_step_tab
502: );
503: TYPE batch_details_tbl IS TABLE OF batch_details_typ INDEX BY PLS_INTEGER;
504: c_batch_details batch_details_tbl;
505: /* Bug 13386258-VC End */

Line 590: l_step_tab SYSTEM.gmf_step_tab;

586: l_cost_mthd_code cm_mthd_mst.cost_mthd_code%type;
587: l_default_cost_mthd cm_mthd_mst.cost_mthd_code%type;
588:
589: l_step_lev num_tab;
590: l_step_tab SYSTEM.gmf_step_tab;
591: l_skip_this_batch BOOLEAN ;
592: l_skip_this_txn BOOLEAN ;
593: l_cost_accrued BOOLEAN ;
594: l_batch_status NUMBER;

Line 4691: , p_steps SYSTEM.GMF_STEP_TAB

4687: , p_lot_number VARCHAR2
4688: , p_orgn_id NUMBER
4689: , p_batch_id NUMBER
4690: , p_date_costed DATE
4691: , p_steps SYSTEM.GMF_STEP_TAB
4692: )
4693: IS
4694:
4695: l_item_id NUMBER;