DBA Data[Home] [Help]

APPS.HZ_GNR_PVT dependencies on FND_MESSAGE

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

4793: x_geo_suggest_tbl := geo_suggest_tbl;
4794:
4795: IF (p_msg_name IS NOT NULL) THEN
4796: -- get message string
4797: FND_MESSAGE.SET_NAME('AR', p_msg_name );
4798:
4799: IF (p_msg_token_name IS NOT NULL) THEN
4800: IF (p_msg_token_value IS NULL) THEN
4801: -- validate input values and get invalid geo types back

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

4806: ELSE -- use passed in token value in case of missing fields
4807: l_not_validated_geo_type := p_msg_token_value;
4808: END IF;
4809:
4810: FND_MESSAGE.SET_TOKEN(p_msg_token_name, l_not_validated_geo_type );
4811: END IF;
4812: x_geo_suggest_misc_rec.v_suggestion_msg_text := SUBSTR(FND_MESSAGE.GET,1,1000);
4813: END IF;
4814:

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

4808: END IF;
4809:
4810: FND_MESSAGE.SET_TOKEN(p_msg_token_name, l_not_validated_geo_type );
4811: END IF;
4812: x_geo_suggest_misc_rec.v_suggestion_msg_text := SUBSTR(FND_MESSAGE.GET,1,1000);
4813: END IF;
4814:
4815: END setup_msg_and_ret_code_proc;
4816:

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

6571:
6572: -- set return code and return message
6573: setup_msg_and_ret_code_proc(p_return_code => 200); /* SYSTEM_ERROR (System Error) */
6574:
6575: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );
6576: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );
6577: FND_MSG_PUB.ADD;
6578:
6579: FND_MSG_PUB.Count_And_Get(

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

6572: -- set return code and return message
6573: setup_msg_and_ret_code_proc(p_return_code => 200); /* SYSTEM_ERROR (System Error) */
6574:
6575: FND_MESSAGE.SET_NAME( 'AR', 'HZ_API_OTHERS_EXCEP' );
6576: FND_MESSAGE.SET_TOKEN( 'ERROR' ,SQLERRM );
6577: FND_MSG_PUB.ADD;
6578:
6579: FND_MSG_PUB.Count_And_Get(
6580: p_encoded => FND_API.G_FALSE,