DBA Data[Home] [Help]

APPS.EAM_WORKORDER_PKG dependencies on FND_MSG_PUB

Line 499: l_msg_count := fnd_msg_pub.count_msg;

495: );
496: exception
497: when others then
498: rollback to CREATE_WO;
499: l_msg_count := fnd_msg_pub.count_msg;
500: if(l_msg_count>0) then
501: get_all_mesg(mesg=>l_message_text);
502: end if;
503: fnd_message.set_name('EAM','EAM_ERROR_CREATE_WO');

Line 526: l_msg_count := fnd_msg_pub.count_msg;

522: else
523: X_wip_entity_id := 0;
524: rollback to CREATE_WO;
525:
526: l_msg_count := fnd_msg_pub.count_msg;
527: if(l_msg_count>0) then
528: get_all_mesg(mesg=>l_message_text);
529: end if;
530: fnd_message.set_name('EAM','EAM_ERROR_CREATE_WO');

Line 1502: l_msg_count := FND_MSG_PUB.count_msg;

1498: x_return_status := l_return_status; /*7003588*/
1499: exception
1500: when others then
1501: ROLLBACK TO UPDATE_WO;
1502: l_msg_count := FND_MSG_PUB.count_msg;
1503: l_message_text :=' ';
1504: if(l_msg_count>0) then
1505: get_all_mesg(mesg=>l_message_text);
1506: end if;

Line 1528: l_msg_count := FND_MSG_PUB.count_msg;

1524: select rowid into X_We_Rowid from WIP_ENTITIES where wip_entity_id=X_wip_entity_id;
1525:
1526: else
1527: ROLLBACK TO UPDATE_WO;
1528: l_msg_count := FND_MSG_PUB.count_msg;
1529: l_message_text :=' ';
1530: if(l_msg_count>0) then
1531: get_all_mesg(mesg=>l_message_text);
1532: end if;

Line 1959: l_msg_count := fnd_msg_pub.count_msg;

1955: BEGIN
1956: mesg := '';
1957:
1958:
1959: l_msg_count := fnd_msg_pub.count_msg;
1960: msg_index := l_msg_count;
1961:
1962: for i in 1..l_msg_count loop
1963: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_NEXT,

Line 1963: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_NEXT,

1959: l_msg_count := fnd_msg_pub.count_msg;
1960: msg_index := l_msg_count;
1961:
1962: for i in 1..l_msg_count loop
1963: fnd_msg_pub.get(p_msg_index => FND_MSG_PUB.G_NEXT,
1964: p_encoded => 'F',
1965: p_data => temp,
1966: p_msg_index_out => msg_index);
1967: msg_index := msg_index-1;