DBA Data[Home] [Help]

APPS.AHL_VWP_RULES_PVT dependencies on PA_INTERFACE_UTILS_PUB

Line 962: PA_INTERFACE_UTILS_PUB.Set_Global_Info

958: IF l_responsibility_id = l_responsibility_id THEN
959: x_check_project := 'Y';
960:
961: -- Project Billing Super user
962: PA_INTERFACE_UTILS_PUB.Set_Global_Info
963: ( p_api_version_number => 1.0,
964: p_responsibility_id => l_responsibility_id,
965: p_user_id => Fnd_Global.USER_ID,
966: p_msg_count => l_msg_count,

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

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

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

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

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

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

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

1009: p_return_status => x_return_status);
1010: IF (fnd_log.level_event >= l_log_current_level) THEN
1011: fnd_log.string(fnd_log.level_event,
1012: L_DEBUG_KEY,
1013: 'After calling PA_INTERFACE_UTILS_PUB.Set_Global_Info. Return Status = ' || x_return_status);
1014: END IF;
1015: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1016: IF (l_log_statement >= l_log_current_level) THEN
1017: fnd_log.string(l_log_statement,

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

1015: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1016: IF (l_log_statement >= l_log_current_level) THEN
1017: fnd_log.string(l_log_statement,
1018: L_DEBUG_KEY,
1019: 'Errors from PA_INTERFACE_UTILS_PUB.Set_Global_Info. Message count: ' ||
1020: l_msg_count || ', message data: ' || l_msg_data);
1021: END IF;
1022: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1023: RAISE FND_API.G_EXC_ERROR;