DBA Data[Home] [Help]

APPS.PO_VENDORS_SV dependencies on ASN_DEBUG

Line 5: g_asn_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_RVCTP_ENABLE_TRACE'),'N');

1: PACKAGE BODY PO_VENDORS_SV as
2: /* $Header: POXVDVEB.pls 120.4 2006/02/08 21:40:59 srnatara noship $*/
3:
4: -- Read the profile option that enables/disables the debug log
5: g_asn_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_RVCTP_ENABLE_TRACE'),'N');
6:
7: /*===========================================================================
8:
9: FUNCTION NAME: val_vendor()

Line 1148: IF (g_asn_debug = 'Y') THEN

1144: dbms_sql.close_cursor(cid);
1145: END IF;
1146: p_vendor_record.error_record.error_status := 'U';
1147: p_vendor_record.error_record.error_message := sqlerrm;
1148: IF (g_asn_debug = 'Y') THEN
1149: asn_debug.put_line(p_vendor_record.error_record.error_message);
1150: END IF;
1151:
1152: END derive_vendor_info;

Line 1149: asn_debug.put_line(p_vendor_record.error_record.error_message);

1145: END IF;
1146: p_vendor_record.error_record.error_status := 'U';
1147: p_vendor_record.error_record.error_message := sqlerrm;
1148: IF (g_asn_debug = 'Y') THEN
1149: asn_debug.put_line(p_vendor_record.error_record.error_message);
1150: END IF;
1151:
1152: END derive_vendor_info;
1153:

Line 1318: IF (g_asn_debug = 'Y') THEN

1314: dbms_sql.close_cursor(X_cid);
1315: END IF;
1316: p_vendor_record.error_record.error_message := sqlerrm;
1317: p_vendor_record.error_record.error_status := 'U';
1318: IF (g_asn_debug = 'Y') THEN
1319: asn_debug.put_line(p_vendor_record.error_record.error_message);
1320: END IF;
1321: -- raise;
1322:

Line 1319: asn_debug.put_line(p_vendor_record.error_record.error_message);

1315: END IF;
1316: p_vendor_record.error_record.error_message := sqlerrm;
1317: p_vendor_record.error_record.error_status := 'U';
1318: IF (g_asn_debug = 'Y') THEN
1319: asn_debug.put_line(p_vendor_record.error_record.error_message);
1320: END IF;
1321: -- raise;
1322:
1323: END validate_vendor_info;