DBA Data[Home] [Help]

APPS.AS_LEAD_ASSIGN_WF dependencies on FND_MSG_PUB

Line 31: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,

27: -- dbms_output.put_line('AS_LEAD_ASSIGN_WF: Startprocess Begin'||item_key);
28:
29: SELECT TO_CHAR(AS_WORKFLOW_KEYS_S.nextval) INTO Item_Key FROM dual;
30:
31: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,
32: -- 'Startprocess: '||item_key);
33:
34: wf_engine.CreateProcess(
35: ItemType => Item_Type,

Line 102: AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_ERROR,

98: EXCEPTION
99: when others then
100: wf_core.context(Item_type, 'StartProcess', p_sales_lead_id,
101: Workflowprocess);
102: AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_ERROR,
103: 'error in StartProcess');
104: -- dbms_output.put_line('Error in AS_LEAD_ASSIGN_WF: Startprocess ');
105: raise;
106: END StartProcess;

Line 174: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,

170: l_msg_data VARCHAR2(2000);
171: l_msg_index_out NUMBER;
172:
173: BEGIN
174: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,
175: -- 'AssignLead '||itemkey);
176: IF funcmode = 'RUN' then
177: -- dbms_output.put_line('AS_LEAD_ASSIGN_WF: AssignLead begin '||itemkey);
178: l_sales_lead_id := wf_engine.GetItemAttrNumber(

Line 214: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,

210: ,x_return_status => l_return_status
211: ,x_msg_count => l_msg_count
212: ,x_msg_data => l_msg_data );
213:
214: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,
215: -- 'return status: ' || l_return_status );
216:
217: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP
218: FND_MSG_PUB.Get(p_msg_index=>j,

Line 217: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP

213:
214: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,
215: -- 'return status: ' || l_return_status );
216:
217: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP
218: FND_MSG_PUB.Get(p_msg_index=>j,
219: p_encoded=>'F',
220: p_data=>l_msg_data,
221: p_msg_index_out=>l_msg_index_out);

Line 218: FND_MSG_PUB.Get(p_msg_index=>j,

214: -- AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW,
215: -- 'return status: ' || l_return_status );
216:
217: FOR j in 1..FND_MSG_PUB.Count_Msg LOOP
218: FND_MSG_PUB.Get(p_msg_index=>j,
219: p_encoded=>'F',
220: p_data=>l_msg_data,
221: p_msg_index_out=>l_msg_index_out);
222: END LOOP;

Line 236: AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_ERROR,

232: EXCEPTION
233: when others then
234: wf_core.context(Itemtype, 'AssignLead', itemtype, itemkey,
235: to_char(actid), funcmode);
236: AS_UTILITY_PVT.Debug_Message(FND_MSG_PUB.G_MSG_LVL_ERROR,
237: 'error in AssignLead');
238: raise;
239:
240: END AssignLead;