DBA Data[Home] [Help]

APPS.AHL_VWP_RULES_PVT dependencies on PA_INTERFACE_UTILS_PUB

Line 956: PA_INTERFACE_UTILS_PUB.Set_Global_Info

952: IF l_responsibility_id = l_responsibility_id THEN
953: x_check_project := 'Y';
954:
955: -- Project Billing Super user
956: PA_INTERFACE_UTILS_PUB.Set_Global_Info
957: ( p_api_version_number => 1.0,
958: p_responsibility_id => l_responsibility_id,
959: p_user_id => Fnd_Global.USER_ID,
960: p_msg_count => l_msg_count,

Line 989: * Before calling any AMG api, its mandatory to call PA_INTERFACE_UTILS_PUB.Set_Global_Info.

985: */
986:
987: -- jaramana July 25, 2005
988: /* From Majid Ansari's email dated June 8, 2005:
989: * Before calling any AMG api, its mandatory to call PA_INTERFACE_UTILS_PUB.Set_Global_Info.
990: * This has been mentioned in the AMG doc. You cannot get rid of this call.
991: * None of the APIs will be usable.
992: */
993: -- So, reintroduced the call to PA_INTERFACE_UTILS_PUB.Set_Global_Info.

Line 993: -- So, reintroduced the call to PA_INTERFACE_UTILS_PUB.Set_Global_Info.

989: * Before calling any AMG api, its mandatory to call PA_INTERFACE_UTILS_PUB.Set_Global_Info.
990: * This has been mentioned in the AMG doc. You cannot get rid of this call.
991: * None of the APIs will be usable.
992: */
993: -- So, reintroduced the call to PA_INTERFACE_UTILS_PUB.Set_Global_Info.
994: -- However, passing the current responsibilty id instead of the hardcoded
995: -- Project Billing Superuser Responsibility as was done before the ADS Bug 4357001 Fix.
996: PA_INTERFACE_UTILS_PUB.Set_Global_Info( p_api_version_number => 1.0,
997: p_responsibility_id => Fnd_Global.RESP_ID,

Line 996: PA_INTERFACE_UTILS_PUB.Set_Global_Info( p_api_version_number => 1.0,

992: */
993: -- So, reintroduced the call to PA_INTERFACE_UTILS_PUB.Set_Global_Info.
994: -- However, passing the current responsibilty id instead of the hardcoded
995: -- Project Billing Superuser Responsibility as was done before the ADS Bug 4357001 Fix.
996: PA_INTERFACE_UTILS_PUB.Set_Global_Info( p_api_version_number => 1.0,
997: p_responsibility_id => Fnd_Global.RESP_ID,
998: p_resp_appl_id => Fnd_Global.RESP_APPL_ID,
999: p_user_id => Fnd_Global.USER_ID,
1000: p_operating_unit_id => mo_global.get_current_org_id, -- Yazhou added for MOAC changes on 05Oct2005

Line 1007: 'After calling PA_INTERFACE_UTILS_PUB.Set_Global_Info. Return Status = ' || x_return_status);

1003: p_return_status => x_return_status);
1004: IF (fnd_log.level_event >= l_log_current_level) THEN
1005: fnd_log.string(fnd_log.level_event,
1006: L_DEBUG_KEY,
1007: 'After calling PA_INTERFACE_UTILS_PUB.Set_Global_Info. Return Status = ' || x_return_status);
1008: END IF;
1009: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1010: IF (l_log_statement >= l_log_current_level) THEN
1011: fnd_log.string(l_log_statement,

Line 1013: 'Errors from PA_INTERFACE_UTILS_PUB.Set_Global_Info. Message count: ' ||

1009: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1010: IF (l_log_statement >= l_log_current_level) THEN
1011: fnd_log.string(l_log_statement,
1012: L_DEBUG_KEY,
1013: 'Errors from PA_INTERFACE_UTILS_PUB.Set_Global_Info. Message count: ' ||
1014: l_msg_count || ', message data: ' || l_msg_data);
1015: END IF;
1016: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1017: RAISE FND_API.G_EXC_ERROR;