DBA Data[Home] [Help]

APPS.OKL_INSURANCE_WF dependencies on FND_MSG_PUB

Line 19: j := NVL(FND_MSG_PUB.Count_Msg,0);

15: itemkey in varchar2) is
16: i integer;
17: j integer;
18: begin
19: j := NVL(FND_MSG_PUB.Count_Msg,0);
20: if (j=0) then return; end if;
21: if (j>9) then j:=9; end if;
22: FOR I IN 1..J LOOP
23: wf_engine.SetItemAttrText (itemtype => itemtype,

Line 26: avalue => FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));

22: FOR I IN 1..J LOOP
23: wf_engine.SetItemAttrText (itemtype => itemtype,
24: itemkey => itemkey,
25: aname => 'MESSAGE'||i,
26: avalue => FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
27: END LOOP;
28: end;
29:
30:

Line 295: fnd_msg_pub.initialize;

291: -- gboomina Bug 5128517 - Start
292: OPEN task_setup_info_csr(l_org_id);
293: FETCH task_setup_info_csr INTO l_task_template_grp_id, l_owner_grp_type_code, l_owner_id;
294: IF(task_setup_info_csr%NOTFOUND) THEN
295: fnd_msg_pub.initialize;
296: okl_api.set_message('OKL','OKL_ST_INS_TASK_NOT_SETUP');
297: resultout := 'ERROR: OKL_ST_INS_TASK_NOT_SETUP';
298: CLOSE task_setup_info_csr ;
299: RETURN ;

Line 304: fnd_msg_pub.initialize;

300: END IF ;
301: CLOSE task_setup_info_csr ;
302:
303: IF ((l_owner_grp_type_code IS NULL ) OR (l_owner_grp_type_code = OKC_API.G_MISS_CHAR )) THEN
304: fnd_msg_pub.initialize;
305: okl_api.set_message('OKL','OKL_ST_INS_OWNR_TYP_NOT_SETUP');
306: resultout := 'ERROR: OKL_ST_INS_OWNR_TYP_NOT_SETUP';
307: RETURN ;
308: END IF ;

Line 310: fnd_msg_pub.initialize;

306: resultout := 'ERROR: OKL_ST_INS_OWNR_TYP_NOT_SETUP';
307: RETURN ;
308: END IF ;
309: IF ((l_owner_id IS NULL ) OR (l_owner_id = OKC_API.G_MISS_NUM )) THEN
310: fnd_msg_pub.initialize;
311: okl_api.set_message('OKL','OKL_ST_INS_OWNR_NOT_SETUP');
312: resultout := 'ERROR: OKL_ST_INS_OWNR_NOT_SETUP';
313: RETURN ;
314: END IF ;

Line 316: fnd_msg_pub.initialize;

312: resultout := 'ERROR: OKL_ST_INS_OWNR_NOT_SETUP';
313: RETURN ;
314: END IF ;
315: IF ((l_task_template_grp_id IS NULL ) OR (l_task_template_grp_id = OKC_API.G_MISS_NUM )) THEN
316: fnd_msg_pub.initialize;
317: okl_api.set_message('OKL','OKL_ST_INS_TEMP_GRP_NOT_SETUP');
318: resultout := 'ERROR: OKL_ST_INS_TEMP_GRP_NOT_SETUP';
319: RETURN ;
320: END IF ;

Line 343: fnd_msg_pub.initialize;

339: BEGIN
340: OPEN party_info_csr(contract_id);
341: FETCH party_info_csr INTO l_add_id ,l_acct_id, l_party_id ;
342: IF(party_info_csr%NOTFOUND) THEN
343: fnd_msg_pub.initialize;
344: okl_api.set_message('OKL','OKL_ST_INS_NO_PARTY_INFO');
345: resultout := 'ERROR: OKL_ST_INS_NO_PARTY_INFO';
346: CLOSE party_info_csr ;
347: RETURN ;

Line 383: resultout := 'ERROR:' || FND_MSG_PUB.Get(x_msg_count,p_encoded =>FND_API.G_FALSE );

379: if (x_return_status = OKC_API.G_RET_STS_SUCCESS) then
380: resultout := 'COMPLETE:T';
381: RETURN ;
382: else
383: resultout := 'ERROR:' || FND_MSG_PUB.Get(x_msg_count,p_encoded =>FND_API.G_FALSE );
384: RETURN ;
385: end if;
386:
387: end if;