DBA Data[Home] [Help]

APPS.AS_SALES_METH_WF dependencies on WF_CORE

Line 467: wf_core.context('SAL_MET3','Check Mandatory for Current',itemtype, itemkey, to_char(actid), funcmode);

463: print_message('result after current stage = ' ||result);
464: END IF;
465: EXCEPTION
466: WHEN OTHERS THEN
467: wf_core.context('SAL_MET3','Check Mandatory for Current',itemtype, itemkey, to_char(actid), funcmode);
468: RAISE;
469: END Check_task_for_current;
470: /**************************************************************************
471: * PROCEDURE: check_task_for_next

Line 542: wf_core.context('SAL_MET3','Check task exist for next',itemtype, itemkey, to_char(actid), funcmode);

538: g_task_tab:=empty_tbl;
539: END IF;
540: EXCEPTION
541: WHEN OTHERS THEN
542: wf_core.context('SAL_MET3','Check task exist for next',itemtype, itemkey, to_char(actid), funcmode);
543: RAISE;
544: END Check_task_exist_for_next;
545: /**************************************************************************
546: * PROCEDURE: create_tasks

Line 865: wf_core.context('SAL_MET3','Create task from template',itemtype,itemkey,to_char(actid),funcmode);

861: p_count => l_msg_count,
862: p_data => l_msg_data );
863: Get_Error_Message(l_msg_data);
864: WHEN OTHERS THEN
865: wf_core.context('SAL_MET3','Create task from template',itemtype,itemkey,to_char(actid),funcmode);
866: RAISE;
867: END create_tasks;
868: -------------------------------------
869: /**************************************************************************

Line 1023: wf_core.context('SAL_MET3','check duration',itemtype, itemkey, to_char(actid), funcmode);

1019: END IF ;
1020: EXCEPTION
1021: WHEN others THEN
1022: --
1023: wf_core.context('SAL_MET3','check duration',itemtype, itemkey, to_char(actid), funcmode);
1024: RAISE;
1025: END check_duration;
1026: PROCEDURE create_note_for_duration ( itemtype IN varchar2,
1027: itemkey IN VARCHAR2,

Line 1100: wf_core.context('SAL_MET3','Create Note for Duration',itemtype, itemkey, to_char(actid), funcmode);

1096: print_message('Note_id created = '||l_note_id);
1097: END IF;
1098: EXCEPTION
1099: WHEN others THEN
1100: wf_core.context('SAL_MET3','Create Note for Duration',itemtype, itemkey, to_char(actid), funcmode);
1101: RAISE;
1102: END create_note_for_duration;
1103: /**************************************************************************
1104: * PROCEDURE: create_note

Line 1214: wf_core.context('SAL_MET3','Create note from ',itemtype,itemkey,to_char(actid),funcmode);

1210: g_task_tab:=empty_tbl;
1211: END IF;
1212: EXCEPTION
1213: WHEN OTHERS THEN
1214: wf_core.context('SAL_MET3','Create note from ',itemtype,itemkey,to_char(actid),funcmode);
1215: RAISE;
1216: END create_note;
1217: ----------------------------------
1218: PROCEDURE create_note_for_tasks_failure ( itemtype IN varchar2,

Line 1287: wf_core.context('SAL_MET3','Create note from ',itemtype,itemkey,to_char(actid),funcmode);

1283: print_message('Note_id created = '||l_note_id);
1284: END IF;
1285: EXCEPTION
1286: WHEN OTHERS THEN
1287: wf_core.context('SAL_MET3','Create note from ',itemtype,itemkey,to_char(actid),funcmode);
1288: RAISE;
1289: END create_note_for_tasks_failure;
1290: END as_sales_meth_wf;