DBA Data[Home] [Help]

APPS.PA_BUDGET_CORE dependencies on FND_ATTACHED_DOCUMENTS2_PKG

Line 872: x_err_stage:= 'Calling fnd_attached_documents2_pkg.copy_attachments';

868: * error. so execute this api in a begin , end block and set the error status
869: */
870: BEGIN
871: -- Copy attachments for every draft budget copied
872: x_err_stage:= 'Calling fnd_attached_documents2_pkg.copy_attachments';
873: print_msg(x_err_stage);
874: fnd_attached_documents2_pkg.copy_attachments('PA_BUDGET_VERSIONS',
875: x_draft_version_id,
876: null,null,null,null,

Line 874: fnd_attached_documents2_pkg.copy_attachments('PA_BUDGET_VERSIONS',

870: BEGIN
871: -- Copy attachments for every draft budget copied
872: x_err_stage:= 'Calling fnd_attached_documents2_pkg.copy_attachments';
873: print_msg(x_err_stage);
874: fnd_attached_documents2_pkg.copy_attachments('PA_BUDGET_VERSIONS',
875: x_draft_version_id,
876: null,null,null,null,
877: 'PA_BUDGET_VERSIONS',
878: x_dest_version_id,

Line 887: print_msg('Errored in fnd_attached_documents2_pkg: ERRMSG:['||sqlcode||sqlerrm);

883: print_msg('End of copy_attachments');
884: -- End copying attachments
885: EXCEPTION
886: WHEN OTHERS THEN
887: print_msg('Errored in fnd_attached_documents2_pkg: ERRMSG:['||sqlcode||sqlerrm);
888: x_err_code := SQLCODE;
889: x_err_stack := substr(SQLERRM,630);
890: rollback to before_baseline;
891: RETURN;

Line 1288: fnd_attached_documents2_pkg.delete_attachments('PA_BUDGET_VERSIONS',

1284: where v.budget_version_id = p_src_version_id
1285: )
1286: where budget_version_id = l_dest_version_id;
1287:
1288: fnd_attached_documents2_pkg.delete_attachments('PA_BUDGET_VERSIONS',
1289: l_dest_version_id,
1290: null, null, null, null,
1291: 'Y') ;
1292: end if;

Line 1502: fnd_attached_documents2_pkg.copy_attachments('PA_BUDGET_VERSIONS',

1498: END;
1499: */
1500: -- Copy attachments for every draft budget copied
1501:
1502: fnd_attached_documents2_pkg.copy_attachments('PA_BUDGET_VERSIONS',
1503: p_src_version_id,
1504: null,null,null,null,
1505: 'PA_BUDGET_VERSIONS',
1506: l_dest_version_id,

Line 1910: fnd_attached_documents2_pkg.copy_attachments('PA_BUDGET_VERSIONS',

1906: end if;
1907:
1908: -- Copy attachments for every draft budget copied
1909:
1910: fnd_attached_documents2_pkg.copy_attachments('PA_BUDGET_VERSIONS',
1911: x_src_version_id,
1912: null,null,null,null,
1913: 'PA_BUDGET_VERSIONS',
1914: x_dest_version_id,