api to update ar invoice
Sample Script of api to update ar invoice
DECLARE
p_choice VARCHAR2 (200);
p_customer_trx_id NUMBER;
p_trx_type VARCHAR2 (200);
p_term_count NUMBER;
p_term_sequence_number NUMBER;
p_printing_count NUMBER;
p_printing_original_date DATE;
l_print_pend CHAR (1);
l_print_last_printed DATE;
BEGIN
AR_INVOICE_SQL_FUNC_PUB.UPDATE_CUSTOMER_TRX
(p_choice => p_choice,
p_customer_trx_id => p_customer_trx_id,
p_trx_type => p_trx_type,
p_term_count => p_term_count,
p_term_sequence_number => p_term_sequence_number,
p_printing_count => p_printing_count,
p_printing_original_date => p_printing_original_date
);
end;
4 comments:
Hi Is this private api or public api? if so, is it compatible with R12.2.4 version?
This is the Public API
This procedure only to update the printing information.
Is this API used to Update AR Transaction DFF values (Attribute columns in RA_CUSTOMER_TRX_ALL), Please confirm?
Post a Comment