DBA Data[Home] [Help]

APPS.FTP_BR_PREPAYMENT_PVT dependencies on FTP_TP_PP_CONDITIONS

Line 198: -- in the FTP_TP_PP_CONDITIONS table.

194: --
195: -- DESCRIPTION
196: -- Deletes Prepayment Rule Definition records by performing deletes on records
197:
198: -- in the FTP_TP_PP_CONDITIONS table.
199: --
200: -- IN
201: -- p_obj_def_id - Object Definition ID.
202: --

Line 211: delete from ftp_tp_pp_conditions

207: --------------------------------------------------------------------------------
208: IS
209: BEGIN
210:
211: delete from ftp_tp_pp_conditions
212: where object_definition_id = p_obj_def_id;
213:
214: END DeleteConditionRecs;
215:

Line 408: -- FTP_TP_PP_CONDITIONS table.

404: -- CopyConditionRecs
405: --
406: -- DESCRIPTION
407: -- Creates a new Prepayment Rule Definition records by copying records in the
408: -- FTP_TP_PP_CONDITIONS table.
409: --
410: -- IN
411: -- p_source_obj_def_id - Source Object Definition ID.
412: -- p_target_obj_def_id - Target Object Definition ID.

Line 427: insert into ftp_tp_pp_conditions (

423: --------------------------------------------------------------------------------
424: IS
425: BEGIN
426:
427: insert into ftp_tp_pp_conditions (
428: object_definition_id
429: ,line_item_id
430: ,currency
431: ,cond_sequence

Line 471: from ftp_tp_pp_conditions

467: ,nvl(p_creation_date,creation_date)
468: ,FND_GLOBAL.user_id
469: ,sysdate
470: ,FND_GLOBAL.login_id
471: from ftp_tp_pp_conditions
472: where object_definition_id = p_source_obj_def_id;
473:
474: END CopyConditionRecs;
475: