DBA Data[Home] [Help]

APPS.FTP_BR_TP_PROCESS_RULE_PVT dependencies on FTP_TP_PROCESS_RULE

Line 148: -- in the FTP_TP_PROCESS_RULE table.

144: -- DeleteTpProcessRuleRec
145: --
146: -- DESCRIPTION
147: -- Deletes a TP Process Rule Definition by performing deletes on records
148: -- in the FTP_TP_PROCESS_RULE table.
149: --
150: -- IN
151: -- p_obj_def_id - Object Definition ID.
152: --

Line 160: delete from ftp_tp_process_rule

156: )
157: --------------------------------------------------------------------------------
158: IS
159: BEGIN
160: delete from ftp_tp_process_rule
161: where object_definition_id = p_obj_def_id;
162: END DeleteTpProcessRuleRec;
163: --
164: -- PROCEDURE

Line 232: -- FTP_TP_PROCESS_RULE table.

228: -- CopyTpProcessRuleRec
229: --
230: -- DESCRIPTION
231: -- Creates a new TP Process Rule Definition by copying records in the
232: -- FTP_TP_PROCESS_RULE table.
233: --
234: -- IN
235: -- p_source_obj_def_id - Source Object Definition ID.
236: -- p_target_obj_def_id - Target Object Definition ID.

Line 250: insert into ftp_tp_process_rule (

246: )
247: --------------------------------------------------------------------------------
248: IS
249: BEGIN
250: insert into ftp_tp_process_rule (
251: object_definition_id
252: ,calc_mode_code
253: ,transfer_price_object_id
254: ,prepay_object_id

Line 298: from ftp_tp_process_rule

294: ,FND_GLOBAL.user_id
295: ,sysdate
296: ,FND_GLOBAL.login_id
297: ,object_version_number
298: from ftp_tp_process_rule
299: where object_definition_id = p_source_obj_def_id;
300: END CopyTpProcessRuleRec;
301: --
302: -- PROCEDURE