DBA Data[Home] [Help]

APPS.WMA_RESOURCE dependencies on WIP_COST_TXN_INTERFACE

Line 32: * the WIP_COST_TXN_INTERFACE table.

28:
29:
30: /**
31: * This is the record type for the record to be populated and inserted into
32: * the WIP_COST_TXN_INTERFACE table.
33: */
34: TYPE ResTxnRec IS RECORD (row wip_cost_txn_interface%ROWTYPE);
35:
36:

Line 34: TYPE ResTxnRec IS RECORD (row wip_cost_txn_interface%ROWTYPE);

30: /**
31: * This is the record type for the record to be populated and inserted into
32: * the WIP_COST_TXN_INTERFACE table.
33: */
34: TYPE ResTxnRec IS RECORD (row wip_cost_txn_interface%ROWTYPE);
35:
36:
37: /**
38: * This procedure is the entry point into the Resource Transaction

Line 57: * Inserts a populated ResTxnRec record into WIP_COST_TXN_INTERFACE

53: errMessage IN OUT NOCOPY VARCHAR2) return boolean;
54:
55:
56: /**
57: * Inserts a populated ResTxnRec record into WIP_COST_TXN_INTERFACE
58: */
59: FUNCTION put(resRecord IN ResTxnRec,
60: errMessage IN OUT NOCOPY VARCHAR2) return boolean;
61: