DBA Data[Home] [Help]

APPS.OKL_SO_CREDIT_APP_WF dependencies on FND_MSG_PUB

Line 81: FND_MSG_PUB.ADD;

77: l_parameter_list.DELETE;
78:
79: ELSE
80: FND_MESSAGE.SET_NAME('OKL', 'OKL_NO_EVENT');
81: FND_MSG_PUB.ADD;
82: x_return_status := OKC_API.G_RET_STS_ERROR ;
83: END IF;
84: EXCEPTION
85:

Line 89: FND_MSG_PUB.ADD;

85:
86: WHEN OTHERS THEN
87: FND_MESSAGE.SET_NAME('OKL', 'OKL_API_OTHERS_EXCEP');
88: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
89: FND_MSG_PUB.ADD;
90: ROLLBACK TO create_credit_app_event;
91: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR ;
92:
93: END create_credit_app_event;

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

105: itemkey in varchar2) is
106: i integer;
107: j integer;
108: begin
109: j := NVL(FND_MSG_PUB.Count_Msg,0);
110: if (j=0) then return; end if;
111: if (j>9) then j:=9; end if;
112: FOR I IN 1..J LOOP
113: wf_engine.SetItemAttrText (itemtype => itemtype,

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

112: FOR I IN 1..J LOOP
113: wf_engine.SetItemAttrText (itemtype => itemtype,
114: itemkey => itemkey,
115: aname => 'MESSAGE'||i,
116: avalue => FND_MSG_PUB.Get(i,p_encoded =>FND_API.G_FALSE ));
117: END LOOP;
118: end;
119:
120: -- sets requestor of credit request to the user who submitted the request.