DBA Data[Home] [Help]

APPS.GMIVDX dependencies on GMIVDBX

Line 1713: p_hdr_rec.transfer_number := GMIVDBX.Get_doc_no

1709:
1710: --lets prepare the header record.
1711: IF (p_hdr_rec.assignment_type = 2) THEN
1712: --automatic numbering
1713: p_hdr_rec.transfer_number := GMIVDBX.Get_doc_no
1714: (
1715: x_return_status => x_return_status
1716: , x_msg_count => x_msg_count
1717: , x_msg_data => x_msg_data

Line 1723: log_msg('After calling GMIVDBX.Get_doc_no.return status is '||x_return_status);

1719: , p_orgn_code => p_hdr_rec.orgn_code
1720: );
1721:
1722: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1723: log_msg('After calling GMIVDBX.Get_doc_no.return status is '||x_return_status);
1724: END IF;
1725:
1726: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1727: RAISE FND_API.G_EXC_ERROR;

Line 1744: GMIVDBX.header_insert

1740: END IF;
1741:
1742: --lets insert the header record.
1743:
1744: GMIVDBX.header_insert
1745: (
1746: p_api_version => p_api_version
1747: , p_init_msg_list => FND_API.G_FALSE
1748: , p_commit => FND_API.G_FALSE

Line 1758: log_msg('After calling GMIVDBX.header_insert.return status is '||x_return_status);

1754: , x_hdr_row => x_hdr_row
1755: );
1756:
1757: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1758: log_msg('After calling GMIVDBX.header_insert.return status is '||x_return_status);
1759: END IF;
1760:
1761: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1762: RAISE FND_API.G_EXC_ERROR;

Line 1775: GMIVDBX.line_insert

1771: log_msg('Constructing record for posting line no '||to_char(i));
1772: END IF;
1773: --lot could be sepcified at the lot level or the line level.
1774: --we are ready to insert records in gmi_discrete_transfer_lines
1775: GMIVDBX.line_insert
1776: (
1777: p_api_version => p_api_version
1778: , p_init_msg_list => FND_API.G_FALSE
1779: , p_commit => FND_API.G_FALSE

Line 1790: log_msg('After call to procedure GMIVDBX.line_insert return status is '||x_return_status);

1786: , x_line_row => x_line_row_tbl(i)
1787: );
1788:
1789: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1790: log_msg('After call to procedure GMIVDBX.line_insert return status is '||x_return_status);
1791: END IF;
1792: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1793: RAISE FND_API.G_EXC_ERROR;
1794: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 1811: GMIVDBX.lot_insert

1807: log_msg('Constructing record for posting line no '||to_char(i)||' and lot record '||to_char(j));
1808: END IF;
1809:
1810: --OK lets insert records in gmi_transfer_lots.
1811: GMIVDBX.lot_insert
1812: (
1813: p_api_version => p_api_version
1814: , p_init_msg_list => FND_API.G_FALSE
1815: , p_commit => FND_API.G_FALSE

Line 1826: log_msg('After call to procedure GMIVDBX.lot_insert return status is '||x_return_status);

1822: , x_lot_row => x_lot_row_tbl(j)
1823: );
1824:
1825: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1826: log_msg('After call to procedure GMIVDBX.lot_insert return status is '||x_return_status);
1827: END IF;
1828: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1829: RAISE FND_API.G_EXC_ERROR;
1830: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN