DBA Data[Home] [Help]

APPS.GMIVDX dependencies on GMIVDBX

Line 1706: p_hdr_rec.transfer_number := GMIVDBX.Get_doc_no

1702:
1703: --lets prepare the header record.
1704: IF (p_hdr_rec.assignment_type = 2) THEN
1705: --automatic numbering
1706: p_hdr_rec.transfer_number := GMIVDBX.Get_doc_no
1707: (
1708: x_return_status => x_return_status
1709: , x_msg_count => x_msg_count
1710: , x_msg_data => x_msg_data

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

1712: , p_orgn_code => p_hdr_rec.orgn_code
1713: );
1714:
1715: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1716: log_msg('After calling GMIVDBX.Get_doc_no.return status is '||x_return_status);
1717: END IF;
1718:
1719: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1720: RAISE FND_API.G_EXC_ERROR;

Line 1737: GMIVDBX.header_insert

1733: END IF;
1734:
1735: --lets insert the header record.
1736:
1737: GMIVDBX.header_insert
1738: (
1739: p_api_version => p_api_version
1740: , p_init_msg_list => FND_API.G_FALSE
1741: , p_commit => FND_API.G_FALSE

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

1747: , x_hdr_row => x_hdr_row
1748: );
1749:
1750: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1751: log_msg('After calling GMIVDBX.header_insert.return status is '||x_return_status);
1752: END IF;
1753:
1754: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1755: RAISE FND_API.G_EXC_ERROR;

Line 1768: GMIVDBX.line_insert

1764: log_msg('Constructing record for posting line no '||to_char(i));
1765: END IF;
1766: --lot could be sepcified at the lot level or the line level.
1767: --we are ready to insert records in gmi_discrete_transfer_lines
1768: GMIVDBX.line_insert
1769: (
1770: p_api_version => p_api_version
1771: , p_init_msg_list => FND_API.G_FALSE
1772: , p_commit => FND_API.G_FALSE

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

1779: , x_line_row => x_line_row_tbl(i)
1780: );
1781:
1782: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1783: log_msg('After call to procedure GMIVDBX.line_insert return status is '||x_return_status);
1784: END IF;
1785: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1786: RAISE FND_API.G_EXC_ERROR;
1787: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 1804: GMIVDBX.lot_insert

1800: log_msg('Constructing record for posting line no '||to_char(i)||' and lot record '||to_char(j));
1801: END IF;
1802:
1803: --OK lets insert records in gmi_transfer_lots.
1804: GMIVDBX.lot_insert
1805: (
1806: p_api_version => p_api_version
1807: , p_init_msg_list => FND_API.G_FALSE
1808: , p_commit => FND_API.G_FALSE

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

1815: , x_lot_row => x_lot_row_tbl(j)
1816: );
1817:
1818: IF FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW >= G_Debug_Level THEN
1819: log_msg('After call to procedure GMIVDBX.lot_insert return status is '||x_return_status);
1820: END IF;
1821: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
1822: RAISE FND_API.G_EXC_ERROR;
1823: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN