DBA Data[Home] [Help]

APPS.PO_COPYDOC_SUB dependencies on FND_API

Line 2699: IF (l_return_status <> FND_API.g_ret_sts_success) THEN

2695: (x_return_status => l_return_status,
2696: p_inv_org_id => x_po_shipment_record.ship_to_organization_id,
2697: x_ou_id => l_ship_to_ou_id);
2698:
2699: IF (l_return_status <> FND_API.g_ret_sts_success) THEN
2700: RAISE APP_EXCEPTION.application_exception;
2701: END IF;
2702: --< Bug 3265539 End >
2703:

Line 3067: (p_init_msg_list => FND_API.g_false,

3063:
3064: l_progress := '010';
3065:
3066: PO_SHARED_PROC_PVT.validate_ship_to_org
3067: (p_init_msg_list => FND_API.g_false,
3068: x_return_status => l_return_status,
3069: p_ship_to_org_id => p_ship_to_org_id,
3070: p_item_category_id => p_item_category_id,
3071: p_item_id => p_item_id, -- Bug 3433867

Line 3079: IF (l_return_status <> FND_API.g_ret_sts_success) THEN

3075: x_transaction_flow_header_id => l_transaction_flow_header_id);
3076:
3077: l_progress := '020';
3078:
3079: IF (l_return_status <> FND_API.g_ret_sts_success) THEN
3080: FND_MESSAGE.set_encoded(encoded_message => FND_MSG_PUB.get);
3081: RAISE FND_API.g_exc_error;
3082: END IF;
3083:

Line 3081: RAISE FND_API.g_exc_error;

3077: l_progress := '020';
3078:
3079: IF (l_return_status <> FND_API.g_ret_sts_success) THEN
3080: FND_MESSAGE.set_encoded(encoded_message => FND_MSG_PUB.get);
3081: RAISE FND_API.g_exc_error;
3082: END IF;
3083:
3084: l_progress := '030';
3085:

Line 3092: RAISE FND_API.g_exc_error;

3088: NVL(l_transaction_flow_header_id, -99))
3089: THEN
3090: FND_MESSAGE.set_name(application => 'PO',
3091: name => 'PO_COPY_DOC_INVALID_TXN_FLOW');
3092: RAISE FND_API.g_exc_error;
3093: END IF;
3094:
3095: END IF; --< if txn flow header ID not null >
3096:

Line 3098: WHEN FND_API.g_exc_error THEN

3094:
3095: END IF; --< if txn flow header ID not null >
3096:
3097: EXCEPTION
3098: WHEN FND_API.g_exc_error THEN
3099: PO_COPYDOC_S1.online_report
3100: (x_online_report_id => p_online_report_id,
3101: x_sequence => x_sequence,
3102: x_message => FND_MESSAGE.get,

Line 3181: IF (l_return_status <> FND_API.g_ret_sts_success) THEN

3177: p_online_report_id => p_online_report_id,
3178: x_sequence => x_sequence,
3179: x_key => l_key);
3180:
3181: IF (l_return_status <> FND_API.g_ret_sts_success) THEN
3182: RAISE l_populate_failed_exc;
3183: END IF;
3184:
3185: l_progress := '010';

Line 3410: -- FND_API.g_ret_sts_success - success

3406: -- The online report sequence, which gets incremented when an error is
3407: -- written to PO_ONLINE_REPORT_TEXT.
3408: --OUT:
3409: --x_return_status
3410: -- FND_API.g_ret_sts_success - success
3411: -- FND_API.g_ret_sts_unexp_error - unexpected error occurs
3412: --x_key
3413: -- The next value in the PO_SESSION_GT_S sequence to be used as the key for
3414: -- all the data inserted.

Line 3411: -- FND_API.g_ret_sts_unexp_error - unexpected error occurs

3407: -- written to PO_ONLINE_REPORT_TEXT.
3408: --OUT:
3409: --x_return_status
3410: -- FND_API.g_ret_sts_success - success
3411: -- FND_API.g_ret_sts_unexp_error - unexpected error occurs
3412: --x_key
3413: -- The next value in the PO_SESSION_GT_S sequence to be used as the key for
3414: -- all the data inserted.
3415: --End of Comments

Line 3432: x_return_status := FND_API.g_ret_sts_success;

3428:
3429: BEGIN
3430:
3431: l_progress := '000';
3432: x_return_status := FND_API.g_ret_sts_success;
3433:
3434: -- Get the key for the global session table to use for this GA
3435: SELECT po_session_gt_s.nextval
3436: INTO x_key

Line 3472: x_return_status := FND_API.g_ret_sts_unexp_error;

3468: END IF;
3469:
3470: EXCEPTION
3471: WHEN OTHERS THEN
3472: x_return_status := FND_API.g_ret_sts_unexp_error;
3473: PO_COPYDOC_S1.copydoc_sql_error
3474: (x_routine => 'PO_COPYDOC_SUB.populate_session_gt',
3475: x_progress => l_progress,
3476: x_sqlcode => SQLCODE,