DBA Data[Home] [Help]

APPS.RCV_CHARGES_GRP dependencies on FND_API

Line 897: x_return_status := FND_API.g_ret_sts_success;

893: BEGIN
894: asn_debug.put_line('In preprocess_charges');
895:
896: -- initialize return status
897: x_return_status := FND_API.g_ret_sts_success;
898:
899: --fetch relevant charges into the temporary charge interface table
900: SELECT *
901: BULK COLLECT INTO l_charge_interface_table

Line 947: x_return_status := FND_API.g_ret_sts_error;

943: EXCEPTION
944: WHEN OTHERS THEN
945: asn_debug.put_line('Exception in Preprocess_Charges:');
946: asn_debug.put_line(SQLERRM);
947: x_return_status := FND_API.g_ret_sts_error;
948: END Preprocess_Charges;
949:
950: PROCEDURE Process_Charges
951: ( p_api_version IN NUMBER

Line 971: x_return_status := FND_API.g_ret_sts_success;

967: BEGIN
968: asn_debug.put_line('In Process_Charges: *' || p_rhi_id || '*' || p_rti_id || '*' || p_shipment_header_id || '*' || p_shipment_line_id || '*');
969:
970: -- initialize return status
971: x_return_status := FND_API.g_ret_sts_success;
972:
973: -- fetch relevant charges into the temporary charge interface table
974: SELECT *
975: BULK COLLECT INTO l_charge_interface_table

Line 1067: x_return_status := FND_API.g_ret_sts_error;

1063: asn_debug.put_line('Done processing charges');
1064: EXCEPTION
1065: WHEN OTHERS THEN
1066: -- pass out an error return status to fail the item transaction
1067: x_return_status := FND_API.g_ret_sts_error;
1068: IF (g_asn_debug = 'Y') THEN
1069: asn_debug.put_line('RCV_CHARGES_GRP.Process_Charges: Unexpected exception:');
1070: asn_debug.put_line(SQLERRM);
1071: END IF;