DBA Data[Home] [Help]

APPS.CSI_JAVA_INTERFACE_PKG dependencies on FND_PROFILE

Line 150: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');

146: l_debug_level NUMBER;
147:
148: Begin
149: -- Check the profile option debug_level for debug message reporting
150: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');
151:
152: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );
153: l_flag := nvl(l_flag, 'N');
154: l_inp_rec.validate_flag := l_flag;

Line 152: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );

148: Begin
149: -- Check the profile option debug_level for debug message reporting
150: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');
151:
152: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );
153: l_flag := nvl(l_flag, 'N');
154: l_inp_rec.validate_flag := l_flag;
155: l_inp_rec.product_id := product_id;
156: l_inp_rec.calc_resptime_flag := 'N';

Line 570: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );

566: and rownum <= 1
567: For Update NoWait;
568:
569: BEGIN
570: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );
571:
572: -- Check the profile option debug_level for debug message reporting
573: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');
574:

Line 573: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');

569: BEGIN
570: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );
571:
572: -- Check the profile option debug_level for debug message reporting
573: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');
574:
575: l_flag := nvl(l_flag, 'N');
576:
577: l_inp_rec.contract_number := contract_number;

Line 751: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );

747: l_inp_rec OKS_ENTITLEMENTS_PUB.inp_cont_rec;
748: l_debug_level NUMBER;
749: l_instance_table_name VARCHAR2(200);
750: BEGIN
751: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );
752:
753: -- Check the profile option debug_level for debug message reporting
754: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');
755:

Line 754: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');

750: BEGIN
751: fnd_profile.get('CSI_IB_SHOW_ALL_CONTRACTS', l_flag );
752:
753: -- Check the profile option debug_level for debug message reporting
754: l_debug_level:=fnd_profile.value('CSI_DEBUG_LEVEL');
755:
756: l_flag := nvl(l_flag, 'N');
757:
758: l_inp_rec.contract_number := contract_number;

Line 1101: IF (fnd_profile.value('CSI_ENABLE_SQL_TRACE') = 'Y') THEN

1097: -- Initialize API return status to success
1098: x_return_status := FND_API.G_RET_STS_SUCCESS;
1099: /** bug 3304439
1100: -- Check for the profile option and enable trace
1101: IF (fnd_profile.value('CSI_ENABLE_SQL_TRACE') = 'Y') THEN
1102: dbms_session.set_sql_trace(TRUE);
1103: END IF;
1104: **/
1105:

Line 1385: IF (fnd_profile.value('CSI_ENABLE_SQL_TRACE') = 'Y') THEN

1381: COMMIT WORK;
1382: END IF;
1383: /** bug 3304439
1384: -- Check for the profile option and disable the trace
1385: IF (fnd_profile.value('CSI_ENABLE_SQL_TRACE') = 'Y') THEN
1386: dbms_session.set_sql_trace(false);
1387: END IF;
1388: **/
1389: -- End disable trace

Line 1457: l_resp_id := fnd_profile.value('RESP_ID');

1453: -- Initialize API rturn status to success
1454: x_return_status := FND_API.g_ret_sts_success;
1455:
1456:
1457: l_resp_id := fnd_profile.value('RESP_ID');
1458: l_resp_appl_id := fnd_profile.value('RESP_APPL_ID');
1459:
1460: -- get icx session ticket
1461: x_icx_sessn_tkt := CZ_CF_API.ICX_SESSION_TICKET;

Line 1458: l_resp_appl_id := fnd_profile.value('RESP_APPL_ID');

1454: x_return_status := FND_API.g_ret_sts_success;
1455:
1456:
1457: l_resp_id := fnd_profile.value('RESP_ID');
1458: l_resp_appl_id := fnd_profile.value('RESP_APPL_ID');
1459:
1460: -- get icx session ticket
1461: x_icx_sessn_tkt := CZ_CF_API.ICX_SESSION_TICKET;
1462:

Line 1467: x_servlet_url := fnd_profile.value('CZ_UIMGR_URL');

1463: -- get the dbc file name
1464: x_db_id := FND_WEB_CONFIG.DATABASE_ID;
1465:
1466: -- get the URL for servlet
1467: x_servlet_url := fnd_profile.value('CZ_UIMGR_URL');
1468:
1469: -- get the SYSDATE
1470: x_sysdate := to_char(sysdate,'mm-dd-yyyy-hh24-mi-ss');
1471: