DBA Data[Home] [Help]

APPS.OKE_DTS_INTEGRATION_PKG dependencies on FND_MSG_PUB

Line 959: FND_MSG_PUB.Add;

955: /*Bug 6011322 start */
956: IF rec_dts_ship.shipping_request_id IS NOT NULL THEN
957: FND_MESSAGE.Set_Name('OKE', 'OKE_DTS_SHIP_EXISTS');
958: FND_MESSAGE.set_token('SHIPPING_DETAIL',rec_dts_ship.shipping_request_id);
959: FND_MSG_PUB.Add;
960: RAISE OKE_API.G_EXCEPTION_ERROR;
961: END IF;
962: /* Bug 6011322 end */
963:

Line 1295: FND_MSG_PUB.Add;

1291: loop
1292: fetch pi into l_error_code;
1293: exit when pi%notfound;
1294: FND_MESSAGE.Set_Name('OKE' , l_error_code);
1295: FND_MSG_PUB.Add;
1296: end loop;
1297: close pi;
1298: if ( l_error_code is not null ) then
1299: RAISE OKE_API.G_EXCEPTION_ERROR;

Line 1317: FND_MSG_PUB.Add;

1313: loop
1314: fetch pe into l_error_code;
1315: exit when pe%notfound;
1316: FND_MESSAGE.Set_Name('OKE' , l_error_code);
1317: FND_MSG_PUB.Add;
1318: end loop;
1319: close pe;
1320: if ( l_error_code is not null ) then
1321: RAISE OKE_API.G_EXCEPTION_ERROR;

Line 1402: FND_MSG_PUB.Add;

1398: fetch req_c into l_return_status;
1399: close req_c;
1400: IF l_return_status = OKE_API.G_RET_STS_ERROR THEN
1401: FND_MESSAGE.Set_Name('OKE', 'OKE_DTS_REQ_EXISTS');
1402: FND_MSG_PUB.Add;
1403: RAISE OKE_API.G_EXCEPTION_ERROR;
1404: END IF;
1405:
1406: end if;

Line 2018: FND_MSG_PUB.initialize;

2014: l_charge_account := WF_ENGINE.GetItemAttrNumber
2015: ( itemtype => ItemType
2016: , ItemKey => ItemKey
2017: , AName => 'CHARGE_ACCOUNT' );
2018: FND_MSG_PUB.initialize;
2019:
2020:
2021:
2022: OKE_DTS_INTEGRATION_PKG.CREATE_ACTIONS

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

2071:
2072: IF ( l_return_status <> OKE_API.G_RET_STS_SUCCESS ) THEN
2073:
2074: if ( l_msg_count = 1 ) then
2075: l_error_text := FND_MSG_PUB.Get( p_msg_index => 1 , p_encoded => 'F' );
2076: elsif ( l_msg_count > 1 ) then
2077: for i in 1..l_msg_count loop
2078: if ( l_error_text is null ) then
2079: l_error_text := i || '. ' ||

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

2076: elsif ( l_msg_count > 1 ) then
2077: for i in 1..l_msg_count loop
2078: if ( l_error_text is null ) then
2079: l_error_text := i || '. ' ||
2080: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );
2081: else
2082: l_error_text := l_error_text || fnd_global.newline || fnd_global.newline ||
2083: i || '. ' ||
2084: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );

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

2080: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );
2081: else
2082: l_error_text := l_error_text || fnd_global.newline || fnd_global.newline ||
2083: i || '. ' ||
2084: fnd_msg_pub.get( p_msg_index => i , p_encoded => 'F' );
2085: end if;
2086: end loop;
2087: end if;
2088: