DBA Data[Home] [Help]

APPS.ZX_TEST_API dependencies on ZX_API_PUB

Line 1419: g_transaction_rec zx_api_pub.transaction_rec_type;

1415: ----------------------------------
1416: -- Global Variables of Record Type
1417: ----------------------------------
1418: g_party_rec party_rec_type;
1419: g_transaction_rec zx_api_pub.transaction_rec_type;
1420: g_transaction_line_rec zx_api_pub.transaction_line_rec_type;
1421: g_sync_trx_rec zx_api_pub.sync_trx_rec_type;
1422:
1423: -------------------------------------------------

Line 1420: g_transaction_line_rec zx_api_pub.transaction_line_rec_type;

1416: -- Global Variables of Record Type
1417: ----------------------------------
1418: g_party_rec party_rec_type;
1419: g_transaction_rec zx_api_pub.transaction_rec_type;
1420: g_transaction_line_rec zx_api_pub.transaction_line_rec_type;
1421: g_sync_trx_rec zx_api_pub.sync_trx_rec_type;
1422:
1423: -------------------------------------------------
1424: -- Global Variables of Table Type

Line 1421: g_sync_trx_rec zx_api_pub.sync_trx_rec_type;

1417: ----------------------------------
1418: g_party_rec party_rec_type;
1419: g_transaction_rec zx_api_pub.transaction_rec_type;
1420: g_transaction_line_rec zx_api_pub.transaction_line_rec_type;
1421: g_sync_trx_rec zx_api_pub.sync_trx_rec_type;
1422:
1423: -------------------------------------------------
1424: -- Global Variables of Table Type
1425: -------------------------------------------------

Line 1433: g_sync_trx_lines_tbl zx_api_pub.sync_trx_lines_tbl_type%type;

1429: g_suite_rec_tbl suite_rec_tbl_type;
1430: g_trx_headers_cache_rec_tbl zx_trx_headers_rec_tbl_type;
1431: g_trx_lines_cache_rec_tbl zx_trx_lines_rec_tbl_type;
1432: g_dist_lines_cache_rec_tbl zx_dist_lines_rec_tbl_type;
1433: g_sync_trx_lines_tbl zx_api_pub.sync_trx_lines_tbl_type%type;
1434:
1435:
1436: /* =======================================================================*
1437: | PROCEDURE write_message: Write output depending of the value given in |

Line 1582: p_transaction_rec IN OUT NOCOPY zx_api_pub.transaction_rec_type

1578: | PROCEDURE insert_transaction_rec : Populate the row in transaction_rec |
1579: * ===========================================================================*/
1580: PROCEDURE insert_transaction_rec
1581: (
1582: p_transaction_rec IN OUT NOCOPY zx_api_pub.transaction_rec_type
1583: );
1584:
1585: /* ============================================================================*
1586: | PROCEDURE insert_row_transaction_rec : Populate the row in transaction_rec |

Line 1590: p_transaction_rec IN OUT NOCOPY zx_api_pub.transaction_rec_type,

1586: | PROCEDURE insert_row_transaction_rec : Populate the row in transaction_rec |
1587: * ============================================================================*/
1588:
1589: PROCEDURE insert_row_transaction_rec (
1590: p_transaction_rec IN OUT NOCOPY zx_api_pub.transaction_rec_type,
1591: p_initial_row IN NUMBER
1592: );
1593:
1594:

Line 1646: x_sync_trx_rec OUT NOCOPY zx_api_pub.sync_trx_rec_type

1642: * =========================================================================*/
1643: PROCEDURE insert_sync_trx_rec
1644: (
1645: p_header_row IN NUMBER,
1646: x_sync_trx_rec OUT NOCOPY zx_api_pub.sync_trx_rec_type
1647: );
1648:
1649: /* =========================================================================*
1650: | PROCEDURE insert_sync_trx_lines_tbl:Insert a row in sync_trx_lines_tbl |

Line 1657: x_sync_trx_lines_tbl OUT NOCOPY zx_api_pub.sync_trx_lines_tbl_type%type

1653: (
1654: p_header_row IN NUMBER,
1655: p_starting_row_sync_trx_lines IN NUMBER,
1656: p_ending_row_sync_trx_lines IN NUMBER,
1657: x_sync_trx_lines_tbl OUT NOCOPY zx_api_pub.sync_trx_lines_tbl_type%type
1658: );
1659:
1660:
1661: /* ===========================================================================*

Line 1666: p_transaction_line_rec IN OUT NOCOPY zx_api_pub.transaction_line_rec_type,

1662: | PROCEDURE insert_transaction_line_rec: Populate the transaction_line_rec |
1663: * ===========================================================================*/
1664: PROCEDURE insert_transaction_line_rec
1665: (
1666: p_transaction_line_rec IN OUT NOCOPY zx_api_pub.transaction_line_rec_type,
1667: p_row_trx_line IN NUMBER
1668: );
1669:
1670: /* ======================================================================*