DBA Data[Home] [Help]

APPS.CS_SR_MASS_UPDATE_PKG dependencies on FND_MSG_PUB

Line 46: FND_MSG_PUB.Add;

42: BEGIN
43: /*Trap the error message for SRs which are closed and have the Disallow SR Update
44: Check box as checked bug 8726256*/
45: FND_MESSAGE.Set_Name('CS','CS_API_SR_ONLY_STATUS_UPDATED');
46: FND_MSG_PUB.Add;
47: l_status_msg := FND_MSG_PUB.GET(FND_MSG_pub.Count_Msg,FND_API.G_FALSE);
48: l_Status_msg:=substr(l_status_msg,instr(l_status_msg,':')+1);
49: /*bug 8726256* ends here*/
50: if (p_note_type is NOT NULL ) THEN

Line 47: l_status_msg := FND_MSG_PUB.GET(FND_MSG_pub.Count_Msg,FND_API.G_FALSE);

43: /*Trap the error message for SRs which are closed and have the Disallow SR Update
44: Check box as checked bug 8726256*/
45: FND_MESSAGE.Set_Name('CS','CS_API_SR_ONLY_STATUS_UPDATED');
46: FND_MSG_PUB.Add;
47: l_status_msg := FND_MSG_PUB.GET(FND_MSG_pub.Count_Msg,FND_API.G_FALSE);
48: l_Status_msg:=substr(l_status_msg,instr(l_status_msg,':')+1);
49: /*bug 8726256* ends here*/
50: if (p_note_type is NOT NULL ) THEN
51: l_notes_table(1).note_type := p_note_type;

Line 159: l_count := FND_MSG_PUB.Count_Msg;

155: x_msg_data => x_msg_data,
156: x_sr_update_out_rec => l_sr_update_out_rec);
157:
158: if(x_return_status = 'S' OR x_return_status = 'E') then
159: l_count := FND_MSG_PUB.Count_Msg;
160: FND_MSG_PUB.Get(p_msg_index => l_msg_index,
161: p_encoded => 'F',
162: p_data => l_data,
163: p_msg_index_out => l_msg_index_out

Line 160: FND_MSG_PUB.Get(p_msg_index => l_msg_index,

156: x_sr_update_out_rec => l_sr_update_out_rec);
157:
158: if(x_return_status = 'S' OR x_return_status = 'E') then
159: l_count := FND_MSG_PUB.Count_Msg;
160: FND_MSG_PUB.Get(p_msg_index => l_msg_index,
161: p_encoded => 'F',
162: p_data => l_data,
163: p_msg_index_out => l_msg_index_out
164: );