DBA Data[Home] [Help]

APPS.PO_INTERFACE_S dependencies on PO_SHARED_PROC_PVT

Line 8101: PO_SHARED_PROC_PVT.check_transaction_flow(

8097: l_progress := '050';
8098:
8099: -- Get the Transaction Flow Header ID from the Inventory API.
8100: -- Use the wrapper API written in PO.
8101: PO_SHARED_PROC_PVT.check_transaction_flow(
8102: p_init_msg_list => FND_API.G_TRUE,
8103: x_return_status => l_return_status, -- OUT NOCOPY VARCHAR2
8104: p_start_ou_id => g_purchasing_ou_id,
8105: p_end_ou_id => l_destination_ou_id,

Line 8123: exception_type => 'PO_SHARED_PROC_PVT.check_transaction_flow',

8119:
8120: l_progress := '060';
8121: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
8122: APP_EXCEPTION.raise_exception(
8123: exception_type => 'PO_SHARED_PROC_PVT.check_transaction_flow',
8124: exception_code => 0,
8125: exception_text => 'return_status='||l_return_status);
8126: END IF;
8127:

Line 8134: PO_SHARED_PROC_PVT.check_item_in_linv_pou

8130: -- valid transaction flow exists and item id is not null
8131:
8132: l_progress := '065';
8133: IF l_transaction_flow_header_id IS NOT NULL AND l_item_id IS NOT NULL THEN
8134: PO_SHARED_PROC_PVT.check_item_in_linv_pou
8135: (x_return_status => l_return_status,
8136: p_item_id => l_item_id,
8137: p_transaction_flow_header_id => l_transaction_flow_header_id,
8138: x_item_in_linv_pou => l_item_in_linv_pou);

Line 8141: exception_type => 'PO_SHARED_PROC_PVT.check_item_in_linv_pou',

8137: p_transaction_flow_header_id => l_transaction_flow_header_id,
8138: x_item_in_linv_pou => l_item_in_linv_pou);
8139: IF l_return_status <> FND_API.g_ret_sts_success THEN
8140: APP_EXCEPTION.raise_exception(
8141: exception_type => 'PO_SHARED_PROC_PVT.check_item_in_linv_pou',
8142: exception_code => 0,
8143: exception_text => 'return_status='||l_return_status);
8144: ELSIF l_return_status = FND_API.g_ret_sts_success AND
8145: (l_item_in_linv_pou <> 'Y') THEN

Line 8153: exception_type => 'PO_SHARED_PROC_PVT.check_item_in_linv_pou',

8149: p_message => 'After calling check_item_in_linv_pou: Item does not exist in the
8150: logical inv org of the POU'||' l_return_status= '||l_return_status);
8151: END IF;
8152: APP_EXCEPTION.raise_exception(
8153: exception_type => 'PO_SHARED_PROC_PVT.check_item_in_linv_pou',
8154: exception_code => 0,
8155: exception_text => 'Item does not exist in the logical inventory org of POU');
8156: END IF;
8157: END IF;