DBA Data[Home] [Help]

APPS.JAI_JMCR_TRIGGER_PKG dependencies on JAI_AR_TRX_LINES

Line 150: UPDATE JAI_AR_TRX_LINES

146: IF nvl(v_quantity,0) = 0 THEN
147: v_quantity := -nvl(pr_old.quantity_applied,0);
148: END IF;
149:
150: UPDATE JAI_AR_TRX_LINES
151: SET matched_quantity = nvl(matched_quantity,0) + v_quantity
152: WHERE Customer_Trx_Line_Id = v_ref_line;
153: */
154:

Line 162: UPDATE JAI_AR_TRX_LINES

158:
159: --end if;
160:
161: FOR rec IN tax_amount_cur LOOP
162: UPDATE JAI_AR_TRX_LINES
163: SET tax_amount = rec.tax_amount,
164: total_amount = line_amount + rec.tax_amount
165: WHERE Customer_Trx_Line_Id = v_ref_line;
166: