DBA Data[Home] [Help]

APPS.HZ_GNR_PUB dependencies on FND_MSG_PUB

Line 291: l_msg_count_before := NVL(fnd_msg_pub.Count_Msg,0);

287: BEGIN
288: l_module := 'validateLoc';
289:
290: -- read the count of messages already stacked before doing validation
291: l_msg_count_before := NVL(fnd_msg_pub.Count_Msg,0);
292:
293: HZ_GNR_PKG.validateLoc(
294: P_LOCATION_ID => P_LOCATION_ID,
295: P_USAGE_CODE => P_USAGE_CODE,

Line 321: l_msg_count_after := NVL(fnd_msg_pub.Count_Msg,0);

317: X_ADDR_WARN_MSG => x_addr_warn_msg,
318: X_ADDR_VAL_STATUS => x_addr_val_status,
319: X_STATUS => l_status);
320:
321: l_msg_count_after := NVL(fnd_msg_pub.Count_Msg,0);
322: x_msg_count := l_msg_count_after;
323: x_return_status := l_status;
324:
325: -- FND Logging for debug purpose

Line 354: l_message_text := SUBSTR(l_message_text||fnd_msg_pub.get(p_msg_index => i ,

350: (l_status <> FND_API.G_RET_STS_SUCCESS) THEN
351:
352: IF (l_msg_count_after > l_msg_count_before) THEN
353: FOR i IN l_msg_count_before+1..l_msg_count_after LOOP
354: l_message_text := SUBSTR(l_message_text||fnd_msg_pub.get(p_msg_index => i ,
355: p_encoded => 'F'),1,1000);
356: END LOOP;
357: x_msg_data := l_message_text;
358: END IF;

Line 395: FND_MSG_PUB.ADD;

391: ELSE
392:
393: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );
394: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );
395: FND_MSG_PUB.ADD;
396:
397: --Standard call to get message count and if count is 1, get message info.
398: FND_MSG_PUB.Count_And_Get(
399: p_encoded => FND_API.G_FALSE,

Line 398: FND_MSG_PUB.Count_And_Get(

394: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );
395: FND_MSG_PUB.ADD;
396:
397: --Standard call to get message count and if count is 1, get message info.
398: FND_MSG_PUB.Count_And_Get(
399: p_encoded => FND_API.G_FALSE,
400: p_count => x_msg_count,
401: p_data => x_msg_data );
402: