DBA Data[Home] [Help]

APPS.HZ_GNR_PVT dependencies on FND_MESSAGE

Line 4666: FND_MESSAGE.SET_NAME('AR', p_msg_name );

4662: x_geo_suggest_tbl := geo_suggest_tbl;
4663:
4664: IF (p_msg_name IS NOT NULL) THEN
4665: -- get message string
4666: FND_MESSAGE.SET_NAME('AR', p_msg_name );
4667:
4668: IF (p_msg_token_name IS NOT NULL) THEN
4669: IF (p_msg_token_value IS NULL) THEN
4670: -- validate input values and get invalid geo types back

Line 4679: FND_MESSAGE.SET_TOKEN(p_msg_token_name, l_not_validated_geo_type );

4675: ELSE -- use passed in token value in case of missing fields
4676: l_not_validated_geo_type := p_msg_token_value;
4677: END IF;
4678:
4679: FND_MESSAGE.SET_TOKEN(p_msg_token_name, l_not_validated_geo_type );
4680: END IF;
4681: x_geo_suggest_misc_rec.v_suggestion_msg_text := SUBSTR(FND_MESSAGE.GET,1,1000);
4682: END IF;
4683:

Line 4681: x_geo_suggest_misc_rec.v_suggestion_msg_text := SUBSTR(FND_MESSAGE.GET,1,1000);

4677: END IF;
4678:
4679: FND_MESSAGE.SET_TOKEN(p_msg_token_name, l_not_validated_geo_type );
4680: END IF;
4681: x_geo_suggest_misc_rec.v_suggestion_msg_text := SUBSTR(FND_MESSAGE.GET,1,1000);
4682: END IF;
4683:
4684: END setup_msg_and_ret_code_proc;
4685:

Line 6425: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );

6421:
6422: -- set return code and return message
6423: setup_msg_and_ret_code_proc(p_return_code => 200); /* SYSTEM_ERROR (System Error) */
6424:
6425: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );
6426: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );
6427: FND_MSG_PUB.ADD;
6428:
6429: FND_MSG_PUB.Count_And_Get(

Line 6426: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );

6422: -- set return code and return message
6423: setup_msg_and_ret_code_proc(p_return_code => 200); /* SYSTEM_ERROR (System Error) */
6424:
6425: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );
6426: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );
6427: FND_MSG_PUB.ADD;
6428:
6429: FND_MSG_PUB.Count_And_Get(
6430: p_encoded => FND_API.G_FALSE,