DBA Data[Home] [Help]

APPS.FTP_BR_TP_PROCESS_RULE_PVT dependencies on FTP_TP_STOCH_ASSUMP

Line 169: -- in the FTP_TP_STOCH_ASSUMP table.

165: -- DeleteTpStochAssumpRecs
166: --
167: -- DESCRIPTION
168: -- Deletes Tp Process Rule by performing deletes on records
169: -- in the FTP_TP_STOCH_ASSUMP table.
170: --
171: -- IN
172: -- p_obj_def_id - Object Definition ID.
173: --

Line 181: delete from ftp_tp_stoch_assump

177: )
178: --------------------------------------------------------------------------------
179: IS
180: BEGIN
181: delete from ftp_tp_stoch_assump
182: where object_definition_id = p_obj_def_id;
183: END DeleteTpStochAssumpRecs;
184: --
185: -- PROCEDURE

Line 307: -- FTP_TP_STOCH_ASSUMP table.

303: -- CopyTpStochAssumpRecs
304: --
305: -- DESCRIPTION
306: -- Creates a new TP Process Rule Definition Tp Stochiastic Assumptions by copying records in the
307: -- FTP_TP_STOCH_ASSUMP table.
308: --
309: -- IN
310: -- p_source_obj_def_id - Source Object Definition ID.
311: -- p_target_obj_def_id - Target Object Definition ID.

Line 325: insert into ftp_tp_stoch_assump (

321: )
322: --------------------------------------------------------------------------------
323: IS
324: BEGIN
325: insert into ftp_tp_stoch_assump (
326: object_definition_id
327: ,rate_index_object_id
328: ,num_of_rate_path
329: ,rand_seq_type_code

Line 355: from ftp_tp_stoch_assump

351: ,sysdate
352: ,FND_GLOBAL.login_id
353: ,object_version_number
354: ,valuation_curve_code
355: from ftp_tp_stoch_assump
356: where object_definition_id = p_source_obj_def_id;
357: END CopyTpStochAssumpRecs;
358: --
359: -- PROCEDURE