DBA Data[Home] [Help]

APPS.PO_AP_INVOICE_MATCH_GRP dependencies on PO_TBL_NUMBER

Line 248: , p_line_location_id_tbl IN po_tbl_number

244: -- against each line location
245: -------------------------------------------------------------------------
246: PROCEDURE get_amount_to_retain(
247: p_api_version IN NUMBER
248: , p_line_location_id_tbl IN po_tbl_number
249: , p_line_loc_match_amt_tbl IN po_tbl_number
250: , x_return_status OUT NOCOPY VARCHAR2
251: , x_msg_data OUT NOCOPY VARCHAR2
252: , x_amount_to_retain_tbl OUT NOCOPY po_tbl_number

Line 249: , p_line_loc_match_amt_tbl IN po_tbl_number

245: -------------------------------------------------------------------------
246: PROCEDURE get_amount_to_retain(
247: p_api_version IN NUMBER
248: , p_line_location_id_tbl IN po_tbl_number
249: , p_line_loc_match_amt_tbl IN po_tbl_number
250: , x_return_status OUT NOCOPY VARCHAR2
251: , x_msg_data OUT NOCOPY VARCHAR2
252: , x_amount_to_retain_tbl OUT NOCOPY po_tbl_number
253: )

Line 252: , x_amount_to_retain_tbl OUT NOCOPY po_tbl_number

248: , p_line_location_id_tbl IN po_tbl_number
249: , p_line_loc_match_amt_tbl IN po_tbl_number
250: , x_return_status OUT NOCOPY VARCHAR2
251: , x_msg_data OUT NOCOPY VARCHAR2
252: , x_amount_to_retain_tbl OUT NOCOPY po_tbl_number
253: )
254: IS
255: l_api_version CONSTANT NUMBER := 1.0;
256: l_api_name CONSTANT VARCHAR2(30) := 'get_amount_to_retain';

Line 272: x_amount_to_retain_tbl:= po_tbl_number();

268:
269: -- Initialize out parameters
270: x_return_status := FND_API.G_RET_STS_SUCCESS;
271: x_msg_data := NULL;
272: x_amount_to_retain_tbl:= po_tbl_number();
273: x_amount_to_retain_tbl.extend;
274:
275: d_position := 10;
276:

Line 706: p_entity_id_tbl IN PO_TBL_NUMBER ,

702: ------------------------------------------------------------------------------------------------
703:
704: PROCEDURE set_final_match_flag (p_api_version IN NUMBER ,
705: p_entity_type IN VARCHAR2 ,
706: p_entity_id_tbl IN PO_TBL_NUMBER ,
707: p_final_match_flag IN PO_LINE_LOCATIONS.FINAL_MATCH_FLAG%TYPE ,
708: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE ,
709: p_commit IN VARCHAR2 := FND_API.G_FALSE ,
710: x_ret_status OUT NOCOPY VARCHAR2 ,