DBA Data[Home] [Help]

APPS.FTP_BR_TP_PROCESS_RULE_PVT dependencies on FTP_TP_PROCESS_TABLES

Line 211: -- in the FTP_TP_PROCESS_TABLES table.

207: -- DeleteProcessTableRecs
208: --
209: -- DESCRIPTION
210: -- Delete TP Process Rule Definition Process Tables by performing deletes on records
211: -- in the FTP_TP_PROCESS_TABLES table.
212: --
213: -- IN
214: -- p_obj_def_id - Object Definition ID.
215: --

Line 223: delete from ftp_tp_process_tables

219: )
220: --------------------------------------------------------------------------------
221: IS
222: BEGIN
223: delete from ftp_tp_process_tables
224: where object_definition_id = p_obj_def_id;
225: END DeleteProcessTableRecs;
226: --
227: -- PROCEDURE

Line 409: -- FTP_TP_PROCESS_TABLES table.

405: -- CopyProcessTableRecs
406: --
407: -- DESCRIPTION
408: -- Creates new TP Process Rule Definition Process Tables by copying records in the
409: -- FTP_TP_PROCESS_TABLES table.
410: --
411: -- IN
412: -- p_source_obj_def_id - Source Object Definition ID.
413: -- p_target_obj_def_id - Target Object Definition ID.

Line 427: insert into ftp_tp_process_tables(

423: )
424: --------------------------------------------------------------------------------
425: IS
426: BEGIN
427: insert into ftp_tp_process_tables(
428: object_definition_id
429: ,table_name
430: ,creation_date
431: ,created_by

Line 445: from ftp_tp_process_tables

441: ,FND_GLOBAL.user_id
442: ,sysdate
443: ,FND_GLOBAL.login_id
444: ,object_version_number
445: from ftp_tp_process_tables
446: where object_definition_id = p_source_obj_def_id;
447: END CopyProcessTableRecs;
448: END FTP_BR_TP_PROCESS_RULE_PVT;