DBA Data[Home] [Help]

APPS.FTP_BR_PREPAY_TABLE_PVT dependencies on FTP_PREPAY_TABLE_RULE

Line 157: delete from ftp_prepay_table_rule

153: --------------------------------------------------------------------------------
154: IS
155: BEGIN
156:
157: delete from ftp_prepay_table_rule
158: where object_definition_id = p_obj_def_id;
159:
160: END DeletePrepayTableRuleRecs;
161:

Line 220: -- FTP_PREPAY_TABLE_RULE table.

216: -- CopTransferPriceRuleRec
217: --
218: -- DESCRIPTION
219: -- Creates a new Transfer Price Rule Definition by copying records in the
220: -- FTP_PREPAY_TABLE_RULE table.
221: --
222: -- IN
223: -- p_source_obj_def_id - Source Object Definition ID.
224: -- p_target_obj_def_id - Target Object Definition ID.

Line 239: insert into ftp_prepay_table_rule (

235: --------------------------------------------------------------------------------
236: IS
237: BEGIN
238:
239: insert into ftp_prepay_table_rule (
240: object_definition_id
241: ,pp_dim_type_code
242: ,dim_display_seq
243: ,num_nodes

Line 263: from ftp_prepay_table_rule

259: ,FND_GLOBAL.user_id
260: ,sysdate
261: ,FND_GLOBAL.login_id
262: ,FTP.FTP_PPTB_DIM_ID_SEQ.NEXTVAL
263: from ftp_prepay_table_rule
264: where object_definition_id = p_source_obj_def_id;
265:
266: END CopyPrepayTableRuleRecs;
267: