DBA Data[Home] [Help]

APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on WF_NOTIFICATION

Line 2684: WF_NOTIFICATION.WriteToClob(document, 'Report Content Generation failed');

2680: ,x_msg_count => l_msg_count
2681: ,x_msg_data => l_msg_data
2682: );
2683: if (l_return_status <> FND_API.G_RET_STS_SUCCESS) then
2684: WF_NOTIFICATION.WriteToClob(document, 'Report Content Generation failed');
2685: dbms_lob.writeappend(document, 255, substr(Sqlerrm, 255));
2686: end if;
2687:
2688: --debug_msg_s1 ('total copy size' || l_copy_size);

Line 2701: WF_NOTIFICATION.WriteToClob(document, 'Report Content Generation failed');

2697: WHEN OTHERS THEN
2698:
2699: --debug_msg_s1('Error '||TO_CHAR(SQLCODE)||': '||substr(Sqlerrm, 255));
2700:
2701: WF_NOTIFICATION.WriteToClob(document, 'Report Content Generation failed');
2702: dbms_lob.writeappend(document, 255, substr(Sqlerrm, 255));
2703:
2704: END show_report_content;
2705: