DBA Data[Home] [Help]

APPS.PO_DOCUMENT_ACTION_PVT dependencies on FND_API

Line 220: AND PO_DRAFTS_PVT.is_mod_enabled(p_action_ctl_rec.document_id) = FND_API.G_FALSE) THEN

216: --
217: -- Added l_error_message_text as an argument to match the singature
218: -- Bypass permission check for Mod enabled styles
219: IF (p_action_ctl_rec.document_type = 'PA'
220: AND PO_DRAFTS_PVT.is_mod_enabled(p_action_ctl_rec.document_id) = FND_API.G_FALSE) THEN
221:
222: PO_DRAFTS_PVT.update_permission_check
223: ( p_calling_module => PO_DRAFTS_PVT.g_call_mod_API,
224: p_po_header_id => p_action_ctl_rec.document_id,

Line 226: p_skip_cat_upload_chk => FND_API.G_TRUE,

222: PO_DRAFTS_PVT.update_permission_check
223: ( p_calling_module => PO_DRAFTS_PVT.g_call_mod_API,
224: p_po_header_id => p_action_ctl_rec.document_id,
225: p_role => PO_GLOBAL.g_role_BUYER,
226: p_skip_cat_upload_chk => FND_API.G_TRUE,
227: x_update_allowed => l_update_allowed,
228: x_locking_applicable => l_locking_applicable,
229: x_unlock_required => l_unlock_required,
230: x_message => l_error_message,

Line 234: IF (l_update_allowed = FND_API.G_FALSE) THEN

230: x_message => l_error_message,
231: x_message_text => l_error_message_text --Bug#4651122
232: );
233:
234: IF (l_update_allowed = FND_API.G_FALSE) THEN
235: d_log_msg := 'unable to perform control action to doc: ' ||
236: l_error_message_text;
237: l_ret_sts := 'E';
238: RAISE PO_CORE_S.g_early_return_exc;

Line 2123: -- FND_API.G_TRUE.

2119: -- Encumbrance is recalculated for cancelled entities if enabled. If the
2120: -- cancel action is successful, the document's cancel and who columns will be
2121: -- updated at the specified entity level. Otherwise, the document will remain
2122: -- unchanged. All changes will be committed upon success if p_commit is
2123: -- FND_API.G_TRUE.
2124:
2125: --Parameters:
2126: --IN:
2127: -- p_entity_dtl_rec

Line 2211: p_init_msg_list => FND_API.G_FALSE,

2207:
2208: PO_Document_Cancel_PVT.cancel_document(
2209: p_da_call_rec => l_da_call_rec,
2210: p_api_version =>1.0,
2211: p_init_msg_list => FND_API.G_FALSE,
2212: x_return_status =>x_return_status,
2213: x_msg_data => x_exception_msg,
2214: x_return_code=>x_return_code);
2215: