DBA Data[Home] [Help]

APPS.OKE_DTS_INTEGRATION_PKG dependencies on FND_MSG_PUB

Line 921: FND_MSG_PUB.Add;

917: /*Bug 6011322 start */
918: IF rec_dts_ship.shipping_request_id IS NOT NULL THEN
919: FND_MESSAGE.Set_Name('OKE', 'OKE_DTS_SHIP_EXISTS');
920: FND_MESSAGE.set_token('SHIPPING_DETAIL',rec_dts_ship.shipping_request_id);
921: FND_MSG_PUB.Add;
922: RAISE OKE_API.G_EXCEPTION_ERROR;
923: END IF;
924: /* Bug 6011322 end */
925:

Line 1257: FND_MSG_PUB.Add;

1253: loop
1254: fetch pi into l_error_code;
1255: exit when pi%notfound;
1256: FND_MESSAGE.Set_Name('OKE' , l_error_code);
1257: FND_MSG_PUB.Add;
1258: end loop;
1259: close pi;
1260: if ( l_error_code is not null ) then
1261: RAISE OKE_API.G_EXCEPTION_ERROR;

Line 1279: FND_MSG_PUB.Add;

1275: loop
1276: fetch pe into l_error_code;
1277: exit when pe%notfound;
1278: FND_MESSAGE.Set_Name('OKE' , l_error_code);
1279: FND_MSG_PUB.Add;
1280: end loop;
1281: close pe;
1282: if ( l_error_code is not null ) then
1283: RAISE OKE_API.G_EXCEPTION_ERROR;

Line 1359: FND_MSG_PUB.Add;

1355: fetch req_c into l_return_status;
1356: close req_c;
1357: IF l_return_status = OKE_API.G_RET_STS_ERROR THEN
1358: FND_MESSAGE.Set_Name('OKE', 'OKE_DTS_REQ_EXISTS');
1359: FND_MSG_PUB.Add;
1360: RAISE OKE_API.G_EXCEPTION_ERROR;
1361: END IF;
1362:
1363: end if;

Line 1974: FND_MSG_PUB.initialize;

1970: l_charge_account := WF_ENGINE.GetItemAttrNumber
1971: ( itemtype => ItemType
1972: , ItemKey => ItemKey
1973: , AName => 'CHARGE_ACCOUNT' );
1974: FND_MSG_PUB.initialize;
1975:
1976:
1977:
1978: OKE_DTS_INTEGRATION_PKG.CREATE_ACTIONS

Line 2031: l_error_text := FND_MSG_PUB.Get( p_msg_index => 1 , p_encoded => 'F' );

2027:
2028: IF ( l_return_status <> OKE_API.G_RET_STS_SUCCESS ) THEN
2029:
2030: if ( l_msg_count = 1 ) then
2031: l_error_text := FND_MSG_PUB.Get( p_msg_index => 1 , p_encoded => 'F' );
2032: elsif ( l_msg_count > 1 ) then
2033: for i in 1..l_msg_count loop
2034: if ( l_error_text is null ) then
2035: l_error_text := i || '. ' ||

Line 2036: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );

2032: elsif ( l_msg_count > 1 ) then
2033: for i in 1..l_msg_count loop
2034: if ( l_error_text is null ) then
2035: l_error_text := i || '. ' ||
2036: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );
2037: else
2038: l_error_text := l_error_text || fnd_global.newline || fnd_global.newline ||
2039: i || '. ' ||
2040: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );

Line 2040: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );

2036: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );
2037: else
2038: l_error_text := l_error_text || fnd_global.newline || fnd_global.newline ||
2039: i || '. ' ||
2040: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );
2041: end if;
2042: end loop;
2043: end if;
2044: