DBA Data[Home] [Help]

APPS.IBY_INSTRREG_PUB dependencies on FND_LOG

Line 228: debug_level => FND_LOG.LEVEL_UNEXPECTED,

224: IS
225: BEGIN
226: IF (p_ret_status IS NULL) THEN
227: iby_debug_pub.add(debug_msg => 'ECApp servlet trxn status is NULL!',
228: debug_level => FND_LOG.LEVEL_UNEXPECTED,
229: module => G_DEBUG_MODULE || '.ecapp_return_status_success');
230: RETURN FALSE;
231: ELSIF ((IBY_PAYMENT_ADAPTER_PUB.C_TRXN_STATUS_SUCCESS = p_ret_status) OR
232: (IBY_PAYMENT_ADAPTER_PUB.C_TRXN_STATUS_INFO = p_ret_status) OR

Line 568: FND_LOG.LEVEL_UNEXPECTED,

564:
565: --Raising Exception to handle errors in unpacking resulting html file.
566: IF (l_status = -1) THEN
567: iby_debug_pub.add('Unpack status error',
568: FND_LOG.LEVEL_UNEXPECTED,
569: G_DEBUG_MODULE || l_api_name);
570:
571: FND_MESSAGE.SET_NAME('IBY', 'IBY_204403_HTML_UNPACK_ERROR');
572: FND_MSG_PUB.Add;

Line 1654: debug_level => FND_LOG.LEVEL_PROCEDURE,

1650:
1651: BEGIN
1652:
1653: iby_debug_pub.add(debug_msg => 'Enter',
1654: debug_level => FND_LOG.LEVEL_PROCEDURE,
1655: module => G_DEBUG_MODULE || '.SecureCardInfo');
1656:
1657: -- test_debug('SecureCardInfo=> Enter');
1658: -- Initialize API return status to success

Line 1699: -- debug_level => FND_LOG.LEVEL_PROCEDURE,

1695: l_url, l_db_nls, l_ecapp_nls);
1696:
1697: --test_debug('SecureCardInfo=> full url: '|| l_url);
1698: -- iby_debug_pub.add(debug_msg => 'SecureCardInfo=> full url: '|| l_url,
1699: -- debug_level => FND_LOG.LEVEL_PROCEDURE,
1700: -- module => G_DEBUG_MODULE || '.SecureCardInfo');
1701: l_pos := INSTR(l_url,'?');
1702: l_post_body := SUBSTR(l_url,l_pos+1,length(l_url));
1703: l_post_body := RTRIM(l_post_body,'&');

Line 1719: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1715: --Raising Exception to handle errors in unpacking resulting html file.
1716: IF (l_status = -1) THEN
1717: --test_debug('unpack error !!');
1718: iby_debug_pub.add(debug_msg => 'Unpack status error; HTML resp. invalid!',
1719: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1720: module => G_DEBUG_MODULE || '.SecureCardInfo');
1721: FND_MESSAGE.SET_NAME('IBY', 'IBY_204403_HTML_UNPACK_ERROR');
1722: FND_MSG_PUB.Add;
1723: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1730: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1726: --Raising Exception to handle Servlet related errors.
1727: IF (l_names.COUNT = 0) THEN
1728: --test_debug('response count is 0 !!');
1729: iby_debug_pub.add(debug_msg => 'HTML response names count=0',
1730: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1731: module => G_DEBUG_MODULE || '.SecureCardInfo');
1732: FND_MESSAGE.SET_NAME('IBY', 'IBY_204402_JSERVLET_ERROR');
1733: FND_MSG_PUB.Add;
1734: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1742: debug_level => FND_LOG.LEVEL_STATEMENT,

1738: them to the output record: x_reqresp_rec.
1739: */
1740: --test_debug('Setting fields from unpacked response');
1741: iby_debug_pub.add(debug_msg => 'Setting fields from unpacked response',
1742: debug_level => FND_LOG.LEVEL_STATEMENT,
1743: module => G_DEBUG_MODULE || '.SecureCardInfo');
1744:
1745:
1746: FOR i IN 1..l_names.COUNT LOOP

Line 1751: debug_level => FND_LOG.LEVEL_STATEMENT,

1747: --Payment Server Related Generic Response
1748: IF l_names(i) = 'OapfStatus' THEN
1749: x_resp_rec.Response.Status := TO_NUMBER(l_values(i));
1750: iby_debug_pub.add(debug_msg => 'Response status=' || x_resp_rec.Response.Status,
1751: debug_level => FND_LOG.LEVEL_STATEMENT,
1752: module => G_DEBUG_MODULE || '.SecureCardInfo');
1753: --test_debug('OapfStatus: '||x_resp_rec.Response.Status);
1754: ELSIF l_names(i) = 'OapfCode' THEN
1755: x_resp_rec.Response.ErrCode := l_values(i);

Line 1757: debug_level => FND_LOG.LEVEL_STATEMENT,

1753: --test_debug('OapfStatus: '||x_resp_rec.Response.Status);
1754: ELSIF l_names(i) = 'OapfCode' THEN
1755: x_resp_rec.Response.ErrCode := l_values(i);
1756: iby_debug_pub.add(debug_msg => 'Response code=' || x_resp_rec.Response.ErrCode,
1757: debug_level => FND_LOG.LEVEL_STATEMENT,
1758: module => G_DEBUG_MODULE || '.SecureCardInfo');
1759: --test_debug('OapfCode: '||x_resp_rec.Response.ErrCode);
1760: ELSIF l_names(i) = 'OapfCause' THEN
1761: x_resp_rec.Response.ErrMessage := l_values(i);

Line 1763: debug_level => FND_LOG.LEVEL_STATEMENT,

1759: --test_debug('OapfCode: '||x_resp_rec.Response.ErrCode);
1760: ELSIF l_names(i) = 'OapfCause' THEN
1761: x_resp_rec.Response.ErrMessage := l_values(i);
1762: iby_debug_pub.add(debug_msg => 'Response message=' || x_resp_rec.Response.ErrMessage,
1763: debug_level => FND_LOG.LEVEL_STATEMENT,
1764: module => G_DEBUG_MODULE || '.SecureCardInfo');
1765: --test_debug('OapfCause: '||x_resp_rec.Response.ErrMessage);
1766: ELSIF l_names(i) = 'OapfNlsLang' THEN
1767: x_resp_rec.Response.NLS_LANG := l_values(i);

Line 1802: debug_level => FND_LOG.LEVEL_STATEMENT,

1798: p_data => x_msg_data
1799: );
1800:
1801: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
1802: debug_level => FND_LOG.LEVEL_STATEMENT,
1803: module => G_DEBUG_MODULE || '.SecureCardInfo');
1804: iby_debug_pub.add(debug_msg => 'req response status=' || x_resp_rec.Response.Status,
1805: debug_level => FND_LOG.LEVEL_STATEMENT,
1806: module => G_DEBUG_MODULE || '.SecureCardInfo');

Line 1805: debug_level => FND_LOG.LEVEL_STATEMENT,

1801: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
1802: debug_level => FND_LOG.LEVEL_STATEMENT,
1803: module => G_DEBUG_MODULE || '.SecureCardInfo');
1804: iby_debug_pub.add(debug_msg => 'req response status=' || x_resp_rec.Response.Status,
1805: debug_level => FND_LOG.LEVEL_STATEMENT,
1806: module => G_DEBUG_MODULE || '.SecureCardInfo');
1807:
1808: iby_debug_pub.add(debug_msg => 'Exit',
1809: debug_level => FND_LOG.LEVEL_PROCEDURE,

Line 1809: debug_level => FND_LOG.LEVEL_PROCEDURE,

1805: debug_level => FND_LOG.LEVEL_STATEMENT,
1806: module => G_DEBUG_MODULE || '.SecureCardInfo');
1807:
1808: iby_debug_pub.add(debug_msg => 'Exit',
1809: debug_level => FND_LOG.LEVEL_PROCEDURE,
1810: module => G_DEBUG_MODULE || '.SecureCardInfo');
1811: --test_debug('Exit*******');
1812:
1813: EXCEPTION

Line 1818: debug_level => FND_LOG.LEVEL_ERROR,

1814:
1815: WHEN FND_API.G_EXC_ERROR THEN
1816:
1817: iby_debug_pub.add(debug_msg => 'In G_EXC_ERROR Exception',
1818: debug_level => FND_LOG.LEVEL_ERROR,
1819: module => G_DEBUG_MODULE || '.SecureCardInfo');
1820: --ROLLBACK TO OraPmtReq_PUB;
1821: x_return_status := FND_API.G_RET_STS_ERROR ;
1822: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

Line 1828: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1824: );
1825: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1826:
1827: iby_debug_pub.add(debug_msg => 'In G_EXC_UNEXPECTED_ERROR Exception',
1828: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1829: module => G_DEBUG_MODULE || '.SecureCardInfo');
1830: --ROLLBACK TO OraPmtReq_PUB;
1831: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1832: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

Line 1838: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1834: );
1835: WHEN OTHERS THEN
1836:
1837: iby_debug_pub.add(debug_msg => 'In OTHERS Exception',
1838: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1839: module => G_DEBUG_MODULE || '.SecureCardInfo');
1840: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1841: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1842: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, l_api_name);

Line 1850: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1846: p_data => x_msg_data
1847: );
1848:
1849: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
1850: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1851: module => G_DEBUG_MODULE || '.SecureCardInfo');
1852: iby_debug_pub.add(debug_msg => 'Exit Exception',
1853: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1854: module => G_DEBUG_MODULE || '.SecureCardInfo');

Line 1853: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1849: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
1850: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1851: module => G_DEBUG_MODULE || '.SecureCardInfo');
1852: iby_debug_pub.add(debug_msg => 'Exit Exception',
1853: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1854: module => G_DEBUG_MODULE || '.SecureCardInfo');
1855:
1856: END SecureCardInfo;
1857:

Line 1899: debug_level => FND_LOG.LEVEL_PROCEDURE,

1895: l_errcode NUMBER := 0;
1896: l_errmessage VARCHAR2(2000) := 'Success';
1897: BEGIN
1898: iby_debug_pub.add(debug_msg => 'Enter',
1899: debug_level => FND_LOG.LEVEL_PROCEDURE,
1900: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
1901:
1902: -- test_debug('SecureCardInfo=> Enter');
1903: -- Initialize API return status to success

Line 1935: debug_level => FND_LOG.LEVEL_PROCEDURE,

1931: l_url, l_db_nls, l_ecapp_nls);
1932:
1933: --test_debug('Get_Expiration_Status=> full url: '|| l_url);
1934: iby_debug_pub.add(debug_msg => 'Get_Expiration_Status=> full url: '|| l_url,
1935: debug_level => FND_LOG.LEVEL_PROCEDURE,
1936: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
1937: l_pos := INSTR(l_url,'?');
1938: l_post_body := SUBSTR(l_url,l_pos+1,length(l_url));
1939: l_post_body := RTRIM(l_post_body,'&');

Line 1955: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1951: --Raising Exception to handle errors in unpacking resulting html file.
1952: IF (l_status = -1) THEN
1953: --test_debug('unpack error !!');
1954: iby_debug_pub.add(debug_msg => 'Unpack status error; HTML resp. invalid!',
1955: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1956: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
1957: FND_MESSAGE.SET_NAME('IBY', 'IBY_204403_HTML_UNPACK_ERROR');
1958: FND_MSG_PUB.Add;
1959: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1966: debug_level => FND_LOG.LEVEL_UNEXPECTED,

1962: --Raising Exception to handle Servlet related errors.
1963: IF (l_names.COUNT = 0) THEN
1964: --test_debug('response count is 0 !!');
1965: iby_debug_pub.add(debug_msg => 'HTML response names count=0',
1966: debug_level => FND_LOG.LEVEL_UNEXPECTED,
1967: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
1968: FND_MESSAGE.SET_NAME('IBY', 'IBY_204402_JSERVLET_ERROR');
1969: FND_MSG_PUB.Add;
1970: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1978: debug_level => FND_LOG.LEVEL_STATEMENT,

1974: them to the output record: x_reqresp_rec.
1975: */
1976: --test_debug('Setting fields from unpacked response');
1977: iby_debug_pub.add(debug_msg => 'Setting fields from unpacked response',
1978: debug_level => FND_LOG.LEVEL_STATEMENT,
1979: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
1980:
1981:
1982: FOR i IN 1..l_names.COUNT LOOP

Line 1987: debug_level => FND_LOG.LEVEL_STATEMENT,

1983: --Payment Server Related Generic Response
1984: IF l_names(i) = 'OapfStatus' THEN
1985: x_resp_rec.Response.Status := TO_NUMBER(l_values(i));
1986: iby_debug_pub.add(debug_msg => 'Response status=' || x_resp_rec.Response.Status,
1987: debug_level => FND_LOG.LEVEL_STATEMENT,
1988: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
1989: --test_debug('OapfStatus: '||x_resp_rec.Response.Status);
1990: ELSIF l_names(i) = 'OapfCode' THEN
1991: x_resp_rec.Response.ErrCode := l_values(i);

Line 1993: debug_level => FND_LOG.LEVEL_STATEMENT,

1989: --test_debug('OapfStatus: '||x_resp_rec.Response.Status);
1990: ELSIF l_names(i) = 'OapfCode' THEN
1991: x_resp_rec.Response.ErrCode := l_values(i);
1992: iby_debug_pub.add(debug_msg => 'Response code=' || x_resp_rec.Response.ErrCode,
1993: debug_level => FND_LOG.LEVEL_STATEMENT,
1994: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
1995: --test_debug('OapfCode: '||x_resp_rec.Response.ErrCode);
1996: ELSIF l_names(i) = 'OapfCause' THEN
1997: x_resp_rec.Response.ErrMessage := l_values(i);

Line 1999: debug_level => FND_LOG.LEVEL_STATEMENT,

1995: --test_debug('OapfCode: '||x_resp_rec.Response.ErrCode);
1996: ELSIF l_names(i) = 'OapfCause' THEN
1997: x_resp_rec.Response.ErrMessage := l_values(i);
1998: iby_debug_pub.add(debug_msg => 'Response message=' || x_resp_rec.Response.ErrMessage,
1999: debug_level => FND_LOG.LEVEL_STATEMENT,
2000: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2001: --test_debug('OapfCause: '||x_resp_rec.Response.ErrMessage);
2002: ELSIF l_names(i) = 'OapfNlsLang' THEN
2003: x_resp_rec.Response.NLS_LANG := l_values(i);

Line 2029: debug_level => FND_LOG.LEVEL_STATEMENT,

2025: p_data => x_msg_data
2026: );
2027:
2028: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
2029: debug_level => FND_LOG.LEVEL_STATEMENT,
2030: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2031: iby_debug_pub.add(debug_msg => 'req response status=' || x_resp_rec.Response.Status,
2032: debug_level => FND_LOG.LEVEL_STATEMENT,
2033: module => G_DEBUG_MODULE || '.Get_Expiration_Status');

Line 2032: debug_level => FND_LOG.LEVEL_STATEMENT,

2028: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
2029: debug_level => FND_LOG.LEVEL_STATEMENT,
2030: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2031: iby_debug_pub.add(debug_msg => 'req response status=' || x_resp_rec.Response.Status,
2032: debug_level => FND_LOG.LEVEL_STATEMENT,
2033: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2034:
2035: iby_debug_pub.add(debug_msg => 'Exit',
2036: debug_level => FND_LOG.LEVEL_PROCEDURE,

Line 2036: debug_level => FND_LOG.LEVEL_PROCEDURE,

2032: debug_level => FND_LOG.LEVEL_STATEMENT,
2033: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2034:
2035: iby_debug_pub.add(debug_msg => 'Exit',
2036: debug_level => FND_LOG.LEVEL_PROCEDURE,
2037: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2038: --test_debug('Exit*******');
2039:
2040: EXCEPTION

Line 2045: debug_level => FND_LOG.LEVEL_ERROR,

2041:
2042: WHEN FND_API.G_EXC_ERROR THEN
2043:
2044: iby_debug_pub.add(debug_msg => 'In G_EXC_ERROR Exception',
2045: debug_level => FND_LOG.LEVEL_ERROR,
2046: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2047: --ROLLBACK TO OraPmtReq_PUB;
2048: x_return_status := FND_API.G_RET_STS_ERROR ;
2049: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

Line 2055: debug_level => FND_LOG.LEVEL_UNEXPECTED,

2051: );
2052: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2053:
2054: iby_debug_pub.add(debug_msg => 'In G_EXC_UNEXPECTED_ERROR Exception',
2055: debug_level => FND_LOG.LEVEL_UNEXPECTED,
2056: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2057: --ROLLBACK TO OraPmtReq_PUB;
2058: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2059: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,

Line 2065: debug_level => FND_LOG.LEVEL_UNEXPECTED,

2061: );
2062: WHEN OTHERS THEN
2063:
2064: iby_debug_pub.add(debug_msg => 'In OTHERS Exception',
2065: debug_level => FND_LOG.LEVEL_UNEXPECTED,
2066: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2067: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2068: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
2069: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, l_api_name);

Line 2077: debug_level => FND_LOG.LEVEL_UNEXPECTED,

2073: p_data => x_msg_data
2074: );
2075:
2076: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
2077: debug_level => FND_LOG.LEVEL_UNEXPECTED,
2078: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2079: iby_debug_pub.add(debug_msg => 'Exit Exception',
2080: debug_level => FND_LOG.LEVEL_UNEXPECTED,
2081: module => G_DEBUG_MODULE || '.Get_Expiration_Status');

Line 2080: debug_level => FND_LOG.LEVEL_UNEXPECTED,

2076: iby_debug_pub.add(debug_msg => 'x_return_status=' || x_return_status,
2077: debug_level => FND_LOG.LEVEL_UNEXPECTED,
2078: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2079: iby_debug_pub.add(debug_msg => 'Exit Exception',
2080: debug_level => FND_LOG.LEVEL_UNEXPECTED,
2081: module => G_DEBUG_MODULE || '.Get_Expiration_Status');
2082: END Get_Expiration_Status;
2083:
2084: