DBA Data[Home] [Help]

APPS.OKC_WF_CHK_APPROVE dependencies on FND_MSG_PUB

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

509: itemkey in varchar2) is
510: i integer;
511: j integer;
512: begin
513: j := NVL(FND_MSG_PUB.Count_Msg,0);
514: if (j=0) then return; end if;
515: if (j>9) then j:=9; end if;
516: FOR I IN 1..J LOOP
517: wf_engine.SetItemAttrText (itemtype => itemtype,

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

516: FOR I IN 1..J LOOP
517: wf_engine.SetItemAttrText (itemtype => itemtype,
518: itemkey => itemkey,
519: aname => 'MESSAGE'||i,
520: avalue => FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
521: END LOOP;
522: end;
523:
524: -- Start of comments