DBA Data[Home] [Help]

APPS.ARP_ETAX_INVAPI_UTIL dependencies on ZX_TRANSACTION_LINES_GT

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

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

Line 234: INSERT INTO ZX_TRANSACTION_LINES_GT

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

Line 526: UPDATE ZX_TRANSACTION_LINES_GT line

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

Line 579: /* Insert lines into ZX_TRANSACTION_LINES_GT */

575:
576: /* Insert lines into ZX_TRX_HEADERS_GT */
577: insert_headers(p_request_id);
578:
579: /* Insert lines into ZX_TRANSACTION_LINES_GT */
580: insert_lines(p_request_id);
581:
582: /* Insert manual tax lines */
583: insert_tax_lines;