DBA Data[Home] [Help]

APPS.ARP_ETAX_INVAPI_UTIL dependencies on ZX_TRANSACTION_LINES_GT

Line 197: /* Private Procedure - Inserts lines (not tax) into ZX_TRANSACTION_LINES_GT */

193: RAISE;
194:
195: END insert_headers;
196:
197: /* Private Procedure - Inserts lines (not tax) into ZX_TRANSACTION_LINES_GT */
198:
199: /* Dev Note:
200: 1) Invoice API does not directly support line-level ship to info
201: at this time.

Line 230: INSERT INTO ZX_TRANSACTION_LINES_GT

226: API currently only supports header level ship to so I
227: am copying them down to line to make uptake of line-level
228: easier later */
229:
230: INSERT INTO ZX_TRANSACTION_LINES_GT
231: (
232: application_id,
233: entity_code,
234: event_class_code,

Line 522: UPDATE ZX_TRANSACTION_LINES_GT line

518: the line-level action to CREATE_WITH_TAX */
519: IF g_tax_lines_inserted > 0
520: THEN
521: /* set line level action */
522: UPDATE ZX_TRANSACTION_LINES_GT line
523: SET line_level_action = 'CREATE_WITH_TAX'
524: WHERE EXISTS
525: (SELECT 'manual tax line'
526: FROM ZX_IMPORT_TAX_LINES_GT tax

Line 575: /* Insert lines into ZX_TRANSACTION_LINES_GT */

571:
572: /* Insert lines into ZX_TRX_HEADERS_GT */
573: insert_headers(p_request_id);
574:
575: /* Insert lines into ZX_TRANSACTION_LINES_GT */
576: insert_lines(p_request_id);
577:
578: /* Insert manual tax lines */
579: insert_tax_lines;