DBA Data[Home] [Help]

APPS.OKC_WF_K_APPROVE dependencies on FND_MSG_PUB

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

38: itemkey in varchar2) is
39: i integer;
40: j integer;
41: begin
42: j := NVL(FND_MSG_PUB.Count_Msg,0);
43: if (j=0) then return; end if;
44: if (j>9) then j:=9; end if;
45: FOR I IN 1..J LOOP
46: wf_engine.SetItemAttrText (itemtype => itemtype,

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

45: FOR I IN 1..J LOOP
46: wf_engine.SetItemAttrText (itemtype => itemtype,
47: itemkey => itemkey,
48: aname => 'MESSAGE'||i,
49: avalue => FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
50: END LOOP;
51: end;
52:
53: