DBA Data[Home] [Help]

APPS.PA_WORKPLAN_WORKFLOW_CLIENT dependencies on WF_NOTIFICATION

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

976: ,x_msg_data => l_msg_data
977: );
978:
979: if (l_return_status <> FND_API.G_RET_STS_SUCCESS) then
980: WF_NOTIFICATION.WriteToClob(document, 'Content Generation failed');
981: dbms_lob.writeappend(document, 255, substr(Sqlerrm, 255));
982: end if;
983:
984:

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

990: document_type := 'text/html';
991:
992: EXCEPTION
993: WHEN OTHERS THEN
994: WF_NOTIFICATION.WriteToClob(document, 'Content Generation failed');
995: dbms_lob.writeappend(document, 255, substrb(Sqlerrm, 255)); -- changed substr to substrb for bug 3795807
996: NULL;
997: END show_workplan_preview;
998: /*=================================================================